From 080a78f4cf36d39382c759df9ba04491c29be989 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson Date: Fri, 3 Nov 2023 17:02:36 -0500 Subject: [PATCH] implement checkout form with razor pages --- FakePieShop/Controllers/OrderController.cs | 27 + FakePieShop/FakePieShop.csproj.user | 2 + FakePieShop/Models/DbInitializer.cs | 4 +- FakePieShop/Pages/CheckoutCompletePage.cshtml | 4 + .../Pages/CheckoutCompletePage.cshtml.cs | 13 + FakePieShop/Pages/CheckoutPage.cshtml | 80 + FakePieShop/Pages/CheckoutPage.cshtml.cs | 49 + FakePieShop/Pages/Shared/_PageLayout.cshtml | 52 + .../Pages/Shared/_PageLayout.cshtml.cs | 12 + FakePieShop/Pages/_ViewImports.cshtml | 7 + FakePieShop/Pages/_ViewStart.cshtml | 3 + FakePieShop/Program.cs | 6 +- .../Views/Order/CheckoutComplete.cshtml | 3 + FakePieShop/Views/Shared/_Layout.cshtml | 2 + FakePieShop/bin/Debug/net6.0/FakePieShop.dll | Bin 195072 -> 268800 bytes FakePieShop/bin/Debug/net6.0/FakePieShop.pdb | Bin 72664 -> 94536 bytes .../FakePieShop.staticwebassets.runtime.json | 2 +- FakePieShop/bin/Debug/net6.0/libman.json | 8 + FakePieShop/libman.json | 8 + ....GeneratedMSBuildEditorConfig.editorconfig | 24 + FakePieShop/obj/Debug/net6.0/FakePieShop.dll | Bin 195072 -> 268800 bytes FakePieShop/obj/Debug/net6.0/FakePieShop.pdb | Bin 72664 -> 94536 bytes .../obj/Debug/net6.0/project.razor.vs.json | 2 +- .../obj/Debug/net6.0/ref/FakePieShop.dll | Bin 42496 -> 55296 bytes .../obj/Debug/net6.0/refint/FakePieShop.dll | Bin 42496 -> 55296 bytes .../Debug/net6.0/staticwebassets.build.json | 2263 ++++++++++++++++- .../net6.0/staticwebassets.development.json | 2 +- .../Debug/net6.0/staticwebassets.pack.json | 532 ++++ ...Microsoft.AspNetCore.StaticWebAssets.props | 2128 ++++++++++++++++ ....GeneratedMSBuildEditorConfig.editorconfig | 24 + 30 files changed, 5248 insertions(+), 9 deletions(-) create mode 100644 FakePieShop/Pages/CheckoutCompletePage.cshtml create mode 100644 FakePieShop/Pages/CheckoutCompletePage.cshtml.cs create mode 100644 FakePieShop/Pages/CheckoutPage.cshtml create mode 100644 FakePieShop/Pages/CheckoutPage.cshtml.cs create mode 100644 FakePieShop/Pages/Shared/_PageLayout.cshtml create mode 100644 FakePieShop/Pages/Shared/_PageLayout.cshtml.cs create mode 100644 FakePieShop/Pages/_ViewImports.cshtml create mode 100644 FakePieShop/Pages/_ViewStart.cshtml create mode 100644 FakePieShop/Views/Order/CheckoutComplete.cshtml diff --git a/FakePieShop/Controllers/OrderController.cs b/FakePieShop/Controllers/OrderController.cs index 5ddc521..9bb77d5 100644 --- a/FakePieShop/Controllers/OrderController.cs +++ b/FakePieShop/Controllers/OrderController.cs @@ -18,5 +18,32 @@ namespace BethanysPieShop.Controllers { return View(); } + + [HttpPost] + public IActionResult Checkout(Order order) + { + var items = _shoppingCart.GetShoppingCartItems(); + _shoppingCart.ShoppingCartItems = items; + + if (_shoppingCart.ShoppingCartItems.Count == 0) + { + ModelState.AddModelError("", "Your cart is empty, add some pies first"); + } + + if (ModelState.IsValid) + { + _orderRepository.CreateOrder(order); + _shoppingCart.ClearCart(); + return RedirectToAction("CheckoutComplete"); + } + + return View(order); + } + + public IActionResult CheckoutComplete() + { + ViewBag.CheckoutCompleteMessage = "Thanks for your order. You'll soon enjoy our delicious pies!"; + return View(); + } } } diff --git a/FakePieShop/FakePieShop.csproj.user b/FakePieShop/FakePieShop.csproj.user index c0554b1..c1634b1 100644 --- a/FakePieShop/FakePieShop.csproj.user +++ b/FakePieShop/FakePieShop.csproj.user @@ -5,5 +5,7 @@ root/Common/MVC/Controller RazorViewEmptyScaffolder root/Common/MVC/View + RazorPageScaffolder + root/Common/RazorPage \ No newline at end of file diff --git a/FakePieShop/Models/DbInitializer.cs b/FakePieShop/Models/DbInitializer.cs index 549b12a..e46a016 100644 --- a/FakePieShop/Models/DbInitializer.cs +++ b/FakePieShop/Models/DbInitializer.cs @@ -1,6 +1,4 @@ -using FakePieShop.Models; - -namespace BethanysPieShop.Models +namespace FakePieShop.Models { public static class DbInitializer { diff --git a/FakePieShop/Pages/CheckoutCompletePage.cshtml b/FakePieShop/Pages/CheckoutCompletePage.cshtml new file mode 100644 index 0000000..0bf73fd --- /dev/null +++ b/FakePieShop/Pages/CheckoutCompletePage.cshtml @@ -0,0 +1,4 @@ +@page +@model FakePieShop.Pages.CheckoutCompletePageModel + +

@ViewData["CheckoutCompleteMessage"]

\ No newline at end of file diff --git a/FakePieShop/Pages/CheckoutCompletePage.cshtml.cs b/FakePieShop/Pages/CheckoutCompletePage.cshtml.cs new file mode 100644 index 0000000..fc6e2cb --- /dev/null +++ b/FakePieShop/Pages/CheckoutCompletePage.cshtml.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace FakePieShop.Pages +{ + public class CheckoutCompletePageModel : PageModel + { + public void OnGet() + { + ViewData["CheckoutCompleteMessage"] = "Thanks for your order. You'll soon enjoy our delicious pies!"; + } + } +} diff --git a/FakePieShop/Pages/CheckoutPage.cshtml b/FakePieShop/Pages/CheckoutPage.cshtml new file mode 100644 index 0000000..960ead5 --- /dev/null +++ b/FakePieShop/Pages/CheckoutPage.cshtml @@ -0,0 +1,80 @@ +@page +@model FakePieShop.Pages.CheckoutPageModel + +
+

+ You're just one step away from your delicious pies. +

+ +
+ +
+
+
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+
+ +
+
+ +
+
+
+
diff --git a/FakePieShop/Pages/CheckoutPage.cshtml.cs b/FakePieShop/Pages/CheckoutPage.cshtml.cs new file mode 100644 index 0000000..e67838a --- /dev/null +++ b/FakePieShop/Pages/CheckoutPage.cshtml.cs @@ -0,0 +1,49 @@ +using FakePieShop.Models; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace FakePieShop.Pages +{ + public class CheckoutPageModel : PageModel + { + private readonly IOrderRepository _orderRepository; + private readonly IShoppingCart _shoppingCart; + + public CheckoutPageModel(IOrderRepository orderRepository, IShoppingCart shoppingCart) + { + _orderRepository = orderRepository; + _shoppingCart = shoppingCart; + } + + [BindProperty] + public Order Order { get; set; } = default!; + public void OnGet() + { + } + + public IActionResult OnPost() + { + if (!ModelState.IsValid) + { + return Page(); + } + + var items = _shoppingCart.GetShoppingCartItems(); + _shoppingCart.ShoppingCartItems = items; + + if (_shoppingCart.ShoppingCartItems.Count == 0) + { + ModelState.AddModelError("", "Your cart is empty, add some pies first"); + } + + if (ModelState.IsValid) + { + _orderRepository.CreateOrder(Order); + _shoppingCart.ClearCart(); + return RedirectToPage("CheckoutCompletePage"); + } + + return Page(); + } + } +} diff --git a/FakePieShop/Pages/Shared/_PageLayout.cshtml b/FakePieShop/Pages/Shared/_PageLayout.cshtml new file mode 100644 index 0000000..31cbf00 --- /dev/null +++ b/FakePieShop/Pages/Shared/_PageLayout.cshtml @@ -0,0 +1,52 @@ + + + + + + Fake Pie Shop + + + + + + + + + + +
+
+ +
+
+ @RenderBody() +
+
+ + \ No newline at end of file diff --git a/FakePieShop/Pages/Shared/_PageLayout.cshtml.cs b/FakePieShop/Pages/Shared/_PageLayout.cshtml.cs new file mode 100644 index 0000000..bab23f6 --- /dev/null +++ b/FakePieShop/Pages/Shared/_PageLayout.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace FakePieShop.Pages.Shared +{ + public class _PageLayoutModel : PageModel + { + public void OnGet() + { + } + } +} diff --git a/FakePieShop/Pages/_ViewImports.cshtml b/FakePieShop/Pages/_ViewImports.cshtml new file mode 100644 index 0000000..c2ebab7 --- /dev/null +++ b/FakePieShop/Pages/_ViewImports.cshtml @@ -0,0 +1,7 @@ +@using FakePieShop.Models +@using FakePieShop.ViewModels +@using FakePieShop.Components + +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, FakePieShop +@addTagHelper FakePieShop.TagHelpers.*, FakePieShop \ No newline at end of file diff --git a/FakePieShop/Pages/_ViewStart.cshtml b/FakePieShop/Pages/_ViewStart.cshtml new file mode 100644 index 0000000..c9bebdb --- /dev/null +++ b/FakePieShop/Pages/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_PageLayout"; +} diff --git a/FakePieShop/Program.cs b/FakePieShop/Program.cs index 22033f4..2c88a41 100644 --- a/FakePieShop/Program.cs +++ b/FakePieShop/Program.cs @@ -1,4 +1,3 @@ -using BethanysPieShop.Models; using FakePieShop.Models; using FakePieShop.Repositories; using Microsoft.EntityFrameworkCore; @@ -16,6 +15,7 @@ builder.Services.AddSession(); builder.Services.AddHttpContextAccessor(); // configuration for MVC and entity framework core +builder.Services.AddRazorPages(); builder.Services.AddControllersWithViews(); builder.Services.AddDbContext(options => { @@ -25,7 +25,8 @@ builder.Services.AddDbContext(options => var app = builder.Build(); -// middlewares +// middlewares -- ORDER MATTERS here +// when including services to the `builder`, order does not matter app.UseStaticFiles(); app.UseSession(); @@ -36,6 +37,7 @@ if (app.Environment.IsDevelopment()) } app.MapDefaultControllerRoute(); +app.MapRazorPages(); // use our own seed data DbInitializer.Seed(app); diff --git a/FakePieShop/Views/Order/CheckoutComplete.cshtml b/FakePieShop/Views/Order/CheckoutComplete.cshtml new file mode 100644 index 0000000..3e204e4 --- /dev/null +++ b/FakePieShop/Views/Order/CheckoutComplete.cshtml @@ -0,0 +1,3 @@ +

+ @ViewBag.CheckoutCompleteMessage +

\ No newline at end of file diff --git a/FakePieShop/Views/Shared/_Layout.cshtml b/FakePieShop/Views/Shared/_Layout.cshtml index b1fd8c6..0dfc2f2 100644 --- a/FakePieShop/Views/Shared/_Layout.cshtml +++ b/FakePieShop/Views/Shared/_Layout.cshtml @@ -7,6 +7,8 @@ + + diff --git a/FakePieShop/bin/Debug/net6.0/FakePieShop.dll b/FakePieShop/bin/Debug/net6.0/FakePieShop.dll index 67b55aafd8df7de7d7af15088248bd98348ea02c..5012c4a91ee859a2c5f7770d60721e39c1f7666b 100644 GIT binary patch literal 268800 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 z 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

!&MhoJp*BJnen9P&(w8?h zV$($fI)QBHM#E#f4D5RmF$8ixgDxy5d9qb4pb~$)VR59~zufvI_p8{XKNu zNdT2pnQNfoYZuR1JWKJd60Is^;p^g=9?KblDQFm_QI=qjOjY(Ab_nPe7Bk#KSI%L? z6Qk1+YGM@qhp7H-#fR>g$#~pda_HugL+>m;$+F8z4&7s&icoG|0?8RO5G-nH;-NXG zqKd-ueXvB(!}5SAtxr{_TGLqBADT0}kO4pd$w)jk%Q$}ub^-0dgCg$dg;aS;rbB(o zULsL)g3AuoW|<_On#p$PMW!q96cc#pV~a~xNdg}(KJ*z+0v{Iqc}eWe3*fU~QtXoo zry_Q`SW&7rdMRWFt9Z$wC+67G<`g2l#3T0q*WT5~##LSU`zHPve`K(oK$CP#AI3nO z*kg}Bz{xrvZk#l3?O=#W)8f>bj9={8%vWZ{NerQ#u|W#jpv|sWZK?%{Klmf8=*p`W z33jO(R;d(LL~>Ukxe}46R90xkszm~|)wbLHopayk%-A!5=cuaI$=vz9d(S=R+;cz9 zz4yI4&qG5@gz9tt2EH2?&_%IYnmE;Y}cjk$=&hqB@SW;O&YbT`#0zF<&k zL|?6gkcN}fDB)r)oG+8YS*n$a*X#9EVhGLM$tUH|6iw3FgHh{$pqJHRKe+xY|xP)x|GUYt5c!d{7qsm?x?P8 z%6%W!@ipdNq|qG}H2(`W;D;3EzF&=|i7y|EdC@B{o57Wj>+siHhs$R5FUtyEhHs=k zhL6{finuDe_IMCgy-wE_MWD9Fb!WCcL@sgDB7i1NmK>I?m~4+0iwGLgDR+%wX}_0S za${}~UIU?by;#>Y|KHSh;5z=!;*K=gHK@vocR|;X!a=v5IWY;Y?&Y49dxIuUi2E@N z@mBu#{fPJ}F?}1s%498F3bom{Q5<-1^w-=QjEuavxSP7-${fO`GW9gF6jkPn#-9WO zvoLEX<~vl$x;4@tv|Fb9Yym1+`Q!~eT(W=0k`Ny5P7I~_aSh z|0S>VSqtRjn9%ZB?D&_cjWeZ({HjS}^KKrUV$rj~@Vu7m^VE<}T_U;UCKf8Cl01+% zWiK}6er^)nlmj;Dy4aNa(BSIxV&2}gP;<9n_rYaZ%;)kUd*q8OVm+4AKHnYarKg)t zW7NdZ)UBAg^P&kMVP3ExB+LsCgoH0J{RPIn;F{+J*Zf9~-^lTs7;j?iXY6OJGFBOHWxSPf zJL7i7yeOOJMcI5W$MW{?F`i-^WgKOkWSnH2VVq%nj`2Ch=NX@8oMoJCsIHRzVw3C_uTXUMryRbG znGe^vwA@9`aj}6XT$sB0(dp=m{3(4i+e=JzslB>MvTZHZ$H|DN&h2`>o32nkm(u3+qC>}6cf zxSnwX;|9hX8E<6lXUv^`L1nCRd@JKt##(Zh57l8rV;-gAmP21K8o=BvBjO!p;yI5G%cEGO=Qs5V2@62wqQ=;#X=4p zw??hPWWww7dKr2Bv_dBf4X~yIrly%ZO*2fjm#Ow{uCDWPdM-;}#z*>PIisQONPTaS z+u}kH`#e?ZI$DTe6y;0923c%Vc+o;%VF^PlVTkcT#s?XXFdn(Px?T=Q7fGltTmK^Q zdJnkBdB!-;7~^rq|`FF$M4f)^l#d>0Ru_3 zt`?g|M$S5Y*}6ga{74{wyz&MCZ=KPGA@(lsr3DA}v{oVa-vcSDZ(4lGST!%~z#LQG zO57l5T!1N|kY{2o*YTUxI=vg`-&6`4#ap{g1b;|3&)SKgR#dARn-vSY95%*y(YP>( z|8-b3Vc?*Zm=AXg0WgBW(F0(snU`{$XwYEohRrH_R4v*jMfk8usps=lV-2wINVAVN zxpOyY(05>^SuFs0d<)9Zy}SD@g*>J5MFYmFO21-FN`_U$Me(2y^DJ$ zzt{L)?N09x-k9reyZKMYz3)7^;g2^uZa%WEs=3lrRat?J_#6e#Q1C1T&(&Z|$o>uH zDKFFIYZSae!H+3;i-Mn0@HPcEDEJu#?@{n`Gw&5#=KK_>l<)}!pHc8T3jR=i7wDc2klU`yo+QeTqG{c>UlG6nb^Nc!BvWrYoUrNcqoc{oq}tg zDlezecGXfXQOO%K9LYCuOvGC7O`T;kj&n5A)Bw~)ZFL|mw^u1`Nu}Uvc++_s0 z3X+Jm2;EIzSJf0l&g>5W+VSb4iR`#j5}__(btZ zQUqB;zcq!+>@wmr_?)w38h1yD`h5yMpx`4SaNcsG=#LR(-zD^ED-+-@$!b%W2dHS~ z{fd=mMpG8Ewe#lF4rSI(4p$U*LUYtBbH8o3%2wJh62VFTRbCx5n% zf(i;MDX5~LngTBcH5AlQP)}Rtm3$+*vQpp)G=3&1n`2*>&GC-!GxFjYzIaw%Jj)l) z$&2S|X#y&}2ktFnn3h;Z(~a7fnOuf%S=3i-)K@I(D@=W5oe+vw=j@ladBN9jWq;b1 z{b?(j?r$49T(hE=Y|%?r^aWe=g*$X{y4zT6FgO_zR=$h2d>5_gWn1)e4esE>7r_%z ziSWD$<^Z|J;D4B2dL~IPF{T!Vk6ZG|%va&J*c`+Hm}7HzsH#!g{&kDhB4Xfu_(7KJ zHJPkSVn3%#VvJklP(`Z~v_&X=pPoDm9y(KYgnBe%DT|_&REU8ah81k|jHV z!(z2S_-<2#?|;yv1{|OJXZiJ-qC=x*(tm!l-)nE}%w_CUl>uCkXTj{v=5%D4%sC@3^9!gu;iNP1Pf-ADGzGx2- zo3(R4P-DtcW9{UyL320Ss5GS=6|`!%v?@)1n%LexuLAWlmU_2OZjg#uzCVJRy_TBg z=R;l5Eok{gy^S8Ds@RIBjVMqk@KCUhf(i;MDX5~LngTBcH5AlRP)9+1l=k{AfPh0Ss1(z&%;SN2M=@m>BE?QK} z4CTPSZmaOIysHQ?Qdvoh9DNN0UKvRP+ESg@8kc3X9DhlUKIWQGmqP?nT_(70anlKS zq-61PEOQAmJ&ag~T#Z)|UYbPU*+8L)anD`fOoft%67l`#!dfyDNyNuzQi-!^1$5Os z+t{UuO@TxE$M+>t+F&x-end;9LALA6g8|%m9`|iLkP5}Lvx(HHp-4Iz4b2_GrI&K3 zplDD;-GR_4Z7iZ4o=GHys8vMekal8rT8Mgx2nM?7pN!`VA?6g38I6QfiFD#*CNP*z z9?~)-JurGE9DoYZNH|2Aj)hX0bYNd1o=!v~Q=yDDHJDCou@lj`JfZ`ka3+zOYgbp~ z`e^8h1kNO!R>Xsrysv3-Ek$gH65-jH7S9C6LepA$a^H*=K9!h-PO)TE%V-qa6oYQ0 ze~LJDBoWop$>g2I$OGZ@OeTg?L?K1kN?1zb3X-JlVbr;W^%^LSY$nLGk+!?9!nRp*dkl)+A5^8ThG+Dn&#vmVZ% zRX8|r(sj3zO}@tz(YYF5QWo`{h-c7(CWqrw+Bpa7FLyFUr%uty6ejmlT1)N+6EUp_ z>rFaqO3vdusfe!9T0fkc(o$wyb*Syvc{7RGK25z7is-*p{zhML$Z0Jq#~?N3eM=D? zrR8A+nH7c z#4&cD8DS`y#xOLh#b;5HlcCwDQ)I6$QtxC|)=qm?6q2)A3caX^hd+-(G$1D<@#%f& zF^6Yku~2HRs9t}uqFzNf6sQ+gM0eTR!APmZY+8#t+R@!k1xzB-1m*PzV~i^@z8O8j z7~dp`$seP1u>3NhC88Kpjv_SY6+x#lB|NE!-Q`QL+kH5r#R|l2%M({DgDJa|hmhlx zokfxHN;M@~jVf>4D&--h9J>Q>m~e|O!A@Y7p}euyasdv`##n15n|v#14s=Kn!>d&e z`+0MyHO4oJ-9E7YoEDzVXoKmwcz8D)ET%eNQ^Z%xXIGp}5I?qn-5_W;qKL2EDmSNA zCnhI@4^4LMo)TiT#MmZFYIG#Jl0BucoZUS_JgSJ%(yA5XR-j;ak5tfImO(1ByDT4a zpJhL>geyDbo-Ko1@&k$(EX~v2-wNv)?RiKMd&*?Pv$LX14k}{bYE0zd;FyXP@(JP$ zbSZ7}XI+I{@N=`niWn-bjdO}s$S8=PTP-zqNOkf#6}10gzij_wiulH@DrO8wg$knb z_A6pcP|Qz5HhZ@KN=7^znq^UG`R`J4)jX^i*ovEvcX zJ$5|KyT^{l_=gqo_3~@fsD)y-ljHl>6|uj3e)^QONCSZ@zctlNRt35RbwBPRKd#s# zig={_qT0KfF@G*BH~Ltq`H&pF?d;^#xR6;8Kf+OJrm-@&LOXWL!KRc8mn^@q3%9XZ z*@a_1>Jg%phmuoBV^d7dZg+>b4-^*hp-HY2sn&~1i1vOJ=Qk=44# zEmaDy6kO%V)#55gt`}E1a>cmH(e;|?cD-i0U9XvL*K4NR^_uB+y=Hn`ubCd#Yo^Eb zn(1-9W_nz&nO@gxrq}hF>2HzT(6lv*K4NF^_qE*Yv#Nn z&X%527%M&7Ug6}Vd7pFAv3#dlrn#~o4^1D`qDd{aePAq=2y5xIxra(Gfm%?+cfYuF z`^;TmbKimzr4}7>R#n6T14SpiSo3lNb)RhyO)A}I%Z=ZCwtZ`(Eq5&UwcSD5;`YO% zpQ|;l*b;(ejec@nmbWWfv~dOX-KkPD*jwVr>$CFK$kuJ{?ZwNyLoR4tQz~^+LpH{;tB1Rc%RIS)T;|C&?qlo@-D?a@p#xo^s*p zGS4-rBe{5WS^_fSl9li$Zg?Tm11rnkr9D>d#g0i-yu^n#LEqS3--B@mqNg&~`((Xla7Iaz5@h zQ=XQ)&6Fo;=M;f00^?zEbBn=zc-vw4N&W7r8+#GoQ^XTrOz;=mhA3}hZfrvsw~dR| zy0Hb}E=%5iaF-ITHDYgCDp%jMJWc)`Or2uuc&;0Sahg;lM~dtB7w;JgFKFK@U%8%VW}9OOKJ@RgYiUsE{5liRl44dQ$2W{CM09v zmqHnUp&>`-kM5hw*tn9A{5a$qNyMk~sPdvfG#HI)sp+}l_{l^n#>ZTUTVX6n$5N3n z7ncDdhGTdj^RZNvav0c%9-o+9~GZh#`{r;Y=bd z(u9@nCU@s0cO&`Rk>tL_ z6j!7U5xFmtnIl^I#w8xQ$S?&1N+)}yB#DHG9Gk&WgF~oiEk${4m!&J|uM`nC>>-a) z*sNkiKt@r6l~Z4Nt#!2)bH5^nU>3m3j6PGQKbRR@Jhj+}iD&i~MUEMvwuAX3bS6^38 zALc5NOe7Q?jZEW6Ck~I|by13FVIrb>2xL8z7|89#A}=Mxz4(1)gAU)pu5O~^esFj; zNhcZc`wEI^I1}C(){l5~;It@SNY#v^vxrUW=d3!yIB3<8mM5*uSrE;SU}2hu)bCHF z5~)$R68LfdSX2w8H5CIFhI5?AOsOZyFR5`%YVML5D#%IIvWMbmOt$ctA^tjxF#K{M zL#!wzKj_c%AmUd;o{ia|g%zl^xsXdpx;qHRA{2jHY|MPRZ&b-Ss=<|$y3th%gl#Dl z_CzG9hEew$Z9=^8n;hv!BZmUu<6S=*iAQ3yu@NmkotddXELvrOfV&C>gyC^f6yhU9 znHC637Yt8RAmQ#p2}yF(YMlKvByDC%0F?|j*$P(AE?g(geTwPmKW^Q#^YKu}6I~rU z?zy-1zWX28w!L%Lp6^T^fAaiO-|aZI9mx}c)d6OT()-F=UDb@UxO-;J-{V+eK}JO6lB@Yo)P9PDWW!zX*5LWXjv&+DRXDzVNe z(JJ;JTZHf-qm*Hb?QIjs;N0?hbT1~>susf>T-Cdb8cD11L`L>;ZAy*A)estTDy4-p zs$2kYn-Kpw_>+%>GCD@fCJag9(?Eszw1HZ+{G&l+13nMn6Y8uGp++l>C>kiR{XKek z=_U)W_ER6&H6S2st(A-2CqfS_xNNLGLdcro; zI&k8|Urz9e{)xDj!I6J^VjwwnLL5Fg*xmP_(B-}Qgf5TDbkA3g-220i|LvpSq^fo= zLT}^m-wCV6mGk>e8=Vk1ot?rNyU|c2E@ElePSXNYQJk#D-yiQ2>Rv|W2OhSSiYH7q zA=4PXoq4Hu3cS^{FrMhL6gd7Q{Y*g;aS>t)i{DFoE5y6JG?p3P_258;ID$8cP9oed z9t9f4dn6CxdKlpWVEX%U#jpOCm(#2f#Ymoe2;vVGG*dVN!4StC;Wr`DyB_IHsKz@` ziKdlvjpIFuA-q#D&2M)!--=2EVzHtZx+>5q11fs+m-@uA&cz0$1`WYXR*8qC5481Kig>QPFt@%dQ74!_i0n*!Lg}{$)ApZ#R zPIFFr=VlURC5@-?K1@s*xOpFBIrO$miYIH5979jKqIZ+7WEV@Gv@5+QHUS-GVH?{U zJXg$*iHE>%M8VqjeEHU~Y(w=&b{vH5($I_EiW^0#RJ2p4MXfw!Qz0_@D#U-u=7}pI ze)X?E8Q60!7FEyazb4Xx-_B^kI0)B{6Y0BJ9veT<(chw`GokoYC<=eMt7T40x9r)y zzIJ`>05-z;cRp0Gh^Ke8%%;x&3AU)QP&{%{OJ|H< zFJXCLrm7}0xkkjY+pZJ+I7tgnhIX}#+J9Fh5K1OnIwglpYBrsr9h)-s>2BeCke$Zi zU@T_m^lQYVw9~WDQ=7ti`Aj6L;Ri>`kq3}5;~mk?Xi+sv;jWfYdN_V2 zaSH2Ubv7~>rpN1cwVVt^)A-pEOPS6h+8C;LI&>fCG>rg)fli}_c5`+AX$NWrMi(L8 QHwMl>ZEgQwJC`l+f5uOgcK`qY literal 195072 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 My8gNOcBAnB0#oT!h5!Hn diff --git a/FakePieShop/bin/Debug/net6.0/FakePieShop.pdb b/FakePieShop/bin/Debug/net6.0/FakePieShop.pdb index 847655092ce04a57f66aa72417f57a44bd7f8b60..3d46b74fc0dc617dcd471f826dc67631ea92ee56 100644 GIT binary patch delta 33537 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

6S@kS1~Cxru$v#!KK8)kdTd) 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 delta 16083 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 diff --git a/FakePieShop/bin/Debug/net6.0/FakePieShop.staticwebassets.runtime.json b/FakePieShop/bin/Debug/net6.0/FakePieShop.staticwebassets.runtime.json index d0ec0e0..25968a1 100644 --- a/FakePieShop/bin/Debug/net6.0/FakePieShop.staticwebassets.runtime.json +++ b/FakePieShop/bin/Debug/net6.0/FakePieShop.staticwebassets.runtime.json @@ -1 +1 @@ -{"ContentRoots":["C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Images":{"Children":{"bethanys-pie-shop-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logomark.png"},"Patterns":null},"bethanys-pie-shop-logo_horiz-white.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logo_horiz-white.png"},"Patterns":null},"carousel1.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel1.jpg"},"Patterns":null},"carousel2.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel2.jpg"},"Patterns":null},"carousel3.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel3.jpg"},"Patterns":null},"contact":{"Children":{"contact.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/contact/contact.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null},"scss":{"Children":{"bootstrap-grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-grid.scss"},"Patterns":null},"bootstrap-reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-reboot.scss"},"Patterns":null},"bootstrap-utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-utilities.scss"},"Patterns":null},"bootstrap.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap.scss"},"Patterns":null},"forms":{"Children":{"_floating-labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_floating-labels.scss"},"Patterns":null},"_form-check.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-check.scss"},"Patterns":null},"_form-control.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-control.scss"},"Patterns":null},"_form-range.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-range.scss"},"Patterns":null},"_form-select.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-select.scss"},"Patterns":null},"_form-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-text.scss"},"Patterns":null},"_input-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_input-group.scss"},"Patterns":null},"_labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_labels.scss"},"Patterns":null},"_validation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_validation.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"helpers":{"Children":{"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_clearfix.scss"},"Patterns":null},"_color-bg.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_color-bg.scss"},"Patterns":null},"_colored-links.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_colored-links.scss"},"Patterns":null},"_focus-ring.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_focus-ring.scss"},"Patterns":null},"_icon-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_icon-link.scss"},"Patterns":null},"_position.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_position.scss"},"Patterns":null},"_ratio.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_ratio.scss"},"Patterns":null},"_stacks.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stacks.scss"},"Patterns":null},"_stretched-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stretched-link.scss"},"Patterns":null},"_text-truncation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_text-truncation.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_visually-hidden.scss"},"Patterns":null},"_vr.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_vr.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"mixins":{"Children":{"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_alert.scss"},"Patterns":null},"_backdrop.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_backdrop.scss"},"Patterns":null},"_banner.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_banner.scss"},"Patterns":null},"_border-radius.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_border-radius.scss"},"Patterns":null},"_box-shadow.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_box-shadow.scss"},"Patterns":null},"_breakpoints.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_breakpoints.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_buttons.scss"},"Patterns":null},"_caret.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_caret.scss"},"Patterns":null},"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_clearfix.scss"},"Patterns":null},"_color-mode.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-mode.scss"},"Patterns":null},"_color-scheme.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-scheme.scss"},"Patterns":null},"_container.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_container.scss"},"Patterns":null},"_deprecate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_deprecate.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_forms.scss"},"Patterns":null},"_gradients.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_gradients.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_grid.scss"},"Patterns":null},"_image.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_image.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_list-group.scss"},"Patterns":null},"_lists.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_lists.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_pagination.scss"},"Patterns":null},"_reset-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_reset-text.scss"},"Patterns":null},"_resize.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_resize.scss"},"Patterns":null},"_table-variants.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_table-variants.scss"},"Patterns":null},"_text-truncate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_text-truncate.scss"},"Patterns":null},"_transition.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_transition.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_utilities.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_visually-hidden.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"utilities":{"Children":{"_api.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/utilities/_api.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"vendor":{"Children":{"_rfs.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/vendor/_rfs.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"_accordion.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_accordion.scss"},"Patterns":null},"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_alert.scss"},"Patterns":null},"_badge.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_badge.scss"},"Patterns":null},"_breadcrumb.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_breadcrumb.scss"},"Patterns":null},"_button-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_button-group.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_buttons.scss"},"Patterns":null},"_card.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_card.scss"},"Patterns":null},"_carousel.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_carousel.scss"},"Patterns":null},"_close.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_close.scss"},"Patterns":null},"_containers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_containers.scss"},"Patterns":null},"_dropdown.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_dropdown.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_forms.scss"},"Patterns":null},"_functions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_functions.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_grid.scss"},"Patterns":null},"_helpers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_helpers.scss"},"Patterns":null},"_images.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_images.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_list-group.scss"},"Patterns":null},"_maps.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_maps.scss"},"Patterns":null},"_mixins.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_mixins.scss"},"Patterns":null},"_modal.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_modal.scss"},"Patterns":null},"_nav.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_nav.scss"},"Patterns":null},"_navbar.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_navbar.scss"},"Patterns":null},"_offcanvas.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_offcanvas.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_pagination.scss"},"Patterns":null},"_placeholders.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_placeholders.scss"},"Patterns":null},"_popover.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_popover.scss"},"Patterns":null},"_progress.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_progress.scss"},"Patterns":null},"_reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_reboot.scss"},"Patterns":null},"_root.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_root.scss"},"Patterns":null},"_spinners.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_spinners.scss"},"Patterns":null},"_tables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tables.scss"},"Patterns":null},"_toasts.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_toasts.scss"},"Patterns":null},"_tooltip.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tooltip.scss"},"Patterns":null},"_transitions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_transitions.scss"},"Patterns":null},"_type.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_type.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_utilities.scss"},"Patterns":null},"_variables-dark.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables-dark.scss"},"Patterns":null},"_variables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables.scss"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Images":{"Children":{"bethanys-pie-shop-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logomark.png"},"Patterns":null},"bethanys-pie-shop-logo_horiz-white.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logo_horiz-white.png"},"Patterns":null},"carousel1.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel1.jpg"},"Patterns":null},"carousel2.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel2.jpg"},"Patterns":null},"carousel3.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel3.jpg"},"Patterns":null},"contact":{"Children":{"contact.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/contact/contact.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null},"scss":{"Children":{"bootstrap-grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-grid.scss"},"Patterns":null},"bootstrap-reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-reboot.scss"},"Patterns":null},"bootstrap-utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-utilities.scss"},"Patterns":null},"bootstrap.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap.scss"},"Patterns":null},"forms":{"Children":{"_floating-labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_floating-labels.scss"},"Patterns":null},"_form-check.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-check.scss"},"Patterns":null},"_form-control.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-control.scss"},"Patterns":null},"_form-range.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-range.scss"},"Patterns":null},"_form-select.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-select.scss"},"Patterns":null},"_form-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-text.scss"},"Patterns":null},"_input-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_input-group.scss"},"Patterns":null},"_labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_labels.scss"},"Patterns":null},"_validation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_validation.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"helpers":{"Children":{"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_clearfix.scss"},"Patterns":null},"_color-bg.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_color-bg.scss"},"Patterns":null},"_colored-links.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_colored-links.scss"},"Patterns":null},"_focus-ring.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_focus-ring.scss"},"Patterns":null},"_icon-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_icon-link.scss"},"Patterns":null},"_position.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_position.scss"},"Patterns":null},"_ratio.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_ratio.scss"},"Patterns":null},"_stacks.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stacks.scss"},"Patterns":null},"_stretched-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stretched-link.scss"},"Patterns":null},"_text-truncation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_text-truncation.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_visually-hidden.scss"},"Patterns":null},"_vr.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_vr.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"mixins":{"Children":{"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_alert.scss"},"Patterns":null},"_backdrop.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_backdrop.scss"},"Patterns":null},"_banner.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_banner.scss"},"Patterns":null},"_border-radius.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_border-radius.scss"},"Patterns":null},"_box-shadow.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_box-shadow.scss"},"Patterns":null},"_breakpoints.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_breakpoints.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_buttons.scss"},"Patterns":null},"_caret.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_caret.scss"},"Patterns":null},"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_clearfix.scss"},"Patterns":null},"_color-mode.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-mode.scss"},"Patterns":null},"_color-scheme.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-scheme.scss"},"Patterns":null},"_container.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_container.scss"},"Patterns":null},"_deprecate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_deprecate.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_forms.scss"},"Patterns":null},"_gradients.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_gradients.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_grid.scss"},"Patterns":null},"_image.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_image.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_list-group.scss"},"Patterns":null},"_lists.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_lists.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_pagination.scss"},"Patterns":null},"_reset-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_reset-text.scss"},"Patterns":null},"_resize.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_resize.scss"},"Patterns":null},"_table-variants.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_table-variants.scss"},"Patterns":null},"_text-truncate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_text-truncate.scss"},"Patterns":null},"_transition.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_transition.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_utilities.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_visually-hidden.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"utilities":{"Children":{"_api.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/utilities/_api.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"vendor":{"Children":{"_rfs.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/vendor/_rfs.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"_accordion.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_accordion.scss"},"Patterns":null},"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_alert.scss"},"Patterns":null},"_badge.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_badge.scss"},"Patterns":null},"_breadcrumb.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_breadcrumb.scss"},"Patterns":null},"_button-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_button-group.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_buttons.scss"},"Patterns":null},"_card.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_card.scss"},"Patterns":null},"_carousel.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_carousel.scss"},"Patterns":null},"_close.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_close.scss"},"Patterns":null},"_containers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_containers.scss"},"Patterns":null},"_dropdown.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_dropdown.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_forms.scss"},"Patterns":null},"_functions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_functions.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_grid.scss"},"Patterns":null},"_helpers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_helpers.scss"},"Patterns":null},"_images.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_images.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_list-group.scss"},"Patterns":null},"_maps.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_maps.scss"},"Patterns":null},"_mixins.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_mixins.scss"},"Patterns":null},"_modal.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_modal.scss"},"Patterns":null},"_nav.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_nav.scss"},"Patterns":null},"_navbar.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_navbar.scss"},"Patterns":null},"_offcanvas.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_offcanvas.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_pagination.scss"},"Patterns":null},"_placeholders.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_placeholders.scss"},"Patterns":null},"_popover.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_popover.scss"},"Patterns":null},"_progress.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_progress.scss"},"Patterns":null},"_reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_reboot.scss"},"Patterns":null},"_root.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_root.scss"},"Patterns":null},"_spinners.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_spinners.scss"},"Patterns":null},"_tables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tables.scss"},"Patterns":null},"_toasts.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_toasts.scss"},"Patterns":null},"_tooltip.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tooltip.scss"},"Patterns":null},"_transitions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_transitions.scss"},"Patterns":null},"_type.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_type.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_utilities.scss"},"Patterns":null},"_variables-dark.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables-dark.scss"},"Patterns":null},"_variables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables.scss"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validate":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/additional-methods.min.js"},"Patterns":null},"jquery-validation-sri.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/jquery-validation-sri.json"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/jquery.validate.min.js"},"Patterns":null},"localization":{"Children":{"messages_ar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ar.js"},"Patterns":null},"messages_ar.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ar.min.js"},"Patterns":null},"messages_az.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_az.js"},"Patterns":null},"messages_az.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_az.min.js"},"Patterns":null},"messages_bg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bg.js"},"Patterns":null},"messages_bg.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bg.min.js"},"Patterns":null},"messages_bn_BD.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bn_BD.js"},"Patterns":null},"messages_bn_BD.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bn_BD.min.js"},"Patterns":null},"messages_ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ca.js"},"Patterns":null},"messages_ca.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ca.min.js"},"Patterns":null},"messages_cs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_cs.js"},"Patterns":null},"messages_cs.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_cs.min.js"},"Patterns":null},"messages_da.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_da.js"},"Patterns":null},"messages_da.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_da.min.js"},"Patterns":null},"messages_de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_de.js"},"Patterns":null},"messages_de.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_de.min.js"},"Patterns":null},"messages_el.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_el.js"},"Patterns":null},"messages_el.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_el.min.js"},"Patterns":null},"messages_es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es.js"},"Patterns":null},"messages_es.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es.min.js"},"Patterns":null},"messages_es_AR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_AR.js"},"Patterns":null},"messages_es_AR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_AR.min.js"},"Patterns":null},"messages_es_PE.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_PE.js"},"Patterns":null},"messages_es_PE.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_PE.min.js"},"Patterns":null},"messages_et.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_et.js"},"Patterns":null},"messages_et.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_et.min.js"},"Patterns":null},"messages_eu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_eu.js"},"Patterns":null},"messages_eu.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_eu.min.js"},"Patterns":null},"messages_fa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fa.js"},"Patterns":null},"messages_fa.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fa.min.js"},"Patterns":null},"messages_fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fi.js"},"Patterns":null},"messages_fi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fi.min.js"},"Patterns":null},"messages_fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fr.js"},"Patterns":null},"messages_fr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fr.min.js"},"Patterns":null},"messages_ge.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ge.js"},"Patterns":null},"messages_ge.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ge.min.js"},"Patterns":null},"messages_gl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_gl.js"},"Patterns":null},"messages_gl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_gl.min.js"},"Patterns":null},"messages_he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_he.js"},"Patterns":null},"messages_he.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_he.min.js"},"Patterns":null},"messages_hi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hi.js"},"Patterns":null},"messages_hi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hi.min.js"},"Patterns":null},"messages_hr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hr.js"},"Patterns":null},"messages_hr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hr.min.js"},"Patterns":null},"messages_hu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hu.js"},"Patterns":null},"messages_hu.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hu.min.js"},"Patterns":null},"messages_hy_AM.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hy_AM.js"},"Patterns":null},"messages_hy_AM.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hy_AM.min.js"},"Patterns":null},"messages_id.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_id.js"},"Patterns":null},"messages_id.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_id.min.js"},"Patterns":null},"messages_is.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_is.js"},"Patterns":null},"messages_is.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_is.min.js"},"Patterns":null},"messages_it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_it.js"},"Patterns":null},"messages_it.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_it.min.js"},"Patterns":null},"messages_ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ja.js"},"Patterns":null},"messages_ja.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ja.min.js"},"Patterns":null},"messages_ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ka.js"},"Patterns":null},"messages_ka.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ka.min.js"},"Patterns":null},"messages_kk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_kk.js"},"Patterns":null},"messages_kk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_kk.min.js"},"Patterns":null},"messages_ko.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ko.js"},"Patterns":null},"messages_ko.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ko.min.js"},"Patterns":null},"messages_lt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lt.js"},"Patterns":null},"messages_lt.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lt.min.js"},"Patterns":null},"messages_lv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lv.js"},"Patterns":null},"messages_lv.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lv.min.js"},"Patterns":null},"messages_mk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_mk.js"},"Patterns":null},"messages_mk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_mk.min.js"},"Patterns":null},"messages_my.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_my.js"},"Patterns":null},"messages_my.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_my.min.js"},"Patterns":null},"messages_nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_nl.js"},"Patterns":null},"messages_nl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_nl.min.js"},"Patterns":null},"messages_no.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_no.js"},"Patterns":null},"messages_no.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_no.min.js"},"Patterns":null},"messages_pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pl.js"},"Patterns":null},"messages_pl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pl.min.js"},"Patterns":null},"messages_pt_BR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_BR.js"},"Patterns":null},"messages_pt_BR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_BR.min.js"},"Patterns":null},"messages_pt_PT.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_PT.js"},"Patterns":null},"messages_pt_PT.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_PT.min.js"},"Patterns":null},"messages_ro.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ro.js"},"Patterns":null},"messages_ro.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ro.min.js"},"Patterns":null},"messages_ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ru.js"},"Patterns":null},"messages_ru.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ru.min.js"},"Patterns":null},"messages_sd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sd.js"},"Patterns":null},"messages_sd.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sd.min.js"},"Patterns":null},"messages_si.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_si.js"},"Patterns":null},"messages_si.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_si.min.js"},"Patterns":null},"messages_sk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sk.js"},"Patterns":null},"messages_sk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sk.min.js"},"Patterns":null},"messages_sl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sl.js"},"Patterns":null},"messages_sl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sl.min.js"},"Patterns":null},"messages_sr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr.js"},"Patterns":null},"messages_sr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr.min.js"},"Patterns":null},"messages_sr_lat.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr_lat.js"},"Patterns":null},"messages_sr_lat.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr_lat.min.js"},"Patterns":null},"messages_sv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sv.js"},"Patterns":null},"messages_sv.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sv.min.js"},"Patterns":null},"messages_th.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_th.js"},"Patterns":null},"messages_th.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_th.min.js"},"Patterns":null},"messages_tj.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tj.js"},"Patterns":null},"messages_tj.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tj.min.js"},"Patterns":null},"messages_tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tr.js"},"Patterns":null},"messages_tr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tr.min.js"},"Patterns":null},"messages_uk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_uk.js"},"Patterns":null},"messages_uk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_uk.min.js"},"Patterns":null},"messages_ur.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ur.js"},"Patterns":null},"messages_ur.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ur.min.js"},"Patterns":null},"messages_vi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_vi.js"},"Patterns":null},"messages_vi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_vi.min.js"},"Patterns":null},"messages_zh.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh.js"},"Patterns":null},"messages_zh.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh.min.js"},"Patterns":null},"messages_zh_TW.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh_TW.js"},"Patterns":null},"messages_zh_TW.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh_TW.min.js"},"Patterns":null},"methods_de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_de.js"},"Patterns":null},"methods_de.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_de.min.js"},"Patterns":null},"methods_es_CL.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_es_CL.js"},"Patterns":null},"methods_es_CL.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_es_CL.min.js"},"Patterns":null},"methods_fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_fi.js"},"Patterns":null},"methods_fi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_fi.min.js"},"Patterns":null},"methods_it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_it.js"},"Patterns":null},"methods_it.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_it.min.js"},"Patterns":null},"methods_nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_nl.js"},"Patterns":null},"methods_nl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_nl.min.js"},"Patterns":null},"methods_pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_pt.js"},"Patterns":null},"methods_pt.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_pt.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/FakePieShop/bin/Debug/net6.0/libman.json b/FakePieShop/bin/Debug/net6.0/libman.json index a707758..903e62e 100644 --- a/FakePieShop/bin/Debug/net6.0/libman.json +++ b/FakePieShop/bin/Debug/net6.0/libman.json @@ -9,6 +9,14 @@ { "library": "jquery@3.7.1", "destination": "wwwroot/lib/jquery/" + }, + { + "library": "jquery-validate@1.20.0", + "destination": "wwwroot/lib/jquery-validate/" + }, + { + "library": "jquery-validation-unobtrusive@4.0.0", + "destination": "wwwroot/lib/jquery-validation-unobtrusive/" } ] } \ No newline at end of file diff --git a/FakePieShop/libman.json b/FakePieShop/libman.json index a707758..903e62e 100644 --- a/FakePieShop/libman.json +++ b/FakePieShop/libman.json @@ -9,6 +9,14 @@ { "library": "jquery@3.7.1", "destination": "wwwroot/lib/jquery/" + }, + { + "library": "jquery-validate@1.20.0", + "destination": "wwwroot/lib/jquery-validate/" + }, + { + "library": "jquery-validation-unobtrusive@4.0.0", + "destination": "wwwroot/lib/jquery-validation-unobtrusive/" } ] } \ No newline at end of file diff --git a/FakePieShop/obj/Debug/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig b/FakePieShop/obj/Debug/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig index e0d615e..6595611 100644 --- a/FakePieShop/obj/Debug/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig +++ b/FakePieShop/obj/Debug/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig @@ -16,6 +16,26 @@ build_property.GenerateRazorMetadataSourceChecksumAttributes = build_property.MSBuildProjectDirectory = C:\Users\mikay\source\repos\FakePieShop\FakePieShop build_property._RazorSourceGeneratorDebug = +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/CheckoutCompletePage.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2hlY2tvdXRDb21wbGV0ZVBhZ2UuY3NodG1s +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/CheckoutPage.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2hlY2tvdXRQYWdlLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/Shared/_PageLayout.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2hhcmVkXF9QYWdlTGF5b3V0LmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/_ViewImports.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdJbXBvcnRzLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/_ViewStart.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdTdGFydC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + [C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Views/Contact/Index.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcQ29udGFjdFxJbmRleC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = @@ -28,6 +48,10 @@ build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.TargetPath = Vmlld3NcT3JkZXJcQ2hlY2tvdXQuY3NodG1s build_metadata.AdditionalFiles.CssScope = +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Views/Order/CheckoutComplete.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcT3JkZXJcQ2hlY2tvdXRDb21wbGV0ZS5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + [C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Views/Pie/Details.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcUGllXERldGFpbHMuY3NodG1s build_metadata.AdditionalFiles.CssScope = diff --git a/FakePieShop/obj/Debug/net6.0/FakePieShop.dll b/FakePieShop/obj/Debug/net6.0/FakePieShop.dll index 67b55aafd8df7de7d7af15088248bd98348ea02c..5012c4a91ee859a2c5f7770d60721e39c1f7666b 100644 GIT binary patch literal 268800 zcmdRX2YejG_5XS$oh-?+y(gXIf^E6TK1=S#_POAOjg7&^#0F!7vFRni*>{itx>Za` z=q0oeTIiu90YWONge1Q-5|c&}N(u>(`b)3G{J-BfyE8kdT~7H$vibYtoj3bt=IwXi zdoyolcQvJ|Tp&2?&=dw(&&d2O}p48ZvT>S`?R^}o?>*F?vu?*N??&@5@e%}xe&t9%x_)jmtz z8ea+_y=g|3b2KQf>s6go=Qtzl-PE*osVS?o9jqx*Q~@Wj^S5%xSjSE1-(A)wC`-hZC%M^YW2kC&W1fL%;#rA!rkqy zN?{G@0qr{nvmTSM9`ixHVXoZNptRe*a|r7(3F|Sh>SgzbR9az9K<5T@UO;mJogdHz z0bLl-MFE8qh@8a%T|!EGxy~_x9<^zCEtr;S8JmGXJM6QU)Z#R2Nh6k@;U{(NdhcT?CzyG`|el`46)Qy$40SkCdeO z16gz}i&jVxZ!OiuG>>tue#*JogM`mpO?5HNuOfeYcD3+%>!~iL`Gd({on0e*sv_0J zG!JK`vmYvaswUONG{2VoVcB)Ur>at2O!J2!37nm}tAdXBudV%&Nmp3DPL;*@x+tor zuZxnz*8?F-(Oju1zaH7J!x$Ci509{odh&0Hu#I-|8zO9@oIJ){E!*fOe?)|BRFgk4 z!Zw=8Zz5au(eFYZ81c|Yee}^W4Z4$39lhzK)K70ZDHT?!leQ068f;8gweK9x&den2 z%*+R!euVP6rs{Nc`_2)p$Rw=Dd{A+uE8f>sldfssIg%BbgcX?&D(>fsJ2s`#srH@w zu_BYOBJ)ATQLgxBQ*FAoedj1vWD-_nKB$PX<^bGt)4=q=_MM|ykx5vQ`Jm#MI#*n{ zsV-gDzHp*Bao%>msK(4$GO(*qT& zVW46y3{3RJGjx8D{~w_8RJ&1_~SU`j|-0kCpCX9(!eW; zB-O=K#lTrCQWF@WONn|^43x;JVjvNxx|pgM_!@35a8KSus*9rDiW>^A|Vx+>S8L95RvmVNbY#&5-zt16IMu~857UN`Q;h*Lp+Np? zTmI5L!>v9jN}hrGVc0Wjj_HG<+@5_<6x%a)ZYP$Wu~QV9sDPtP-phETaW>BHq_GVC_ zf_pQlP~(*bm3G8hnxI#)mPYAStfiTH6>Dj@Ud39PvUjnT*6m%arNJx4+V(LGsyj6` zq#N3IwqrQDl1UhqnGfUlAXmCp)1dUA_MH=1lSx>U`Lg((2Lg`dI|8~hpoM@UEZ28@ zSP#Cej=`6;G5E4F2VYj^;478I7pt5rK(VSsJfDQCGM;y*Fg=H>VsN0Cl%y)2Zx4n| z%1sFt70*`(@thY*bum@(d`2)}^1`VurZQk+kXeqr+eIKLNoBN*#`*Jri~rg-{Nj6G zwZ<5Niiz{Y6f?#Mm{}+bN2I05y9&$t2-^TsV@%jrp96+^>8lr3J3B_|u1XZW>8ga) zo32Wnz3Hk{VsE-CRa>#Es)@olH;X4O^-jm}LB?&p%9ka2)onh!wz^|+SWwmD9KKqu zbXDzS5f>VutKvx4N!6#^>^TtYZyVrLBU&QOzYXWC)HyNAz-VYQs>&GM$D(oj)YggJ zTanq58UgXeb0MpJ7fZ6$W%aY?qs+QQS2?3p&cF>@O;USO`|&c};J3DBYa*A}1y)0C z_5!x3&0Z)Ze-TLbVkCnGPN{Qhv+pDu^j%V%y+o1A2VgQ;+nm1?r%neHKUp&HF+MlQ zfexbnMv4Bim!Z%<4tJPx{o_e8{&tcQd1)t`0w{HoMK_l50iC!Sa;x|lshR^uHe^T! z3|vvwkPH~Go?=J_jLwiD892q25Z*3>Q%(LVl}GjQ;>hi9Fz`6FfZ8zJYn6GPGo1Xv_!|Lo#4sE~pri0pqBU zAsH}WaaBVyq1D%c3zHHu2*ra?C+b?j7-^nvO<@fSyr-=C4UC9u&1o#AeQV`i;@XQqF%R(CE||@%1TzVWFy-Y zkOaPUFqtJXuQN;xFM*6Zz>G>iM9X;8R6i8Vj&MBiX!FA(HoulucKvsgWc+JLO60-j z^ z2N@XqF`o0pmeEWZTO%^=U@O;uA4$f)ouot_WME8%44&9BGL*3~BI5?Oa{U`gGXC`> zCGsExV<}|t#Fo)Q8D~Ufe2}eN|3f4h{{ti?@*o3a0A%n)$v_{#BM#LEBm>6LAwx1? z91}7m1IE^nAsH}^4H=SQ)S)mCiU46l5LO3aCEaUGtZ3zZ5t0&l zxDSjSxDTG_`@m{R-G^iVYJ13#3>e3S49S3Te8`Xt7+B6I8Is|BP#6eBfUqG5tAntT zbstvzJRPOIjGwHEF_NTgj2uRtye*=Wk5LP*|8bIx|51_>dC&>^7IeZBt&=k$QR1g$ zaD!)s49S3z4;hjHV@Jr43>cUKD;bgr$H-H`g$f86gyKOc6ojHcC;)`bw3hg6XblHQ z{8J<0=gYjdq-l0p% z=XkqVA|ZE&G0FvGmQVaHBr|s6cM(cxLlrMaQt!JWdVh+VcKt7sWc)9Xl*ohL5!0Y| zo+!PCGWMg4_eW&>maSa>cO)7AHzXzUAOkTCGI*kG2Q?|%Nd|_vA!JAfj2lCSWWcy7 zWJm^#_k;||aBQY95Q+d{Ll9O6VI@84m>4sP_wi8VK7LQ+uKx#;jQ_tRCGv0|h^x2{ zp6L6y8B)auB?D0J4H=RF1AR@^kPH}b7R8VZ7`KHC$?!fX41^*;*bs!(L0HMnBIOLT z$2fNvN_*KaSrz?~q^w_#rcNG>=;SZdg6sd4B;)^?q(mNc(keRPiPp(IkSIEl3~un= zkRcf`?h6@`0ptFVAsH~Ej9|RYQA!HDW2cb|9iUOek5H@qOcbGA4iyG1#wHmn4 zj6x5frW%?qH_QjgloiDdU`AI153%G?Fbm%|)gJ~^;ov33jKJklT$_=8AFC7;!8&MzzZoNjYlS;^;ho3E9XJc*JXbE@aT?4_Mq6?P^mv-5b``PGP> zr_r*mKb<7wPbDdl2RrX4cIJt;^G^wkzAqUV?PnoFGGM$EG9&}W&qIb}!1zVTkW6Uj zAAt)a5;6$IgHR|4MS)NN2%A}U9y%au=kjML-$eEJXDHv&CFRdhcI%SzXDH9GB=#A~ zw^HlDI4EjMs?-)L+ka*{1r0A?>h|hRb4YOulS{|xz5!5 z6`9h@js-J1ulO}eI)EpP|HymAUq|#kiyC(Q*(4c%CP|4r=o{lD^v#pd{%Ri5Ng2P3 z$e6=cu0NL~lK)JcPnPC<25HL0BDxmE7!|3G)ya6RlqM z1y)60ASvq$Q>l}GM|6UBLDb1gl8k>KNr^n@1mg*G!V|5N8b}nKNCr2U3K^0Cqc&tn z28@9rLo#60g$&7reZc`2Dj;MKiU*-k5Q+k!01!6Qvo-dGEn#1f=P5gk%l-@cR4!ZI zL0)5t1cuv8^?#FDzS7?VCLB8S?P=8C-y-^3LXElpQj(0nn50A=^oOw&`s0c1m(wW& zUnJw*uX=a6hOJ!x5R#04FiD9#$iP?%89dQ8sK@<_4I~4FHiQhxfH5d!NCu3?kRcf` z28RsE&@U+rgd#xL5QNo1SV_+aj4o#IKB^-3v6jePe;rB2Ka`|I9_|BUFz$mV`aXt0 zs@#WU01ERA#gGgbUdWIP80nB988DhchGcjj6b3>OAZ!T2>L9EX-p8?S_AYib2OYeb z{Axb~qQ2? zovq%FijAH4Lx}tXl5^^SYoK!$a0%Y-!=U3SZs+`#!iWZE$8H3AH~S!}4!i0$`Bm}!AKZI;y4TR+%L2hD1BUmrt<@}@II(&)V zLIrZfl*~cFYkO!oi}&#`g6vyX$B|A?yaQ4lwKI@tM-Av=-x z`f(O@ERO&m#S7v(DS3`Q8@}Ook(a*;4R<33DfJhAfQw{5f#&t8-52pvSbWx>4JR0o zeFC}Gt8!wV)ZP53s56TI*lAs7w7$+^xS#!%50aU`h8F@O=0Y#M;e`OMGmD7Ose%OW z;i@;5{e0vmdMP^r*$Z!o48v?^7UN`qjAKs9*#&HKaNosx8FQ-qx4>J`Vct*)4Yj+U z?s=)y?(;%@WwC&)-%U~3&m)(8lF1h$7OB0PpKWz!G2C?y>U0Kn91l%@5f!9^sgCg_ zoJRV>`50`*!ZbnO;21N8r`3KNtq3<|srapA&=&W`@ddu=%oW>azYLi&E~pWt5kt}c zfHf$04eGdEloSp>%Lb5>3c0p_5C?q0-QRpY^ zLSG?}&bj~*l@h&u+~2tH{v-p&_>dtPFeZcy$$-%wG9tO@97e#-`jqs%EJo>0rMY>y5q8Gx6-c`Aa#wvMwE>wusYdux@mpxz zzKbPUbl}eXGdSnBC+u1L_=|!D4V?c!1EKlUn4!VfZN*=pxV=z62nyMatkd51H`Hip zX&F}hHZlD`n1$u6@NJbpoB8ibUf>j7N`vto*8aJw@ozGIB>C3-PXhX)DtoyJWzVZT zpW)@d&pd|m0Ll-W!3&^#y*36)O$HTu4dnpVPJpss3(8`k3=5#tv>GVa$7y9cEA$%5 znXH`vWzDd7D8mCNGly4zvXT{&puCfXQ3Ksdh7F}99~fx+2$aQWWkdjF`bd-q270_9 z#y|(NLK2kASQv$J9~lWy&e{)UF;GSZP?n8Cc>rZdO$?MHSRn~Y53O9p+6hpaN5@0i zFM#q0%L6E<#JTNrtdInyM-TcJYbQYY(U^EBqXH;TwN-+`3cZFhc5E_~-?1#lK%)aF zUm9niEKJ21=s8wMg3`l4ud{Z7R<0W#4`obUfMxmwgQXbfESp#%2}=*Zy`Hrbu*_{w zz)~Mzd5IMQZ>fs&me*OK*H|V`OvdsBmc^K8OhbU>q)7%#tc}iNg(NIJZ1f)1R(fd( z#(q7tU?~`nWl(_SDOPx+4*eV}Bw^`cqq@l&OBjbVmOEG$rp-O^O8F5^|_FM>3XX9ZAQ>rst$1Ft@9 z)^n=7sixEMYC1Zwc>IA>;H-I4I7O5U7}<~^889Y?49S4e5i%qLMrX*73>Z^FhGf8) z8ZsmU#XVThGf846fz_O#sMKiGGHtY8Il2GNyv~47)wKjWVT@O#S##nhiIY? z8<{5?`6uYAd7cwSQ8Y#hJyBi`M=uOKl6m^(fpH9&a>oviJZo&{9T}R`4=Dr zJ9P}mzKG1!2VWeL9$W(888kC8Il2GRmhMG7^_2uWWYE$WJm^#H6cSXU>p)M zBm>5wAwx1?tPL5G0b^arkj&|UuMswkOkQYY)LkFel?)h%hYZO?AKe_r61DDr7j(2h zt-GP*PW5LTUjC<0Z1^V~KSLhRgRnYB@t}!?XE4APe-7sP4XLSB*pDMs@TTJ#&o87+ z^Th1S$lz~~_OzUWCp+?oYJ*Z!-Off;Z(#NnlsmP>U%`ZMjaO*?rfQ6O3RBAYBQPxl zrsB}xdB>4hpyK%|KDFj!52DY%8?AN&Qt<3&3<2;V6CQie*UBC;#Xkxuh0WEY5MISR z3W;kXk4I{E|Gno0+}+Tg!lHz|+_R3f&b|te;WIBhVZnO7Gm9Xkp0FsJoR0fnBsQta z{swaDQ;1D?mO9@l{u8I|ZkE#X|3KojSLOdAv^D=XQvBth*3ZEFuW+%6PG=JuNq=la zv{Cg!J*r-#u6ru3dqDKMEe*JG6&}wn!{ykYTlctls4_Yf$0sMPo0ULSp~2~F4n@;M zsr;`6LdcWL)dn$+e?O1s1^indJa5jviu&yfJ`cu3H*yydE02#@`M)tjx&AQ#c1A8! z!I>hh(Q`VpaMjK%?A6&`pZz87!AZ%}GU_ztT#egVBKK$P61h}=-Vq+p(-l(r-@*iz z0i^Ha56uQR&eCLTQ$uaz!EIk?8&7z}+sm{ay-Zx!WsE56&Z*sW#xmya^?anvC;q#C zha^(^zdZdtlF)KM0zdD}!tpw@7;O;0oLbJa-VzR(k^y5w$dC*e8$*U=5G8sNVL3}<$soP zmNe(#Pn{F13Tr9rXuEEPb^j`LS<>8nj9uQs^1n$rOPcdbm8?yWB?1dRa?LHx&H2Bh z*2Ip2qb}5({|C?29Rw$EBivuLgOIKMRTZwMoX3#l|B32_&mq^g3x!vHmZ5;WiB+wq zw`TE%lEVIt^6srR#8yIl4dv~-Sd#y@syb%|svc`s9cHSs#HzZ@t~%UQWl3070BpCb zjxbeOqN?&8$Q~f!18drpW2OA7Dx5%M$A>bGLuOBE6lJ_FH^GwT?i1|t(JXfc@FrQ( zoX5Kw+Vm305`l%!AQ!R2V%UKf3RO?N&qn_ZF#KQiexeO&jJa)=gc=gPpJZ2UGgVm< zR{bg!ak5=?tf|V9u&PKs#jZNeRAot6RivJ3R~>JvvLvi3*2Ew3sotY3F~L-2iK=R> zNn3t1P$N|A&BQIdHI#5VGJ8^!C}DuuiY3k6_!B2}1y!D9xhv%?Y0fWKwj4uQXWDfq zvu>5tWl3}QS$25`%d4fFCC&W1clyPA$SP1^;WQ-1FRBXX>5?*!Vb5g?-E(TFY$C1F+3>$!H-{Y_PtsH#z4uXg@Ro1Y(E@H}Mpq~@6mvc$sHWmnCasw@esipooN z)%m6>OTwz6a^J4Hz*J>PSXETsZC71rs^!e z7uZ!7o2o1ctBTDpw5u*LRap{N6`NmVS6ynVvP4y-&1*1qRS0TZtJRPi{F2Dete!H`*Q^mCF;ocL7xM^Osj>Eg+NgR#&n zt^~&VRF!`T06M8Il57g_OikG`zZ0^%-x=QB#mMYQ9mu=GJQZ=0CEO~hv!Rfg zu(G@;fa4=4DuL9mkRlbOd;i3)iiW?zu5I$W=#j9;I+CXhv zK-Aw#VQ%W+Mk$ZX@MSmi`eipyf?__IDV~JHG7MzUj#!pD&<17kItE)67L-GRE2Q!_ zqd69^^4Hb!sZFqi`A=lL7cwUHkg?d!4#xfSQ-GrZK+PGexXyH-Wa1)QEYN*fXt7I? z*^^pBa|}V__FXK=u7XjZ#q4T20cY&+U6D=U$0*^vXUaxh$|g6|AM;v&JPC?#i|8+V zFl5WUPb&_`*KWJEQY<>lWa%uUtFpgFZNunx@O*3=FX91bVG=fewK21Y%6B#2Sek`k}QW zPt=-0hvOKH10S(ESseJ3h98IV;{-mq;J`uSI)~uEs?0e8#}*vhaGZ$aG#qE)DB?I5 zhmYez9GBp@634r7+=Sy+9CzZl5643|9>KxI)F*LZLE$`w<109x#=!>(&*FF<$4_y* zj04Xe9IX4Czu>^y!@-2y!Q{%p7~#Ni9N5T#Vw_Pp#^IQR0}sQUnKwV8{EEr53y^GEh~!Z8 zpWJtuJh=qP!Ap_MU5@0lOdiI_l$*U0N!uzU4=}kA9+Mlj21)&)NUlQyU&fGBUARZP zs$!@#yB1H53un*9H`;{~((Y4HSC+)5AhQRLxX|;5!)4odu_QkNSs(X+E=#F_5L~d6 zyX6MwU8Vx}rmfEJN1s=9g)uA-Lu(Fe7i#y%7jPm|H5rWxSHh(RwB*N>)$N8}tMhFU zE?ho(>HJuf<>5!%&?!3}bn1a_OMAU+XyVrTClmP~SM6*vAnj(+JvyBiTxiSfVqt?@ zBH5Dx`T=exXbD;Ek&6;`ej={~Z{@1$_7bX!9lUbPLRS_3%` zcodMP>Ubp83Q2IaKyL<6FhoTxL^J0n14_hrg*ni9INp`jEi})eOSB>FJ`JjfxWq)` z5-dq@3Fxwu8z)EY65u4)atTu{i$O1?s%1ALyBnP;c(D91pvZ&erW&ticNYf#$b+RP zFf8uArzbCb&g9kHO;7L4uVc~)Jwy#v_!MME!C~mBkMX;y1l}vZ<4$>@!G~#sr)-0# zw81Y$w+#%QiZ^)bja{#))~ii)KI~^3Vi~Tn479Nf)L33aU<|MfjK?ytPn_@T(0P*c z{Q+gIg?}UMKHYY{NyhnDlHh#sqE7DC9pilDTFz&x?H%Wv`UcJ?;HJepAL2-Foe$d* zhXx;^4PIv(yiOau0f8ehcwM}~>nb>3y;q;;eAr?!#4=K2!8Wllo*sf5G?sT@vJzlP z7=s)7-T5w^%aQLoq}^||oiA&gk0lAthj~^fw}_8%K5{MRGu8Hv^Gz>zzA^Lk$S2^i zNR1o$dLMDQQ)X!J{j|Xc*#^h{i9yW08k3m7;0VZZL3dCE=WFyD6P<5xdT@wkl*TgH z#xhuAaSfKi@mL1;iSw<5&XYzy6?UITjqWpS=bLPtk0lAtw-3VZeQ%<$J0v|MH27$3 z@FBLrhiHR)m_`TAHzeNRLn=7mP;cmz9gxACmQ4W`)!)2zYN7%`a! z{q{lR?X~;ug~*#pXSBr!X^UrUi)XaOoA6*EaKB8v#WNM$uf=OgbidYgs|M4k!L-_7 zS~Zw=;b~O>rZpZ+YoEAZ<=A`Ce7IlUcE2gc{aBLVe)}NyzW+@WdxxcmX^Rim79VC? ze3-WQ4VZ5R79SRG@nIF*Z@4!+(fvlGM`$oZG?)=Km=PLGtpPJ49?Xb7algvJcjyAR zAKrpQpSVml?#Ge@_uB`-x7Y5s7lQA|^hj;-q1xgjZHtf87SG_JQ{a9h<1Ie2g8S{~ z?U(3&qtc@^7*B&4WrG=|!CZ>xi~*QY@nA;vyZfo&dpq3^@BgCiH_f;oOA_2~9|YfC zyWd_2zN6ElwZ+rg;-hVgkJc8y2@n1Qi;s@C_~;7mH^v*2=zeYKHVvjpgK4wDv}rJP z225K#n6^G~zskY4VZ1{1zKalP?2nDH9S<#>G)fEgbTW_+KxU*+KYak?MA z8HlY>Q9O7QcChw)lj2i%+QFe(hd+ zqWeuuPt;({+qQ`|n28!pg8?%!9?ZmkcRv+;S1f}2oo%}x_Nofqk0lB2w-17EuibAi z1m8*NN!sG(b=xG{;*+$+hvQvJFyKszxA>$A?w9qliS9Q!Jz0Y>@7pHZU?yuYSK_T= z0A_MLn8|(Oe$T+U-uS8W$p^sw&avHZmT^CpB)H!`2)-YD69wOnbceRMdEwS!Tf9SC z{FY8_@s4a#*?zazuZ?D~NF9hGI>8aY{=9Sx2+u~ET#Yf^RrC`9B8gKEb72I!{H!acqrl+TC zFy@`xbQ{cc4d!ZmwHAPx9uH=Ezq_9bzPlE~{oZc7-~Pt^Sd!p=`ylxC+Wq!I@STyK zp)GD+y3MdHK0{mlwu#!}GvX~iqk{X*^kycy->md34Q7m92hFm<%+g?n7%;Qq!OZFt z_p2Oy8<)WS&b8eS8;XW=Kb9o8-#!SwkGzS3@9gw!ZSgj3@!7V;XKRa(!grg&fHOPZ z;PYg>G-w)h=mwZ-SgTYPQ>_nYU31f zx*t9%jz0Ip4(ws@Wl4hj?StU^@S7<3E=n)b7N4jszR0%tB5m_gfNg@g)`9Z>hI5(fyXCmuWDQHJD{Km}MHw4Z}5< zW$|E^^}GA2;QLLwpKrV00^@!xNpQb?5PW;>etRMKE>ADl7Vpp&Uv67`xwiP-t=i(t z<1N0tg8Lol9hm5TE7B`87;J!}{?^G`VS`zr!DI}W74cwJ^ojdb4!%b(hx>Kg?zhmm zA4?M4ZyyBT$KFK2cV&8|w)hln@s+m4S89uo$6q@J)2)^97GGJx{SNXDN_4+f=~Wuc zR1Id84Q7=Fa})mlG61tG9?YsfalgvJ_f@*zJ8bt`WZaJ>3GTNKf^V38>2 z!S|d4;eNYp_dCG2A4?M4ZyyBTUc2932)>7;578E%p)G!hZSh02#oLE!_d6us;)hgl zzeBx46WwoZdaVXCQ-fJ+gITM=+&n~sSsM>#ZJ)Sb2=!Tv$Vz6*%n`?Eq;Haw)nbui?6HTeusI7CA#1G^m+|uwg$7_2D4s+ z8E(L=j|a29Pu#C^@V$oaccJZmON{%mB*FdmLGbOh`|X9`dwBYAZSnoJ#SgbFez>;y zqz3JNhsRs|@Cxqt7Vj;I?zbVmL4%p2!ECU>Y|vnCsn=jO#Dm$;@9w99?|v)ceizy9 zx74^FOA_2~9|YfCyWd_2z8ljUwZ-RZi*K|ozENBJfq~lM8{;j$v4Z;@;T@6aen+N{ z)L`amFh|;8j?`dA8Zbx3gE_KK+^=%*eUR>VvF(1#jQg=9!Tt6@@O}JE6nretRMKZb@&^7GIz(zQwlq7H#o|sd95 ztHrSpgWYl*cy}b*_N6+e6(_(=cbx)(X8%FipAmmk$lu`fid(Q@V))y-w_wLa{AR+f zBpLs`Bqj3jo3w{xs~B~nev>x*jbH5l^>p6d63RWnjlG zuXtZX#xK~)^R1DSCVA>%SlS)LB^3HgD18O z3>sc>T|~y!Y~}jbkYxO;NJ`{E#wL-$6I%xCC5344&9BU@xz@DI()NY~}hllVtpxNJ`{E#ukym z6I%xC^=uEi!mw%YePS;`WG)JK4(h?;^?g?;|OZ2N}nR z44&9BU@xzDLPW+rY~}j*l4Sh5NlN5F##WKR6I%xCt$f8UH?#5_ynu ztjOSrEd%!Qil;?nJjhnA{}4&We}JS!9%O7289cFNz+PT4ACd70Te<$DBpLrhBqj17 zW4p-Ui7f;6@`{Csj1RMw>pxDC@gE~8kp~&ai430DGGH&ScuqvdN7>5tKSq-AKSEL> z4>FDy89cFNz+PVQ+=z@%u$Ak7k|g7QoTNk^WSk%}cw)Ds%Jn}@lJTD) zDUk;mCyET7*fL-*uh<=t@maQV{m+qP{Lhe-$b*cNLwldj^?ECNg+p%YePS;0 zM&h@45P7&YFZTYu1e1*V)Rckv_4n3kwVn03!!Vo6eFq8VbeEy9u<77%rlS}tRr|W$ zTEngEwxWjO?n$9Xs;}CjQ)|izn(Y8GAAb%WoCiC(vO*WR;pTOb7CYGjJJ`mwAUE1V zM08IlcP93kJG%?JtLA5^E$QSE+`&|p&o1ZAV5?y7O{qHz3aBcUoR)Y z7IT+^rn%>90l1wPCP9;K7Yni9AW3A;SGF{JzG{GRd%l`Nv;SAwp09!fd%jvgxaX?^ zq9(>Hna--PYLVl z5SC=rKJCPXvBoPt9KrQ_UfcEmL{jDdfu!31BT2^pUy>4Q0N2@qizgLvMLIqEJooj+ z_=G-x4NzgfZ=5^OuPj0afqFPvaE!#!hNB%v2M+Wnr*l@0TW9C)Vgh|(M{BI}b5B$w zS%wErxyw^XJX|HW1CKv*e@6npe>bjFcr`MBkfGR|C#4D(9Kr$Q8l>G2tv-*v6PZ1! zjn+q4qhiK!(t(~bfbo1*- z(9N#}m2UnvAaGu|ANT8au@K#yB+|{<(sXkTC9a#B!o+SaIMB^4AnfJ}$S4hj-8>G7 z>E^te(xd1`0SdNuHf3Tc)y<7|3nLCSQK77EVAL#Xbl;6j$kxuvs3#bsvZSw!dSI`O z+EkOSQI8W=y8J_KrOg^!n>AXS--1^wvtlTV)n-ljXv3IJM$1VUAFyS2Q_4%p?xCjG zShhA@8)D(#aVsokE>^3t9B8oA#$&0~Pd1E2`opr1)3W#2mOar}mL+{<*%iIFY-AT| z{*AQK=0MxB+=W{8lfPi(3M`9VsN?!cunTpM4iZ|n&Qsg5$62;MT_0MOe_Sfnh=NTMkj%_B5BWJk$4V&P1Y_5lX`I`nef)*aF)mK-)O2bmO zbOTcBS7{78xOVuPG|eO9ev<~X#|HVi7|c;`;`RRHIV%2;%E`UX+syXTx8#qV3XFV6Wth^_MC3pqy=nV3kZh3p*U0=#N2E9JpL*0fqB!%m&##SRM7>7OuT8P> zo3i<}!cykIoL?&}m&p8D{08&uI4ov+u;n|y#ZTMl7wG@7iwEO+G z4No;TWJ!Vz&!-KS#oCbEUfQs1&aCv-VC#)@W~H|)WX>#lOBlWNoY@%3vSB!9HpRw< zWpieQrP0R1IkUp@y3Cmc3+BvmHZ*hQ|Hg(pk4ml zG|g-f_0lb8q7qmfwVPZ&PgirhM+Lzzns) zaPF`FWUVg%8QeE-W}YtQXGFXvRrYR%CNyH|7c=$hd6;Ck=l^$O){ z0+za^JIb$T*ooJhRy+C$3gD18OyqEHdACJfwP$e>4l8o<=l*oe& zUu5vamVs9@Uh#>DjB2)W{Th;tUqwGz%22X4mcvImOKNFEr%T}&GkR;=$NJ`{E z#ydm?Piz@@tKbzsACXbdR<7SblJV_g9_zpd-~?C)BChv%SJBy=dk*Z}HVi_!i}_9ha5)}5 zgf@j`Tf^R`7%EjOy7N%hQn(1I;_gYE5jVV3PSET^0QL`;piHjJ7*tUgxnWS2GBvT% z)e_fJyfv(+9wxyXg$F@pJ#`VT<-CAb!?+a|A|jJS)>CY0)>Gz6(UCP+Pnkk9u9mH* z1P9hr77(td6p)P?2-j0_NX&YQR}0j_b*=SA!Ibq_PqC;l_}FBF4MSN=VI0!XU}sh^ z*u^v$K4Xf)36PQ7JA;+4W|XFCY)x@Bqcqha(U2PAY9>xodNsp4j!ZklXUgH*0#j_P zR<@c^Sjyaos~LqwJ%|!4Sk1&?F{>F~?f+`EN3_)tYcC@T0Fr zpGCdD%5gA!^dioE0C*YaJ_H(l->l*sOWo23ky>%iuoL5s8HMa;UylUWdyLn63OAh1 z@u5oai_9!_OOKXc&#)7(H?3G?ocl1E#>6>1MDmJHMaI)cj>4`#m?Yy5A}NuF@${WC zp7O*VlQA*!ieHY%7|K?z?~!EuAtWX8Amd#kgD3H0^3N~^V||G+8Gk7B24ixD!!c%G zPVO>TGdEO*?yircP2oB1EUqwAn!OBtxp3AtKBj&f((cDmSC+oi%%0TQX4%9NwQM>? zx;CW-LgY;_-pvQ+U8X`8xnYNA3n}Y9k=)=-u;HFm&OOx@nK+tLDHzQ^L4wizW1upc zUm~M9zCnP)vJj&=Nn|u=1KMsr?G zX;(C6jpn9I%%|QD8=V&hY&WBMS>3{k$8j{@fwcQ0xJ1O%=NMD7B*D~|a%@M$j)Dtt zk{dO3cD{Q2NeG31;fmqJT^O~;+l;`K7NCuPnvoy56uJ4+@Rv%kCPj#13X>ow3gA>! z&_C}h)hMF-WHvU>bKhDfMwQPtfV&cXuRJg*qu1C*XJArBSAmJfW?+glx(-bGrY!f< zkJ(JIalo>`q_C9r1O_IBMFl3og1{7q#RMi^Eu!cD$N}eR+lGNjfJw)+1C!zFz!Z&3 zAHV?iI1aP^npQlY z@rvJw$Y^0J*KZ}s_!*KCd603r$lyu*xV-|;=dgysxczAWj+sjjLLlxOk{iJx8_P8( zHy$%S`1fZ~JrZ6OL#5gGaL7ImDsC<8MB4oX>PkPRQud^}Oh0Cc>c?1Qz?zgA2)Tm& z7$GV+?=ls-$PN23TL_~Y%cW=sTBy2;l(VfW4?2)=5fq}r69;c<27~vLBpAFu11f{} zl|bmcPy_3`T`a`lO%fTr+0qQ&8j96>f~mMEG<~OR@D>~xye%LcycLj=4Bjl{;2np= z4Bot&(zEE*>N}=P45#Ybsj6NRQ>>tj-P{cCpByuzZ)Gc-;H84 zb8>%Vf{%RIj8*cBS^4vpvHCs4(G}Z&ViPdKXN#aa|1n` z%XMj4%OUk}Ziqd zQ1gPT{{8yvFAh(&Om9})DT9L2AM>-v=h1@R7`R{>hEmgjFfzzJO0TyggW(5}VcGuB zJnr}{NUp`fIq`6uhyQAk8I18ZgTus&=(=K{GaM^pJP*Qn`~_gbc)S>mP@mstIzw;+JOfu4$_bZT`yAsLatC0MV$%hX{vS1DL>~?(-4pg{jR_M-(q0%fYnkt+< zn=|e0aQN>3L0uV9zl_YD)H}_H$`UoAUM%5~QUf8lOs9Xj=60D1UF3!lnk|GeEDu9- zX)YYrF4XSNVNut}k4A+n;Zg(i*r@AvcT;9tM8Z4mODD!}_9VpbFOeXAKLslB`zndw z4?$&a7Yh-;Nh0x^ElvE^P^{rHh~K8r43=f_TW}zLTR<4U6_BwS2;+Ag5);39wTK?A z_-)F>%qo5x+Z5(N=ix%9tZqU50Q|4%5?{e3A};YR;}R@MaEU|d5?9!E32>5YxrC{f zeLvh$Rm(1ifp?>)xY-9W=oKEGg9j>~K(49AtJ#f@M^jmhKJ{nAfd^!tK(6(w9J1{# zUd`Rvt8w-GHB34qZX%BMDaeTe!7yXuueM$HJ9_P7O{sJ${ML`(3M=ELY~!Z1aaW*s zDlcnF#Tz%JKK<%pRSb&qt#GYZE8iVzu#q2okGzxTx55g`KpP9+$ty?u1Y$#g1@GkJ z94&Y!A9U3okXnp(1FLa7>EUS6Js`>*?GLaA9_X9`NBgSnXqOmAV@ZOe9Y#k(tcv!6 z04KSYqnT=b?`Xk(585b&h@%ORY4MJ>tM`spm#zyPjh`+n>9WGoU}NEj1Ip13GguPF*5Jc|esnao+rxlU;b>p89qm%%Xe>!^ zG|ZnmecVorqmgSlnyJ?JjyB!&ISI6dG4u3@CP459NO2=t@1thZp!A^7(fB2`GVUPT zxP!ED3z&!mqX>d(+$b`rf}=HhjfsvH`O24HQY$QjZ7lrK0Jn}c_{+;Q7JO+Chb8#Z z;JX^95o#e?w_ znE%q#D#y-|r@_;{VSC!;#?x4m;A#CFJA3VEdm(nF(`jwpdhKdy+q!9O-8-=03S2E6 zZ{2hSS8MW`5?!r1-K@bhXfVw-m}U*eGhmwI!8G@~tEuSu0A1~A+tskeiTdQNeHTj- zT&(bZbhtr|?D2GeST zY1LrvU!cLX#)E0?6IZJoKj)kdSNo>zYS?EdbTyVFxLQBQ&-cHH;^(mRFm2tz+PcGR z>kiY_{R&pdfvXLRx9+eCt~T5op6F^L(jzpOAsWmG8_Wm|W}yKyA|A|$K5@0m0rU%W zwQt$3hJBbqS7S+ntMzjL?X|1zg#bD-JyKhDsJ8A%+qxsQb+_VqX5eZgK-gE`57 zX^RKb)+er3IeAZQZf9b;oM!Uc%?m z@`|8oY`k^HR&cd(-nc|p8=oGp!DKX;@iv(88q7cOE-3&rJ|4{YK5@0m0ra#p;A-Et zT@CL&Lsw%-f~)m&0PVG_?S%k3Aw5A`w?$ibf^FRi+PeEq*Vdg7Z`}zMT&>+}Pjt13 z>4_Rls|GXC1~XBExn`OMGcg{_#C~@*6+r(=SNo3bYS`Q|bTyVFxLQ94&|bURUI?I* z(v!4x%`2%%wsj|I>pnI`TX#~tbthGDwXBy-bhXLp$r_A#CpFmyGg*U~V8Bd{2Q#@( zTrK*8aPd!YFFF&h_Fdc6t~0L2k_1=l=K%V_H&FoXNOx%KnwL@?wskwSbr0&$uGSH6 z-Hr;b*6DR7y4sZV6b;6_m6~FMnWDjba0iN2F&z$Fw^_p)l>kzov!wM+tqF`uEvrCSL^2h+G|(a3juUSdWN>Hc`-G^w(bmV z-5u@P)n>$7cSZ$Qo9WF=bhTOOSsKh3Jy)A$gPEnlyfi_BnH3LaR-d?94h8 z7Hcr`44B37U>5g@t5pu5$L@ryJ!iYxdyT8HB*E4CIe_-s)%HRFU6Nj+t((=>U1D2z ziMHleHC^p_ z+tqF{uEvrCSL^2h+G|(a3juU_dbzf4hqmr=+q%oOb${2Qt-Czly2~rL+JWAIiLSOH zy+VWO)L>TFU{+`_#~Cmy;=!!w6IZJoK+i3})n2e&?N;MzEJ<*+eh#3Iy@>+o%JfQY z-6`6-D{bqp)YiSIS-aZGc_*|5I|R_S8MA|)7D*WTX(g#?lAnRW?YJn6-W4YL!1C8gn*W?I*UY-CvAk*i0CZh?own{Q zZQXUYb=PU@E^pMXwl3bf>nga~VcubhuC_kCUW1vf!K}Bztk+;ZI!J?A9}i}IpSW7( z0Qv#C+D~m)d!KPNmL#}ZKL^lWyV_m|pogaq*Vf%%Tla9=x`%7)K3lJ?dw9Hc53k^A zZ}Hxe=xQ6%8#I_X8q5Y8%mxi+jRCVE9?XV*cQqA2=br;t``TX(Lu?nc|X8?|-M7^q!sW4v`YR&cc=ydx4_?a1_z8q7Qm=13dNks8d8 zYc-f7NrJ2Oa{zt(O%y;kr8jBo=CpM;+1A~ptvev4 zt-C4Sx|=Gv+ELz7iLSOey;*~qufc4#!EDxG&aTm5Hphe6+$XM9Ie>0>8(i(@wyWW1 ztHT#lEJ<*+eh#3$cD20_K)0l~XzMP}*4<)TcZ;?zeiS%d^lgc^?v@I!cC>eNqN^Q~ zK1PFCsKFd#gE>Zn!T#DIm}BC>9MkWvrUK|s=xV>PUF{y@YAi``wSEquy>_*|5J0!4 zw`%Jy($?K-TX(CrZYTD+3Z5@)jkoUB3a)mncWk1oZA)*{U=Gk=w%K5|X)t#<8qBtM zFx&dX)z+^Hw;;kMYumXmwEWq5HEj)16z0T=V%9{I;It| z+k0vkH?oS^e-qnbc*PeZduL|3Tc+zzCdv4dNJ`{k@62nlBZE4z_us@OL0<9q5g7}V zjDKZPXYcaW6GgN$2522X4m@GGzQ z^N5UTY~}jXNizOak`j54ajVGSi7n%D%6KIrVEYAmc8P!4q2s#wM@$T13V{Y~}i^NHYFPk`j54akt3e zi7f+TlUIB_BI97Ta{VK<50G8{k0?+{}7TAd603h z$l!@B17nj{#5THmEIf>@Tz@@D#$QKLA`ddK(HLyY6I%wxCa*X!BI7M=<@y^)GXCKt zCGsHSev!cwTL#7^uhCR=GI(Okz}Vy!+afYfXDio#D@n#bjif{#WPDI$@WhsZvB@irkH|Qa ztz7>sl8k=_Nr^nj_>jopiIQPv49X+Xc?CAMR5^O&93aISp`3UaTd0`Ta;C8VPyUvkBcJyRR zv!kcJt+*XMO<|T68Hc2)Y)4PQfgL?9Al%VY0a4Rw7IH_=I3#9APhL&Afmqer(bJUm z*wK?k5hufRx`xwf0VaC!YNFF=!w>f?#&);-hbLzab|i4{p?+j8Z9ISEj0PtSy{;C& z{|&Cnja+}ntN$Gito9S_{x#00xSfmJTvRRKm)CYQ@8+v|*~@d-Rp^A+sk612BToI@ z?X4|AF1rG{&8|eUixNak*FiXyoVrZ+uaxZRErk*I$z3D1H4v+Xt)j5i6vigfuIpe5 z7Q884ST}x!&!lSzUIt5QEpIcVBa32Pc!ftTK99?*kWJhcMut6_aFZ|mto$P5>Tr?f^PC-R7%&{UP8&vbr{|^GFtG`4 z%-n%6$225ga2!O3+tKniqi~<;p@KK4{GIa3cf3Jm{1r;7Aw8h*JbWqp7Tmw3>0jxV zFAf{T{zRj>rQaj9eznN3Lq~}IHpIiQ`G;}f6Fj{({Seote}tTvwJGMDUU5n!M!k(u z$@Sk(lJUQs^amicmSICe*@2n#=+BY+d1?bCwD9c6trRuwcr2WSvP>O zxhs^c7=iR}aCd6;`w?$NjqX38iEKqo#qCKwVjelMM8!&UuHY^LAy{>E`gdz?m#NT2 zZW#G^JHqHjNRP&_g{o6XIoqo8*%7W1&ie`X``49&{rL}DFVnpmf?#l<>Pm<7<-SSL6T>ntFQbqdHY zrSG$lu`UjYiFLf1vXZ*>iM(cu(QL#G)TYA5c9B@et^TR}z`10r|LY=K{nO>R)xWsj zj}dWXtACy;`Gvn~?+e4G+@q-24x5Ir`}zLRJ8t={II!!Y^A{ZW?pOa~JROTZh(}2Y z@ih8dng0YR#)Q{E3mM%vgWnKisayINQY#7>b^t1jLCqt3#-OGdF1E>coVz&2OplB) z=W$eV{qspO{<$P2@-W7HSjHHh#E&sA;e`zP0Akwf#BY9wk&3CtQHP^*Q0MI2bu}0X zhNC*}aR7eTu~1zKJ3a>ova%cL1VJG1}t{GhUM;va{kNSQGHI$4!sgH-lj2d9DI)QjzDQNa~ z4lo#pgYzy^p^MybfME+^bU#4uOn^GO3lpLI9OMFI(pHrR1B_|)pxtV2c`GR|ZRr^K+yKk-TTENI&jNu273@~|qfu3lk|Kdh?Z$LbuM>oeRbF^qRxo2H zw&95;L#~`!$OR!B$2U`Eg`GD47)XU zHdTAovVpNi8rfI2CS9YDtaQ24iXic7Y$!Dv%B}Qkfx;hciNg~7XiH$sKz(xa(b1Dg z0&~)<)#zy)v(N(DC}VQ;RGmlqij1Cjzh-_Yg`A?9uWSvZpxOTqok@NeM|Y=3F}Z$&?xe;5=@3;HU=D)^B+<@a-YHahv>Q`J|AFT> zMShuwo4+WBtF;}jRy$mW%p2%vP55P=IEM>f1HFNX&L7#bo_oJ2EOj=P zI*kRC-Ss#Zb*s}h=bp8zN5G?OTG}UujFTiA2@am(>WWz6y_eTILVx{vf9Od!; zg9vaR!7&1LI^Xo4Sra50o0 z7B<OElo|**2Qd6EYi^gR&_!-IOJNHs z>;4qE!O!d%?x$n9pDE`)1%|q?2s42hYwc)Yrt+|;8A5{K+XyO)nvVmm^TKTC#_eJu z7BwW1z|59rQKJD`V^i>xJf<*lQ6o68sIh=B@GBq>$qa#oT-3xNF^d{rEqd$Gux!f2 zs46TQOBDVD^M-S*vbuo-l&*pU)Z-Ge4pt8Eq;UY2^pyi(#OSpHe6GB1q63uwik;GY zjjeh9ik;FtUMvPKzzI>D=Jl`G88eH@@$^@IFDLx9Y*TE!AQCGXpA?odcjT|wDJ=J5 z<)Pe>u`&*e`4u~3J=FpF)(dK{h8Hy0UhoCu1uW?+FZg`9W$CWn@x#EA<#m(2Ao5E^ z+&4^VexU6I{G}qLc{NLs{)b;Giqm}XOGQ08Ug!mNUY*QR;=G_fT^~--xow!jQg36a z*I3jnMX=PzW2x8Q#{4&4a2;%{XDJPwr3f$?BfW;`EXDA{S&IFe>Dv&SPR3#8BgbOW zKNL|I~grq|5B1F|6L^2{v{+C z|6-C7Yao(hwu3j5JW-JpKle9dfYS(>cxK``#r@Gw>r)M#PHhKarEOR|C9I|pmSiYH z;lirdD=v=Ux{B9!{cB08{HsZ-{cA`v{*@#p)&Q2rh@EavrXd+c6Ny z-;rR{X~C5W&uf=Z43%c9Fgq+DsJ8ON12zXh*WW@Q|Y z)25E&#&of9+!Pzjmc?;}rOd?`#}$?X4Hm@lI4mZP8|(FlWuK&Fv$kblGL~gYUs-l{ z?=4#vo0T>P+LmQ(R@(fF%#EqVCdB4AZR*%;OlMg(jLoLlShg%SD=hUk7RF|U%^!vXgDg{@hrWC4FVtXL@hh$j|n13r(fX23wo_**>LBd~6x^*@Uq; z_}RW5Lti-S8srU>xUl_}>q^~Ud?Q+X9Y;=F8ockj%q9z#2=SK3GO61q`xR0gM@nBoW{PjF# z?@mlff-xGuo)@R%;Men_7qfcu5O0Wlf*xn@q3NN@-oX#7DKJBAFheyMHO&@-4~+*i zv`-9v>h)px#mhgB(`*4I(-O~%PO}X^m}W=c@qZ2PxSqi=LQVDX{kfSmj>KGbHTXC% zXB-9x;WNJxpoK?k_0`pvCM&LLb@>;4|OJ>IyPR#F~3 zbT_TOZ?_8GxS3W`9&M#MqOOoQ1ExtZ10GF+8Ss9fG6TjVH$3&CO5H9NV$>yx%z)X_ z%z(|6qP;M9>SYQ|G%cF}3l7YHEg+l$DF)vP054D&8Do! z446fQvu_GJfszo|US`0`W#-*#Tn4Wo`_^TiCEnmcrzq`B;WFj(Yh|k%+g6-kD_b?8 zGb*Ry{5sB7dVVeUXp9ub>hL+4DK>snHosO_${d*UYlYdkQCoU0LIlXLRHA|wgIwAxQxH|oBz%wG?f-Je#z?0bR zo62U=N^b*g8*(PC^mZ7A*1(3CNyq6;&!ml!qCLMUoJpHvW5cqUw8BzvW8q9%VR=es z(qco*q~oxdnY2+`&oz=Mi|_j{!$L_m{O~5)aLVnl;S}43uNWJ$B*BJwE79pc9cx2! zduhY6IkVDRgRM8tnU&tIkU6vHEn)Q5b7o^C%ZA~c*%TWamd%+JmPQ*3=gbPr>oR8+ zESNLL+0e|Hjh+5;8-5ZNO0uCEzu$I;8NV}oXZ-#FE&K){U&^DwTSoo93;9iDb8ls< z!M3e9_g1#rAaifA73SV?w$gKN;~19TgmZ6GZ2YEt?ybNKwZU-it-yTQ(E}0Y-f>{e z-21XzD&T61*6?$sPUx+WMGTyFxeS14Z-u+%M$FTb8)Cthz_@h2E5ckwxJ zWIYmo1Bfq6yyA+;v-6wzeBAZlOOo;5LsB9SPs=}xu~ePd@6_=HmRDRAk%2FmDC0II z;}(%Y9%SGpA!P8xmVvLsyyBXOj62xM_1{O5@oy(7kp~%{7a2UUW#A7jyyDu3jJw#% z_3tLh_;-?&$b*b0MFvl78TbgzE3S{oxR&O}>h1~sUoljw zrdj80Wr#i)H57MG%8MJ`DJN)lAprX?NKhs>SkXzA+%PB$Lrtu7wZ!!lZw>1yEVE@j zH4RkOQ(wZhoEKh@FvvngWRl2wiY?80%3LWrvIgrZQ)tH3vh|eUzX)t{F7ljibBe!=3D__kh zP1V?%;%Y`|O1_81m@r4U{yHKeyVbDy#c@4t;FQ#xcY6Uq7*4_~%yAX3>42@`H<*Kexh& z8T`4`^~m+SRNJK*tI?(~BY$qyZY76r}Z zIoUnVzr=ptNJ>wbmY9+P&{O3H&tyJ_{R-70uaXIe>ld8@K7 z<5|1#G2C&&r@SoB24BWAAKbV6f!@L`4O`H}wz5Bumj=HzSD@-mq%8Xoo}B<6!Y?4fnlJ|{AHrkCk4U*g7X2*5Q%RCY zq-0BsiNS~P8m0B_U4IB~ip{87_946=!H4h`6n+S=p!@<|(d}X(BS0LMAOcwG7T>a- zJrYS^3c9v>`)<6m@H1E;T)URl4ZdD)c))Z6+vI;_$zuvEIPprM%pA zyMJZ3>f!KGUfwEnc>VP{Z?|w0?ryKS{G(cx2`*1GJzSoxVqBie@BTG45gkSnJ3{$) z@yh>dZU5tU@yh>BlJ&UwAEJJo{{>M$fGfSunt_Dh#mDu9vhU&*mO2{?zl&E`@T@lM z3-~TR4vYCN-uUqUWA9Dis;av8@wLx|E8v8JID|5&Oe&%{A}W*SEDo8arG%!GrJ-5o z)j*u5G|kE^LA0c-w9K-sAk5U}ve``2O3U8r&9|(~{%bvZ!#NkV;`i3~^ZosQ>E|r= zv(~epz4ku)4ENk~?y3H^utNsgJmF*O=wr%zJoAJ265_cJ%3>N#D5sEg>*kj9uYoNE%ZpDMosL}h6YP?ys zhU?)!XhUYud7rdKgXxvk&BF+?dM!^fTd#9p+g&+*yynk4yxsCEL>$jrJI@E5*IatA zw9KCr{+r9U+Etu<>vLa;TArS4y-q-F_XW>=2*IZJ$>UplYJRzU$M>sy)KPaE( ztyvGrp9Zr^C8DqD|HfVM5?LajNBO%!}W{S7sR8#r{$LwF^7-1h{ zyXkW@#HFr|o1uL$ndF%J>(=vD#oX23W_-9! z&QgSY)}6v)jvE;44rxLR&Ioy%`&PBde)e~4>zd~(gCKuLDJqwJPEOQOTPqjgmbU)&Dh9|f%| z(M!CeR!pqyNH|(wq9eVc@~lC9;!kVzBp+*CxnFVj>eJZk<$b#Lqhn;Jznv-^rERlaqX71a}y};9kg4^b6vTaV3ZPS&z>cUF=0pQOl z<#uk%d$(C^f{BGmAjhB179 zyZBz`q$cwn(XARzo-BOXU&g$xV<#$NPH)3yGqK}=+J?zfBncN1i@5;_Nk068a25GH zn_wC}H=oLoBOkTh~o>nibsNw8O<@ibOE5@(VDXVD1<Yb$7A7=9e{d@O^vX9NM$D$)Qm^()oryOuc7odpR@A`|KIpIXg!Z^eHGR|W;XYv@&nO%K44k;qZfbD zuP9W0z|tRt{yL?dI;U~}eNGqplvm9UXRh3LbV>pLeM*1bFkLXGs=cdRW0i%!ZPk6F z$EorErg8eqK63f*_^+=S@Ry6Nrrye%njA;HKI=DS@i(qK?{Pnm`8ssL z0_QiCA;&&OfoCNJc{$(2J_#mD4NDk#p=n%ti%y!zu}SbJSj4ht0(T~B&z zpNA6k$CR)?rX>C`rI%3n8^>0;viFPOn}+4{@fG4d=X34UDsqi=*W{Q`(X}NNl&}CD zl!I7B@Xm^$8Jcq`l_!O=N-9nYF^j#=|M&yF{^!blKt#`f-J>$(Sg+?lZ>^jGUgxdn zKbt-8Xa35>rOk@OE1kMG`fRq+>2-=5#{K>0I?CUE9p(Sl&pV6l`M!x~O76M zBNNB_^NF5p=lOi{fA*;cP2p3GOMfKNpK$)3>r#L7=PvsPf$M{3Ue}6skoa0!U9LM-kL&tp` z&0Le^Ns73Nzm>OiT*qSh6+e|BSXEf6+INuf zxrscN)S3VC_f-6B5Z`gb_sf{uRRma`C2YNJkFnhqckNU>d*li@-?K+f{bf#l0hVWZ zRejrCefI<+u z&sEj8-PPAGb?OVSJY`k&ZFlwc%bofHEYI$$`nJ3J`g@%E0xZuG`>!g%}wQJ^=41y=~kHtum0w(i=VFA`mAx*xGt419Pt1ZtEKrUEUMj91Q z5?plNXvNS{#b=Xmf21(}s;kQHk?OJKyR&)BzTqal$M$>n%;drF9$WFo40McbB`x=3 zjICgPX{*pOe{XE1K_1&5a8pmJ;ln6VX-*VsZXSXV|GUSoSs^iPhh^K;*i++^kFN&%MVG+VFFmA1R0fr@qa z$Db>IcIpe@*F#p-x82p(|JA84!1A1}s&BiiuTT7-W99e=usn*b*ZA1(>g&6l`U3d1 zVpa8RclGt%PJIEEhaXt+&fj)dU!NazvByV%&Z@a6n&yUL3`U3bBOjY%5clGu8 zVH;atfaM9Ss&Biiug{O`*!lu2Pf%5T+g*MA22OnemM5gDzU{8Qej}&80RHLcs`|FO z`uh9}?)LZy;2#^Vs&Biiuiwn6FTnDIRn@oM)z^=3>I<+ukyZ6=clGsKIQ0cso|aYh zZFlwcqn-K!EDyg3*n9tAyQ{As=hPQqd0JJ~x82p(Z{yS#V0rlUb>8{g?&|CF+r8}h zDZuiytEz9itFNEv)E8iRI#kuS-PPCUZ)5HJ1z4WWRrPIm_4T_t^#$f7$>>ko433$Q$ctLoeC>gx}2>I<+uL#yiB z?&|9gcj^nUJeO3}x82p(ztpKO!19c&s&BiiuYb8yUx4KqRaM`1S6}}Mr@jEob7fV1 z+g*MAu}*yfmM5#KzU{8QezsFzfaMuiRo`}3U;k>Sz5vTJp{l;^uD*VbQ(u7Pxu&YV z?XJH5B&WUr%X3{-ecN4q{mD*!0hVV`CGoxyKijD)A`+cKx<)D9n3o*a(JE=?8l_-s z=6s>?mlPMiMkx*Qb+je&hp(f}sK9H z@y75MEtS`QD{1B$rC@93a-qHcdt)mN^4PADKRmX}_%Fuxh+}Le$YU#i9Ak@`6=Qq5 z)VF5JpIIxV96SrInYS^h99scqY=z`CwvY?fm63+m*q#&plVj_=M!A}sth@#%z`}2f zduI<;&`}SV?w!8ZJB~E<-7JeVk zOW$^1Sf40uSidyIKXE1hYVk6?LwrJfVnSlOuHx~fNo)i8cQBgICi3v#SB7zU*tFc7 z>nBVVMxRJU9r)qb=9dg3&xeWv+1LEyOZv)lxJwyNxt?*_q{&wang8)mIH^k;Zm8*B zhr!P(kwVzPMSggN_^}mwh@Yh$=|d#fY%n=Rt|zUd7AS-T{#C6%ZtJG<_^&&pVtrcKAveiQkNQ8E7(yqziYKI7Zc-EawcC5Kb?A89n1p83 zuytNqBz1`1pB6>+k`AZG(Sek$K~eM->?bKdwvD2>?jJexFOkDowAHrV+KebV>ORab zajg|AxwY*i?cS4=mljVdetf(3^h}#u`q!Z&nKjuKbQk+%a?Spos8i1``gNjM*qtd- zzN?4WekccW*-b&Id1*=1w?mCS+#}y76O*VWw;oR~`F@=mPY1ha_K&A2J;lyT$z;uk zS*<-K$KTSwJ?&4qrGFF+81iG=_7putJU3sa)G^&*_ z?}$H~-ifl%?&I#vpd^Z9j+;&fNV^}zN%?y&yQxDvv4?y!gL=?GX7*R_q!LBZ&E2;K z#nBZ5w+02!rSV(2mA18?OpK)D_WRR%lf`51rdPT3CiGI~d$CREfLm-CTQ@x&^JHQG zz1C)N+kO<^>WM!6=&^XQvs#N?94por<-|5m^ch4yCWdr&Q$jPzO}P^~H=&&PfViPF zsLilGL#b~^v6pun)~5*_PkJwQD1Fv#Y`>v2#x3?_hcF(`RQHpKL#ZEon$TlO2|U_w z^9T>6`hx@FqNp6bxRz}cO&cV34VQb+?c85CbxV*DxGG6(H=b`J=(mo$JC2~+dhPCb zIc@B{yW^Gg65Ffja<&0py5tLN2}CD>o^CYF{k&86LOk^j6aPgh=Ydo=CcrJ&|;A+J2IGaA|l$1Q15;MeR zB_|~((PhbbX|t(6d)m`agKz1dMDsECI>*Tt`YP9Q(;J<>?wCYf*q=ll+%@{lp{>yg zos*~z*21Y?vQBsSZycILSD@}5=JWdHx=EDBo=6%xaDQ3=_2KaxL67l>jiBV%-5uxC z0@i6l4g1M_xSjb;=(Kxl+upP`HKcQIx@bs9=f%{gcL=vNg>{C~Z@eCd(g#?Zetu6T zE~haUzZW~7PWmQv4xp}BcMlCb-v4&;?>?;Ka@xbu<#eiBKwNv;8zo!BrtY`!R?~i{ zY~3*(WDG;2zfN`2o>U*64+pWO)aNaFD7ES+Z3V*?@$70sx$Xp>OSeL^m~9h^Ocu`< zy`|iM%T1_fH?bbJYiL%g`1^1dJ5NF$xDWh{Av#LoA#UfI?dpWL(0pdgp@)GwcJBpr~j;t!W_8u*~E^ybmUR3Y#^P1_-*GZUEXkSkM@n1+;94 zpmDSa$ipara_LT>W~@?&W|RCRTOjR<6Xq&;D*~fWGm;0@r@N>W=u6fN;o}Scpclt> za(hi^Gx4L`j6P@7jDK(T1W;*vQF(^`1C)q7Um+I{X&`mw9@VGMDFkRRqe%LJ_{Xt1 zR>YY#qhI9S4n_mfqX3l(RE8eaRRfhATl;l?x!({KtS$q(w0*|VEES@z09w-i<&0je zKL+SgpoZ!ypu2$@tMNdkJ-YVyRTrs=K$*j)rT3zy>UvegYho}XqGoCeP+fy=05cHG zW@;KxllD)gWvMWAGf)SEZUMTb{ku)GRHV8U=+~i7ab}S!pZ^Eam{dVgYB6H>XFip2 zor+dV(O#QjPw`xAt?mR0AFR<`U@lLVdac!Zps(5sN>aOk;<;WgN>widT^=ncUA+o4 zidA~iVD&lB{fUBxs(%Beb@cRkSdCD>02L={^c&EJgEeyTDN7)o9pvfr4l`?5vK}t) z{y49P5y~H^n?W^!+5lauY6DFIx=aNET{Yy*{zud(6$~_SsG!j*#BxOh(g5E6deIfC zk>%o13gcFL(HM0R&?Y`B>P2H!Q=q#V2+CIBj(QVRbHt9-mDmE6VOgB#v%CTMswL`T zps#_JsR3YK4VBx}5TKudR;l4YWB9DB7p+m30>xe=Xsx;&sCTHKd({<=)(h2G#CV6t zvCS$6NN2r8O>&?|)nrG#$5bw2r_jGA)O1H|r<#G-SM^16mzo8%4SBwx@*K=PssOPE z_~f$}eXcfI1w4XJLGw%X0Af0qlV0c>^`JxL-|As7$DqAaYAeu1XzyqBIM8scm0#5k zAf5GZ>M0=Ig0Jytv!ylQr~(ROubfutv7)5T4`jx4W!q~ zMb^7OdaZ<69{}mK5@{WDwBFMC1Tno<+E~Yd2BJsptgm!EtmzKczkq6C{dKm!1JXU} zW}O1+fOaxpN4>rlxnw456`pf0Su3k?d>CxGUG|*M^g=@{ zKh%rC`WtEmIGDq%nhtb{RR>JHRz_HXj@U@6o&#lB7dg;1R!aw(VRdw%xmGGP`Nl2o z(E_WNBeu}$gV<4Qsf(@tK;K~mmsx{=avMp#71j`-4;u?wWeo>P!*;aBx)f+7>fLQ! z4%9GMnCq-7fLijQwHK|o#sb|B%?(yIP@N_c+hko0G##3otsJ0eFdwoe0riLGBi3Y~ z%b>Z<$_4rm%=p?D$iQ8ftEp~)XE2{gZ`CUbAhHqWskK0 z=nz!)S&M;g1M?MY8PMaBy(5Kj{>bv#>}4&KueKXGuJynr;tm8>wTcn82J{ikANP8X0+=NP&?p@K;xmA?D`&PDl~h#egHZJW}53KpwZCm znCK4$x*WFL%`g zdKH>ixPpN`g63FPL!i-MX1kgI?S|&nuBJe(vHo&g;Xn%OXp*ZrP$1fy?1}=q8O&T) zEYN;1Z*;W=`UoR`v#Tx8t%%KZwb%6!o9*fdR0pG!@9F}iXX{*7HwRkk>H(x@>uOgj zke;n~x-x+DY+dWR7)a07dtLp2^lUA34FuA&wb+#jq-X2>u3QB8kF0HNn0J^AJ9yc>x7B&z2TyK9h8@Zi}JW|QGPZ|lsAVp zv?Azuvy0eHh1zDclHE+yZb6=BSuKiMW)y};(Y&@B!xi;z@c`TI&9|_PYq^bWP>UUG zqnkey-j4RTUSwP1EA}pbvCjvHwQ9e}oL@5cvt8Bwb+&7h@2H{ZMDhVHzuw~mwyvIs zB${%RZEla_Y+Iy!&GyUg|7LsPc7NpPUha^h(>>i0zn?=px`#7qN3YfuJ0MVOZhf(5 zVJFk?<+-(cO>QNlXCT|lQW~&b(6b5K3+ER0Uq#RD%Z0~KXZ1jj=s#%Dsd-_wZarH6 zu1>o@HO?2-|L@j#x8Kd}_s6`K$^62({ZZcsU$E~N*8HP+a@p_pXyOH1)LWKwR$n*= zJwtwfuI}xb%bA?+c~do7{GZv5ob&eFeTyD}3-|qx#=qC^j=$%EqjBLD^(^|Mb|?OB zyT3n^!y+Q6$FTWqCk|f1I*&!J;PU(yVqb1~M~w)Y-f{_-zm8nX(R%Dr)C>M+GS{`da%WU6m@ebRcT71IxsTL>L zrlIarExzY+EEMX(ZV4Bi{je`bNZB_^>{W=KL~gMy#1n`X-$c%LM*PY;zlBRaTKPE2 zSGE+-_6X_Mu?QV`_*! z6CiePZL!&bVizEqhv@K{;;B_f>@$eIjOcDe??N;a(cciQtAts{PwYWNS0kEUPdvjA z9g1i;vU(rU1&H3s(W*VI=vM^4epb#UR<|6<<7Stu@~<%CaIXJcj~=me{pWgQRI@n$ zPmuX)jMxU`KMmt{ImY&7jIBS9&$$ZcZ|mxFnAczpUe9fHuw=w~^LnhRHr27NZ(_~@ zmoPi{p3C$w^B&(kwm16ARveE*Au-Ph_&AjYrh%R z@0S>Xd06`;h;Bf1I->DdzaJy|HKLy*`ZS`sh(=)Tx5L~>zzCm3bO)m25xo)7X^5sF ztDg}qL3HPNW==)FLg;zdD(=y0-;L+=eaAVTr!oG|F+Yb#wdz=v|B3N@iEFus1+blw zA!Y9^_a!L2%yzN=J7(moay~>3hd2j6tl0zDmK*RIsmeTR6r5Xxvs{(`#RXdY;vD7b zFlFobinIMc-8wGR*0<+mbw1DeXZ5Lb>Ym1^p5Z*NKF>CFnn&gyU)5aEt^PIHo^MMD zY+iLdgPY6jYSdgtAP%-IbDj$=!9KhLM?X?s;qTA>E2AyWYDPvTJeMGPIomLwTiLGh zdw^~KfLbj=D9@V4cD|3;XZ^(H225)qt<2`~N2-8rn9o+W=V!9Nmed+rTh}^_TA!iT z8?}N_9fQ&n?_d;S&=rYm88tKLNWywXQ3mZx*vKf}pfOE*gu1DVM%<$- zFLF~MknT}EI@nzIL3&i5PRfmkqC$uwWf?2y09q8sx4qKdLc(YS5SdOBj7=&{iJ7#`JH4ZX0$7qn{1BK5i`|D^~aKreW(D z1sJrW>qbWP4SKJAkI=@{#Gtk9N;np2(8{KdFlwz4_qJZM#{W*mEpQPWB!u>_!%r06+D za7ubZ@&+oQX+qlc~LlNpF*>n~6zpyHmP}NpHK; z027Ny92(t&hMQPi;;87JbcK$gM=7)pNcSj(p6ZO&=_UT|K84O0^qh~NlrB2fDNxW{ zgZ%3Y+H26qJQ68XtE(_|-%}_PNcTO3Mgr-+r%;xON#9c`$HZh!r&6woN#E1x788@c zr%{24N#E0HiHS+y(`mJdN#8SQory```ThtUL*IMT0U(`cZ)%hzS?fG|Q#g>$vp2<> znB;jewKFlv^I}ReG0C$J@h#E(FW*n{>_dE$Dl{d}zBJ6lB+tGy+QcN!el*U+B+veI zosJ>T0kqD!DN%q-WMpYLqN_>V3gb8V98N zFqAd}>5(5wTMbk81w(14iAf)ZQJINJABNF>6O%p+r?*T@`Y@b6GBN4HC3Mupqz{+S zNfV1m93MS`PMKI-;uJ=|>KOWPDRtu;PlgXEp;^CpD#%FVKi+A(tQ|ByEGF=nbGv3iAf)> zpjS;y`fvrkYhu!eE9sDlNguAHFHB7OFowP{G3mn?{{Br`pYJDgX)IBSAUVp6iq0Z` zAbm`|in;*lJg*{;j$v$sfk4-u8O{z_L^8+;(d(X)G>_p1iqqA{7=u22{ZsmXFY*d0O`@4KzA9Y z%#aCGWMY!_L@F^c$$BC^W@3_c4n1vRl64N1o0w#M4ZUn)lJzxoz{DaFAB?`14w_h8 z;uDNM(=lW{iJ!!gto00;M9Dz950hviknY1IdId=LVGOD6j@>}D`0n9~S$+d$0_i^7KqG<_%)+VI)*+>rvoM?`}ye<-pkHH^{O-!=BneH?($$AE@H!;b225mMm**0&X zttKYh=1khDW60V=r-AgyduUg0z5b*R9`d``?t_O00O>w>XgHAWgNLp#G3moB8gF9K zhgo#JiAf)3({vM)KFsE49HfQ$e$t0qX@QAJA8w@;CMJEzqq|H@`jAgWI)*;Xp~FDB z4|C{DAM^odL31djuSRkfG>7IIBxgZ$Xs79XCwbj^@yJCMF|MKtGw7j6?xh{iOwc_B)pXfb_Y>TnaKV8Hssxk%`Gj%%c`2 zCVQ~?)Y`;k4>q4V>KI010ZjwaBe8&L4bVN>#@o>X$~0&*kHi964WxUtfZhkvJz7AA zH512<1$4s1q(=+sI}?*0Eu^1KOxEopviM;R*?-EqT|_m3^txS4K_(_WT1=rP7LoW< z^b%@eVsVK+F-xe8j-f|OX|##Sj9f~afppeO>7-`jNV1ep8K$gU?~d}+-6 zbfZB}wY!4REQ2=pKSlS`JcG9P=clb`xk1YZouUV5jX`S%@!hpl2(*U^`)9{&rmuAj zJ$jISs6^MrJV<`Sq_>~@Uz$EG<{>Hazdg0RQ4IIUj>$+=BH!UnZ)J2PROBr0x|l6A z#b`>shw)6Yv>^2!risI)h0m4LdzelE&F6iPn;xOsmq<*XD?UOYl_)Ug5$dRs-?ZfU zF&WGU}}nRJPFogBtRB-$wo;plM>YG{Q)1qXruB_0OHY+o-8Q*EdzPjiL;? zE9MkEM)3xf!~`#UXETd~R;@G~Jr)a7{ebNsw@)#77emG_)%{3@2 z{VPVxDq_8UjCq>wFsOAeEB0x+&!Btz)rozE?l)+2zs8InHRx1E%h+A?q(Q#D5*X=! zdwdu2$Uj?&Ru4{&eXbHsADkZhd?iZj)i1WR65Ti0O*VRsXL%*69pYrxZr$q=u2(u% zs>=1xoxWwX*PuvVM`iS;L8mgZVqc&S4D#(YDYl$GHORy3Z#R8u&|+SHyXkv_uHx8> z^ov20Irbv?WD)-kWmAJzVtsuFHuv2e(?`v6lKuXs8h6;;tkpr z709TwLAMP%Mf<3yL3a%cWYou?>*G$*e#$iH=D0vcml<>u*L#_=3@YGyFVi&!?dW=n zpIyu~XiwKbMl%h1ul*@{l?n_x(ms&UQiIm=$iGIb4Jv7ObL?w$uR$xD-WvNlZ8E5+ z={!bTHNxC|gF>&;qqIA8r|%oo!k~9U6}>@i43ahWCh_CR7*APaZ&D9~9^`s&QE!8` zbG^4{utCQM?eu+{E;Z=;L5kj{u?FQvT@iDDCK}|4x;gd$-C)q5=%umm&19>ieMEecO=l#S%ddr|Syq`Eo9~pER$3CW`23^OokLjdA4|O<2hv<|+FLVfG z^s7NK5}%OoIGve{#3xk8p!CF3beKX6%1jJo6lTyB96LhM22JJI5lS%VNJ6>qr_{xu zQwi&0Kc!TI_Hpbe^)=`njvb|;2Fd>O7+r3V>_3lDwn2M`7R7!>*H+XU`T(P88e!x= zr`t>{zUe7`g7!{>Qk(Mgw^Ru9xxefgzM#zp$)4djZ3D_@mFr?o&~BhLw0ZC&v0u{2 z@iH#?G;i>Z*so~h)q*}(vX}ar-Y`h^Qvafi2|6Zwsc)#oM2%!G^$nF8BzviE=T(n*744t`7jsi?>E`aAm7Aeqli5k~2IiUHb9KXiIN_Io;RP#L3Bo+Ai1ks&4eH6rSH<2~(Za8>Zk4PNT@~#US3}LKj0G^d z%MtTaM}YL%y`TEJlIbQt^#f1=9aHt<{M1=T%wN@*F6|Z2MBm17{)#UW@ISrA0#pLf z5w#-IO#y1JL1D2S8SQs4YpMedW=%C^kEk3`!mO!sfpliI)NCN#LM^orsDRG$=f7I& z6@z;E3krNmR0`;oT7rffG`Fsxy9|ouPsz2^L4!JxpzyuAUSbVF;|!`%Q_yCE-mWd^ zq(Rs7C+}J+VV|ydJ5;6_v;-N;bYLY?SeFbgxV(tRc;}Wh?&e$!4t27|38KDN4nB)?nR`gX&)!R{o zx*bU85~=P3()A+MW}pIU#;r%HlLn39{b!^~=qD-#bduL}q?%^XMqam(>M4Wz^16*w zXABz2>o!uQ^w;$+;eA%5nrl!j?`o`y@1W9}&s3yGFG6LCL9?K;-JsUI&x%y14NB&H zR-{TEtm}2-?IBX-8RU;~*=-J1gi50!x}GmaceFv< zp;BnjZm1jss#t&D0_hnNsSXYo6}{dg)gd6wY_5)*n9Pvos?i9W*<3XN(##gBg^3BX zg=#(0X0}lAKzc5^=MnOrHTjADp9J7iAn2G zYMp}_rS5Yuqt#}h0-DZqH(H(aik&v~L?v2MW4% zZLA6yFDklTtO^Dyp!(d~ST)k1L%g4eRqG52Nt?jx`PV5+0MFyst=^crK1WpF&WQ}D$l{}sOC7BozzkXvy<9h zU~6_#JAkxiXH{xqqS;xsm}@gTt0*AN?4lA(OqgBNY6r86S_7olW>>YrQLn4o0;G?4 zUDdY+$q}!s>M&2*(?`6n>SlxFh}Tu^GDwbiUHRcW&6FcvSCwIq9PzrUg+Mybu4*-q z9?!07-D0~(UDbU+nwg|Fo0#+{N!40nGm}&uAkFNi8kv|dyQzf^W;eCi!Aw@G9n54k za+R%_tS$%An%&hn6BEtu>aII%W_Ps~NHcq=jV30{9?EZx&FrB9fb_`sR3SjRUQZPc zR6tXB%jv1cdBvsx=~3#brmeFzd#dR`S|vs0nV7VmqK-M3De7|vGgW=-V5X|!_u87N zY6OtZGfiCuq+3W+*LuZn@`~kop+#QIJG^4|0Ts|G)gvxVJ>X!btH&M8bhXP1z39b! z(<^omsDOg4fpO{T{rjXx1=P)Fa$JT=Sg+Azeyihpsc9QDnh@|qTyNE)SfjhFQLQdk z+YP$SXH=^`s@5hQ+v7K?RbMsMpqT-qTJ=+tf%GW#S2Kb1DD_u!4Kvufs#SmW%KciU zo6pi#1C-|hyS;&`)@F^Qy+LYRiQV2{75bn?(q5*TV$h;mqgoA7r3Q_vJ*w4E^*WHw zWtjR1Nar$49W%^eYiFxrYWE{rvzt$=*27ikqZ&QtSJ?UzwPmYD69V39Jwk2Yrjd-x zr7GhwjU>;JDs;O>GA@^?GX_bXm#g7BbWHLbrD{E?k>ojAZ8Rvg?xS`d}zbustr2ChpJcg+_&n#7Ir&fvKJg-v6p4MnR z=b5c`Kcmrb&U2g!eO9CEIM4CwfI&Su&#Tp>=X9(k=Q%-@8l*VSi7N1U9Xr5z=BO}( z)^MKJsCXcq=d~&cNauO2N;k~Ut@PMyReyv0{L^D6sbLQ0b!xPUE%L3=<~lXapzQ&5 z+FY*|0O=Mct5uGAlhwM4dRBurlhsB?Y>L_nr1v3HluxPjL7yQ_QEnie=M5^*#AF|G zgBs^x-k`2_Fmu%u2Qydgb})0*9tU%(dc(n-s#=uUtxr`^K)Us5D#660^=WFZgE>vj zcQ9{MD;&%l)iDS2M)kRaIbD70U`|&VFW9Y5SG|FB>o=)P6O-0&QX3u2o7DXd=FMuW zgL$*^DYrFmR&F4zIYR}Sm}t&W;~dNx>S_n`7B$7eyhZJHFmF+N9L$;O4F_|kYO&jH zeWr>6(ye<`f{97%9yQm&^r-m`<}9_s!JMUzIheE5=MLs<^{s2x19LxgM;w8KF0u=?MTc4{EOiVQAs<{s4Ts7apoTpYenDf*z2XmhK z+`*i$zI8C?tBk#N>+@A_Al>=`m1$zq`U17l!Cav3cQ6;Ktq$fw<+IP$T&UbYT62*K zG%?X!q{cazi`3N)=3+I)!Cb6%JD7{r9tU%Ydc(n7qFU^?TVJB0fOP9iRf360>r2&K z2Xm>K?_e%dD;&&a>X?JMOnvTPE?3_=n9Ehh%XaI_Rc|2O`fV!H#H97xRN*T&^ER~s zNHbTcEhZ++73$2ZHgknK3#6GVmEUVRCd`#;v_WzWccr=#NHcF&6CKRk)h-9~cJ-Wt zxk~MIFjuM2*X`CwF=>6Z@;I2Q)ocgz4z}zDD%`(yiaA`k0usey3XJVBV?jb1?5xn;p!%)ENi!E_K$yyj%IbX^-dKYP3Nz zo_DJ&fpqI@)kFt#t=i>au2s)DnD?l?4(2^7^ewwb_o!w-T63L>F)``UI^}UN*QwbK z=Dlj6gL$ty=wRNf4mp_jspAgjeJc5FyY>524{6fs9g@`2KAhSS*-Rtn8hme9lJ-x zsu_^h+^AwqOnS6Yc^u4*YPN&9NiB3RH>raT<|cK>!MtA`cQEf)$?w{&->-TA>DC`m zeN0SRe?YBsFdtC&IhdQ(W(RY#I^$q&R%ac|66N=vJ)R|Mv_UeSCF)8b-TH%SqJ#OM z+T~zAsGf5$A5wcA%!gFy`*x2WQq6$0<`xxWV$!26%Hv>eQL`P)ht)y{^I>(+!F*U9 zaxfoJ#~sW^RPqOQ>yM}&K)UruRUZ?R)*n^t9Lz`6eGcYUwb{Yks?Io=Th&qiiYP3Nzp4-%wK)UtE)IAvY z+m*+`+^%Ljm`|vM4(1c;po95@I^t-TDsI14y_2r0Qd0()yEXorC$L zy3fIUN^N#9pHgQW%%{{@2Xm+L``8}Oo&4R4-TF@c?nRJp{b~O0#b!ROb~%_&tLGfd zXVhK?^BEO-$ku#DH3QO`yHt#cNso4^y$^2XnV7buf3U7aYtN z)hiC>iz@t>-TI3v5=ghcN3}LFX?>5%b1?U)IS%GaYN>S!n3%M_PZc_tauUhE#Mo5cLh^77k&D)M63>-wdD7w^|LRw$M4v!( zEk}Lm2DZMmr-QsTBrl4n1`SUn{w4gI*!t7y1bJWm2W)FX*;~zpwnWoKKMoSLUhMJa zM1iv$Ely?YLl@PM7Ju`X7E96Mx?$4dhB#?)0ha@4KR?k{lRj%NZ*6(F9Z_xCbdK_e z=!@vP&@Uh4;EP^(=P)g!A}j6xt8B%n$_QUb^M8_ap&b5<|Ig(4XLSA!&Y#Kc&v5>Z z+_dJOY2BOCljpfbIfG^9tWLJ)Plt3Vi?wj4vI57Vqr4S(=YRPS;VjA&|1Q|)c#H5Z zJ6k#bEcMPxp2AcV)30h<=hihjM}w(t34PJ}U*7iUAG_0aO7&XkxD6@HcBay>7Td6~k?4ZKX{Wg0L1WGl_(Wgai{d0D{ALS7c}vY3}8ye#Eq886Fuxs8_< zysYHqc3xKTvYMAWcv-{CoxI$|%iX-J<>ek;*70&LFZc1Xo|i&iig?+;OEE7Sd6ED3 z^YQ>Mn|UeWt{ONEi|L!qczL$}00L8Kmq;{}f zVN+rI!VZDG3^oh)2DS}o23!8F1D?CtHs#S2&rY_@`Nqe?sj+d-RJP24-3I#;ta6FpAGRJ_MGdUq*4MBMT-Zn4* zZyOkZw+$>p4#Vl;0i`sYe@kjVjYfGi%HvQThw^aR81*Sf#g2nrgx{C?z;)|@vphfL ztp#&Q-dZr1&OT0gm7X}ZJ8;Fd?R*|dPjhwkY1kpnRYpGz?CoTA3qtaYi zJ`rt4x@P#CNz3Bsv;3UQWokm)6xU_ymBG{5wrV%mwaDkq%*C#iJ}rY*xQ44=+O2o} zgba&(CdWSH8jTiITDx!nS~I4ch@W z88!p92wOyvHJP6_n5GW#(;oYL?v8ub_f4Oryv4og6Va@kJ&$*M$yYe9`Q}iQn0I`S z_)LiV*!Mf1EnUCx^>B}Bxjky_fb~>l&1l=$Jy%^79qTTGa)dR4pDK#5+!-C*AGmHF zkmUCFZ5yBBjiNDlutSX;-|wTlbGboOZ?^wwH?&5oZ`{BuYm`|sl6U*8O-$h& zq%UPwhvmwq=o2-TVw{V7 zmkoHo#%k3yI>0ZVGi>0uPOVIg@%zB)8r_y{K>AMKbr}D3YFX1k>^Yn|!tXn4+K}mf z8{wa(-b$V4w?)kvwBEImId^e+MP|A0Hs3LEa^-bd(+B*@d>ang=eN(7I=t?;()Vu8 zVF=d^q&I!z6W;Ob>T1*MW4||jyCfX-tLOW#PSVFF+{az0yGxC0`+#4OZ(!zd{|~IR z=xP4>R?&b3{`Gv{8oZpXHB|V^29)@x`aYNVrvGmA>lN56S591*3`^$ z&5ACmnd4g6aYxOcd@t?wT+L&M=C~dn_Eycyc(2IsJ%#5K>={@e?)zu_0&cOvuq9xA z;MzWHcAZdoig-OPt<%DkACKKpr?n}^4Sc`OKA)CRKh!Bhtq$;)xh4;ZuloT_?|50= z#_pAgW9mk@ho+9JTjaB>T_D}m2kun$c(z}res20A zm*=qB4Qf*62Z0gRj;7_lH>kDzYiRi@BI=Vsr6N205Ll#cOl?%JNL`m2R<8u*5|p>0 zyba|XmBL%ZA{EciR7$--EZu&_z>mJBz8(o-Iuv#Muk$#pp^|4LG3%AJGypj zINFk}a366&s^m5lWLIBv{8}Idjq2z<+x?`F16Ms4)R-S$@Y?Ll$W*3 ztDAxHYAdDf>Bcv>-cD@NWQ(<=WHD*3tZkaw*_M4`sI9k}@m(XL}Vsz7Emi$uU zNwj#3TR+|SBwF0a(YyRkv8~talqJ7zcm^CFp0{aXJ}&tMz*;WJ+{Y!q|5wW;dHT5I z*Z&S$yAqxW`@mH+Y){w+?rYl~3ah8C4f-rB*cF!gOIWB&=3c04&cOA&SA2X>Xm|w8 z~@q8BEgKanJ%Ql@xu~F9uI*6xjN3pA5zlXh~lX%{Q z?b=z&cXUogFVg8+`nq#EpP}E7)eAk!f5s zTxtnjH9i9V=I}R%zd8FCjZcL?9sVqov(=~EdbW}^m919M*74cu9_a<51?)LGz5t#g zc#74_)H$nIeW=8)qB>U>BU*-NIilszEC;8YIX(F{D$#rqtsDXKD40jVJPPJfW?pmk zQ7}IPQ(5SpB`vxv$_IkOV(o+_}OSZ8?~}gE1PRIn2?QH_E5pa%za};Vv znR9r;QE)y3N4YSPE{voLBk96Ox>ix^i7uCnq>oERz?UtLC-}|5Zw_X2W{#TJ9L$#B zq=J(UwRCXOnX_y zBcst0HWmJK_|xI(1)BwbHvHM}jEBvKzkvOX(+l942U`qgG0K}@OMJ?C{LA5g5uSbU z9PyFu`UrH6B6^IYi@JOU&IxdouW*zv)~_$ttgqzk3+wMI$`Rm1fD;Q(Dm(i>@Moi(jdB5(dCXBRbW7&Nh!(?B!j|)d zLMfuOQO<%ttA?z{tQxW&bKuX1KOg>l_zP;t$P}=DX4E2ZiohuX zrwE*4aEiex0jCU{GH}YkDF>$I$Wce{>|lw*mDF5N1$*73P+)E z6bi>s_XOIK2jh86{4fvwBu{@o(F}*bIczLEDJZAI_JwCG%Gt0vellV?@aMr(06Q1{ zMNlq;rx+wT zg>kEeaWfVphO$pB871FZ7&q8(@WT;}Fc#y6atrWVf*D&2GZ6d~L{p6wemcs%!0Zd= zSTM)Jp9P&PQx<+U%HzS$0Y4A?JoxkBFQ_G3_dJvrfl~-hAvi_w7c(dBnoTH|fKv)i zDL7^Dm!te5%KKmsgL4@EBk&wW`7@MHK!<8$Bx_?NYs-kaQ1(UHzc%(T;Do~;0e^Fp zTcR8bPAbaj@b^NwFZ@|3XTv`p(X|x(Qbfy)6@EF&FM_`h{KL#|o^%-e!-yU+R`^Fz{tWyR z;8UGqnw~^;By*~RaWhuC2GaO zrofYmayrVrQ0@!OvG8QUla2CtlyeZxgC`%J0+i>Wya>@kc#7aDMtKv;C5V>7QwC2t z$}gh44>|7x=P>+7;6IA;XDCx$j7D9|B9whm_GimyM0GJ5@JASnzM~uqPAoVn@T3|m zoOF~k>dLtF1+y=hW8u#-R+!l+j{`FY%p5TD;m@xtoC1^=fwKslMc@?Hl{HmZx0vd6 zE37N)w+PH4)G9`~g!wb0N>MIDxg6zvP&kb85%`ayd;)$7#K;6qj+$HJ2ZPd3Uq@aLhN5C0-~3gIb&rv#o-c*@|}2hU-6 zj=*yQ9#s!B88*D0j86p0vGpYL6nIkV74xr&r__@XOGUIVqGRhxue0FEfhP~1e0UbY zQwUEHJSFgy!c%6ftgn6WABN|MvEn}gKh?+B8Y_PP`WRJsB8(M(Ec_|(q#7&!zV$J$ z5FHDDma!7efjv2?it3AJBXmmOFN41f{@w8Jga2@S8N(y+90BJDI49sa z0S*NThk}Y}eK!h{QB^_cW015Gj&g*t;z>a{)mZWL4SI_|M~sCh%UJP`3zDAZ!IN*S z_~*i32u~5$j^grgjRatg|+C}*LZ6)eixD34=*)L z3OuRsj72#MYf)hbI-Dz9G`? z*bwR6*pOn1PaYd0eHjZ*ma$SdC*&6zc1=!*OU-3lQ{8h-9%|)rty#%=sFe?XK9uJ| zc@fvzc+DcNb%3qZDg>vUMX(G#q2>9r>~I-f1KbuBf-I2bD&|AxQNQ`h=8luW|mk1$rEu?OwF`QR*K&exq6q3$B)9KCi? z!;93-lM2Bp0;i;*tesML%HY`t&k>ZV5w^8P#q?S-HIj9t8ewiXl0HVDoPu&H${CHY zX5q<#XB<3v@Z`f&h;k9ir6`x7d>G{;#$s&Q&!3eVV?2!&e>ln!#)>BeZ!uf3Z#O|K*&z0ejW+zT{qlD28Flu47c4Kz(@TFOPtOp|FEnoL4w z(l+8{Qd$AIC|(YrA_=XED2f*p6?K9j-bF!C5S@7N=s9>lpPzWtx;POZ{_=656e@O7~V&>|w*bX}!+KzyOc3bF+iC#3ym@)~-%nT+(CL#PGaIOjt31>(+$ zo-VEE8Ip=KSc5DFGsFULZe9}*PPs$LKU4TY;nX^m{CeSsgcEis`R&3_2xrithsU>JP!hnaux$*bbh_6b(9$#%^7wuC6gkVgycJGlOj0+nWk_`WJVoINp+UwoKuo+2jPz zX1>)5r&c&2;e^gUs(x7;I-5Be7Td7cCIk4j&65_CfX?sju zC57|2NTvjb&VLCh8abbPuc`AHTXg|xP-yK1>?=bTaK9-eoTSi{P_>Mb0ii*mA)$$7 z?C%OH7|%0>)(Z_)(4Tg}hlL&!`nb@P*uE&ZV7a&zS}!!ToME*KP6$3M_?Xbgg}x}X zU&pi*Sa7b4+kj@Q6bx^SJO+!g*1!suKUJBrSr^6dV*>FE}K)U2sD1VZlR! zj|ol+eq8X2LQ~cBS*;`u2n`Ai2~7wc5}Fj65~@~-{3_;BKyXlSP;f|SLg@+3FnyL zq~H;;eOx#x;fxCBMd7Hm67E_F7Zl+Nr(8I-Lc>A_g${}Bu;8TN5y7dotamBlj0#6x zC?n4c#s3TGe?V}#;Gp1I!6Ct6!3n{Gf`%@P-<${BPYXyhaF{L5lgoTq3PC__?!WkBt z1b<;&QurysDZ%O@3FRUQMR2X)u+R~qTx?Xhb zV$uJLC9I1jEa3!%Gbo&4p(8@egOsTa(rsAqs8C#*%+jo7s>=n}3JnV#5n8^1p_Ff6 z3lkO`796ajtAx;0-3^cl){_p^A62K-4b^`LI0@WamlT`=9;r(SRt-m0Nxf>IOaQp8 zJ|H*<{K@*D;1KY%hLGR{@D&XS!9&0gGz)=w}d|XBvaT2?3vdNl0)4_~0c8!9&1byJSf4u((Qsv-r}aa8kh0 zOH+c?=A$ZksoKo2tj$t(;FN3$2&Y^)L2%l)1cg&8oDevl+7c4ZuyB%_SyCgLsSl&V zQH}dp7D9uKN7eMEU?W2bH!_qV;U|TT2qy)ZBTXrh85NFo2_?&ghAyH1VZnn!hlM7E zKO%TkXy8&xmS6gu6$#f04GT>Oe^Br+C}xyGQ^Fq=Y;7SwxaFvtu{F4bv8@Fs5)OeA z-Wn24SU3rA9@&}@&Y-v&0%vaXkZ^{DlLTi^b5b}X!bySi`R0^xMunrAu+p_nHA((A zG4yhwp(aT$a3nk^bXaIo_#=WxL2JU+R?@&$Nwwfwp<$tktuim$dQ^37OKfE*gTfyY z{t)8I69|7(SYn(14p`KUVSvQV>>rtlNOPk{fL%M!vL6#lT# z5uqvZZB($eO;Rc}xQ(II3Jwb$+$I{bO~$v|j;aq|Hnfdl4GTXh{3Q5)yDTaE5#gtV zp8|jT_LT5Pg|9B7Kk71kVYOXdCi#4s=(+F%;J>^*ApCOS2ZbL5|I(JA@I%50fpc$5 zNH_`MB*6LamV|JIgfj%rrX54VNeU+k&bxOcg_9Ca3Y_2UNC`)6m$+>|s_J&C?TlMM zI010(+!+u~P&h$wUfLNHPDnT*a4x<)B%FkB65zc3@`P}Pgfj%r&o3VmPEt5Ya9*`5 zDV&sWQsBI0S4udlMdH(PRQ>xd)gti`P5_*mD+0m^3MUB8Ems7E6B14coS$3~5>7%m z32>^fObBO4I78svc;%3AlEO)X^Zb=b;iQC<0%!SEDdDIc5}zGM)eTpv9TFem1i*Rr zs(^5U!U=+N{?$R@goG0U=Z#l~gp=Gs9SiIvO$bfxq|d3HN7d6;r*_ik;N`R(5}LYP zY%fQ@^Xk;)V!KOhg{mtgR#zNVcfVR)A+Zup0GwaHIv|{&aDw2}T@w_}&=vF{b;UkV zbtP%w%A@M8YXVo&hlFs3geJi+eoa#N!K)-(q3UYlkkF*iz^jj{J6;obHGK#IzxbM< z;1F<4Ye;Yc_|2^e!9&0=v-2&DuEuaOXij$Fffs$L`E3QY4qKW+W`_`EJrdp{d>M@ka%#HsXNLpwQYjN)8K6 z2}iY4#%h=PD>x`LBs47igy0dud>>^Jf(Hes1dj?1c2TCbOZ*o+ELe4m z|J~xh;IQDN;1R)rsQ4ch{{;^UP6-|r9PAPQd&Gai!-7?>_}?r33l0lT3JzRH+wgVN zx`g1A&|shN`^X;>tYYMZgeHXs;^ZWRri2Fj#Z|w=L9p5{u7oCq1`dcTp(&xkgX9be zRRba~G$}OjT9Fr;5*oZ->K5V;sb8o%YsmVs^(*T%dz*d8e!D$nUpwX4lpjy|%arK_Cl>??E+|-2P+zdE z;ME0t3*rTdf?EsjDmYf~P{E@GUnzK|AXV_of|m;lrk*r)@zistuACa2x@GDWQ`@KZ zPJP|fo2I^F>d@4tX`h^SZsCE#y9!rLzh?R;rvGw!QPGm3bBp#Ay`gB=oV{~?Ip;5P zX3w2Jcf;KH+*{{X7GG4{SiG}1T-;qeP<*8Lj^cZYKUn;5@ksGEi+@=Bv*OS%0#+T9x5T`g!<*em=gKUw|*<7pep56!m(wNZp_oppUHX0j;R+2VGj40R3#$EugvlV_8@r-k&s^GI(L{I#{jKdT~rP*U-}CHDb8x0tcgK0hM( zk6Xz}oXwP8bUdBsP7e<)O^{jb|U4o<@o z$}}`EMN=e2IusqQw%u~sBe2b;x^=g48`M;oDY(ba#+`aaphalqZQQ9h8+0aGcpEK# zG3acx?lxNeGSInb*=@A^3qgy~s@rJ&mw?V!r-3d&yKcko4A4{1rrY420~){$9X9OF z2R$8ax($itpl6~@w;@*zdN$g08`3qP=c=`!OVz7D&r=tHo{#>}k z4VSw>o79z{&FIZ6^lVoHUxs^PEVUifhIA|N4p19z!oZh<+HlzhdjhkdF$aMp^<2D%!(mlX?&|g|`a~<$rd_RgC-9T;ChudW=pnl*u z`cn(&0Pud?U}6Cc03XCRrWVlkz^_GrYXQ9;_zmifz;DE#trEEF#DWQ5U7n2z`eltf!Y`a z41<0EBLWNe*&GGtjW(9tX=7tt@B!ctgW@Jj*jTvR=7Yc=g^h&~!-s$$hK+?gZ5{;v zG;DCUC8&*CUOoo=Sx{SjPJIISQBWH<+&m2Y1yCEe+k6`MF;H852`(($aq}7AC*Z=u zDCBd%Pr`+TyKX)Y{8fxjEZleVMc{A1wT-)Oz68#hRvAzKOTlmLcSp5m`@8O@N{u|U*e}I3s z`XhX@)XSi@`jh%O@c)3?>d&|z$5MX*wbfq{f~Ec!)K-5(2o^5)`W5gL>o=fNt>1w& z4b)bJ)_(&}2SsaR{Q-CeC|VoqkHE7)(b`yl0-ghEt9jO+K^Itm1!o~BS{3VWz>7d_ z+{l7|_?vel{96yVc9(b`y3fy+VBo>+yz=Ypa=v5J7t14Vmc%>=#x)K<%^*}xT` zwpwn@1zrJ)7RD+DU1^nqvkKH!tF1EN8c-X*|1=+XEvSuOPFe{3Do`8uzAOU12o$Z5 zh1g*Zvjn)_It{o16s?d|4!j8zt&nvFa3d&MA?qyQOF?b5)j9{b8PrzWEc|4vx(w7- z+pY6~TR?5K!&(Ns6Vz6hTg!oWf!eCosss*!qP4NALEEfVpnI$u&<<-Y=w9npkm&@q z)wR||!23XL)ni=@+H2K7gJ_Ks38?0vF z!=Sc0VqFIOCQuu{sn7y^6DZmfYbWS!)-G^v2SrO_T?zbFP_!i0)xd89MN48`1N;t9 zTfNh21^zcsv>R3!_`RTLH>@_`AyBj%Rs{GyP+J|fI)IOXq7AV+f!_~`mc-fzd_O2! z5~~~d0Z_CgRuAxpLD7;}*8zV76fKDr1AYk9#y#2nz#j*-)hDb2z@G#~3u6rce+m>W zjCDQmBcNzutk(m77SzTa&2I$$JgAMkl?Q>p2x_aObp!ASsI4BejsSlN)K-sMHv&Ha zYUA$Un}MGMwbfUwTY$d`YO8Nrw*h|()K=fN-U9p-sI9(Z-2wbvP+L81y&d=&P+NV^ zdMEJrL2dP{btmu-KyCFy>u%uZKyCHB^={xFf!gW?>mJ}AgWBpR*1f=`*0N1N} z;En3dz#G-Az>Vq{aHD!Z@FnU2;7inpfiG1L0bi;<4!lKu3V4fp1h`2(3f!c=0Nkve z0d7{`2i~Th1Ky^71dLn7fG<-&1#VHl25wQm1>ULt0=yHy8N3`L1AFQ+(1NMUF*3LW z_zJZJ_$svx_$sv>_-b`I@YU)H;A_-w;A>Pn@N4j!$IC#k1rDh`;E;*~ht)yguzD?U zo4N_OO}!a-kGcdK~yx^%dY-)z^S;Q{MuV1^?!ihpcer%>uqlodkTBDgnM*%>%w$EdYL(S`7Ry zbt>??)#<=k2?2hOIv4mo>OA0kR0Z%oY6b9n)k@&^s@1^vstbW}-x%@G*4-@G*52Fz!ACexC{fzhAWjzhCVE{(!m`_yej7 z_I=XRt0eHJ)Z@UPQeOuCwE7zGr`0!rA5l*MKcc=1{2BFq;LoTZ0Do5f z2>7$=$H1RcKL!4rdJ*_h^$Xxf)qeqhUi}*Q^Xj+2Ur_%C_zUX)0)J8c5AYY&Ux1Ui zl6)DcJ$*SweA9qO)O6s-)GXk~)EwY1sS@BXsgr>pR||k2SEm3!p-u&ULIr@otj+}f zvN{|1Np&9Zlj;KCuc#HkUr|-SUsbDtzpB;%e@(3e{+e13{B^Yf`0J`3_#0|7@Hf;Y zz~59`fxoG?0e?&F0REP`9QfPnD&TLcR|7w#LcmX{-N4^bdw{>A_5y!bbpd}@MS-7I zeZWtvIPf#-An-HlwZPv~Zvg(DN&w>*#eu)C-UR%tdNc5|>Q>+%sJ8a*Yzqg~EY)9L4J=%|V zuuS3pcNm@i8Dq+jwb$yk4q6H8ChM)%UDju;N3Abfk6BMxU$MS!earfe^|BSTH{0EI zuN||Ww--$Lw<#Z=GBV}AraUzD&r_F7d$Q1)e(LnsO@GVu_f9{#=qE)}W^~PXYQ|S* zj?SDtt8Lb^vpzrjce8Jp^WdCs&pB&u?4)0m969-}lP{m&G5^5)TjtMPaPoqR1;1W6 z>y*+{cAe6D%I8n97X4^Z@8bIx+e=!P99weq)UwkKpZ5FHrUnWUy!qDq?@zc_f0~DJ zB=9tDzt7~|9{3FIUC!qH)JN_QIdVq=?YJGE_x1C3eEskCz_UJb-^X40*B!8Nb+|oU=M|s)cYELiIsV-qc&?gunfWpgw;E^j9>NXI*}U6)^6vtlFfRAu zo#T^#_pV?VOo#b*XP_!4+#`XhIq^FZICc)*c++ttup&q9_Q16bl*`Pk^L)y;WmT@6 zCF!We%F+gyI;<_#V`ZrUW+TidXys;@Mwm-rE``|w(*&~>rWs}%R-Z1z+S7KdJhi~= zz}nMJn9H&HvF#BM-V7jq_6@}@6>BUOdb=be?gNeb!vF6o}eT@BB-#UQxtAkjv8i08% z*0!$4I@ar8UXPWmH>fpOd0C5;(Ch9(Z@UY<>@Kv#yU?rd zLT|bYz349Vp1aU%?m}<53%%qnm4q3Ac?{-DFptAL0rO>;Ct1vPoJ6(NF>}RM4#D0caC*jUe=dEG5 zc&}l&Gt~APhC4&eT*Gi@s2kTZ+!-n&;m%O|*D~B0>aw*AcZT}dnwj#vXU!~m{#?SD zr4C3qvk)HRF$?iwII|ERhBHh3rRFy(Y5zuj73RD4f2+URe^WJ6%B(lQya;0#lv#6N zPJuZarV3^~%q1|F!|aBM!n_vdO)zhRc`wWZFrR{X4CY%f&%yi$%|qilQG1eoxWATVE-9$!ePMl2tSF zC2QTRm#nR`U$V}fQ*6I~PMLjr;X-?)u-JZZTDe^_x7==-TVucTq(=LxlWOdropiu@ z>7<=@adC}(7R>p@WmXML9ZWOK)i50}F_<^P+yZka%u$$+!h8VHUxh15*uiG0defyI|U2dSI@Hxe?~=F!z?!*q?%Vw4~8~4Da88`M-EyTH0tY zFRig7c<#e94)fa5GV4~DyI_vNJOuM7%vWHZf&K3x`!b%^$z|4Tn1v@d+BGNF*g@be zFjoNY2k&(-HX_%kDyae+{m?`s-PcVz-H`-NrK7r?t@O%l+ z)eFk3CYUQ>A`2SrH{*FX%=>_U05fM{jXfV`$-**gDa|I^b;<$jZan`8^H<=5i=GAld6*Yqo`wDMFwes7d6;J*_dLu2t9r?Z z{oW-9tmUWT7jRE|7WjD>#3g|Ih1msjAb_g4t|{CZU4N!pw|;GFYgKh?neXg$aehjl~^MVop`MF z_k(Q54_}Ejtwv%+D@2_#W>Ly}OC-{se%a99+11|E(;n$cvv&5T;rh1L*80v^Z&!Gr zt}7giiF*mUl0Ii^N~LhK9cgZkY!!W=UjiDV`+N397_hubw04C1IwJ9OdudY)2^~-+J_; zmk-}+CBflh2z`q`r_jXfH&T=#6p9QSCieC&nG*sk@n z7G`VfUTNU!dZO`2G`@ZnvL>Sr`uVHY85L#tC{#XT`q9saZxL6jjs4NKP^H=)er-?R zws1!Tcx!)GS9o_9VPiwIzdO=r-kST`BYlzfOy*_%k-mW}2`{fM+|||68K-wU!m)jL zG#u>hi^O7`JyE>Ww#7B5>x+crksb6&bS2UU+h#QMVG6jcZGAmp#s^$ZmT37n}M7HCTuLQb3BZ2PE z-w(1KKYS(7{W%gVS^=_~9k5KZu0 zo`Gl7BikAYpnez$sDht_W;=dV`$=Go>-ym9`ujn)^0YkpPxPEcWNC5Qf(Np=vg{ip4I*ulkJ{u zREQto0d@8FgKQ^#z7kMZBLQ{w_k(Q54_^tWt0S?Z6(GAv z9lNTuT~3ig!ly_bcPJzud(CxX~d0IB&sRm zla_2Q;y#Y0D6vAX4Nft4wL3#={qT5x^J z*Mh4}{uWqU^0&YOlCMQRK9-bxaC>~Db_@V7t)_*x*0YF`UBM=SkpPyl&s5PTjRgrCO-1(3%E1(3%E1(3%E1(3%E z1(3%E1>kRk%<;EC=H#(J_`aD2uU7e5FrQcZ+aRCw*dU+t*dU+t*dU+t*dU+t*dUpC zY>>`8Hpu5ZHppjx8)S~Z1u`d(1-b*@OoLZ7z81{qHU2ip=R7vZ=R7vZ=R7vZ=R7vZ z=R7vZ=R7vZ=R7vZ=R7vZXMY=Hj=u#mCyxcji@uo#uhznX>sQ-4BaQ8{aHSE}(eO?i zS=z3T#KWCkjzlJhGA(<1dV4Wis|)wV8!?7+1bx_PAH9A#A!Uf`$YilLMdFCwh5^Sx z9hSvAdiwavWo6H+EY`{J5F+i(Q7l2biP_c_Zi{Fqk`(8idv_w#7;^@O7_4^g=>!+f zTiUR=-mW%=_eBr|#;bz60+tt>{fld8*uJf*yukUPa-PjrF%4Ao0*iu%W_l%P9@H4Ve%Ex0VjvCuNoD6ZV zg`2}3X-^({xZ5x=k9gj%>g=tFbtl8joM~kyu+_r);WtxLbOn9sV{bj=s3R)waDo(a2UrA=2mZsunwq z*dBA$r;hJ^16~gHXgseOYPYYobwjvqAL_H8_T|`WCCp)G>SB&{hK^~K%#ksgnPZXR zxP5(&y-^Zqb&j1^U2`n8*5S>O|C9$4pZnC_UILC<`(Qx;Lv5>L96MN0MzDVihvRS6NTt}~b?ZhM9 z;rqDs7Bsth9})4uhwn5pKCwX`iFOQ4R!;KGR)3C#)5hiSz46QSj%!WMu6C}ascb$r z{e69i-WUQ-1Dg|_I<~XfTvmRFr?zJqLl+PjH9hL`f4#)PgW0v8G)6R)|gLi~GsDoH!?GvV0Ru zsLA$l6y9x*bocC!Xe?>#jF=Is>IK%ze#&z^Lhb00V-l(!MPepk2*Tl$0#7N_W*1Zrh8Uc`m|cyvI0zGnS1` z$TH}53Rq)Q8YEvIY1!4+8OI<+TfnovxW5&Ts4&A7VuR)5{_d!}HF_EY4B7i4YS&&I z;_*)w7J@6dBJ8o%2VFMyp?nVX^zF;Cbr+Gxc2a>cVjqUSef@3me)=zsz=m)PN@r?` zys_Ep_Wov7Uxv!d| z^%2fhoF+)x@tm5j%&{fK{C8r>W}vex($2OBDG0YC%hL+2>Ib6X?#?!s(SQMKdwZna z<(Njwdzi*N+_Kc3l|Nb2+-T!hEkeYBFkPFS5%MC+N6jt?Ot*q@y#M#WV42iAQ>O?CtC6 z@7U`)Xu%2KXvdaFv?K1}>aCr$#=7EYax?N&tDd(|U0DgH%1;_t9b9Wo|uP|KBwmj8Lf7PI(k8M@X*fFIS~#Q7 z+TPx-&NfN+HnhGQ!)-V@=n->z0dXGh+}+8;hps10;okblo^XGc?8E7%Z99e(5w&3e zgw2$6g}R+dyVJb=JdNdy5Kt004|*`p(~Yln9AcceA>5%hc7gczQ*6+s72JT5MP2bo z`84bmb$dA^+0m!x#aTUJg`>%t-ncygw-GD0N1_{a59I=%EM7P9mjogz1%5Utfg^Ufy!5(LxEqP>-R2gmS zj9*#7Wd5YNt#rO6Jb=Q~jLkjW5!QUiktfzJ7bU{Oe=dW_orYk7fz#^|op~~om$Ydl zxu<8084INCUEZSfln`rx0ecvM9`)Uzq8aw2gPp?}}t_(O9AH=+?er ze4@n&(Cv8(m4g?jW~-L|ZY3Q8CpC@e=y<4E4<0?*=}A(HKDVtfbd>|#5}d&d$YH}f z1NBfq3dQa6FaYFgo`->^6+=v@u7`&f4@0(S+{4-##rbQ`JKD8O1`bkq8f>*SyuY(U z>XAe>cX>qe$%mbuTcwYnGb450xGbHxMznbcT_)r^ig|o%q-PmxGk_J z!1_opoAPKImUr2?(_5z^!b|6H3iUuHPwsgY&R4nEpH6prip$brrmfLp1QL+9`7|-$hmmdHpsQDtvgT&GPqUi(_FM%Sm#Z@dKx1y zJG-KL?Zk&WRinf2o|gA;F8+RWQsPI|iTvP{^SPGt_~ z3Yn$fbU>LMv@0mF)(f?1S-n7;el?A)>qt1>w$-)DZ6{nikMg?AENyiyvbEE-@vf7m zW9h5|rr*t0hs)p!oO#nrM!JbroA3dgG`6gN4q{dCgd;V=`)(?_ULva4(i6s@E?wEp z>a5fFO9PPRHD@qKnp6MzIa%dQ7$8PIutT;B(t-DDLx{Lkn2GXBW$$Uc3N5+@ra#GBA-f~?R zn|(~Bvc8=%0@5Fv7j$+8u3H~(ZQbpZgIkWe(KM@RoT;Fg%=(M-%8`?tmV^~GNouy} ztwy>GHSXbOYTmP%dd?wJstx^n&>!MUG-q{9mercVQRJ8Q*z=uSh8-e~SrON&3nZ> z>rX4HO{+|+Fhg;2Cf2$+5_T6C#&YR#gG}zkIuF#W2}42TYT7Qng6;S}K@U0Q#@NO6 zW{ec1g<@DS-W|zsUTTS11$OI_6e#Z%^sh69eYD$FD5y7#k@mzqJ4dM z!&k9!97d5fquMrp>7hmZ*q%>f8D(cT3Cmonf{R_C@<xcQ!)e3f zIZlC5*3*<>y$ySPohTz(_?8dH&Yf*sua1dsd0u_xsUH;^@hvv?Y4Ui$?BUi+Xr*j4TH@7`LWVK)E zEoG00t8`u_%8~;EY^iibxD}ae=ixxfa#G{5&WglXqRvXxSR%~FvFzQ&SRJls`rwI^ zJ18@wZtonzBj`38;|QjE0#Qb19PRZey-1Am^j?eLkxBb80g>zxy~i6asW(LTclPx} zxgG-Ov2-e%95HZL=e$arRbKkLBQv9kRiu}TChjJq9Zb)b(iJ~Fevz!Ja979jNpKg_ zE9Kidvgxbc9gAa&gd?!=Vw*?QTZ8pZM_x~J_B8TIdi}&?DW8~IXcaz7eED2uc#i%d zBVA76yR%UAwplYn)uV6M@N`kW3gK+3S2&tJUiP}B?olAuF`Hp&mv!6gKyUZy*4P*p z!sFQf8sNqbTWK7GFcUX#G(0&$T}Y1_^TfVRMBWxSesy1ZQW-3ClTu z<|Z^_8iXESwxRM0dwX+d8j*I>f-y%|q`A-dA&Z^vt2q;g*&OzUJ&W=jTRO}}y)cs_ zlEFq=9RaNG8HX9A;xNg}$9F`Kt1)i4m__`wy2*+Tjs>6t?~vwS^3u~CV7ignKd445 zg5~gH&ftPQh;pk^dKy~a(Oj2W1Ud6Sbx~@pLPY|?3o-%W3l`4iY8r(87abpZ0 znt`-qX%D5--YyMhOMfqGrz6O5Fn3Vh6|{5jFwJ@n_%=<|(@XC*Mlj=p#%+O99gF$J_9%LHB0?|pA=ZPQbCEQIRMf4D9qc_&)5 zwda77kz7W^;t6&j9R`EI=p=*Z)g{NmvvtWMgW3lvstp5Zj<^WRbrss7m34MA`Gy5u z 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

!&MhoJp*BJnen9P&(w8?h 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 QHwMl>ZEgQwJC`l+f5uOgcK`qY literal 195072 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 My8gNOcBAnB0#oT!h5!Hn diff --git a/FakePieShop/obj/Debug/net6.0/FakePieShop.pdb b/FakePieShop/obj/Debug/net6.0/FakePieShop.pdb index 847655092ce04a57f66aa72417f57a44bd7f8b60..3d46b74fc0dc617dcd471f826dc67631ea92ee56 100644 GIT binary patch delta 33537 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

6S@kS1~Cxru$v#!KK8)kdTd) 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 delta 16083 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 diff --git a/FakePieShop/obj/Debug/net6.0/project.razor.vs.json b/FakePieShop/obj/Debug/net6.0/project.razor.vs.json index 6f13490..957ae85 100644 --- a/FakePieShop/obj/Debug/net6.0/project.razor.vs.json +++ b/FakePieShop/obj/Debug/net6.0/project.razor.vs.json @@ -1 +1 @@ -{"SerializedFilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\obj\\Debug\\net6.0\\project.razor.vs.json","FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\FakePieShop.csproj","Configuration":{"ConfigurationName":"MVC-3.0","LanguageVersion":"6.0","Extensions":[{"ExtensionName":"MVC-3.0"}]},"ProjectWorkspaceState":{"TagHelpers":[{"HashCode":1121308923,"Kind":"ITagHelper","Name":"FakePieShop.TagHelpers.EmailTagHelper","AssemblyName":"FakePieShop","CaseSensitive":false,"TagMatchingRules":[{"TagName":"email"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"address","TypeName":"System.String","Metadata":{"Common.PropertyName":"Address"}},{"Kind":"ITagHelper","Name":"content","TypeName":"System.String","Metadata":{"Common.PropertyName":"Content"}}],"Metadata":{"Common.TypeName":"FakePieShop.TagHelpers.EmailTagHelper","Common.TypeNameIdentifier":"EmailTagHelper","Common.TypeNamespace":"FakePieShop.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1970805998,"Kind":"MVC.ViewComponent","Name":"__Generated__CategoryMenuViewComponentTagHelper","AssemblyName":"FakePieShop","CaseSensitive":false,"TagMatchingRules":[{"TagName":"vc:category-menu"}],"Metadata":{"Common.TypeName":"__Generated__CategoryMenuViewComponentTagHelper","MVC.ViewComponent.Name":"CategoryMenu","Runtime.Name":"ITagHelper"}},{"HashCode":1265128706,"Kind":"MVC.ViewComponent","Name":"__Generated__ShoppingCartSummaryViewComponentTagHelper","AssemblyName":"FakePieShop","CaseSensitive":false,"TagMatchingRules":[{"TagName":"vc:shopping-cart-summary"}],"Metadata":{"Common.TypeName":"__Generated__ShoppingCartSummaryViewComponentTagHelper","MVC.ViewComponent.Name":"ShoppingCartSummary","Runtime.Name":"ITagHelper"}},{"HashCode":-1976229550,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.EditForm","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n

\r\n Renders a form element that cascades an to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"EditForm"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created form element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"EditContext","TypeName":"Microsoft.AspNetCore.Components.Forms.EditContext","Documentation":"\r\n \r\n Supplies the edit context explicitly. If using this parameter, do not\r\n also supply , since the model value will be taken\r\n from the property.\r\n \r\n ","Metadata":{"Common.PropertyName":"EditContext","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.EditContext"}},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Specifies the top-level model object for the form. An edit context will\r\n be constructed for this model. If using this parameter, do not also supply\r\n a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted.\r\n \r\n If using this parameter, you are responsible for triggering any validation\r\n manually, e.g., by calling .\r\n \r\n ","Metadata":{"Common.PropertyName":"OnSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnValidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be valid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnValidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnInvalidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be invalid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnInvalidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":191090756,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.EditForm","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders a form element that cascades an to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.EditForm"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created form element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"EditContext","TypeName":"Microsoft.AspNetCore.Components.Forms.EditContext","Documentation":"\r\n \r\n Supplies the edit context explicitly. If using this parameter, do not\r\n also supply , since the model value will be taken\r\n from the property.\r\n \r\n ","Metadata":{"Common.PropertyName":"EditContext","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.EditContext"}},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Specifies the top-level model object for the form. An edit context will\r\n be constructed for this model. If using this parameter, do not also supply\r\n a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted.\r\n \r\n If using this parameter, you are responsible for triggering any validation\r\n manually, e.g., by calling .\r\n \r\n ","Metadata":{"Common.PropertyName":"OnSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnValidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be valid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnValidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnInvalidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be invalid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnInvalidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":421419917,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"EditForm"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":226510491,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.EditForm"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-2065312680,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputCheckbox"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":-350659821,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1258965888,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing date values.\r\n Supported types are and .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputDate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputDate"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"Type","TypeName":"Microsoft.AspNetCore.Components.Forms.InputDateType","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets the type of HTML input to be rendered.\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.InputDateType"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":1020867059,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing date values.\r\n Supported types are and .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputDate"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"Type","TypeName":"Microsoft.AspNetCore.Components.Forms.InputDateType","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets the type of HTML input to be rendered.\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.InputDateType"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1382592640,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputFile","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that wraps the HTML file input element and supplies a for each file's contents.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputFile"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"OnChange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets the event callback that will be invoked when the collection of selected files changes.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnChange","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputFile","Common.TypeNameIdentifier":"InputFile","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":959106530,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputFile","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that wraps the HTML file input element and supplies a for each file's contents.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputFile"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"OnChange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets the event callback that will be invoked when the collection of selected files changes.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnChange","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputFile","Common.TypeNameIdentifier":"InputFile","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1394710171,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing numeric values.\r\n Supported numeric types are , , , , , .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputNumber"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputNumber"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":2117387803,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing numeric values.\r\n Supported numeric types are , , , , , .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputNumber"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1831010680,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadio","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component used for selecting a value from a group of choices.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputRadio"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadio"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of this input.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the parent input radio group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadio","Common.TypeNameIdentifier":"InputRadio","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":748163635,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadio","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component used for selecting a value from a group of choices.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadio"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadio"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of this input.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the parent input radio group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadio","Common.TypeNameIdentifier":"InputRadio","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":553938885,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Groups child components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputRadioGroup"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadioGroup"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":-240189885,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Groups child components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadioGroup"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-329149034,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"InputRadioGroup"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":2051182940,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":508662150,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A dropdown selection component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputSelect"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputSelect"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":92454017,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A dropdown selection component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputSelect"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-761095015,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"InputSelect"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":85331601,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.InputSelect"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1127546831,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputText"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":1412090241,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1984013923,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A multiline input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputTextArea"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":-283689260,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A multiline input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-245684300,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages for a specified field within a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ValidationMessage"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.ValidationMessage"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created div element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"For","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Specifies the field for which validation messages should be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"For","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","Common.TypeNameIdentifier":"ValidationMessage","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":1528528215,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages for a specified field within a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.ValidationMessage"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created div element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"For","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Specifies the field for which validation messages should be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"For","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","Common.TypeNameIdentifier":"ValidationMessage","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1959080929,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages from a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ValidationSummary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Gets or sets the model to produce the list of validation messages for.\r\n When specified, this lists all errors that are associated with the model instance.\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created ul element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","Common.TypeNameIdentifier":"ValidationSummary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":1490654527,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages from a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Gets or sets the model to produce the list of validation messages for.\r\n When specified, this lists all errors that are associated with the model instance.\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created ul element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","Common.TypeNameIdentifier":"ValidationSummary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":2012395568,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n After navigating from one page to another, sets focus to an element\r\n matching a CSS selector. This can be used to build an accessible\r\n navigation system compatible with screen readers.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"FocusOnNavigate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","Documentation":"\r\n \r\n Gets or sets the route data. This can be obtained from an enclosing\r\n component.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"Selector","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a CSS selector describing the element to be focused after\r\n navigation between pages.\r\n \r\n ","Metadata":{"Common.PropertyName":"Selector","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","Common.TypeNameIdentifier":"FocusOnNavigate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Runtime.Name":"Components.IComponent"}},{"HashCode":-1759321182,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n After navigating from one page to another, sets focus to an element\r\n matching a CSS selector. This can be used to build an accessible\r\n navigation system compatible with screen readers.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","Documentation":"\r\n \r\n Gets or sets the route data. This can be obtained from an enclosing\r\n component.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"Selector","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a CSS selector describing the element to be focused after\r\n navigation between pages.\r\n \r\n ","Metadata":{"Common.PropertyName":"Selector","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","Common.TypeNameIdentifier":"FocusOnNavigate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1380850759,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.NavLink","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that renders an anchor tag, automatically toggling its 'active'\r\n class based on whether its 'href' matches the current URI.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NavLink"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ActiveClass","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the CSS class name applied to the NavLink when the\r\n current route matches the NavLink href.\r\n \r\n ","Metadata":{"Common.PropertyName":"ActiveClass","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be added to the generated\r\n a element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Match","TypeName":"Microsoft.AspNetCore.Components.Routing.NavLinkMatch","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets a value representing the URL matching behavior.\r\n \r\n ","Metadata":{"Common.PropertyName":"Match","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Runtime.Name":"Components.IComponent"}},{"HashCode":642792029,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.NavLink","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that renders an anchor tag, automatically toggling its 'active'\r\n class based on whether its 'href' matches the current URI.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.NavLink"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ActiveClass","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the CSS class name applied to the NavLink when the\r\n current route matches the NavLink href.\r\n \r\n ","Metadata":{"Common.PropertyName":"ActiveClass","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be added to the generated\r\n a element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Match","TypeName":"Microsoft.AspNetCore.Components.Routing.NavLinkMatch","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets a value representing the URL matching behavior.\r\n \r\n ","Metadata":{"Common.PropertyName":"Match","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1920388826,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"NavLink"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":792199978,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Routing.NavLink"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-230489831,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides content to components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"HeadContent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":128167545,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides content to components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.HeadContent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1689854822,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"HeadContent"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":779040282,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.HeadContent"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1266783900,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadOutlet","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders content provided by components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"HeadOutlet"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadOutlet","Common.TypeNameIdentifier":"HeadOutlet","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":550896023,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadOutlet","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders content provided by components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.HeadOutlet"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadOutlet","Common.TypeNameIdentifier":"HeadOutlet","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-886198252,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.PageTitle","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Enables rendering an HTML <title> to a component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"PageTitle"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":-583895305,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.PageTitle","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Enables rendering an HTML <title> to a component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.PageTitle"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":886568814,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"PageTitle"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":206831603,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.PageTitle"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1532515791,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Captures errors thrown from its child content.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ErrorContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ErrorContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"MaximumErrorCount","TypeName":"System.Int32","Documentation":"\r\n \r\n The maximum number of errors that can be handled. If more errors are received,\r\n they will be treated as fatal. Calling resets the count.\r\n \r\n ","Metadata":{"Common.PropertyName":"MaximumErrorCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":748353587,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Captures errors thrown from its child content.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ErrorContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ErrorContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"MaximumErrorCount","TypeName":"System.Int32","Documentation":"\r\n \r\n The maximum number of errors that can be handled. If more errors are received,\r\n they will be treated as fatal. Calling resets the count.\r\n \r\n ","Metadata":{"Common.PropertyName":"MaximumErrorCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1582794375,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"ErrorBoundary"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1559812008,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.ErrorBoundary"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":873037395,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ErrorContent","ParentTag":"ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ErrorContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":103384670,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ErrorContent","ParentTag":"Microsoft.AspNetCore.Components.Web.ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ErrorContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-732556857,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides functionality for rendering a virtualized list of items.\r\n \r\n The context type for the items being rendered.\r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TItem","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TItem","Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"]},"Metadata":{"Common.PropertyName":"TItem","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ChildContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ItemContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ItemContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Placeholder","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","Metadata":{"Common.PropertyName":"Placeholder","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ItemSize","TypeName":"System.Single","Documentation":"\r\n \r\n Gets the size of each item in pixels. Defaults to 50px.\r\n \r\n ","Metadata":{"Common.PropertyName":"ItemSize","Common.GloballyQualifiedTypeName":"global::System.Single"}},{"Kind":"Components.Component","Name":"ItemsProvider","TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Documentation":"\r\n \r\n Gets or sets the function providing items to the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Common.PropertyName":"ItemsProvider","Components.DelegateSignature":"True","Components.GenericTyped":"True","Components.IsDelegateAwaitableResult":"True"}},{"Kind":"Components.Component","Name":"Items","TypeName":"System.Collections.Generic.ICollection","Documentation":"\r\n \r\n Gets or sets the fixed item source.\r\n \r\n ","Metadata":{"Common.PropertyName":"Items","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.ICollection","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"OverscanCount","TypeName":"System.Int32","Documentation":"\r\n \r\n Gets or sets a value that determines how many additional items will be rendered\r\n before and after the visible region. This help to reduce the frequency of rendering\r\n during scrolling. However, higher values mean that more elements will be present\r\n in the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OverscanCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":172636577,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides functionality for rendering a virtualized list of items.\r\n \r\n The context type for the items being rendered.\r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TItem","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TItem","Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"]},"Metadata":{"Common.PropertyName":"TItem","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ChildContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ItemContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ItemContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Placeholder","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","Metadata":{"Common.PropertyName":"Placeholder","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ItemSize","TypeName":"System.Single","Documentation":"\r\n \r\n Gets the size of each item in pixels. Defaults to 50px.\r\n \r\n ","Metadata":{"Common.PropertyName":"ItemSize","Common.GloballyQualifiedTypeName":"global::System.Single"}},{"Kind":"Components.Component","Name":"ItemsProvider","TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Documentation":"\r\n \r\n Gets or sets the function providing items to the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Common.PropertyName":"ItemsProvider","Components.DelegateSignature":"True","Components.GenericTyped":"True","Components.IsDelegateAwaitableResult":"True"}},{"Kind":"Components.Component","Name":"Items","TypeName":"System.Collections.Generic.ICollection","Documentation":"\r\n \r\n Gets or sets the fixed item source.\r\n \r\n ","Metadata":{"Common.PropertyName":"Items","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.ICollection","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"OverscanCount","TypeName":"System.Int32","Documentation":"\r\n \r\n Gets or sets a value that determines how many additional items will be rendered\r\n before and after the visible region. This help to reduce the frequency of rendering\r\n during scrolling. However, higher values mean that more elements will be present\r\n in the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OverscanCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-514167269,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":215248206,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1800818476,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ItemContent","ParentTag":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ItemContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":2112976254,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ItemContent","ParentTag":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ItemContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1807588775,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Placeholder","ParentTag":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Placeholder"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1762038415,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Placeholder","ParentTag":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Placeholder"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":600300187,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","AssemblyName":"Microsoft.AspNetCore.Components.Forms","Documentation":"\r\n \r\n Adds Data Annotations validation support to an .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"DataAnnotationsValidator"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","Common.TypeNameIdentifier":"DataAnnotationsValidator","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":-450791174,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","AssemblyName":"Microsoft.AspNetCore.Components.Forms","Documentation":"\r\n \r\n Adds Data Annotations validation support to an .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","Common.TypeNameIdentifier":"DataAnnotationsValidator","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1659049326,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Combines the behaviors of and ,\r\n so that it displays the page matching the specified route but only if the user\r\n is authorized to see it.\r\n \r\n Additionally, this component supplies a cascading parameter of type ,\r\n which makes the user's current authentication state available to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Runtime.Name":"Components.IComponent"}},{"HashCode":-2067093338,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Combines the behaviors of and ,\r\n so that it displays the page matching the specified route but only if the user\r\n is authorized to see it.\r\n \r\n Additionally, this component supplies a cascading parameter of type ,\r\n which makes the user's current authentication state available to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1602723046,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":109476351,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1127560569,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"AuthorizeRouteView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":6310419,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-97470475,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Displays differing content depending on the user's authorization status.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Policy","TypeName":"System.String","Documentation":"\r\n \r\n The policy name that determines whether the content can be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"Policy","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"Roles","TypeName":"System.String","Documentation":"\r\n \r\n A comma delimited list of roles that are allowed to display the content.\r\n \r\n ","Metadata":{"Common.PropertyName":"Roles","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Runtime.Name":"Components.IComponent"}},{"HashCode":-1591375188,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Displays differing content depending on the user's authorization status.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Policy","TypeName":"System.String","Documentation":"\r\n \r\n The policy name that determines whether the content can be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"Policy","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"Roles","TypeName":"System.String","Documentation":"\r\n \r\n A comma delimited list of roles that are allowed to display the content.\r\n \r\n ","Metadata":{"Common.PropertyName":"Roles","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":529893422,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-283371522,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1730663890,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":2080400133,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1428985557,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorized","ParentTag":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Authorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-2020738019,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Authorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":2013499727,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"AuthorizeView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":621119194,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-472966043,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","CaseSensitive":true,"TagMatchingRules":[{"TagName":"CascadingAuthenticationState"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Runtime.Name":"Components.IComponent"}},{"HashCode":859759164,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-113265668,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"CascadingAuthenticationState"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1063076882,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":112112172,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.CascadingValue","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that provides a cascading value to all descendant components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"CascadingValue"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.CascadingValue"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n The value to be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Optionally gives a name to the provided value. Descendant components\r\n will be able to receive the value by specifying this name.\r\n \r\n If no name is specified, then descendant components will receive the\r\n value based the type of value they are requesting.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"IsFixed","TypeName":"System.Boolean","Documentation":"\r\n \r\n If true, indicates that will not change. This is a\r\n performance optimization that allows the framework to skip setting up\r\n change notifications. Set this flag only if you will not change\r\n during the component's lifetime.\r\n \r\n ","Metadata":{"Common.PropertyName":"IsFixed","Common.GloballyQualifiedTypeName":"global::System.Boolean"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":-2006353105,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.CascadingValue","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that provides a cascading value to all descendant components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.CascadingValue"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.CascadingValue"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n The value to be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Optionally gives a name to the provided value. Descendant components\r\n will be able to receive the value by specifying this name.\r\n \r\n If no name is specified, then descendant components will receive the\r\n value based the type of value they are requesting.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"IsFixed","TypeName":"System.Boolean","Documentation":"\r\n \r\n If true, indicates that will not change. This is a\r\n performance optimization that allows the framework to skip setting up\r\n change notifications. Set this flag only if you will not change\r\n during the component's lifetime.\r\n \r\n ","Metadata":{"Common.PropertyName":"IsFixed","Common.GloballyQualifiedTypeName":"global::System.Boolean"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-889459120,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"CascadingValue"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1095368138,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.CascadingValue"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":816413986,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.DynamicComponent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that renders another component dynamically according to its\r\n parameter.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"DynamicComponent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Type","TypeName":"System.Type","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the type of the component to be rendered. The supplied type must\r\n implement .\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Parameters","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a dictionary of parameters to be passed to the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"Parameters","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.DynamicComponent","Common.TypeNameIdentifier":"DynamicComponent","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Runtime.Name":"Components.IComponent"}},{"HashCode":1299178003,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.DynamicComponent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that renders another component dynamically according to its\r\n parameter.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.DynamicComponent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Type","TypeName":"System.Type","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the type of the component to be rendered. The supplied type must\r\n implement .\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Parameters","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a dictionary of parameters to be passed to the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"Parameters","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.DynamicComponent","Common.TypeNameIdentifier":"DynamicComponent","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":443104849,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.LayoutView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified content inside the specified layout and any further\r\n nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"LayoutView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Layout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of the layout in which to display the content.\r\n The type must implement and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"Layout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Runtime.Name":"Components.IComponent"}},{"HashCode":2117237878,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.LayoutView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified content inside the specified layout and any further\r\n nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.LayoutView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Layout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of the layout in which to display the content.\r\n The type must implement and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"Layout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1467088548,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"LayoutView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-752363043,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.LayoutView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1158605894,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.RouteView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified page component, rendering it inside its layout\r\n and any further nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"RouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.RouteView","Common.TypeNameIdentifier":"RouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Runtime.Name":"Components.IComponent"}},{"HashCode":-1575418860,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.RouteView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified page component, rendering it inside its layout\r\n and any further nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.RouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.RouteView","Common.TypeNameIdentifier":"RouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":251306581,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.Router","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that supplies route data corresponding to the current navigation state.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Router"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AppAssembly","TypeName":"System.Reflection.Assembly","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the assembly that should be searched for components matching the URI.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppAssembly","Common.GloballyQualifiedTypeName":"global::System.Reflection.Assembly"}},{"Kind":"Components.Component","Name":"AdditionalAssemblies","TypeName":"System.Collections.Generic.IEnumerable","Documentation":"\r\n \r\n Gets or sets a collection of additional assemblies that should be searched for components\r\n that can match URIs.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAssemblies","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IEnumerable"}},{"Kind":"Components.Component","Name":"NotFound","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotFound","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Found","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"Found","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Navigating","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Navigating","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnNavigateAsync","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a handler that should be called before navigating to a new page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnNavigateAsync","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"PreferExactMatches","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a flag to indicate whether route matching should prefer exact matches\r\n over wildcards.\r\n This property is obsolete and configuring it does nothing.\r\n \r\n ","Metadata":{"Common.PropertyName":"PreferExactMatches","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Runtime.Name":"Components.IComponent"}},{"HashCode":-1275292906,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.Router","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that supplies route data corresponding to the current navigation state.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.Router"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AppAssembly","TypeName":"System.Reflection.Assembly","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the assembly that should be searched for components matching the URI.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppAssembly","Common.GloballyQualifiedTypeName":"global::System.Reflection.Assembly"}},{"Kind":"Components.Component","Name":"AdditionalAssemblies","TypeName":"System.Collections.Generic.IEnumerable","Documentation":"\r\n \r\n Gets or sets a collection of additional assemblies that should be searched for components\r\n that can match URIs.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAssemblies","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IEnumerable"}},{"Kind":"Components.Component","Name":"NotFound","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotFound","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Found","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"Found","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Navigating","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Navigating","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnNavigateAsync","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a handler that should be called before navigating to a new page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnNavigateAsync","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"PreferExactMatches","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a flag to indicate whether route matching should prefer exact matches\r\n over wildcards.\r\n This property is obsolete and configuring it does nothing.\r\n \r\n ","Metadata":{"Common.PropertyName":"PreferExactMatches","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1082338626,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotFound","ParentTag":"Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-555496463,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotFound","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":23965824,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Found","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Found","ParentTag":"Router"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Found"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Found","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-523621034,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Found","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Found","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Found"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Found","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1637319012,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Navigating","ParentTag":"Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-1087896449,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Navigating","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-727369005,"Kind":"Components.EventHandler","Name":"onfocus","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfocus","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfocus","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocus:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocus:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocus","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfocus","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocus"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfocus"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfocus"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1653693213,"Kind":"Components.EventHandler","Name":"onblur","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onblur","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onblur","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onblur:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onblur:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onblur","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onblur","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onblur"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onblur"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onblur"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":778364182,"Kind":"Components.EventHandler","Name":"onfocusin","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfocusin","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfocusin","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusin:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusin:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocusin","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfocusin","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocusin"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfocusin"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfocusin"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-517322429,"Kind":"Components.EventHandler","Name":"onfocusout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfocusout","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfocusout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocusout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfocusout","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocusout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfocusout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfocusout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-936888182,"Kind":"Components.EventHandler","Name":"onmouseover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmouseover","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmouseover","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseover:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseover:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmouseover","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseover"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmouseover"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmouseover"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-2029089480,"Kind":"Components.EventHandler","Name":"onmouseout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmouseout","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmouseout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmouseout","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmouseout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmouseout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-392837186,"Kind":"Components.EventHandler","Name":"onmousemove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmousemove","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmousemove","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousemove:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousemove:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousemove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmousemove","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousemove"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmousemove"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmousemove"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1242953820,"Kind":"Components.EventHandler","Name":"onmousedown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmousedown","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmousedown","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousedown:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousedown:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousedown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmousedown","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousedown"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmousedown"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmousedown"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1914736575,"Kind":"Components.EventHandler","Name":"onmouseup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmouseup","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmouseup","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseup:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseup:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmouseup","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseup"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmouseup"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmouseup"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1331383727,"Kind":"Components.EventHandler","Name":"onclick","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onclick","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onclick:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onclick:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onclick","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onclick"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onclick"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onclick"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":536006733,"Kind":"Components.EventHandler","Name":"ondblclick","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondblclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondblclick","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondblclick:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondblclick:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondblclick","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondblclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondblclick"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondblclick"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondblclick"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-366485848,"Kind":"Components.EventHandler","Name":"onwheel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onwheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onwheel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwheel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwheel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onwheel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onwheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onwheel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onwheel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onwheel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.WheelEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-160573819,"Kind":"Components.EventHandler","Name":"onmousewheel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmousewheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmousewheel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousewheel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousewheel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousewheel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmousewheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousewheel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmousewheel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmousewheel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.WheelEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1538066542,"Kind":"Components.EventHandler","Name":"oncontextmenu","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncontextmenu","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncontextmenu","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncontextmenu:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncontextmenu:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncontextmenu","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncontextmenu","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncontextmenu"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncontextmenu"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncontextmenu"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1705523732,"Kind":"Components.EventHandler","Name":"ondrag","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondrag","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondrag","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrag:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrag:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondrag","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondrag","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondrag"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondrag"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondrag"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1290771231,"Kind":"Components.EventHandler","Name":"ondragend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragend","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragend","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-337171814,"Kind":"Components.EventHandler","Name":"ondragenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragenter","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragenter","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragenter:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragenter:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragenter","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragenter"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragenter"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragenter"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1201691127,"Kind":"Components.EventHandler","Name":"ondragleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragleave","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragleave","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragleave:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragleave:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragleave","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragleave"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragleave"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragleave"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-519835019,"Kind":"Components.EventHandler","Name":"ondragover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragover","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragover","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragover:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragover:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragover","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragover"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragover"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragover"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-202939013,"Kind":"Components.EventHandler","Name":"ondragstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragstart","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragstart","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":364403475,"Kind":"Components.EventHandler","Name":"ondrop","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondrop","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondrop","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrop:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrop:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondrop","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondrop","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondrop"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondrop"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondrop"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1929574430,"Kind":"Components.EventHandler","Name":"onkeydown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onkeydown","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onkeydown","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeydown:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeydown:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeydown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onkeydown","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeydown"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onkeydown"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onkeydown"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":110467606,"Kind":"Components.EventHandler","Name":"onkeyup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onkeyup","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onkeyup","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeyup:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeyup:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeyup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onkeyup","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeyup"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onkeyup"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onkeyup"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":582697943,"Kind":"Components.EventHandler","Name":"onkeypress","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onkeypress","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onkeypress","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeypress:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeypress:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeypress","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onkeypress","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeypress"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onkeypress"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onkeypress"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-365542076,"Kind":"Components.EventHandler","Name":"onchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onchange","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onchange","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.ChangeEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":794708869,"Kind":"Components.EventHandler","Name":"oninput","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oninput","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oninput","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninput:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninput:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oninput","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oninput","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oninput"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oninput"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oninput"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.ChangeEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1603213185,"Kind":"Components.EventHandler","Name":"oninvalid","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oninvalid","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oninvalid","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninvalid:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninvalid:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oninvalid","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oninvalid","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oninvalid"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oninvalid"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oninvalid"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":836426675,"Kind":"Components.EventHandler","Name":"onreset","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onreset","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onreset","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreset:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreset:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onreset","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onreset","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onreset"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onreset"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onreset"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1485878008,"Kind":"Components.EventHandler","Name":"onselect","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onselect","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onselect","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselect:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselect:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselect","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onselect","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselect"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onselect"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onselect"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1818652440,"Kind":"Components.EventHandler","Name":"onselectstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onselectstart","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onselectstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselectstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onselectstart","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselectstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onselectstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onselectstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-758644927,"Kind":"Components.EventHandler","Name":"onselectionchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onselectionchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onselectionchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectionchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectionchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselectionchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onselectionchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselectionchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onselectionchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onselectionchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1853778474,"Kind":"Components.EventHandler","Name":"onsubmit","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onsubmit","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onsubmit","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsubmit:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsubmit:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onsubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onsubmit","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onsubmit"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onsubmit"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onsubmit"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1478138657,"Kind":"Components.EventHandler","Name":"onbeforecopy","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforecopy","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforecopy","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecopy:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecopy:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforecopy","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforecopy","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforecopy"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforecopy"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforecopy"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1954762307,"Kind":"Components.EventHandler","Name":"onbeforecut","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforecut","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforecut","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecut:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecut:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforecut","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforecut","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforecut"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforecut"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforecut"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":68240426,"Kind":"Components.EventHandler","Name":"onbeforepaste","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforepaste","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforepaste","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforepaste:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforepaste:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforepaste","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforepaste","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforepaste"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforepaste"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforepaste"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1936131299,"Kind":"Components.EventHandler","Name":"oncopy","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncopy","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncopy","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncopy:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncopy:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncopy","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncopy","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncopy"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncopy"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncopy"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-651207526,"Kind":"Components.EventHandler","Name":"oncut","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncut","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncut","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncut:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncut:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncut","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncut","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncut"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncut"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncut"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1089411740,"Kind":"Components.EventHandler","Name":"onpaste","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpaste","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpaste","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpaste:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpaste:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpaste","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpaste","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpaste"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpaste"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpaste"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-679554340,"Kind":"Components.EventHandler","Name":"ontouchcancel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchcancel","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchcancel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchcancel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchcancel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchcancel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchcancel","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchcancel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchcancel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchcancel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":943674983,"Kind":"Components.EventHandler","Name":"ontouchend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchend","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchend","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":257218252,"Kind":"Components.EventHandler","Name":"ontouchmove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchmove","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchmove","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchmove:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchmove:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchmove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchmove","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchmove"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchmove"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchmove"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":2036593677,"Kind":"Components.EventHandler","Name":"ontouchstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchstart","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchstart","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1103757234,"Kind":"Components.EventHandler","Name":"ontouchenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchenter","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchenter","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchenter:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchenter:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchenter","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchenter"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchenter"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchenter"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-530801748,"Kind":"Components.EventHandler","Name":"ontouchleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchleave","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchleave","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchleave:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchleave:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchleave","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchleave"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchleave"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchleave"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1577454197,"Kind":"Components.EventHandler","Name":"ongotpointercapture","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ongotpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ongotpointercapture","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ongotpointercapture:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ongotpointercapture:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ongotpointercapture","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ongotpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ongotpointercapture"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ongotpointercapture"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ongotpointercapture"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-2091195272,"Kind":"Components.EventHandler","Name":"onlostpointercapture","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onlostpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onlostpointercapture","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onlostpointercapture:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onlostpointercapture:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onlostpointercapture","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onlostpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onlostpointercapture"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onlostpointercapture"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onlostpointercapture"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-2045316255,"Kind":"Components.EventHandler","Name":"onpointercancel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointercancel","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointercancel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointercancel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointercancel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointercancel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointercancel","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointercancel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointercancel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointercancel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1382687032,"Kind":"Components.EventHandler","Name":"onpointerdown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerdown","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerdown","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerdown:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerdown:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerdown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerdown","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerdown"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerdown"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerdown"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":101473625,"Kind":"Components.EventHandler","Name":"onpointerenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerenter","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerenter","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerenter:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerenter:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerenter","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerenter"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerenter"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerenter"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1542789096,"Kind":"Components.EventHandler","Name":"onpointerleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerleave","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerleave","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerleave:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerleave:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerleave","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerleave"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerleave"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerleave"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1970868744,"Kind":"Components.EventHandler","Name":"onpointermove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointermove","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointermove","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointermove:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointermove:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointermove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointermove","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointermove"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointermove"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointermove"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1496598645,"Kind":"Components.EventHandler","Name":"onpointerout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerout","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerout","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-80282310,"Kind":"Components.EventHandler","Name":"onpointerover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerover","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerover","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerover:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerover:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerover","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerover"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerover"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerover"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1553651268,"Kind":"Components.EventHandler","Name":"onpointerup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerup","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerup","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerup:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerup:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerup","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerup"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerup"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerup"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-536806730,"Kind":"Components.EventHandler","Name":"oncanplay","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncanplay","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncanplay","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplay:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplay:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncanplay","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncanplay","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncanplay"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncanplay"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncanplay"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":908414765,"Kind":"Components.EventHandler","Name":"oncanplaythrough","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncanplaythrough","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncanplaythrough","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplaythrough:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplaythrough:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncanplaythrough","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncanplaythrough","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncanplaythrough"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncanplaythrough"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncanplaythrough"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-129079417,"Kind":"Components.EventHandler","Name":"oncuechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncuechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncuechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncuechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncuechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncuechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncuechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncuechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncuechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncuechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":790156873,"Kind":"Components.EventHandler","Name":"ondurationchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondurationchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondurationchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondurationchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondurationchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondurationchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondurationchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondurationchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondurationchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondurationchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":476976603,"Kind":"Components.EventHandler","Name":"onemptied","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onemptied","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onemptied","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onemptied:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onemptied:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onemptied","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onemptied","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onemptied"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onemptied"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onemptied"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1456525810,"Kind":"Components.EventHandler","Name":"onpause","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpause","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpause","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpause:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpause:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpause","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpause","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpause"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpause"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpause"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":177399041,"Kind":"Components.EventHandler","Name":"onplay","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onplay","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onplay","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplay:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplay:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onplay","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onplay","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onplay"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onplay"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onplay"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1969236839,"Kind":"Components.EventHandler","Name":"onplaying","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onplaying","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onplaying","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplaying:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplaying:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onplaying","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onplaying","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onplaying"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onplaying"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onplaying"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-738595097,"Kind":"Components.EventHandler","Name":"onratechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onratechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onratechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onratechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onratechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onratechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onratechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onratechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onratechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onratechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-955105252,"Kind":"Components.EventHandler","Name":"onseeked","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onseeked","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onseeked","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeked:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeked:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onseeked","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onseeked","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onseeked"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onseeked"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onseeked"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-187878019,"Kind":"Components.EventHandler","Name":"onseeking","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onseeking","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onseeking","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeking:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeking:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onseeking","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onseeking","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onseeking"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onseeking"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onseeking"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1115466435,"Kind":"Components.EventHandler","Name":"onstalled","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onstalled","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onstalled","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstalled:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstalled:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onstalled","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onstalled","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onstalled"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onstalled"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onstalled"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":14718909,"Kind":"Components.EventHandler","Name":"onstop","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onstop","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onstop","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstop:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstop:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onstop","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onstop","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onstop"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onstop"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onstop"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1798193991,"Kind":"Components.EventHandler","Name":"onsuspend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onsuspend","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onsuspend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsuspend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsuspend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onsuspend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onsuspend","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onsuspend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onsuspend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onsuspend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-83598432,"Kind":"Components.EventHandler","Name":"ontimeupdate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontimeupdate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontimeupdate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeupdate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeupdate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontimeupdate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontimeupdate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontimeupdate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontimeupdate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontimeupdate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-546088352,"Kind":"Components.EventHandler","Name":"onvolumechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onvolumechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onvolumechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onvolumechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onvolumechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onvolumechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onvolumechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onvolumechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onvolumechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onvolumechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-147712496,"Kind":"Components.EventHandler","Name":"onwaiting","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onwaiting","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onwaiting","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwaiting:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwaiting:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onwaiting","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onwaiting","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onwaiting"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onwaiting"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onwaiting"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1877397063,"Kind":"Components.EventHandler","Name":"onloadstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadstart","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadstart","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-93156651,"Kind":"Components.EventHandler","Name":"ontimeout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontimeout","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontimeout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontimeout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontimeout","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontimeout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontimeout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontimeout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1530156502,"Kind":"Components.EventHandler","Name":"onabort","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onabort","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onabort","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onabort:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onabort:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onabort","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onabort","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onabort"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onabort"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onabort"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":841018137,"Kind":"Components.EventHandler","Name":"onload","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onload","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onload","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onload:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onload:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onload","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onload","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onload"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onload"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onload"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1646323413,"Kind":"Components.EventHandler","Name":"onloadend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadend","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadend","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1805914554,"Kind":"Components.EventHandler","Name":"onprogress","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onprogress","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onprogress","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onprogress:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onprogress:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onprogress","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onprogress","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onprogress"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onprogress"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onprogress"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1414019166,"Kind":"Components.EventHandler","Name":"onerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onerror","Microsoft.AspNetCore.Components.Web.ErrorEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onerror","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onerror:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onerror:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onerror","Microsoft.AspNetCore.Components.Web.ErrorEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onerror"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onerror"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onerror"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ErrorEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1684286683,"Kind":"Components.EventHandler","Name":"onactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1877185334,"Kind":"Components.EventHandler","Name":"onbeforeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforeactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforeactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforeactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforeactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforeactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforeactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforeactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforeactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1604892650,"Kind":"Components.EventHandler","Name":"onbeforedeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforedeactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforedeactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforedeactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforedeactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforedeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforedeactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforedeactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforedeactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforedeactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":455610339,"Kind":"Components.EventHandler","Name":"ondeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondeactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondeactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondeactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondeactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondeactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondeactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondeactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondeactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":484371961,"Kind":"Components.EventHandler","Name":"onended","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onended","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onended","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onended:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onended:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onended","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onended","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onended"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onended"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onended"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":2000527016,"Kind":"Components.EventHandler","Name":"onfullscreenchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfullscreenchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfullscreenchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfullscreenchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfullscreenchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfullscreenchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfullscreenchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfullscreenchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1453016704,"Kind":"Components.EventHandler","Name":"onfullscreenerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfullscreenerror","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfullscreenerror","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenerror:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenerror:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfullscreenerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfullscreenerror","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfullscreenerror"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfullscreenerror"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfullscreenerror"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1255032978,"Kind":"Components.EventHandler","Name":"onloadeddata","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadeddata","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadeddata","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadeddata:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadeddata:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadeddata","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadeddata","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadeddata"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadeddata"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadeddata"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":166892546,"Kind":"Components.EventHandler","Name":"onloadedmetadata","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadedmetadata","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadedmetadata","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadedmetadata:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadedmetadata:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadedmetadata","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadedmetadata","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadedmetadata"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadedmetadata"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadedmetadata"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1619086998,"Kind":"Components.EventHandler","Name":"onpointerlockchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerlockchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerlockchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerlockchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerlockchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerlockchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerlockchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerlockchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":183890027,"Kind":"Components.EventHandler","Name":"onpointerlockerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerlockerror","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerlockerror","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockerror:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockerror:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerlockerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerlockerror","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerlockerror"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerlockerror"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerlockerror"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-960344618,"Kind":"Components.EventHandler","Name":"onreadystatechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onreadystatechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onreadystatechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreadystatechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreadystatechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onreadystatechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onreadystatechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onreadystatechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onreadystatechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onreadystatechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":823383190,"Kind":"Components.EventHandler","Name":"onscroll","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onscroll","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onscroll","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onscroll:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onscroll:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onscroll","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onscroll","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onscroll"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onscroll"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onscroll"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":830423229,"Kind":"Components.EventHandler","Name":"ontoggle","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontoggle","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontoggle","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontoggle:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontoggle:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontoggle","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontoggle","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontoggle"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontoggle"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontoggle"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1658677927,"Kind":"Components.Splat","Name":"Attributes","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":19},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@attributes","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Splat","Name":"@attributes","TypeName":"System.Object","Documentation":{"Id":19},"Metadata":{"Common.PropertyName":"Attributes","Common.DirectiveAttribute":"True"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Attributes","Components.IsSpecialKind":"Components.Splat","Runtime.Name":"Components.None"}},{"HashCode":-1357427151,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":"\r\n \r\n implementation targeting elements containing attributes with URL expected values.\r\n \r\n Resolves URLs starting with '~/' (relative to the application's 'webroot' setting) that are not\r\n targeted by other s. Runs prior to other s to ensure\r\n application-relative URLs are resolved.\r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"itemid","Value":"~/","ValueComparison":2}]},{"TagName":"a","Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"applet","Attributes":[{"Name":"archive","Value":"~/","ValueComparison":2}]},{"TagName":"area","TagStructure":2,"Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"audio","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"base","TagStructure":2,"Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"blockquote","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"button","Attributes":[{"Name":"formaction","Value":"~/","ValueComparison":2}]},{"TagName":"del","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"embed","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"form","Attributes":[{"Name":"action","Value":"~/","ValueComparison":2}]},{"TagName":"html","Attributes":[{"Name":"manifest","Value":"~/","ValueComparison":2}]},{"TagName":"iframe","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"img","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"img","TagStructure":2,"Attributes":[{"Name":"srcset","Value":"~/","ValueComparison":2}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"formaction","Value":"~/","ValueComparison":2}]},{"TagName":"ins","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"menuitem","Attributes":[{"Name":"icon","Value":"~/","ValueComparison":2}]},{"TagName":"object","Attributes":[{"Name":"archive","Value":"~/","ValueComparison":2}]},{"TagName":"object","Attributes":[{"Name":"data","Value":"~/","ValueComparison":2}]},{"TagName":"q","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"script","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"source","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"source","TagStructure":2,"Attributes":[{"Name":"srcset","Value":"~/","ValueComparison":2}]},{"TagName":"track","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"video","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"video","Attributes":[{"Name":"poster","Value":"~/","ValueComparison":2}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper","Common.TypeNameIdentifier":"UrlResolutionTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1635625292,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <a> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"a","Attributes":[{"Name":"asp-action"}]},{"TagName":"a","Attributes":[{"Name":"asp-controller"}]},{"TagName":"a","Attributes":[{"Name":"asp-area"}]},{"TagName":"a","Attributes":[{"Name":"asp-page"}]},{"TagName":"a","Attributes":[{"Name":"asp-page-handler"}]},{"TagName":"a","Attributes":[{"Name":"asp-fragment"}]},{"TagName":"a","Attributes":[{"Name":"asp-host"}]},{"TagName":"a","Attributes":[{"Name":"asp-protocol"}]},{"TagName":"a","Attributes":[{"Name":"asp-route"}]},{"TagName":"a","Attributes":[{"Name":"asp-all-route-data"}]},{"TagName":"a","Attributes":[{"Name":"asp-route-","NameComparison":1}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","Documentation":"\r\n \r\n The name of the action method.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Action"}},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","Documentation":"\r\n \r\n The name of the controller.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Controller"}},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","Documentation":"\r\n \r\n The name of the area.\r\n \r\n \r\n Must be null if is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Area"}},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page.\r\n \r\n \r\n Must be null if or , \r\n is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Page"}},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page handler.\r\n \r\n \r\n Must be null if or , or \r\n is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"PageHandler"}},{"Kind":"ITagHelper","Name":"asp-protocol","TypeName":"System.String","Documentation":"\r\n \r\n The protocol for the URL, such as \"http\" or \"https\".\r\n \r\n ","Metadata":{"Common.PropertyName":"Protocol"}},{"Kind":"ITagHelper","Name":"asp-host","TypeName":"System.String","Documentation":"\r\n \r\n The host name.\r\n \r\n ","Metadata":{"Common.PropertyName":"Host"}},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","Documentation":"\r\n \r\n The URL fragment name.\r\n \r\n ","Metadata":{"Common.PropertyName":"Fragment"}},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","Documentation":"\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if one of , , \r\n or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Route"}},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":"\r\n \r\n Additional parameters for the route.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteValues"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper","Common.TypeNameIdentifier":"AnchorTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1501777474,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <cache> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"cache"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"priority","TypeName":"Microsoft.Extensions.Caching.Memory.CacheItemPriority?","Documentation":"\r\n \r\n Gets or sets the policy for the cache entry.\r\n \r\n ","Metadata":{"Common.PropertyName":"Priority"}},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryBy"}},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByHeader"}},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByQuery"}},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByRoute"}},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCookie"}},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByUser"}},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by request culture.\r\n \r\n Setting this to true would result in the result to be varied by \r\n and .\r\n \r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCulture"}},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","Documentation":"\r\n \r\n Gets or sets the exact the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresOn"}},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresAfter"}},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration from last access that the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresSliding"}},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value which determines if the tag helper is enabled or not.\r\n \r\n ","Metadata":{"Common.PropertyName":"Enabled"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper","Common.TypeNameIdentifier":"CacheTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1067065902,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n A that renders a Razor component.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"component","TagStructure":2,"Attributes":[{"Name":"type"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"params","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"param-","IndexerTypeName":"System.Object","Documentation":"\r\n \r\n Gets or sets values for component parameters.\r\n \r\n ","Metadata":{"Common.PropertyName":"Parameters"}},{"Kind":"ITagHelper","Name":"type","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the component type. This value is required.\r\n \r\n ","Metadata":{"Common.PropertyName":"ComponentType"}},{"Kind":"ITagHelper","Name":"render-mode","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.RenderMode","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets the \r\n \r\n ","Metadata":{"Common.PropertyName":"RenderMode"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper","Common.TypeNameIdentifier":"ComponentTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1303231203,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <distributed-cache> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"distributed-cache","Attributes":[{"Name":"name"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a unique name to discriminate cached entries.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryBy"}},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByHeader"}},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByQuery"}},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByRoute"}},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCookie"}},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByUser"}},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by request culture.\r\n \r\n Setting this to true would result in the result to be varied by \r\n and .\r\n \r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCulture"}},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","Documentation":"\r\n \r\n Gets or sets the exact the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresOn"}},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresAfter"}},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration from last access that the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresSliding"}},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value which determines if the tag helper is enabled or not.\r\n \r\n ","Metadata":{"Common.PropertyName":"Enabled"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper","Common.TypeNameIdentifier":"DistributedCacheTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1107305569,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <environment> elements that conditionally renders\r\n content based on the current value of .\r\n If the environment is not listed in the specified or ,\r\n or if it is in , the content will not be rendered.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"environment"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"names","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of environment names in which the content should be rendered.\r\n If the current environment is also in the list, the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Names"}},{"Kind":"ITagHelper","Name":"include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of environment names in which the content should be rendered.\r\n If the current environment is also in the list, the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Include"}},{"Kind":"ITagHelper","Name":"exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of environment names in which the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Exclude"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper","Common.TypeNameIdentifier":"EnvironmentTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1496735038,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <button> elements and <input> elements with\r\n their type attribute set to image or submit.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"button","Attributes":[{"Name":"asp-action"}]},{"TagName":"button","Attributes":[{"Name":"asp-controller"}]},{"TagName":"button","Attributes":[{"Name":"asp-area"}]},{"TagName":"button","Attributes":[{"Name":"asp-page"}]},{"TagName":"button","Attributes":[{"Name":"asp-page-handler"}]},{"TagName":"button","Attributes":[{"Name":"asp-fragment"}]},{"TagName":"button","Attributes":[{"Name":"asp-route"}]},{"TagName":"button","Attributes":[{"Name":"asp-all-route-data"}]},{"TagName":"button","Attributes":[{"Name":"asp-route-","NameComparison":1}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-action"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-controller"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-area"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-page"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-page-handler"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-fragment"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-route"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-all-route-data"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-route-","NameComparison":1}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-action"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-controller"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-area"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-page"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-page-handler"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-fragment"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-route"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-all-route-data"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-route-","NameComparison":1}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","Documentation":"\r\n \r\n The name of the action method.\r\n \r\n ","Metadata":{"Common.PropertyName":"Action"}},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","Documentation":"\r\n \r\n The name of the controller.\r\n \r\n ","Metadata":{"Common.PropertyName":"Controller"}},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","Documentation":"\r\n \r\n The name of the area.\r\n \r\n ","Metadata":{"Common.PropertyName":"Area"}},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"Page"}},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page handler.\r\n \r\n ","Metadata":{"Common.PropertyName":"PageHandler"}},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the URL fragment.\r\n \r\n ","Metadata":{"Common.PropertyName":"Fragment"}},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","Documentation":"\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Route"}},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":"\r\n \r\n Additional parameters for the route.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteValues"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper","Common.TypeNameIdentifier":"FormActionTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":126514257,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <form> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"form"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","Documentation":"\r\n \r\n The name of the action method.\r\n \r\n ","Metadata":{"Common.PropertyName":"Action"}},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","Documentation":"\r\n \r\n The name of the controller.\r\n \r\n ","Metadata":{"Common.PropertyName":"Controller"}},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","Documentation":"\r\n \r\n The name of the area.\r\n \r\n ","Metadata":{"Common.PropertyName":"Area"}},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"Page"}},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page handler.\r\n \r\n ","Metadata":{"Common.PropertyName":"PageHandler"}},{"Kind":"ITagHelper","Name":"asp-antiforgery","TypeName":"System.Boolean?","Documentation":"\r\n \r\n Whether the antiforgery token should be generated.\r\n \r\n Defaults to false if user provides an action attribute\r\n or if the method is ; true otherwise.\r\n ","Metadata":{"Common.PropertyName":"Antiforgery"}},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the URL fragment.\r\n \r\n ","Metadata":{"Common.PropertyName":"Fragment"}},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","Documentation":"\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Route"}},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":"\r\n \r\n Additional parameters for the route.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteValues"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper","Common.TypeNameIdentifier":"FormTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-835993632,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <img> elements that supports file versioning.\r\n \r\n \r\n The tag helper won't process for cases with just the 'src' attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"img","TagStructure":2,"Attributes":[{"Name":"asp-append-version"},{"Name":"src"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","Documentation":"\r\n \r\n Source of the image.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Src"}},{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean","Documentation":"\r\n \r\n Value indicating if file version should be appended to the src urls.\r\n \r\n \r\n If true then a query string \"v\" with the encoded content of the file is added.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppendVersion"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper","Common.TypeNameIdentifier":"ImageTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-2104829273,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <input> elements with an asp-for attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"asp-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"asp-format","TypeName":"System.String","Documentation":"\r\n \r\n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\r\n result. Sets the generated \"value\" attribute to that formatted string.\r\n \r\n \r\n Not used if the provided (see ) or calculated \"type\" attribute value is\r\n checkbox, password, or radio. That is, is used when calling\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Format"}},{"Kind":"ITagHelper","Name":"type","TypeName":"System.String","Documentation":"\r\n \r\n The type of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine the \r\n helper to call and the default value. A default is not calculated\r\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\r\n hidden, password, or radio.\r\n \r\n ","Metadata":{"Common.PropertyName":"InputTypeName"}},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine whether is\r\n valid with an empty .\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}},{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","Documentation":"\r\n \r\n The value of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\r\n if is \"radio\". Must not be null in that case.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper","Common.TypeNameIdentifier":"InputTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1039086171,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <label> elements with an asp-for attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"label","Attributes":[{"Name":"asp-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper","Common.TypeNameIdentifier":"LabelTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1394407878,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <link> elements that supports fallback href paths.\r\n \r\n \r\n The tag helper won't process for cases with just the 'href' attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-href-include"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-href-exclude"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-href"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-include"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-exclude"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-class"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-property"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-value"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-append-version"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"href","TypeName":"System.String","Documentation":"\r\n \r\n Address of the linked resource.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Href"}},{"Kind":"ITagHelper","Name":"asp-href-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to load.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"HrefInclude"}},{"Kind":"ITagHelper","Name":"asp-href-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"HrefExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-href","TypeName":"System.String","Documentation":"\r\n \r\n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackHref"}},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","Documentation":"\r\n \r\n Boolean value that determines if an integrity hash will be compared with value.\r\n \r\n ","Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"}},{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","Documentation":"\r\n \r\n Value indicating if file version should be appended to the href urls.\r\n \r\n \r\n If true then a query string \"v\" with the encoded content of the file is added.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppendVersion"}},{"Kind":"ITagHelper","Name":"asp-fallback-href-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\r\n one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackHrefInclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-href-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\r\n the case the primary one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackHrefExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-test-class","TypeName":"System.String","Documentation":"\r\n \r\n The class name defined in the stylesheet to use for the fallback test.\r\n Must be used in conjunction with and ,\r\n and either or .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestClass"}},{"Kind":"ITagHelper","Name":"asp-fallback-test-property","TypeName":"System.String","Documentation":"\r\n \r\n The CSS property name to use for the fallback test.\r\n Must be used in conjunction with and ,\r\n and either or .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestProperty"}},{"Kind":"ITagHelper","Name":"asp-fallback-test-value","TypeName":"System.String","Documentation":"\r\n \r\n The CSS property value to use for the fallback test.\r\n Must be used in conjunction with and ,\r\n and either or .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestValue"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper","Common.TypeNameIdentifier":"LinkTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":663111948,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <option> elements.\r\n \r\n \r\n This works in conjunction with . It reads elements\r\n content but does not modify that content. The only modification it makes is to add a selected attribute\r\n in some cases.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"option"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","Documentation":"\r\n \r\n Specifies a value for the <option> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper","Common.TypeNameIdentifier":"OptionTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1606513186,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n Renders a partial view.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"partial","TagStructure":2,"Attributes":[{"Name":"name"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name or path of the partial view that is rendered to the response.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}},{"Kind":"ITagHelper","Name":"for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model. Cannot be used together with .\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"model","TypeName":"System.Object","Documentation":"\r\n \r\n The model to pass into the partial view. Cannot be used together with .\r\n \r\n ","Metadata":{"Common.PropertyName":"Model"}},{"Kind":"ITagHelper","Name":"optional","TypeName":"System.Boolean","Documentation":"\r\n \r\n When optional, executing the tag helper will no-op if the view cannot be located.\r\n Otherwise will throw stating the view could not be found.\r\n \r\n ","Metadata":{"Common.PropertyName":"Optional"}},{"Kind":"ITagHelper","Name":"fallback-name","TypeName":"System.String","Documentation":"\r\n \r\n View to lookup if the view specified by cannot be located.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackName"}},{"Kind":"ITagHelper","Name":"view-data","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary","IndexerNamePrefix":"view-data-","IndexerTypeName":"System.Object","Documentation":"\r\n \r\n A to pass into the partial view.\r\n \r\n ","Metadata":{"Common.PropertyName":"ViewData"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper","Common.TypeNameIdentifier":"PartialTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":597222171,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n A that saves the state of Razor components rendered on the page up to that point.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"persist-component-state","TagStructure":2}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"persist-mode","TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PersistenceMode?","Documentation":"\r\n \r\n Gets or sets the for the state to persist.\r\n \r\n ","Metadata":{"Common.PropertyName":"PersistenceMode"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper","Common.TypeNameIdentifier":"PersistComponentStateTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1022418279,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <script> elements that supports fallback src paths.\r\n \r\n \r\n The tag helper won't process for cases with just the 'src' attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"script","Attributes":[{"Name":"asp-src-include"}]},{"TagName":"script","Attributes":[{"Name":"asp-src-exclude"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-src"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-src-include"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-src-exclude"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-test"}]},{"TagName":"script","Attributes":[{"Name":"asp-append-version"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","Documentation":"\r\n \r\n Address of the external script to use.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Src"}},{"Kind":"ITagHelper","Name":"asp-src-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to load.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"SrcInclude"}},{"Kind":"ITagHelper","Name":"asp-src-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"SrcExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-src","TypeName":"System.String","Documentation":"\r\n \r\n The URL of a Script tag to fallback to in the case the primary one fails.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackSrc"}},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","Documentation":"\r\n \r\n Boolean value that determines if an integrity hash will be compared with value.\r\n \r\n ","Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"}},{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","Documentation":"\r\n \r\n Value indicating if file version should be appended to src urls.\r\n \r\n \r\n A query string \"v\" with the encoded content of the file is added.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppendVersion"}},{"Kind":"ITagHelper","Name":"asp-fallback-src-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\r\n primary one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackSrcInclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-src-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\r\n the case the primary one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackSrcExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-test","TypeName":"System.String","Documentation":"\r\n \r\n The script method defined in the primary script to use for the fallback test.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestExpression"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper","Common.TypeNameIdentifier":"ScriptTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-554474441,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <select> elements with asp-for and/or\r\n asp-items attribute(s).\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"select","Attributes":[{"Name":"asp-for"}]},{"TagName":"select","Attributes":[{"Name":"asp-items"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"asp-items","TypeName":"System.Collections.Generic.IEnumerable","Documentation":"\r\n \r\n A collection of objects used to populate the <select> element with\r\n <optgroup> and <option> elements.\r\n \r\n ","Metadata":{"Common.PropertyName":"Items"}},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine whether is\r\n valid with an empty .\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper","Common.TypeNameIdentifier":"SelectTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":915989612,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <textarea> elements with an asp-for attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"textarea","Attributes":[{"Name":"asp-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine whether is\r\n valid with an empty .\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper","Common.TypeNameIdentifier":"TextAreaTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":2070480479,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting any HTML element with an asp-validation-for\r\n attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"span","Attributes":[{"Name":"asp-validation-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n Gets an expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper","Common.TypeNameIdentifier":"ValidationMessageTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":711690974,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting any HTML element with an asp-validation-summary\r\n attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"div","Attributes":[{"Name":"asp-validation-summary"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-summary","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary","IsEnum":true,"Documentation":"\r\n \r\n If or , appends a validation\r\n summary. Otherwise (, the default), this tag helper does nothing.\r\n \r\n \r\n Thrown if setter is called with an undefined value e.g.\r\n (ValidationSummary)23.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValidationSummary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper","Common.TypeNameIdentifier":"ValidationSummaryTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":87783689,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":0},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@bind-","NameComparison":1,"Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-...","TypeName":"System.Collections.Generic.Dictionary","IndexerNamePrefix":"@bind-","IndexerTypeName":"System.Object","Documentation":{"Id":0},"Metadata":{"Common.PropertyName":"Bind","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":2},"Metadata":{"Common.PropertyName":"Format"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":1,"Args":["@bind-..."]},"Metadata":{"Common.PropertyName":"Event"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Bind","Common.TypeNameIdentifier":"Bind","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.Bind.Fallback":"True","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1886728056,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-751468505,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-897546298,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["checked","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"checkbox","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"checkbox","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["checked","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_checked"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_checked"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-checked","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_checked"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.TypeAttribute":"checkbox","Components.Bind.ValueAttribute":"checked","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":2077438364,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"text","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"text","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.TypeAttribute":"text","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-478655573,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"number","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1727219745,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"number","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1609103576,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-dd","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"date","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-263506177,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-dd","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"date","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1699770350,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-ddTHH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"datetime-local","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1138129442,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-ddTHH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"datetime-local","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-342334592,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"month","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":2016351310,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"month","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-3753525,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"HH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"time","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-191892789,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"HH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"time","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-380241744,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"select","Attributes":[{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"select","Attributes":[{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1598759353,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"textarea","Attributes":[{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"textarea","Attributes":[{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1728660936,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputCheckbox","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputCheckbox","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-135059254,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":2079193430,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputDate","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputDate","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1332181074,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1272104786,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputNumber","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputNumber","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-2049750376,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-233555445,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputRadioGroup","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputRadioGroup","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-785714819,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":2032267197,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputSelect","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputSelect","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":811581651,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1148665271,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputText","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputText","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-115855893,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-403255426,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputTextArea","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputTextArea","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":721455144,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1143631698,"Kind":"Components.Ref","Name":"Ref","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":18},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ref","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Ref","Name":"@ref","TypeName":"System.Object","Documentation":{"Id":18},"Metadata":{"Common.PropertyName":"Ref","Common.DirectiveAttribute":"True"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Ref","Components.IsSpecialKind":"Components.Ref","Runtime.Name":"Components.None"}},{"HashCode":-1000828397,"Kind":"Components.Key","Name":"Key","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":17},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@key","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Key","Name":"@key","TypeName":"System.Object","Documentation":{"Id":17},"Metadata":{"Common.PropertyName":"Key","Common.DirectiveAttribute":"True"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Key","Components.IsSpecialKind":"Components.Key","Runtime.Name":"Components.None"}}],"CSharpLanguageVersion":1000},"RootNamespace":"FakePieShop","Documents":[{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\Components\\ShoppingCartSummary\\Default.cshtml","TargetPath":"Views\\Shared\\Components\\ShoppingCartSummary\\Default.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_ShoppingCartItemCard.cshtml","TargetPath":"Views\\Shared\\_ShoppingCartItemCard.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Pie\\List.cshtml","TargetPath":"Views\\Pie\\List.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Home\\Index.cshtml","TargetPath":"Views\\Home\\Index.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_PieCard.cshtml","TargetPath":"Views\\Shared\\_PieCard.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Pie\\Details.cshtml","TargetPath":"Views\\Pie\\Details.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\_ViewStart.cshtml","TargetPath":"Views\\_ViewStart.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\_ViewImports.cshtml","TargetPath":"Views\\_ViewImports.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\ShoppingCart\\Index.cshtml","TargetPath":"Views\\ShoppingCart\\Index.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\Components\\CategoryMenu\\Default.cshtml","TargetPath":"Views\\Shared\\Components\\CategoryMenu\\Default.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Contact\\Index.cshtml","TargetPath":"Views\\Contact\\Index.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Order\\Checkout.cshtml","TargetPath":"Views\\Order\\Checkout.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_Layout.cshtml","TargetPath":"Views\\Shared\\_Layout.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_Carousel.cshtml","TargetPath":"Views\\Shared\\_Carousel.cshtml","FileKind":"mvc"}],"SerializationFormat":"0.3"} \ No newline at end of file +{"SerializedFilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\obj\\Debug\\net6.0\\project.razor.vs.json","FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\FakePieShop.csproj","Configuration":{"ConfigurationName":"MVC-3.0","LanguageVersion":"6.0","Extensions":[{"ExtensionName":"MVC-3.0"}]},"ProjectWorkspaceState":{"TagHelpers":[{"HashCode":1121308923,"Kind":"ITagHelper","Name":"FakePieShop.TagHelpers.EmailTagHelper","AssemblyName":"FakePieShop","CaseSensitive":false,"TagMatchingRules":[{"TagName":"email"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"address","TypeName":"System.String","Metadata":{"Common.PropertyName":"Address"}},{"Kind":"ITagHelper","Name":"content","TypeName":"System.String","Metadata":{"Common.PropertyName":"Content"}}],"Metadata":{"Common.TypeName":"FakePieShop.TagHelpers.EmailTagHelper","Common.TypeNameIdentifier":"EmailTagHelper","Common.TypeNamespace":"FakePieShop.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1970805998,"Kind":"MVC.ViewComponent","Name":"__Generated__CategoryMenuViewComponentTagHelper","AssemblyName":"FakePieShop","CaseSensitive":false,"TagMatchingRules":[{"TagName":"vc:category-menu"}],"Metadata":{"Common.TypeName":"__Generated__CategoryMenuViewComponentTagHelper","MVC.ViewComponent.Name":"CategoryMenu","Runtime.Name":"ITagHelper"}},{"HashCode":1265128706,"Kind":"MVC.ViewComponent","Name":"__Generated__ShoppingCartSummaryViewComponentTagHelper","AssemblyName":"FakePieShop","CaseSensitive":false,"TagMatchingRules":[{"TagName":"vc:shopping-cart-summary"}],"Metadata":{"Common.TypeName":"__Generated__ShoppingCartSummaryViewComponentTagHelper","MVC.ViewComponent.Name":"ShoppingCartSummary","Runtime.Name":"ITagHelper"}},{"HashCode":-1976229550,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.EditForm","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders a form element that cascades an to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"EditForm"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created form element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"EditContext","TypeName":"Microsoft.AspNetCore.Components.Forms.EditContext","Documentation":"\r\n \r\n Supplies the edit context explicitly. If using this parameter, do not\r\n also supply , since the model value will be taken\r\n from the property.\r\n \r\n ","Metadata":{"Common.PropertyName":"EditContext","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.EditContext"}},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Specifies the top-level model object for the form. An edit context will\r\n be constructed for this model. If using this parameter, do not also supply\r\n a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted.\r\n \r\n If using this parameter, you are responsible for triggering any validation\r\n manually, e.g., by calling .\r\n \r\n ","Metadata":{"Common.PropertyName":"OnSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnValidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be valid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnValidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnInvalidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be invalid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnInvalidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":191090756,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.EditForm","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders a form element that cascades an to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.EditForm"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created form element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"EditContext","TypeName":"Microsoft.AspNetCore.Components.Forms.EditContext","Documentation":"\r\n \r\n Supplies the edit context explicitly. If using this parameter, do not\r\n also supply , since the model value will be taken\r\n from the property.\r\n \r\n ","Metadata":{"Common.PropertyName":"EditContext","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.EditContext"}},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Specifies the top-level model object for the form. An edit context will\r\n be constructed for this model. If using this parameter, do not also supply\r\n a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted.\r\n \r\n If using this parameter, you are responsible for triggering any validation\r\n manually, e.g., by calling .\r\n \r\n ","Metadata":{"Common.PropertyName":"OnSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnValidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be valid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnValidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"OnInvalidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be invalid.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnInvalidSubmit","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":421419917,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"EditForm"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":226510491,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.EditForm"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","Common.TypeNameIdentifier":"EditForm","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-2065312680,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputCheckbox"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":-350659821,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1258965888,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing date values.\r\n Supported types are and .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputDate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputDate"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"Type","TypeName":"Microsoft.AspNetCore.Components.Forms.InputDateType","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets the type of HTML input to be rendered.\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.InputDateType"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":1020867059,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing date values.\r\n Supported types are and .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputDate"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"Type","TypeName":"Microsoft.AspNetCore.Components.Forms.InputDateType","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets the type of HTML input to be rendered.\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Forms.InputDateType"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1382592640,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputFile","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that wraps the HTML file input element and supplies a for each file's contents.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputFile"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"OnChange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets the event callback that will be invoked when the collection of selected files changes.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnChange","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputFile","Common.TypeNameIdentifier":"InputFile","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":959106530,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputFile","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that wraps the HTML file input element and supplies a for each file's contents.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputFile"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"OnChange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets the event callback that will be invoked when the collection of selected files changes.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnChange","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputFile","Common.TypeNameIdentifier":"InputFile","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1394710171,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing numeric values.\r\n Supported numeric types are , , , , , .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputNumber"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputNumber"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":2117387803,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing numeric values.\r\n Supported numeric types are , , , , , .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputNumber"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ParsingErrorMessage","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1831010680,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadio","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component used for selecting a value from a group of choices.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputRadio"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadio"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of this input.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the parent input radio group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadio","Common.TypeNameIdentifier":"InputRadio","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":748163635,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadio","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component used for selecting a value from a group of choices.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadio"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadio"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of this input.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the parent input radio group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadio","Common.TypeNameIdentifier":"InputRadio","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":553938885,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Groups child components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputRadioGroup"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadioGroup"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":-240189885,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Groups child components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputRadioGroup"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the name of the group.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-329149034,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"InputRadioGroup"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":2051182940,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":508662150,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A dropdown selection component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputSelect"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputSelect"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":92454017,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A dropdown selection component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.InputSelect"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-761095015,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"InputSelect"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":85331601,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.InputSelect"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1127546831,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputText"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":1412090241,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n An input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1984013923,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A multiline input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputTextArea"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":-283689260,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A multiline input component for editing values.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueChanged","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValueExpression","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>"}},{"Kind":"Components.Component","Name":"DisplayName","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ","Metadata":{"Common.PropertyName":"DisplayName","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-245684300,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages for a specified field within a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ValidationMessage"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.ValidationMessage"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created div element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"For","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Specifies the field for which validation messages should be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"For","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","Common.TypeNameIdentifier":"ValidationMessage","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":1528528215,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages for a specified field within a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.Forms.ValidationMessage"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created div element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"For","TypeName":"System.Linq.Expressions.Expression>","Documentation":"\r\n \r\n Specifies the field for which validation messages should be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"For","Common.GloballyQualifiedTypeName":"global::System.Linq.Expressions.Expression>","Components.GenericTyped":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","Common.TypeNameIdentifier":"ValidationMessage","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1959080929,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages from a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ValidationSummary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Gets or sets the model to produce the list of validation messages for.\r\n When specified, this lists all errors that are associated with the model instance.\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created ul element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","Common.TypeNameIdentifier":"ValidationSummary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":1490654527,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Displays a list of validation messages from a cascaded .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","Documentation":"\r\n \r\n Gets or sets the model to produce the list of validation messages for.\r\n When specified, this lists all errors that are associated with the model instance.\r\n \r\n ","Metadata":{"Common.PropertyName":"Model","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created ul element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","Common.TypeNameIdentifier":"ValidationSummary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":2012395568,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n After navigating from one page to another, sets focus to an element\r\n matching a CSS selector. This can be used to build an accessible\r\n navigation system compatible with screen readers.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"FocusOnNavigate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","Documentation":"\r\n \r\n Gets or sets the route data. This can be obtained from an enclosing\r\n component.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"Selector","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a CSS selector describing the element to be focused after\r\n navigation between pages.\r\n \r\n ","Metadata":{"Common.PropertyName":"Selector","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","Common.TypeNameIdentifier":"FocusOnNavigate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Runtime.Name":"Components.IComponent"}},{"HashCode":-1759321182,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n After navigating from one page to another, sets focus to an element\r\n matching a CSS selector. This can be used to build an accessible\r\n navigation system compatible with screen readers.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","Documentation":"\r\n \r\n Gets or sets the route data. This can be obtained from an enclosing\r\n component.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"Selector","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a CSS selector describing the element to be focused after\r\n navigation between pages.\r\n \r\n ","Metadata":{"Common.PropertyName":"Selector","Common.GloballyQualifiedTypeName":"global::System.String"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.FocusOnNavigate","Common.TypeNameIdentifier":"FocusOnNavigate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1380850759,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.NavLink","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that renders an anchor tag, automatically toggling its 'active'\r\n class based on whether its 'href' matches the current URI.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NavLink"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ActiveClass","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the CSS class name applied to the NavLink when the\r\n current route matches the NavLink href.\r\n \r\n ","Metadata":{"Common.PropertyName":"ActiveClass","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be added to the generated\r\n a element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Match","TypeName":"Microsoft.AspNetCore.Components.Routing.NavLinkMatch","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets a value representing the URL matching behavior.\r\n \r\n ","Metadata":{"Common.PropertyName":"Match","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Runtime.Name":"Components.IComponent"}},{"HashCode":642792029,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.NavLink","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n A component that renders an anchor tag, automatically toggling its 'active'\r\n class based on whether its 'href' matches the current URI.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.NavLink"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ActiveClass","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the CSS class name applied to the NavLink when the\r\n current route matches the NavLink href.\r\n \r\n ","Metadata":{"Common.PropertyName":"ActiveClass","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","Documentation":"\r\n \r\n Gets or sets a collection of additional attributes that will be added to the generated\r\n a element.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAttributes","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IReadOnlyDictionary"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Match","TypeName":"Microsoft.AspNetCore.Components.Routing.NavLinkMatch","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets a value representing the URL matching behavior.\r\n \r\n ","Metadata":{"Common.PropertyName":"Match","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1920388826,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"NavLink"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":792199978,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Routing.NavLink"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","Common.TypeNameIdentifier":"NavLink","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-230489831,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides content to components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"HeadContent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":128167545,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides content to components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.HeadContent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1689854822,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"HeadContent"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":779040282,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.HeadContent"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent","Common.TypeNameIdentifier":"HeadContent","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1266783900,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadOutlet","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders content provided by components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"HeadOutlet"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadOutlet","Common.TypeNameIdentifier":"HeadOutlet","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":550896023,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.HeadOutlet","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Renders content provided by components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.HeadOutlet"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.HeadOutlet","Common.TypeNameIdentifier":"HeadOutlet","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-886198252,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.PageTitle","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Enables rendering an HTML <title> to a component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"PageTitle"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":-583895305,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.PageTitle","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Enables rendering an HTML <title> to a component.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.PageTitle"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":886568814,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"PageTitle"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":206831603,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.PageTitle"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent","Common.TypeNameIdentifier":"PageTitle","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1532515791,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Captures errors thrown from its child content.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ErrorContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ErrorContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"MaximumErrorCount","TypeName":"System.Int32","Documentation":"\r\n \r\n The maximum number of errors that can be handled. If more errors are received,\r\n they will be treated as fatal. Calling resets the count.\r\n \r\n ","Metadata":{"Common.PropertyName":"MaximumErrorCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Runtime.Name":"Components.IComponent"}},{"HashCode":748353587,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Captures errors thrown from its child content.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ErrorContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","Metadata":{"Common.PropertyName":"ErrorContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"MaximumErrorCount","TypeName":"System.Int32","Documentation":"\r\n \r\n The maximum number of errors that can be handled. If more errors are received,\r\n they will be treated as fatal. Calling resets the count.\r\n \r\n ","Metadata":{"Common.PropertyName":"MaximumErrorCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1582794375,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"ErrorBoundary"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1559812008,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.ErrorBoundary"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":873037395,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ErrorContent","ParentTag":"ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ErrorContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":103384670,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ErrorContent","ParentTag":"Microsoft.AspNetCore.Components.Web.ErrorBoundary"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ErrorContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent","Common.TypeNameIdentifier":"ErrorBoundary","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-732556857,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides functionality for rendering a virtualized list of items.\r\n \r\n The context type for the items being rendered.\r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TItem","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TItem","Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"]},"Metadata":{"Common.PropertyName":"TItem","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ChildContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ItemContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ItemContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Placeholder","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","Metadata":{"Common.PropertyName":"Placeholder","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ItemSize","TypeName":"System.Single","Documentation":"\r\n \r\n Gets the size of each item in pixels. Defaults to 50px.\r\n \r\n ","Metadata":{"Common.PropertyName":"ItemSize","Common.GloballyQualifiedTypeName":"global::System.Single"}},{"Kind":"Components.Component","Name":"ItemsProvider","TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Documentation":"\r\n \r\n Gets or sets the function providing items to the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Common.PropertyName":"ItemsProvider","Components.DelegateSignature":"True","Components.GenericTyped":"True","Components.IsDelegateAwaitableResult":"True"}},{"Kind":"Components.Component","Name":"Items","TypeName":"System.Collections.Generic.ICollection","Documentation":"\r\n \r\n Gets or sets the fixed item source.\r\n \r\n ","Metadata":{"Common.PropertyName":"Items","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.ICollection","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"OverscanCount","TypeName":"System.Int32","Documentation":"\r\n \r\n Gets or sets a value that determines how many additional items will be rendered\r\n before and after the visible region. This help to reduce the frequency of rendering\r\n during scrolling. However, higher values mean that more elements will be present\r\n in the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OverscanCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":172636577,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Provides functionality for rendering a virtualized list of items.\r\n \r\n The context type for the items being rendered.\r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TItem","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TItem","Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"]},"Metadata":{"Common.PropertyName":"TItem","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ChildContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"ItemContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Common.PropertyName":"ItemContent","Components.ChildContent":"True","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Placeholder","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","Metadata":{"Common.PropertyName":"Placeholder","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"ItemSize","TypeName":"System.Single","Documentation":"\r\n \r\n Gets the size of each item in pixels. Defaults to 50px.\r\n \r\n ","Metadata":{"Common.PropertyName":"ItemSize","Common.GloballyQualifiedTypeName":"global::System.Single"}},{"Kind":"Components.Component","Name":"ItemsProvider","TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Documentation":"\r\n \r\n Gets or sets the function providing items to the list.\r\n \r\n ","Metadata":{"Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate","Common.PropertyName":"ItemsProvider","Components.DelegateSignature":"True","Components.GenericTyped":"True","Components.IsDelegateAwaitableResult":"True"}},{"Kind":"Components.Component","Name":"Items","TypeName":"System.Collections.Generic.ICollection","Documentation":"\r\n \r\n Gets or sets the fixed item source.\r\n \r\n ","Metadata":{"Common.PropertyName":"Items","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.ICollection","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"OverscanCount","TypeName":"System.Int32","Documentation":"\r\n \r\n Gets or sets a value that determines how many additional items will be rendered\r\n before and after the visible region. This help to reduce the frequency of rendering\r\n during scrolling. However, higher values mean that more elements will be present\r\n in the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OverscanCount","Common.GloballyQualifiedTypeName":"global::System.Int32"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-514167269,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":215248206,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1800818476,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ItemContent","ParentTag":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ItemContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":2112976254,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ItemContent","ParentTag":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ItemContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1807588775,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Placeholder","ParentTag":"Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Placeholder"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1762038415,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Placeholder","ParentTag":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Placeholder"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder","Common.TypeNameIdentifier":"Virtualize","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web.Virtualization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":600300187,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","AssemblyName":"Microsoft.AspNetCore.Components.Forms","Documentation":"\r\n \r\n Adds Data Annotations validation support to an .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"DataAnnotationsValidator"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","Common.TypeNameIdentifier":"DataAnnotationsValidator","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Runtime.Name":"Components.IComponent"}},{"HashCode":-450791174,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","AssemblyName":"Microsoft.AspNetCore.Components.Forms","Documentation":"\r\n \r\n Adds Data Annotations validation support to an .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","Common.TypeNameIdentifier":"DataAnnotationsValidator","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1659049326,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Combines the behaviors of and ,\r\n so that it displays the page matching the specified route but only if the user\r\n is authorized to see it.\r\n \r\n Additionally, this component supplies a cascading parameter of type ,\r\n which makes the user's current authentication state available to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Runtime.Name":"Components.IComponent"}},{"HashCode":-2067093338,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Combines the behaviors of and ,\r\n so that it displays the page matching the specified route but only if the user\r\n is authorized to see it.\r\n \r\n Additionally, this component supplies a cascading parameter of type ,\r\n which makes the user's current authentication state available to descendants.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1602723046,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":109476351,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1127560569,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"AuthorizeRouteView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":6310419,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","Common.TypeNameIdentifier":"AuthorizeRouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-97470475,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Displays differing content depending on the user's authorization status.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Policy","TypeName":"System.String","Documentation":"\r\n \r\n The policy name that determines whether the content can be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"Policy","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"Roles","TypeName":"System.String","Documentation":"\r\n \r\n A comma delimited list of roles that are allowed to display the content.\r\n \r\n ","Metadata":{"Common.PropertyName":"Roles","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Runtime.Name":"Components.IComponent"}},{"HashCode":-1591375188,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n Displays differing content depending on the user's authorization status.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Policy","TypeName":"System.String","Documentation":"\r\n \r\n The policy name that determines whether the content can be displayed.\r\n \r\n ","Metadata":{"Common.PropertyName":"Policy","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"Roles","TypeName":"System.String","Documentation":"\r\n \r\n A comma delimited list of roles that are allowed to display the content.\r\n \r\n ","Metadata":{"Common.PropertyName":"Roles","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotAuthorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorized","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Authorizing","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","Documentation":"\r\n \r\n The resource to which access is being controlled.\r\n \r\n ","Metadata":{"Common.PropertyName":"Resource","Common.GloballyQualifiedTypeName":"global::System.Object"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":529893422,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-283371522,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["ChildContent"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1730663890,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":2080400133,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["NotAuthorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1428985557,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorized","ParentTag":"AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Authorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-2020738019,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Authorized"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":2013499727,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"AuthorizeView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":621119194,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","Common.TypeNameIdentifier":"AuthorizeView","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-472966043,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","CaseSensitive":true,"TagMatchingRules":[{"TagName":"CascadingAuthenticationState"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Runtime.Name":"Components.IComponent"}},{"HashCode":859759164,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-113265668,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"CascadingAuthenticationState"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1063076882,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":"\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","Common.TypeNameIdentifier":"CascadingAuthenticationState","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Authorization","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":112112172,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.CascadingValue","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that provides a cascading value to all descendant components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"CascadingValue"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.CascadingValue"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n The value to be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Optionally gives a name to the provided value. Descendant components\r\n will be able to receive the value by specifying this name.\r\n \r\n If no name is specified, then descendant components will receive the\r\n value based the type of value they are requesting.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"IsFixed","TypeName":"System.Boolean","Documentation":"\r\n \r\n If true, indicates that will not change. This is a\r\n performance optimization that allows the framework to skip setting up\r\n change notifications. Set this flag only if you will not change\r\n during the component's lifetime.\r\n \r\n ","Metadata":{"Common.PropertyName":"IsFixed","Common.GloballyQualifiedTypeName":"global::System.Boolean"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.GenericTyped":"True","Runtime.Name":"Components.IComponent"}},{"HashCode":-2006353105,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.CascadingValue","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that provides a cascading value to all descendant components.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.CascadingValue"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","Documentation":{"Id":13,"Args":["TValue","Microsoft.AspNetCore.Components.CascadingValue"]},"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True","Components.TypeParameterIsCascading":"False"}},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","Documentation":"\r\n \r\n The value to be provided.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value","Common.GloballyQualifiedTypeName":"TValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","Documentation":"\r\n \r\n Optionally gives a name to the provided value. Descendant components\r\n will be able to receive the value by specifying this name.\r\n \r\n If no name is specified, then descendant components will receive the\r\n value based the type of value they are requesting.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name","Common.GloballyQualifiedTypeName":"global::System.String"}},{"Kind":"Components.Component","Name":"IsFixed","TypeName":"System.Boolean","Documentation":"\r\n \r\n If true, indicates that will not change. This is a\r\n performance optimization that allows the framework to skip setting up\r\n change notifications. Set this flag only if you will not change\r\n during the component's lifetime.\r\n \r\n ","Metadata":{"Common.PropertyName":"IsFixed","Common.GloballyQualifiedTypeName":"global::System.Boolean"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-889459120,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"CascadingValue"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":1095368138,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n The content to which the value should be provided.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.CascadingValue"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","Common.TypeNameIdentifier":"CascadingValue","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":816413986,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.DynamicComponent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that renders another component dynamically according to its\r\n parameter.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"DynamicComponent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Type","TypeName":"System.Type","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the type of the component to be rendered. The supplied type must\r\n implement .\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Parameters","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a dictionary of parameters to be passed to the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"Parameters","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.DynamicComponent","Common.TypeNameIdentifier":"DynamicComponent","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Runtime.Name":"Components.IComponent"}},{"HashCode":1299178003,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.DynamicComponent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that renders another component dynamically according to its\r\n parameter.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.DynamicComponent"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Type","TypeName":"System.Type","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the type of the component to be rendered. The supplied type must\r\n implement .\r\n \r\n ","Metadata":{"Common.PropertyName":"Type","Common.GloballyQualifiedTypeName":"global::System.Type"}},{"Kind":"Components.Component","Name":"Parameters","TypeName":"System.Collections.Generic.IDictionary","Documentation":"\r\n \r\n Gets or sets a dictionary of parameters to be passed to the component.\r\n \r\n ","Metadata":{"Common.PropertyName":"Parameters","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IDictionary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.DynamicComponent","Common.TypeNameIdentifier":"DynamicComponent","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":443104849,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.LayoutView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified content inside the specified layout and any further\r\n nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"LayoutView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Layout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of the layout in which to display the content.\r\n The type must implement and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"Layout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Runtime.Name":"Components.IComponent"}},{"HashCode":2117237878,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.LayoutView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified content inside the specified layout and any further\r\n nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.LayoutView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","Metadata":{"Common.PropertyName":"ChildContent","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Layout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of the layout in which to display the content.\r\n The type must implement and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"Layout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":-1467088548,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"LayoutView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-752363043,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.LayoutView"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","Common.TypeNameIdentifier":"LayoutView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1158605894,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.RouteView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified page component, rendering it inside its layout\r\n and any further nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"RouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.RouteView","Common.TypeNameIdentifier":"RouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Runtime.Name":"Components.IComponent"}},{"HashCode":-1575418860,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.RouteView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Displays the specified page component, rendering it inside its layout\r\n and any further nested layouts.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.RouteView"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteData","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RouteData"}},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ","Metadata":{"Common.PropertyName":"DefaultLayout","Common.GloballyQualifiedTypeName":"global::System.Type"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.RouteView","Common.TypeNameIdentifier":"RouteView","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":251306581,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.Router","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that supplies route data corresponding to the current navigation state.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Router"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AppAssembly","TypeName":"System.Reflection.Assembly","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the assembly that should be searched for components matching the URI.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppAssembly","Common.GloballyQualifiedTypeName":"global::System.Reflection.Assembly"}},{"Kind":"Components.Component","Name":"AdditionalAssemblies","TypeName":"System.Collections.Generic.IEnumerable","Documentation":"\r\n \r\n Gets or sets a collection of additional assemblies that should be searched for components\r\n that can match URIs.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAssemblies","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IEnumerable"}},{"Kind":"Components.Component","Name":"NotFound","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotFound","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Found","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"Found","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Navigating","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Navigating","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnNavigateAsync","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a handler that should be called before navigating to a new page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnNavigateAsync","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"PreferExactMatches","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a flag to indicate whether route matching should prefer exact matches\r\n over wildcards.\r\n This property is obsolete and configuring it does nothing.\r\n \r\n ","Metadata":{"Common.PropertyName":"PreferExactMatches","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Runtime.Name":"Components.IComponent"}},{"HashCode":-1275292906,"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.Router","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n A component that supplies route data corresponding to the current navigation state.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.Router"}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AppAssembly","TypeName":"System.Reflection.Assembly","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the assembly that should be searched for components matching the URI.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppAssembly","Common.GloballyQualifiedTypeName":"global::System.Reflection.Assembly"}},{"Kind":"Components.Component","Name":"AdditionalAssemblies","TypeName":"System.Collections.Generic.IEnumerable","Documentation":"\r\n \r\n Gets or sets a collection of additional assemblies that should be searched for components\r\n that can match URIs.\r\n \r\n ","Metadata":{"Common.PropertyName":"AdditionalAssemblies","Common.GloballyQualifiedTypeName":"global::System.Collections.Generic.IEnumerable"}},{"Kind":"Components.Component","Name":"NotFound","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"NotFound","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Found","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEditorRequired":true,"Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","Metadata":{"Common.PropertyName":"Found","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"Navigating","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","Metadata":{"Common.PropertyName":"Navigating","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.RenderFragment","Components.ChildContent":"True"}},{"Kind":"Components.Component","Name":"OnNavigateAsync","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":"\r\n \r\n Gets or sets a handler that should be called before navigating to a new page.\r\n \r\n ","Metadata":{"Common.PropertyName":"OnNavigateAsync","Common.GloballyQualifiedTypeName":"global::Microsoft.AspNetCore.Components.EventCallback","Components.EventCallback":"True"}},{"Kind":"Components.Component","Name":"PreferExactMatches","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a flag to indicate whether route matching should prefer exact matches\r\n over wildcards.\r\n This property is obsolete and configuring it does nothing.\r\n \r\n ","Metadata":{"Common.PropertyName":"PreferExactMatches","Common.GloballyQualifiedTypeName":"global::System.Boolean"}},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","Documentation":{"Id":12},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.IComponent"}},{"HashCode":1082338626,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotFound","ParentTag":"Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-555496463,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotFound","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":23965824,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Found","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Found","ParentTag":"Router"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Found"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Found","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-523621034,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Found","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Found","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router"}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","Documentation":{"Id":11,"Args":["Found"]},"Metadata":{"Components.ChildContentParameterName":"True","Common.PropertyName":"Context"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Found","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1637319012,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Navigating","ParentTag":"Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Runtime.Name":"Components.None"}},{"HashCode":-1087896449,"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ","CaseSensitive":true,"TagMatchingRules":[{"TagName":"Navigating","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router"}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Navigating","Common.TypeNameIdentifier":"Router","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Routing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-727369005,"Kind":"Components.EventHandler","Name":"onfocus","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfocus","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfocus","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocus:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocus:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocus","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfocus","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocus"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfocus"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfocus"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1653693213,"Kind":"Components.EventHandler","Name":"onblur","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onblur","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onblur","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onblur:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onblur:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onblur","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onblur","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onblur"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onblur"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onblur"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":778364182,"Kind":"Components.EventHandler","Name":"onfocusin","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfocusin","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfocusin","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusin:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusin:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocusin","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfocusin","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocusin"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfocusin"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfocusin"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-517322429,"Kind":"Components.EventHandler","Name":"onfocusout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfocusout","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfocusout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfocusout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocusout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfocusout","Microsoft.AspNetCore.Components.Web.FocusEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocusout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfocusout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfocusout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-936888182,"Kind":"Components.EventHandler","Name":"onmouseover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmouseover","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmouseover","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseover:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseover:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmouseover","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseover"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmouseover"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmouseover"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-2029089480,"Kind":"Components.EventHandler","Name":"onmouseout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmouseout","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmouseout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmouseout","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmouseout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmouseout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-392837186,"Kind":"Components.EventHandler","Name":"onmousemove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmousemove","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmousemove","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousemove:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousemove:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousemove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmousemove","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousemove"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmousemove"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmousemove"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1242953820,"Kind":"Components.EventHandler","Name":"onmousedown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmousedown","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmousedown","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousedown:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousedown:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousedown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmousedown","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousedown"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmousedown"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmousedown"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1914736575,"Kind":"Components.EventHandler","Name":"onmouseup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmouseup","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmouseup","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseup:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmouseup:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmouseup","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseup"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmouseup"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmouseup"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1331383727,"Kind":"Components.EventHandler","Name":"onclick","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onclick","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onclick:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onclick:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onclick","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onclick"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onclick"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onclick"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":536006733,"Kind":"Components.EventHandler","Name":"ondblclick","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondblclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondblclick","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondblclick:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondblclick:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondblclick","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondblclick","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondblclick"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondblclick"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondblclick"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-366485848,"Kind":"Components.EventHandler","Name":"onwheel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onwheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onwheel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwheel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwheel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onwheel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onwheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onwheel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onwheel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onwheel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.WheelEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-160573819,"Kind":"Components.EventHandler","Name":"onmousewheel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onmousewheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onmousewheel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousewheel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onmousewheel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousewheel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onmousewheel","Microsoft.AspNetCore.Components.Web.WheelEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousewheel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onmousewheel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onmousewheel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.WheelEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1538066542,"Kind":"Components.EventHandler","Name":"oncontextmenu","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncontextmenu","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncontextmenu","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncontextmenu:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncontextmenu:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncontextmenu","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncontextmenu","Microsoft.AspNetCore.Components.Web.MouseEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncontextmenu"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncontextmenu"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncontextmenu"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1705523732,"Kind":"Components.EventHandler","Name":"ondrag","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondrag","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondrag","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrag:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrag:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondrag","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondrag","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondrag"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondrag"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondrag"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1290771231,"Kind":"Components.EventHandler","Name":"ondragend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragend","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragend","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-337171814,"Kind":"Components.EventHandler","Name":"ondragenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragenter","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragenter","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragenter:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragenter:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragenter","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragenter"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragenter"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragenter"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1201691127,"Kind":"Components.EventHandler","Name":"ondragleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragleave","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragleave","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragleave:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragleave:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragleave","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragleave"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragleave"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragleave"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-519835019,"Kind":"Components.EventHandler","Name":"ondragover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragover","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragover","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragover:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragover:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragover","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragover"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragover"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragover"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-202939013,"Kind":"Components.EventHandler","Name":"ondragstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondragstart","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondragstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondragstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondragstart","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondragstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondragstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":364403475,"Kind":"Components.EventHandler","Name":"ondrop","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondrop","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondrop","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrop:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondrop:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondrop","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondrop","Microsoft.AspNetCore.Components.Web.DragEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondrop"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondrop"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondrop"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1929574430,"Kind":"Components.EventHandler","Name":"onkeydown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onkeydown","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onkeydown","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeydown:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeydown:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeydown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onkeydown","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeydown"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onkeydown"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onkeydown"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":110467606,"Kind":"Components.EventHandler","Name":"onkeyup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onkeyup","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onkeyup","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeyup:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeyup:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeyup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onkeyup","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeyup"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onkeyup"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onkeyup"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":582697943,"Kind":"Components.EventHandler","Name":"onkeypress","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onkeypress","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onkeypress","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeypress:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onkeypress:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeypress","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onkeypress","Microsoft.AspNetCore.Components.Web.KeyboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeypress"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onkeypress"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onkeypress"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-365542076,"Kind":"Components.EventHandler","Name":"onchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onchange","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onchange","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.ChangeEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":794708869,"Kind":"Components.EventHandler","Name":"oninput","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oninput","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oninput","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninput:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninput:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oninput","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oninput","Microsoft.AspNetCore.Components.ChangeEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oninput"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oninput"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oninput"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.ChangeEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1603213185,"Kind":"Components.EventHandler","Name":"oninvalid","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oninvalid","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oninvalid","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninvalid:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oninvalid:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oninvalid","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oninvalid","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oninvalid"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oninvalid"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oninvalid"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":836426675,"Kind":"Components.EventHandler","Name":"onreset","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onreset","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onreset","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreset:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreset:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onreset","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onreset","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onreset"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onreset"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onreset"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1485878008,"Kind":"Components.EventHandler","Name":"onselect","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onselect","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onselect","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselect:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselect:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselect","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onselect","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselect"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onselect"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onselect"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1818652440,"Kind":"Components.EventHandler","Name":"onselectstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onselectstart","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onselectstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselectstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onselectstart","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselectstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onselectstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onselectstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-758644927,"Kind":"Components.EventHandler","Name":"onselectionchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onselectionchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onselectionchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectionchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onselectionchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselectionchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onselectionchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselectionchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onselectionchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onselectionchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1853778474,"Kind":"Components.EventHandler","Name":"onsubmit","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onsubmit","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onsubmit","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsubmit:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsubmit:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onsubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onsubmit","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onsubmit"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onsubmit"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onsubmit"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1478138657,"Kind":"Components.EventHandler","Name":"onbeforecopy","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforecopy","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforecopy","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecopy:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecopy:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforecopy","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforecopy","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforecopy"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforecopy"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforecopy"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1954762307,"Kind":"Components.EventHandler","Name":"onbeforecut","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforecut","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforecut","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecut:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforecut:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforecut","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforecut","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforecut"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforecut"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforecut"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":68240426,"Kind":"Components.EventHandler","Name":"onbeforepaste","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforepaste","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforepaste","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforepaste:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforepaste:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforepaste","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforepaste","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforepaste"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforepaste"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforepaste"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1936131299,"Kind":"Components.EventHandler","Name":"oncopy","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncopy","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncopy","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncopy:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncopy:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncopy","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncopy","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncopy"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncopy"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncopy"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-651207526,"Kind":"Components.EventHandler","Name":"oncut","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncut","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncut","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncut:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncut:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncut","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncut","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncut"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncut"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncut"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1089411740,"Kind":"Components.EventHandler","Name":"onpaste","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpaste","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpaste","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpaste:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpaste:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpaste","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpaste","Microsoft.AspNetCore.Components.Web.ClipboardEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpaste"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpaste"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpaste"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-679554340,"Kind":"Components.EventHandler","Name":"ontouchcancel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchcancel","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchcancel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchcancel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchcancel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchcancel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchcancel","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchcancel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchcancel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchcancel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":943674983,"Kind":"Components.EventHandler","Name":"ontouchend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchend","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchend","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":257218252,"Kind":"Components.EventHandler","Name":"ontouchmove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchmove","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchmove","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchmove:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchmove:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchmove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchmove","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchmove"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchmove"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchmove"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":2036593677,"Kind":"Components.EventHandler","Name":"ontouchstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchstart","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchstart","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1103757234,"Kind":"Components.EventHandler","Name":"ontouchenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchenter","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchenter","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchenter:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchenter:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchenter","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchenter"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchenter"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchenter"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-530801748,"Kind":"Components.EventHandler","Name":"ontouchleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontouchleave","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontouchleave","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchleave:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontouchleave:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontouchleave","Microsoft.AspNetCore.Components.Web.TouchEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchleave"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontouchleave"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontouchleave"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1577454197,"Kind":"Components.EventHandler","Name":"ongotpointercapture","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ongotpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ongotpointercapture","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ongotpointercapture:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ongotpointercapture:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ongotpointercapture","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ongotpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ongotpointercapture"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ongotpointercapture"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ongotpointercapture"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-2091195272,"Kind":"Components.EventHandler","Name":"onlostpointercapture","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onlostpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onlostpointercapture","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onlostpointercapture:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onlostpointercapture:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onlostpointercapture","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onlostpointercapture","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onlostpointercapture"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onlostpointercapture"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onlostpointercapture"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-2045316255,"Kind":"Components.EventHandler","Name":"onpointercancel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointercancel","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointercancel","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointercancel:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointercancel:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointercancel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointercancel","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointercancel"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointercancel"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointercancel"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1382687032,"Kind":"Components.EventHandler","Name":"onpointerdown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerdown","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerdown","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerdown:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerdown:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerdown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerdown","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerdown"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerdown"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerdown"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":101473625,"Kind":"Components.EventHandler","Name":"onpointerenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerenter","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerenter","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerenter:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerenter:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerenter","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerenter"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerenter"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerenter"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1542789096,"Kind":"Components.EventHandler","Name":"onpointerleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerleave","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerleave","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerleave:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerleave:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerleave","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerleave"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerleave"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerleave"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1970868744,"Kind":"Components.EventHandler","Name":"onpointermove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointermove","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointermove","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointermove:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointermove:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointermove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointermove","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointermove"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointermove"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointermove"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1496598645,"Kind":"Components.EventHandler","Name":"onpointerout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerout","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerout","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-80282310,"Kind":"Components.EventHandler","Name":"onpointerover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerover","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerover","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerover:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerover:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerover","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerover"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerover"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerover"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1553651268,"Kind":"Components.EventHandler","Name":"onpointerup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerup","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerup","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerup:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerup:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerup","Microsoft.AspNetCore.Components.Web.PointerEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerup"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerup"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerup"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-536806730,"Kind":"Components.EventHandler","Name":"oncanplay","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncanplay","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncanplay","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplay:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplay:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncanplay","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncanplay","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncanplay"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncanplay"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncanplay"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":908414765,"Kind":"Components.EventHandler","Name":"oncanplaythrough","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncanplaythrough","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncanplaythrough","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplaythrough:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncanplaythrough:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncanplaythrough","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncanplaythrough","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncanplaythrough"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncanplaythrough"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncanplaythrough"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-129079417,"Kind":"Components.EventHandler","Name":"oncuechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@oncuechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@oncuechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncuechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@oncuechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncuechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@oncuechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncuechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@oncuechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@oncuechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":790156873,"Kind":"Components.EventHandler","Name":"ondurationchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondurationchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondurationchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondurationchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondurationchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondurationchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondurationchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondurationchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondurationchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondurationchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":476976603,"Kind":"Components.EventHandler","Name":"onemptied","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onemptied","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onemptied","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onemptied:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onemptied:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onemptied","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onemptied","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onemptied"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onemptied"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onemptied"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1456525810,"Kind":"Components.EventHandler","Name":"onpause","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpause","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpause","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpause:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpause:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpause","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpause","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpause"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpause"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpause"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":177399041,"Kind":"Components.EventHandler","Name":"onplay","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onplay","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onplay","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplay:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplay:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onplay","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onplay","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onplay"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onplay"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onplay"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1969236839,"Kind":"Components.EventHandler","Name":"onplaying","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onplaying","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onplaying","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplaying:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onplaying:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onplaying","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onplaying","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onplaying"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onplaying"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onplaying"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-738595097,"Kind":"Components.EventHandler","Name":"onratechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onratechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onratechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onratechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onratechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onratechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onratechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onratechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onratechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onratechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-955105252,"Kind":"Components.EventHandler","Name":"onseeked","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onseeked","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onseeked","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeked:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeked:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onseeked","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onseeked","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onseeked"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onseeked"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onseeked"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-187878019,"Kind":"Components.EventHandler","Name":"onseeking","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onseeking","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onseeking","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeking:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onseeking:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onseeking","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onseeking","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onseeking"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onseeking"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onseeking"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1115466435,"Kind":"Components.EventHandler","Name":"onstalled","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onstalled","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onstalled","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstalled:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstalled:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onstalled","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onstalled","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onstalled"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onstalled"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onstalled"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":14718909,"Kind":"Components.EventHandler","Name":"onstop","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onstop","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onstop","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstop:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onstop:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onstop","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onstop","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onstop"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onstop"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onstop"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1798193991,"Kind":"Components.EventHandler","Name":"onsuspend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onsuspend","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onsuspend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsuspend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onsuspend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onsuspend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onsuspend","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onsuspend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onsuspend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onsuspend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-83598432,"Kind":"Components.EventHandler","Name":"ontimeupdate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontimeupdate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontimeupdate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeupdate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeupdate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontimeupdate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontimeupdate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontimeupdate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontimeupdate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontimeupdate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-546088352,"Kind":"Components.EventHandler","Name":"onvolumechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onvolumechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onvolumechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onvolumechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onvolumechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onvolumechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onvolumechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onvolumechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onvolumechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onvolumechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-147712496,"Kind":"Components.EventHandler","Name":"onwaiting","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onwaiting","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onwaiting","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwaiting:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onwaiting:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onwaiting","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onwaiting","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onwaiting"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onwaiting"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onwaiting"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1877397063,"Kind":"Components.EventHandler","Name":"onloadstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadstart","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadstart","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadstart:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadstart:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadstart","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadstart"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadstart"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadstart"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-93156651,"Kind":"Components.EventHandler","Name":"ontimeout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontimeout","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontimeout","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeout:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontimeout:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontimeout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontimeout","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontimeout"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontimeout"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontimeout"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1530156502,"Kind":"Components.EventHandler","Name":"onabort","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onabort","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onabort","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onabort:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onabort:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onabort","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onabort","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onabort"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onabort"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onabort"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":841018137,"Kind":"Components.EventHandler","Name":"onload","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onload","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onload","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onload:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onload:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onload","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onload","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onload"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onload"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onload"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1646323413,"Kind":"Components.EventHandler","Name":"onloadend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadend","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadend","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadend:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadend:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadend","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadend"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadend"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadend"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1805914554,"Kind":"Components.EventHandler","Name":"onprogress","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onprogress","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onprogress","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onprogress:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onprogress:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onprogress","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onprogress","Microsoft.AspNetCore.Components.Web.ProgressEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onprogress"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onprogress"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onprogress"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1414019166,"Kind":"Components.EventHandler","Name":"onerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onerror","Microsoft.AspNetCore.Components.Web.ErrorEventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onerror","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onerror:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onerror:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onerror","Microsoft.AspNetCore.Components.Web.ErrorEventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onerror"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onerror"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onerror"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ErrorEventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1684286683,"Kind":"Components.EventHandler","Name":"onactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1877185334,"Kind":"Components.EventHandler","Name":"onbeforeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforeactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforeactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforeactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforeactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforeactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforeactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforeactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforeactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":1604892650,"Kind":"Components.EventHandler","Name":"onbeforedeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onbeforedeactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onbeforedeactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforedeactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onbeforedeactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforedeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onbeforedeactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforedeactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onbeforedeactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onbeforedeactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":455610339,"Kind":"Components.EventHandler","Name":"ondeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ondeactivate","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ondeactivate","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondeactivate:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ondeactivate:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ondeactivate","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondeactivate"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ondeactivate"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ondeactivate"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":484371961,"Kind":"Components.EventHandler","Name":"onended","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onended","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onended","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onended:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onended:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onended","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onended","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onended"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onended"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onended"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":2000527016,"Kind":"Components.EventHandler","Name":"onfullscreenchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfullscreenchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfullscreenchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfullscreenchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfullscreenchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfullscreenchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfullscreenchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfullscreenchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1453016704,"Kind":"Components.EventHandler","Name":"onfullscreenerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onfullscreenerror","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onfullscreenerror","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenerror:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onfullscreenerror:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfullscreenerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onfullscreenerror","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfullscreenerror"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onfullscreenerror"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onfullscreenerror"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1255032978,"Kind":"Components.EventHandler","Name":"onloadeddata","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadeddata","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadeddata","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadeddata:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadeddata:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadeddata","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadeddata","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadeddata"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadeddata"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadeddata"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":166892546,"Kind":"Components.EventHandler","Name":"onloadedmetadata","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onloadedmetadata","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onloadedmetadata","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadedmetadata:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onloadedmetadata:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadedmetadata","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onloadedmetadata","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadedmetadata"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onloadedmetadata"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onloadedmetadata"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1619086998,"Kind":"Components.EventHandler","Name":"onpointerlockchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerlockchange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerlockchange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockchange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockchange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerlockchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerlockchange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerlockchange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerlockchange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerlockchange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":183890027,"Kind":"Components.EventHandler","Name":"onpointerlockerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onpointerlockerror","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onpointerlockerror","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockerror:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onpointerlockerror:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerlockerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onpointerlockerror","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerlockerror"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onpointerlockerror"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onpointerlockerror"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-960344618,"Kind":"Components.EventHandler","Name":"onreadystatechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onreadystatechange","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onreadystatechange","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreadystatechange:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onreadystatechange:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onreadystatechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onreadystatechange","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onreadystatechange"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onreadystatechange"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onreadystatechange"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":823383190,"Kind":"Components.EventHandler","Name":"onscroll","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@onscroll","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@onscroll","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onscroll:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@onscroll:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onscroll","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@onscroll","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onscroll"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@onscroll"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@onscroll"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":830423229,"Kind":"Components.EventHandler","Name":"ontoggle","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":14,"Args":["@ontoggle","System.EventArgs"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ontoggle","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontoggle:preventDefault","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"*","Attributes":[{"Name":"@ontoggle:stopPropagation","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontoggle","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":14,"Args":["@ontoggle","System.EventArgs"]},"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontoggle"},"BoundAttributeParameters":[{"Name":"preventDefault","TypeName":"System.Boolean","Documentation":{"Id":15,"Args":["@ontoggle"]},"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Name":"stopPropagation","TypeName":"System.Boolean","Documentation":{"Id":16,"Args":["@ontoggle"]},"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers","Common.TypeNameIdentifier":"EventHandlers","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.EventHandler.EventArgs":"System.EventArgs","Components.IsSpecialKind":"Components.EventHandler","Runtime.Name":"Components.None"}},{"HashCode":-1658677927,"Kind":"Components.Splat","Name":"Attributes","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":19},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@attributes","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Splat","Name":"@attributes","TypeName":"System.Object","Documentation":{"Id":19},"Metadata":{"Common.PropertyName":"Attributes","Common.DirectiveAttribute":"True"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Attributes","Components.IsSpecialKind":"Components.Splat","Runtime.Name":"Components.None"}},{"HashCode":-1357427151,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":"\r\n \r\n implementation targeting elements containing attributes with URL expected values.\r\n \r\n Resolves URLs starting with '~/' (relative to the application's 'webroot' setting) that are not\r\n targeted by other s. Runs prior to other s to ensure\r\n application-relative URLs are resolved.\r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"itemid","Value":"~/","ValueComparison":2}]},{"TagName":"a","Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"applet","Attributes":[{"Name":"archive","Value":"~/","ValueComparison":2}]},{"TagName":"area","TagStructure":2,"Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"audio","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"base","TagStructure":2,"Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"blockquote","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"button","Attributes":[{"Name":"formaction","Value":"~/","ValueComparison":2}]},{"TagName":"del","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"embed","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"form","Attributes":[{"Name":"action","Value":"~/","ValueComparison":2}]},{"TagName":"html","Attributes":[{"Name":"manifest","Value":"~/","ValueComparison":2}]},{"TagName":"iframe","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"img","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"img","TagStructure":2,"Attributes":[{"Name":"srcset","Value":"~/","ValueComparison":2}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"formaction","Value":"~/","ValueComparison":2}]},{"TagName":"ins","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"href","Value":"~/","ValueComparison":2}]},{"TagName":"menuitem","Attributes":[{"Name":"icon","Value":"~/","ValueComparison":2}]},{"TagName":"object","Attributes":[{"Name":"archive","Value":"~/","ValueComparison":2}]},{"TagName":"object","Attributes":[{"Name":"data","Value":"~/","ValueComparison":2}]},{"TagName":"q","Attributes":[{"Name":"cite","Value":"~/","ValueComparison":2}]},{"TagName":"script","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"source","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"source","TagStructure":2,"Attributes":[{"Name":"srcset","Value":"~/","ValueComparison":2}]},{"TagName":"track","TagStructure":2,"Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"video","Attributes":[{"Name":"src","Value":"~/","ValueComparison":2}]},{"TagName":"video","Attributes":[{"Name":"poster","Value":"~/","ValueComparison":2}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper","Common.TypeNameIdentifier":"UrlResolutionTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1635625292,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <a> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"a","Attributes":[{"Name":"asp-action"}]},{"TagName":"a","Attributes":[{"Name":"asp-controller"}]},{"TagName":"a","Attributes":[{"Name":"asp-area"}]},{"TagName":"a","Attributes":[{"Name":"asp-page"}]},{"TagName":"a","Attributes":[{"Name":"asp-page-handler"}]},{"TagName":"a","Attributes":[{"Name":"asp-fragment"}]},{"TagName":"a","Attributes":[{"Name":"asp-host"}]},{"TagName":"a","Attributes":[{"Name":"asp-protocol"}]},{"TagName":"a","Attributes":[{"Name":"asp-route"}]},{"TagName":"a","Attributes":[{"Name":"asp-all-route-data"}]},{"TagName":"a","Attributes":[{"Name":"asp-route-","NameComparison":1}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","Documentation":"\r\n \r\n The name of the action method.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Action"}},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","Documentation":"\r\n \r\n The name of the controller.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Controller"}},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","Documentation":"\r\n \r\n The name of the area.\r\n \r\n \r\n Must be null if is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Area"}},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page.\r\n \r\n \r\n Must be null if or , \r\n is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Page"}},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page handler.\r\n \r\n \r\n Must be null if or , or \r\n is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"PageHandler"}},{"Kind":"ITagHelper","Name":"asp-protocol","TypeName":"System.String","Documentation":"\r\n \r\n The protocol for the URL, such as \"http\" or \"https\".\r\n \r\n ","Metadata":{"Common.PropertyName":"Protocol"}},{"Kind":"ITagHelper","Name":"asp-host","TypeName":"System.String","Documentation":"\r\n \r\n The host name.\r\n \r\n ","Metadata":{"Common.PropertyName":"Host"}},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","Documentation":"\r\n \r\n The URL fragment name.\r\n \r\n ","Metadata":{"Common.PropertyName":"Fragment"}},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","Documentation":"\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if one of , , \r\n or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Route"}},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":"\r\n \r\n Additional parameters for the route.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteValues"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper","Common.TypeNameIdentifier":"AnchorTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1501777474,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <cache> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"cache"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"priority","TypeName":"Microsoft.Extensions.Caching.Memory.CacheItemPriority?","Documentation":"\r\n \r\n Gets or sets the policy for the cache entry.\r\n \r\n ","Metadata":{"Common.PropertyName":"Priority"}},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryBy"}},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByHeader"}},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByQuery"}},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByRoute"}},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCookie"}},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByUser"}},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by request culture.\r\n \r\n Setting this to true would result in the result to be varied by \r\n and .\r\n \r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCulture"}},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","Documentation":"\r\n \r\n Gets or sets the exact the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresOn"}},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresAfter"}},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration from last access that the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresSliding"}},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value which determines if the tag helper is enabled or not.\r\n \r\n ","Metadata":{"Common.PropertyName":"Enabled"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper","Common.TypeNameIdentifier":"CacheTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1067065902,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n A that renders a Razor component.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"component","TagStructure":2,"Attributes":[{"Name":"type"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"params","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"param-","IndexerTypeName":"System.Object","Documentation":"\r\n \r\n Gets or sets values for component parameters.\r\n \r\n ","Metadata":{"Common.PropertyName":"Parameters"}},{"Kind":"ITagHelper","Name":"type","TypeName":"System.Type","Documentation":"\r\n \r\n Gets or sets the component type. This value is required.\r\n \r\n ","Metadata":{"Common.PropertyName":"ComponentType"}},{"Kind":"ITagHelper","Name":"render-mode","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.RenderMode","IsEnum":true,"Documentation":"\r\n \r\n Gets or sets the \r\n \r\n ","Metadata":{"Common.PropertyName":"RenderMode"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper","Common.TypeNameIdentifier":"ComponentTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1303231203,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <distributed-cache> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"distributed-cache","Attributes":[{"Name":"name"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a unique name to discriminate cached entries.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryBy"}},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByHeader"}},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByQuery"}},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByRoute"}},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCookie"}},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByUser"}},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by request culture.\r\n \r\n Setting this to true would result in the result to be varied by \r\n and .\r\n \r\n \r\n ","Metadata":{"Common.PropertyName":"VaryByCulture"}},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","Documentation":"\r\n \r\n Gets or sets the exact the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresOn"}},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresAfter"}},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","Documentation":"\r\n \r\n Gets or sets the duration from last access that the cache entry should be evicted.\r\n \r\n ","Metadata":{"Common.PropertyName":"ExpiresSliding"}},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","Documentation":"\r\n \r\n Gets or sets the value which determines if the tag helper is enabled or not.\r\n \r\n ","Metadata":{"Common.PropertyName":"Enabled"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper","Common.TypeNameIdentifier":"DistributedCacheTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1107305569,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <environment> elements that conditionally renders\r\n content based on the current value of .\r\n If the environment is not listed in the specified or ,\r\n or if it is in , the content will not be rendered.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"environment"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"names","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of environment names in which the content should be rendered.\r\n If the current environment is also in the list, the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Names"}},{"Kind":"ITagHelper","Name":"include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of environment names in which the content should be rendered.\r\n If the current environment is also in the list, the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Include"}},{"Kind":"ITagHelper","Name":"exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of environment names in which the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Exclude"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper","Common.TypeNameIdentifier":"EnvironmentTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1496735038,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <button> elements and <input> elements with\r\n their type attribute set to image or submit.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"button","Attributes":[{"Name":"asp-action"}]},{"TagName":"button","Attributes":[{"Name":"asp-controller"}]},{"TagName":"button","Attributes":[{"Name":"asp-area"}]},{"TagName":"button","Attributes":[{"Name":"asp-page"}]},{"TagName":"button","Attributes":[{"Name":"asp-page-handler"}]},{"TagName":"button","Attributes":[{"Name":"asp-fragment"}]},{"TagName":"button","Attributes":[{"Name":"asp-route"}]},{"TagName":"button","Attributes":[{"Name":"asp-all-route-data"}]},{"TagName":"button","Attributes":[{"Name":"asp-route-","NameComparison":1}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-action"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-controller"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-area"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-page"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-page-handler"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-fragment"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-route"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-all-route-data"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"image","ValueComparison":1},{"Name":"asp-route-","NameComparison":1}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-action"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-controller"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-area"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-page"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-page-handler"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-fragment"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-route"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-all-route-data"}]},{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"type","Value":"submit","ValueComparison":1},{"Name":"asp-route-","NameComparison":1}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","Documentation":"\r\n \r\n The name of the action method.\r\n \r\n ","Metadata":{"Common.PropertyName":"Action"}},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","Documentation":"\r\n \r\n The name of the controller.\r\n \r\n ","Metadata":{"Common.PropertyName":"Controller"}},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","Documentation":"\r\n \r\n The name of the area.\r\n \r\n ","Metadata":{"Common.PropertyName":"Area"}},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"Page"}},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page handler.\r\n \r\n ","Metadata":{"Common.PropertyName":"PageHandler"}},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the URL fragment.\r\n \r\n ","Metadata":{"Common.PropertyName":"Fragment"}},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","Documentation":"\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Route"}},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":"\r\n \r\n Additional parameters for the route.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteValues"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper","Common.TypeNameIdentifier":"FormActionTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":126514257,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <form> elements.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"form"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","Documentation":"\r\n \r\n The name of the action method.\r\n \r\n ","Metadata":{"Common.PropertyName":"Action"}},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","Documentation":"\r\n \r\n The name of the controller.\r\n \r\n ","Metadata":{"Common.PropertyName":"Controller"}},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","Documentation":"\r\n \r\n The name of the area.\r\n \r\n ","Metadata":{"Common.PropertyName":"Area"}},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page.\r\n \r\n ","Metadata":{"Common.PropertyName":"Page"}},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","Documentation":"\r\n \r\n The name of the page handler.\r\n \r\n ","Metadata":{"Common.PropertyName":"PageHandler"}},{"Kind":"ITagHelper","Name":"asp-antiforgery","TypeName":"System.Boolean?","Documentation":"\r\n \r\n Whether the antiforgery token should be generated.\r\n \r\n Defaults to false if user provides an action attribute\r\n or if the method is ; true otherwise.\r\n ","Metadata":{"Common.PropertyName":"Antiforgery"}},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","Documentation":"\r\n \r\n Gets or sets the URL fragment.\r\n \r\n ","Metadata":{"Common.PropertyName":"Fragment"}},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","Documentation":"\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ","Metadata":{"Common.PropertyName":"Route"}},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":"\r\n \r\n Additional parameters for the route.\r\n \r\n ","Metadata":{"Common.PropertyName":"RouteValues"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper","Common.TypeNameIdentifier":"FormTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-835993632,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <img> elements that supports file versioning.\r\n \r\n \r\n The tag helper won't process for cases with just the 'src' attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"img","TagStructure":2,"Attributes":[{"Name":"asp-append-version"},{"Name":"src"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","Documentation":"\r\n \r\n Source of the image.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Src"}},{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean","Documentation":"\r\n \r\n Value indicating if file version should be appended to the src urls.\r\n \r\n \r\n If true then a query string \"v\" with the encoded content of the file is added.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppendVersion"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper","Common.TypeNameIdentifier":"ImageTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-2104829273,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <input> elements with an asp-for attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"input","TagStructure":2,"Attributes":[{"Name":"asp-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"asp-format","TypeName":"System.String","Documentation":"\r\n \r\n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\r\n result. Sets the generated \"value\" attribute to that formatted string.\r\n \r\n \r\n Not used if the provided (see ) or calculated \"type\" attribute value is\r\n checkbox, password, or radio. That is, is used when calling\r\n .\r\n \r\n ","Metadata":{"Common.PropertyName":"Format"}},{"Kind":"ITagHelper","Name":"type","TypeName":"System.String","Documentation":"\r\n \r\n The type of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine the \r\n helper to call and the default value. A default is not calculated\r\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\r\n hidden, password, or radio.\r\n \r\n ","Metadata":{"Common.PropertyName":"InputTypeName"}},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine whether is\r\n valid with an empty .\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}},{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","Documentation":"\r\n \r\n The value of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\r\n if is \"radio\". Must not be null in that case.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper","Common.TypeNameIdentifier":"InputTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1039086171,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <label> elements with an asp-for attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"label","Attributes":[{"Name":"asp-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper","Common.TypeNameIdentifier":"LabelTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1394407878,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <link> elements that supports fallback href paths.\r\n \r\n \r\n The tag helper won't process for cases with just the 'href' attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-href-include"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-href-exclude"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-href"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-include"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-exclude"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-class"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-property"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-value"}]},{"TagName":"link","TagStructure":2,"Attributes":[{"Name":"asp-append-version"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"href","TypeName":"System.String","Documentation":"\r\n \r\n Address of the linked resource.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Href"}},{"Kind":"ITagHelper","Name":"asp-href-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to load.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"HrefInclude"}},{"Kind":"ITagHelper","Name":"asp-href-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"HrefExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-href","TypeName":"System.String","Documentation":"\r\n \r\n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackHref"}},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","Documentation":"\r\n \r\n Boolean value that determines if an integrity hash will be compared with value.\r\n \r\n ","Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"}},{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","Documentation":"\r\n \r\n Value indicating if file version should be appended to the href urls.\r\n \r\n \r\n If true then a query string \"v\" with the encoded content of the file is added.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppendVersion"}},{"Kind":"ITagHelper","Name":"asp-fallback-href-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\r\n one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackHrefInclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-href-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\r\n the case the primary one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackHrefExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-test-class","TypeName":"System.String","Documentation":"\r\n \r\n The class name defined in the stylesheet to use for the fallback test.\r\n Must be used in conjunction with and ,\r\n and either or .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestClass"}},{"Kind":"ITagHelper","Name":"asp-fallback-test-property","TypeName":"System.String","Documentation":"\r\n \r\n The CSS property name to use for the fallback test.\r\n Must be used in conjunction with and ,\r\n and either or .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestProperty"}},{"Kind":"ITagHelper","Name":"asp-fallback-test-value","TypeName":"System.String","Documentation":"\r\n \r\n The CSS property value to use for the fallback test.\r\n Must be used in conjunction with and ,\r\n and either or .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestValue"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper","Common.TypeNameIdentifier":"LinkTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":663111948,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <option> elements.\r\n \r\n \r\n This works in conjunction with . It reads elements\r\n content but does not modify that content. The only modification it makes is to add a selected attribute\r\n in some cases.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"option"}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","Documentation":"\r\n \r\n Specifies a value for the <option> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Value"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper","Common.TypeNameIdentifier":"OptionTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-1606513186,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n Renders a partial view.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"partial","TagStructure":2,"Attributes":[{"Name":"name"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name or path of the partial view that is rendered to the response.\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}},{"Kind":"ITagHelper","Name":"for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model. Cannot be used together with .\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"model","TypeName":"System.Object","Documentation":"\r\n \r\n The model to pass into the partial view. Cannot be used together with .\r\n \r\n ","Metadata":{"Common.PropertyName":"Model"}},{"Kind":"ITagHelper","Name":"optional","TypeName":"System.Boolean","Documentation":"\r\n \r\n When optional, executing the tag helper will no-op if the view cannot be located.\r\n Otherwise will throw stating the view could not be found.\r\n \r\n ","Metadata":{"Common.PropertyName":"Optional"}},{"Kind":"ITagHelper","Name":"fallback-name","TypeName":"System.String","Documentation":"\r\n \r\n View to lookup if the view specified by cannot be located.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackName"}},{"Kind":"ITagHelper","Name":"view-data","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary","IndexerNamePrefix":"view-data-","IndexerTypeName":"System.Object","Documentation":"\r\n \r\n A to pass into the partial view.\r\n \r\n ","Metadata":{"Common.PropertyName":"ViewData"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper","Common.TypeNameIdentifier":"PartialTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":597222171,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n A that saves the state of Razor components rendered on the page up to that point.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"persist-component-state","TagStructure":2}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"persist-mode","TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PersistenceMode?","Documentation":"\r\n \r\n Gets or sets the for the state to persist.\r\n \r\n ","Metadata":{"Common.PropertyName":"PersistenceMode"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper","Common.TypeNameIdentifier":"PersistComponentStateTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":1022418279,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <script> elements that supports fallback src paths.\r\n \r\n \r\n The tag helper won't process for cases with just the 'src' attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"script","Attributes":[{"Name":"asp-src-include"}]},{"TagName":"script","Attributes":[{"Name":"asp-src-exclude"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-src"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-src-include"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-src-exclude"}]},{"TagName":"script","Attributes":[{"Name":"asp-fallback-test"}]},{"TagName":"script","Attributes":[{"Name":"asp-append-version"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","Documentation":"\r\n \r\n Address of the external script to use.\r\n \r\n \r\n Passed through to the generated HTML in all cases.\r\n \r\n ","Metadata":{"Common.PropertyName":"Src"}},{"Kind":"ITagHelper","Name":"asp-src-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to load.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"SrcInclude"}},{"Kind":"ITagHelper","Name":"asp-src-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"SrcExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-src","TypeName":"System.String","Documentation":"\r\n \r\n The URL of a Script tag to fallback to in the case the primary one fails.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackSrc"}},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","Documentation":"\r\n \r\n Boolean value that determines if an integrity hash will be compared with value.\r\n \r\n ","Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"}},{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","Documentation":"\r\n \r\n Value indicating if file version should be appended to src urls.\r\n \r\n \r\n A query string \"v\" with the encoded content of the file is added.\r\n \r\n ","Metadata":{"Common.PropertyName":"AppendVersion"}},{"Kind":"ITagHelper","Name":"asp-fallback-src-include","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\r\n primary one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackSrcInclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-src-exclude","TypeName":"System.String","Documentation":"\r\n \r\n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\r\n the case the primary one fails.\r\n The glob patterns are assessed relative to the application's 'webroot' setting.\r\n Must be used in conjunction with .\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackSrcExclude"}},{"Kind":"ITagHelper","Name":"asp-fallback-test","TypeName":"System.String","Documentation":"\r\n \r\n The script method defined in the primary script to use for the fallback test.\r\n \r\n ","Metadata":{"Common.PropertyName":"FallbackTestExpression"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper","Common.TypeNameIdentifier":"ScriptTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":-554474441,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <select> elements with asp-for and/or\r\n asp-items attribute(s).\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"select","Attributes":[{"Name":"asp-for"}]},{"TagName":"select","Attributes":[{"Name":"asp-items"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"asp-items","TypeName":"System.Collections.Generic.IEnumerable","Documentation":"\r\n \r\n A collection of objects used to populate the <select> element with\r\n <optgroup> and <option> elements.\r\n \r\n ","Metadata":{"Common.PropertyName":"Items"}},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine whether is\r\n valid with an empty .\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper","Common.TypeNameIdentifier":"SelectTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":915989612,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting <textarea> elements with an asp-for attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"textarea","Attributes":[{"Name":"asp-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n An expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","Documentation":"\r\n \r\n The name of the <input> element.\r\n \r\n \r\n Passed through to the generated HTML in all cases. Also used to determine whether is\r\n valid with an empty .\r\n \r\n ","Metadata":{"Common.PropertyName":"Name"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper","Common.TypeNameIdentifier":"TextAreaTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":2070480479,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting any HTML element with an asp-validation-for\r\n attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"span","Attributes":[{"Name":"asp-validation-for"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","Documentation":"\r\n \r\n Gets an expression to be evaluated against the current model.\r\n \r\n ","Metadata":{"Common.PropertyName":"For"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper","Common.TypeNameIdentifier":"ValidationMessageTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":711690974,"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":"\r\n \r\n implementation targeting any HTML element with an asp-validation-summary\r\n attribute.\r\n \r\n ","CaseSensitive":false,"TagMatchingRules":[{"TagName":"div","Attributes":[{"Name":"asp-validation-summary"}]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-summary","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary","IsEnum":true,"Documentation":"\r\n \r\n If or , appends a validation\r\n summary. Otherwise (, the default), this tag helper does nothing.\r\n \r\n \r\n Thrown if setter is called with an undefined value e.g.\r\n (ValidationSummary)23.\r\n \r\n ","Metadata":{"Common.PropertyName":"ValidationSummary"}}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper","Common.TypeNameIdentifier":"ValidationSummaryTagHelper","Common.TypeNamespace":"Microsoft.AspNetCore.Mvc.TagHelpers","Runtime.Name":"ITagHelper"}},{"HashCode":87783689,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":0},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@bind-","NameComparison":1,"Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-...","TypeName":"System.Collections.Generic.Dictionary","IndexerNamePrefix":"@bind-","IndexerTypeName":"System.Object","Documentation":{"Id":0},"Metadata":{"Common.PropertyName":"Bind","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":2},"Metadata":{"Common.PropertyName":"Format"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":1,"Args":["@bind-..."]},"Metadata":{"Common.PropertyName":"Event"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Bind","Common.TypeNameIdentifier":"Bind","Common.TypeNamespace":"Microsoft.AspNetCore.Components","Components.Bind.Fallback":"True","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1886728056,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-751468505,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-897546298,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["checked","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"checkbox","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"checkbox","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["checked","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_checked"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_checked"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-checked","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_checked"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.TypeAttribute":"checkbox","Components.Bind.ValueAttribute":"checked","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":2077438364,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"text","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"text","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.TypeAttribute":"text","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-478655573,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"number","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1727219745,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"number","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"number","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1609103576,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-dd","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"date","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-263506177,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"date","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-dd","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"date","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1699770350,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-ddTHH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"datetime-local","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1138129442,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"datetime-local","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM-ddTHH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"datetime-local","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-342334592,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"month","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":2016351310,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"month","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"yyyy-MM","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"month","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-3753525,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"HH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"time","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-191892789,"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind-value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"input","Attributes":[{"Name":"type","Value":"time","ValueComparison":1},{"Name":"@bind-value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind-value"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":"HH:mm:ss","Components.Bind.IsInvariantCulture":"True","Components.Bind.TypeAttribute":"time","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-380241744,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"select","Attributes":[{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"select","Attributes":[{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":1598759353,"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":3,"Args":["value","onchange"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"textarea","Attributes":[{"Name":"@bind","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"textarea","Attributes":[{"Name":"@bind:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","Documentation":{"Id":3,"Args":["value","onchange"]},"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Name":"format","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}},{"Name":"event","TypeName":"System.String","Documentation":{"Id":6,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Event_value"}},{"Name":"culture","TypeName":"System.Globalization.CultureInfo","Documentation":{"Id":5},"Metadata":{"Common.PropertyName":"Culture"}},{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","Documentation":{"Id":7,"Args":["@bind"]},"Metadata":{"Common.PropertyName":"Format_value"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes","Common.TypeNameIdentifier":"BindAttributes","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Web","Components.Bind.ChangeAttribute":"onchange","Components.Bind.Format":null,"Components.Bind.IsInvariantCulture":"False","Components.Bind.ValueAttribute":"value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1728660936,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputCheckbox","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputCheckbox","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-135059254,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Common.TypeNameIdentifier":"InputCheckbox","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":2079193430,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputDate","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputDate","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-1332181074,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Common.TypeNameIdentifier":"InputDate","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1272104786,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputNumber","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputNumber","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-2049750376,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Common.TypeNameIdentifier":"InputNumber","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-233555445,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputRadioGroup","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputRadioGroup","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-785714819,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputRadioGroup","Common.TypeNameIdentifier":"InputRadioGroup","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":2032267197,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputSelect","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputSelect","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":811581651,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Common.TypeNameIdentifier":"InputSelect","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":1148665271,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputText","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputText","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":-115855893,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Common.TypeNameIdentifier":"InputText","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-403255426,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputTextArea","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"InputTextArea","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Runtime.Name":"Components.None"}},{"HashCode":721455144,"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Attributes":[{"Name":"@bind-Value","Metadata":{"Common.DirectiveAttribute":"True"}}]},{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Attributes":[{"Name":"@bind-Value:get","Metadata":{"Common.DirectiveAttribute":"True"}},{"Name":"@bind-Value:set","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","Documentation":{"Id":10,"Args":["Value","ValueChanged"]},"Metadata":{"Common.PropertyName":"Value","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[{"Name":"get","TypeName":"System.Object","Documentation":{"Id":8},"Metadata":{"Common.PropertyName":"Get","Components.Bind.AlternativeNotation":"True"}},{"Name":"set","TypeName":"System.Delegate","Documentation":{"Id":9},"Metadata":{"Common.PropertyName":"Set"}},{"Name":"after","TypeName":"System.Delegate","Documentation":{"Id":4},"Metadata":{"Common.PropertyName":"After"}}]}],"Metadata":{"Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Common.TypeNameIdentifier":"InputTextArea","Common.TypeNamespace":"Microsoft.AspNetCore.Components.Forms","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Components.Bind.ValueAttribute":"Value","Components.IsSpecialKind":"Components.Bind","Components.NameMatch":"Components.FullyQualifiedNameMatch","Runtime.Name":"Components.None"}},{"HashCode":-1143631698,"Kind":"Components.Ref","Name":"Ref","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":18},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@ref","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Ref","Name":"@ref","TypeName":"System.Object","Documentation":{"Id":18},"Metadata":{"Common.PropertyName":"Ref","Common.DirectiveAttribute":"True"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Ref","Components.IsSpecialKind":"Components.Ref","Runtime.Name":"Components.None"}},{"HashCode":-1000828397,"Kind":"Components.Key","Name":"Key","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":{"Id":17},"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","Attributes":[{"Name":"@key","Metadata":{"Common.DirectiveAttribute":"True"}}]}],"BoundAttributes":[{"Kind":"Components.Key","Name":"@key","TypeName":"System.Object","Documentation":{"Id":17},"Metadata":{"Common.PropertyName":"Key","Common.DirectiveAttribute":"True"}}],"Metadata":{"Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Key","Components.IsSpecialKind":"Components.Key","Runtime.Name":"Components.None"}}],"CSharpLanguageVersion":1000},"RootNamespace":"FakePieShop","Documents":[{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\Components\\ShoppingCartSummary\\Default.cshtml","TargetPath":"Views\\Shared\\Components\\ShoppingCartSummary\\Default.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Pages\\_ViewStart.cshtml","TargetPath":"Pages\\_ViewStart.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Pages\\CheckoutPage.cshtml","TargetPath":"Pages\\CheckoutPage.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Pages\\Shared\\_PageLayout.cshtml","TargetPath":"Pages\\Shared\\_PageLayout.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_ShoppingCartItemCard.cshtml","TargetPath":"Views\\Shared\\_ShoppingCartItemCard.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Pie\\List.cshtml","TargetPath":"Views\\Pie\\List.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Home\\Index.cshtml","TargetPath":"Views\\Home\\Index.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_PieCard.cshtml","TargetPath":"Views\\Shared\\_PieCard.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Pages\\CheckoutCompletePage.cshtml","TargetPath":"Pages\\CheckoutCompletePage.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Pie\\Details.cshtml","TargetPath":"Views\\Pie\\Details.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\_ViewStart.cshtml","TargetPath":"Views\\_ViewStart.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Order\\CheckoutComplete.cshtml","TargetPath":"Views\\Order\\CheckoutComplete.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\_ViewImports.cshtml","TargetPath":"Views\\_ViewImports.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\ShoppingCart\\Index.cshtml","TargetPath":"Views\\ShoppingCart\\Index.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\Components\\CategoryMenu\\Default.cshtml","TargetPath":"Views\\Shared\\Components\\CategoryMenu\\Default.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Contact\\Index.cshtml","TargetPath":"Views\\Contact\\Index.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Order\\Checkout.cshtml","TargetPath":"Views\\Order\\Checkout.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_Layout.cshtml","TargetPath":"Views\\Shared\\_Layout.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Views\\Shared\\_Carousel.cshtml","TargetPath":"Views\\Shared\\_Carousel.cshtml","FileKind":"mvc"},{"FilePath":"C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\Pages\\_ViewImports.cshtml","TargetPath":"Pages\\_ViewImports.cshtml","FileKind":"mvc"}],"SerializationFormat":"0.3"} \ No newline at end of file diff --git a/FakePieShop/obj/Debug/net6.0/ref/FakePieShop.dll b/FakePieShop/obj/Debug/net6.0/ref/FakePieShop.dll index ecf0899e08cc8706619bb8558b5b47adfa905f7a..e80ac732f184e8faf8cda7ace8e7d9a2d48934e5 100644 GIT binary patch literal 55296 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 DCe~a) diff --git a/FakePieShop/obj/Debug/net6.0/refint/FakePieShop.dll b/FakePieShop/obj/Debug/net6.0/refint/FakePieShop.dll index ecf0899e08cc8706619bb8558b5b47adfa905f7a..e80ac732f184e8faf8cda7ace8e7d9a2d48934e5 100644 GIT binary patch literal 55296 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 DCe~a) diff --git a/FakePieShop/obj/Debug/net6.0/staticwebassets.build.json b/FakePieShop/obj/Debug/net6.0/staticwebassets.build.json index ef15115..02fe5e0 100644 --- a/FakePieShop/obj/Debug/net6.0/staticwebassets.build.json +++ b/FakePieShop/obj/Debug/net6.0/staticwebassets.build.json @@ -1,6 +1,6 @@ { "Version": 1, - "Hash": "+iBYx2p5VfNb+qcoYpgQnBDCiOyA6q7LOpXZnzsZXgM=", + "Hash": "k0eS4zfjvTf3yyGPmb7dMOBp2e8gvuAvtSGI9iPZEjY=", "Source": "FakePieShop", "BasePath": "_content/FakePieShop", "Mode": "Default", @@ -2548,6 +2548,2267 @@ "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", "OriginalItemSpec": "wwwroot\\lib\\jquery\\jquery.slim.min.map" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\additional-methods.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/additional-methods.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\additional-methods.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\additional-methods.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/additional-methods.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\additional-methods.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\jquery.validate.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/jquery.validate.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\jquery.validate.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\jquery.validate.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/jquery.validate.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\jquery.validate.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\jquery-validation-sri.json", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/jquery-validation-sri.json", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\jquery-validation-sri.json" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ar.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ar.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ar.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ar.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ar.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ar.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_az.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_az.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_az.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_az.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_az.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_az.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bg.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_bg.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_bg.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bg.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_bg.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_bg.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bn_BD.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_bn_BD.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_bn_BD.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bn_BD.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_bn_BD.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_bn_BD.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ca.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ca.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ca.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ca.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ca.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ca.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_cs.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_cs.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_cs.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_cs.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_cs.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_cs.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_da.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_da.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_da.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_da.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_da.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_da.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_de.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_de.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_de.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_de.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_de.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_de.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_el.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_el.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_el.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_el.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_el.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_el.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_es.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_es.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_es.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_es.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_AR.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_es_AR.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_es_AR.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_AR.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_es_AR.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_es_AR.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_PE.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_es_PE.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_es_PE.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_PE.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_es_PE.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_es_PE.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_et.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_et.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_et.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_et.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_et.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_et.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_eu.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_eu.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_eu.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_eu.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_eu.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_eu.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fa.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_fa.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_fa.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fa.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_fa.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_fa.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fi.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_fi.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_fi.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fi.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_fi.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_fi.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fr.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_fr.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_fr.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fr.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_fr.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_fr.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ge.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ge.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ge.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ge.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ge.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ge.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_gl.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_gl.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_gl.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_gl.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_gl.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_gl.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_he.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_he.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_he.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_he.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_he.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_he.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hi.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hi.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hi.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hi.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hi.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hi.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hr.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hr.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hr.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hr.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hr.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hr.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hu.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hu.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hu.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hu.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hu.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hu.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hy_AM.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hy_AM.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hy_AM.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hy_AM.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_hy_AM.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_hy_AM.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_id.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_id.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_id.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_id.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_id.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_id.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_is.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_is.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_is.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_is.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_is.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_is.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_it.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_it.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_it.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_it.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_it.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_it.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ja.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ja.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ja.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ja.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ja.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ja.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ka.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ka.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ka.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ka.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ka.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ka.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_kk.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_kk.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_kk.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_kk.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_kk.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_kk.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ko.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ko.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ko.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ko.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ko.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ko.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lt.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_lt.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_lt.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lt.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_lt.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_lt.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lv.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_lv.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_lv.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lv.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_lv.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_lv.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_mk.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_mk.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_mk.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_mk.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_mk.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_mk.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_my.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_my.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_my.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_my.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_my.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_my.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_nl.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_nl.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_nl.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_nl.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_nl.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_nl.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_no.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_no.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_no.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_no.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_no.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_no.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pl.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_pl.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_pl.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pl.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_pl.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_pl.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_BR.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_pt_BR.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_pt_BR.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_BR.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_pt_BR.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_pt_BR.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_PT.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_pt_PT.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_pt_PT.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_PT.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_pt_PT.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_pt_PT.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ro.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ro.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ro.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ro.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ro.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ro.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ru.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ru.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ru.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ru.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ru.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ru.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sd.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sd.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sd.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sd.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sd.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sd.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_si.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_si.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_si.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_si.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_si.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_si.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sk.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sk.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sk.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sk.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sk.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sk.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sl.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sl.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sl.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sl.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sl.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sl.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sr.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sr.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sr.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sr.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr_lat.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sr_lat.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sr_lat.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr_lat.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sr_lat.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sr_lat.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sv.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sv.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sv.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sv.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_sv.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_sv.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_th.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_th.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_th.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_th.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_th.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_th.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tj.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_tj.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_tj.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tj.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_tj.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_tj.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tr.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_tr.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_tr.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tr.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_tr.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_tr.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_uk.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_uk.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_uk.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_uk.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_uk.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_uk.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ur.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ur.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ur.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ur.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_ur.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_ur.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_vi.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_vi.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_vi.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_vi.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_vi.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_vi.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_zh.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_zh.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_zh.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_zh.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh_TW.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_zh_TW.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_zh_TW.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh_TW.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/messages_zh_TW.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\messages_zh_TW.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_de.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_de.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_de.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_de.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_de.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_de.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_es_CL.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_es_CL.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_es_CL.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_es_CL.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_es_CL.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_es_CL.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_fi.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_fi.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_fi.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_fi.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_fi.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_fi.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_it.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_it.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_it.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_it.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_it.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_it.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_nl.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_nl.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_nl.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_nl.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_nl.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_nl.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_pt.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_pt.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_pt.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_pt.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validate/localization/methods_pt.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validate\\localization\\methods_pt.min.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js" + }, + { + "Identity": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js", + "SourceId": "FakePieShop", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\", + "BasePath": "_content/FakePieShop", + "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js" } ] } \ No newline at end of file diff --git a/FakePieShop/obj/Debug/net6.0/staticwebassets.development.json b/FakePieShop/obj/Debug/net6.0/staticwebassets.development.json index d0ec0e0..25968a1 100644 --- a/FakePieShop/obj/Debug/net6.0/staticwebassets.development.json +++ b/FakePieShop/obj/Debug/net6.0/staticwebassets.development.json @@ -1 +1 @@ -{"ContentRoots":["C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Images":{"Children":{"bethanys-pie-shop-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logomark.png"},"Patterns":null},"bethanys-pie-shop-logo_horiz-white.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logo_horiz-white.png"},"Patterns":null},"carousel1.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel1.jpg"},"Patterns":null},"carousel2.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel2.jpg"},"Patterns":null},"carousel3.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel3.jpg"},"Patterns":null},"contact":{"Children":{"contact.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/contact/contact.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null},"scss":{"Children":{"bootstrap-grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-grid.scss"},"Patterns":null},"bootstrap-reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-reboot.scss"},"Patterns":null},"bootstrap-utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-utilities.scss"},"Patterns":null},"bootstrap.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap.scss"},"Patterns":null},"forms":{"Children":{"_floating-labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_floating-labels.scss"},"Patterns":null},"_form-check.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-check.scss"},"Patterns":null},"_form-control.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-control.scss"},"Patterns":null},"_form-range.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-range.scss"},"Patterns":null},"_form-select.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-select.scss"},"Patterns":null},"_form-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-text.scss"},"Patterns":null},"_input-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_input-group.scss"},"Patterns":null},"_labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_labels.scss"},"Patterns":null},"_validation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_validation.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"helpers":{"Children":{"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_clearfix.scss"},"Patterns":null},"_color-bg.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_color-bg.scss"},"Patterns":null},"_colored-links.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_colored-links.scss"},"Patterns":null},"_focus-ring.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_focus-ring.scss"},"Patterns":null},"_icon-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_icon-link.scss"},"Patterns":null},"_position.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_position.scss"},"Patterns":null},"_ratio.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_ratio.scss"},"Patterns":null},"_stacks.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stacks.scss"},"Patterns":null},"_stretched-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stretched-link.scss"},"Patterns":null},"_text-truncation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_text-truncation.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_visually-hidden.scss"},"Patterns":null},"_vr.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_vr.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"mixins":{"Children":{"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_alert.scss"},"Patterns":null},"_backdrop.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_backdrop.scss"},"Patterns":null},"_banner.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_banner.scss"},"Patterns":null},"_border-radius.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_border-radius.scss"},"Patterns":null},"_box-shadow.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_box-shadow.scss"},"Patterns":null},"_breakpoints.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_breakpoints.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_buttons.scss"},"Patterns":null},"_caret.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_caret.scss"},"Patterns":null},"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_clearfix.scss"},"Patterns":null},"_color-mode.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-mode.scss"},"Patterns":null},"_color-scheme.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-scheme.scss"},"Patterns":null},"_container.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_container.scss"},"Patterns":null},"_deprecate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_deprecate.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_forms.scss"},"Patterns":null},"_gradients.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_gradients.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_grid.scss"},"Patterns":null},"_image.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_image.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_list-group.scss"},"Patterns":null},"_lists.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_lists.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_pagination.scss"},"Patterns":null},"_reset-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_reset-text.scss"},"Patterns":null},"_resize.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_resize.scss"},"Patterns":null},"_table-variants.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_table-variants.scss"},"Patterns":null},"_text-truncate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_text-truncate.scss"},"Patterns":null},"_transition.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_transition.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_utilities.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_visually-hidden.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"utilities":{"Children":{"_api.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/utilities/_api.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"vendor":{"Children":{"_rfs.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/vendor/_rfs.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"_accordion.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_accordion.scss"},"Patterns":null},"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_alert.scss"},"Patterns":null},"_badge.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_badge.scss"},"Patterns":null},"_breadcrumb.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_breadcrumb.scss"},"Patterns":null},"_button-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_button-group.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_buttons.scss"},"Patterns":null},"_card.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_card.scss"},"Patterns":null},"_carousel.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_carousel.scss"},"Patterns":null},"_close.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_close.scss"},"Patterns":null},"_containers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_containers.scss"},"Patterns":null},"_dropdown.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_dropdown.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_forms.scss"},"Patterns":null},"_functions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_functions.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_grid.scss"},"Patterns":null},"_helpers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_helpers.scss"},"Patterns":null},"_images.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_images.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_list-group.scss"},"Patterns":null},"_maps.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_maps.scss"},"Patterns":null},"_mixins.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_mixins.scss"},"Patterns":null},"_modal.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_modal.scss"},"Patterns":null},"_nav.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_nav.scss"},"Patterns":null},"_navbar.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_navbar.scss"},"Patterns":null},"_offcanvas.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_offcanvas.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_pagination.scss"},"Patterns":null},"_placeholders.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_placeholders.scss"},"Patterns":null},"_popover.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_popover.scss"},"Patterns":null},"_progress.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_progress.scss"},"Patterns":null},"_reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_reboot.scss"},"Patterns":null},"_root.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_root.scss"},"Patterns":null},"_spinners.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_spinners.scss"},"Patterns":null},"_tables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tables.scss"},"Patterns":null},"_toasts.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_toasts.scss"},"Patterns":null},"_tooltip.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tooltip.scss"},"Patterns":null},"_transitions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_transitions.scss"},"Patterns":null},"_type.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_type.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_utilities.scss"},"Patterns":null},"_variables-dark.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables-dark.scss"},"Patterns":null},"_variables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables.scss"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Images":{"Children":{"bethanys-pie-shop-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logomark.png"},"Patterns":null},"bethanys-pie-shop-logo_horiz-white.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/bethanys-pie-shop-logo_horiz-white.png"},"Patterns":null},"carousel1.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel1.jpg"},"Patterns":null},"carousel2.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel2.jpg"},"Patterns":null},"carousel3.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/carousel3.jpg"},"Patterns":null},"contact":{"Children":{"contact.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Images/contact/contact.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null},"scss":{"Children":{"bootstrap-grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-grid.scss"},"Patterns":null},"bootstrap-reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-reboot.scss"},"Patterns":null},"bootstrap-utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap-utilities.scss"},"Patterns":null},"bootstrap.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/bootstrap.scss"},"Patterns":null},"forms":{"Children":{"_floating-labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_floating-labels.scss"},"Patterns":null},"_form-check.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-check.scss"},"Patterns":null},"_form-control.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-control.scss"},"Patterns":null},"_form-range.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-range.scss"},"Patterns":null},"_form-select.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-select.scss"},"Patterns":null},"_form-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_form-text.scss"},"Patterns":null},"_input-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_input-group.scss"},"Patterns":null},"_labels.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_labels.scss"},"Patterns":null},"_validation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/forms/_validation.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"helpers":{"Children":{"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_clearfix.scss"},"Patterns":null},"_color-bg.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_color-bg.scss"},"Patterns":null},"_colored-links.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_colored-links.scss"},"Patterns":null},"_focus-ring.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_focus-ring.scss"},"Patterns":null},"_icon-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_icon-link.scss"},"Patterns":null},"_position.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_position.scss"},"Patterns":null},"_ratio.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_ratio.scss"},"Patterns":null},"_stacks.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stacks.scss"},"Patterns":null},"_stretched-link.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_stretched-link.scss"},"Patterns":null},"_text-truncation.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_text-truncation.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_visually-hidden.scss"},"Patterns":null},"_vr.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/helpers/_vr.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"mixins":{"Children":{"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_alert.scss"},"Patterns":null},"_backdrop.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_backdrop.scss"},"Patterns":null},"_banner.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_banner.scss"},"Patterns":null},"_border-radius.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_border-radius.scss"},"Patterns":null},"_box-shadow.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_box-shadow.scss"},"Patterns":null},"_breakpoints.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_breakpoints.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_buttons.scss"},"Patterns":null},"_caret.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_caret.scss"},"Patterns":null},"_clearfix.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_clearfix.scss"},"Patterns":null},"_color-mode.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-mode.scss"},"Patterns":null},"_color-scheme.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_color-scheme.scss"},"Patterns":null},"_container.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_container.scss"},"Patterns":null},"_deprecate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_deprecate.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_forms.scss"},"Patterns":null},"_gradients.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_gradients.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_grid.scss"},"Patterns":null},"_image.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_image.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_list-group.scss"},"Patterns":null},"_lists.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_lists.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_pagination.scss"},"Patterns":null},"_reset-text.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_reset-text.scss"},"Patterns":null},"_resize.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_resize.scss"},"Patterns":null},"_table-variants.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_table-variants.scss"},"Patterns":null},"_text-truncate.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_text-truncate.scss"},"Patterns":null},"_transition.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_transition.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_utilities.scss"},"Patterns":null},"_visually-hidden.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/mixins/_visually-hidden.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"utilities":{"Children":{"_api.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/utilities/_api.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"vendor":{"Children":{"_rfs.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/vendor/_rfs.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"_accordion.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_accordion.scss"},"Patterns":null},"_alert.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_alert.scss"},"Patterns":null},"_badge.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_badge.scss"},"Patterns":null},"_breadcrumb.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_breadcrumb.scss"},"Patterns":null},"_button-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_button-group.scss"},"Patterns":null},"_buttons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_buttons.scss"},"Patterns":null},"_card.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_card.scss"},"Patterns":null},"_carousel.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_carousel.scss"},"Patterns":null},"_close.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_close.scss"},"Patterns":null},"_containers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_containers.scss"},"Patterns":null},"_dropdown.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_dropdown.scss"},"Patterns":null},"_forms.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_forms.scss"},"Patterns":null},"_functions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_functions.scss"},"Patterns":null},"_grid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_grid.scss"},"Patterns":null},"_helpers.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_helpers.scss"},"Patterns":null},"_images.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_images.scss"},"Patterns":null},"_list-group.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_list-group.scss"},"Patterns":null},"_maps.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_maps.scss"},"Patterns":null},"_mixins.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_mixins.scss"},"Patterns":null},"_modal.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_modal.scss"},"Patterns":null},"_nav.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_nav.scss"},"Patterns":null},"_navbar.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_navbar.scss"},"Patterns":null},"_offcanvas.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_offcanvas.scss"},"Patterns":null},"_pagination.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_pagination.scss"},"Patterns":null},"_placeholders.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_placeholders.scss"},"Patterns":null},"_popover.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_popover.scss"},"Patterns":null},"_progress.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_progress.scss"},"Patterns":null},"_reboot.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_reboot.scss"},"Patterns":null},"_root.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_root.scss"},"Patterns":null},"_spinners.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_spinners.scss"},"Patterns":null},"_tables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tables.scss"},"Patterns":null},"_toasts.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_toasts.scss"},"Patterns":null},"_tooltip.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_tooltip.scss"},"Patterns":null},"_transitions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_transitions.scss"},"Patterns":null},"_type.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_type.scss"},"Patterns":null},"_utilities.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_utilities.scss"},"Patterns":null},"_variables-dark.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables-dark.scss"},"Patterns":null},"_variables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/scss/_variables.scss"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validate":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/additional-methods.min.js"},"Patterns":null},"jquery-validation-sri.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/jquery-validation-sri.json"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/jquery.validate.min.js"},"Patterns":null},"localization":{"Children":{"messages_ar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ar.js"},"Patterns":null},"messages_ar.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ar.min.js"},"Patterns":null},"messages_az.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_az.js"},"Patterns":null},"messages_az.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_az.min.js"},"Patterns":null},"messages_bg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bg.js"},"Patterns":null},"messages_bg.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bg.min.js"},"Patterns":null},"messages_bn_BD.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bn_BD.js"},"Patterns":null},"messages_bn_BD.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_bn_BD.min.js"},"Patterns":null},"messages_ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ca.js"},"Patterns":null},"messages_ca.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ca.min.js"},"Patterns":null},"messages_cs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_cs.js"},"Patterns":null},"messages_cs.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_cs.min.js"},"Patterns":null},"messages_da.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_da.js"},"Patterns":null},"messages_da.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_da.min.js"},"Patterns":null},"messages_de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_de.js"},"Patterns":null},"messages_de.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_de.min.js"},"Patterns":null},"messages_el.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_el.js"},"Patterns":null},"messages_el.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_el.min.js"},"Patterns":null},"messages_es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es.js"},"Patterns":null},"messages_es.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es.min.js"},"Patterns":null},"messages_es_AR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_AR.js"},"Patterns":null},"messages_es_AR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_AR.min.js"},"Patterns":null},"messages_es_PE.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_PE.js"},"Patterns":null},"messages_es_PE.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_es_PE.min.js"},"Patterns":null},"messages_et.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_et.js"},"Patterns":null},"messages_et.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_et.min.js"},"Patterns":null},"messages_eu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_eu.js"},"Patterns":null},"messages_eu.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_eu.min.js"},"Patterns":null},"messages_fa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fa.js"},"Patterns":null},"messages_fa.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fa.min.js"},"Patterns":null},"messages_fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fi.js"},"Patterns":null},"messages_fi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fi.min.js"},"Patterns":null},"messages_fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fr.js"},"Patterns":null},"messages_fr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_fr.min.js"},"Patterns":null},"messages_ge.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ge.js"},"Patterns":null},"messages_ge.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ge.min.js"},"Patterns":null},"messages_gl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_gl.js"},"Patterns":null},"messages_gl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_gl.min.js"},"Patterns":null},"messages_he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_he.js"},"Patterns":null},"messages_he.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_he.min.js"},"Patterns":null},"messages_hi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hi.js"},"Patterns":null},"messages_hi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hi.min.js"},"Patterns":null},"messages_hr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hr.js"},"Patterns":null},"messages_hr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hr.min.js"},"Patterns":null},"messages_hu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hu.js"},"Patterns":null},"messages_hu.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hu.min.js"},"Patterns":null},"messages_hy_AM.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hy_AM.js"},"Patterns":null},"messages_hy_AM.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_hy_AM.min.js"},"Patterns":null},"messages_id.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_id.js"},"Patterns":null},"messages_id.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_id.min.js"},"Patterns":null},"messages_is.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_is.js"},"Patterns":null},"messages_is.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_is.min.js"},"Patterns":null},"messages_it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_it.js"},"Patterns":null},"messages_it.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_it.min.js"},"Patterns":null},"messages_ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ja.js"},"Patterns":null},"messages_ja.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ja.min.js"},"Patterns":null},"messages_ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ka.js"},"Patterns":null},"messages_ka.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ka.min.js"},"Patterns":null},"messages_kk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_kk.js"},"Patterns":null},"messages_kk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_kk.min.js"},"Patterns":null},"messages_ko.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ko.js"},"Patterns":null},"messages_ko.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ko.min.js"},"Patterns":null},"messages_lt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lt.js"},"Patterns":null},"messages_lt.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lt.min.js"},"Patterns":null},"messages_lv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lv.js"},"Patterns":null},"messages_lv.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_lv.min.js"},"Patterns":null},"messages_mk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_mk.js"},"Patterns":null},"messages_mk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_mk.min.js"},"Patterns":null},"messages_my.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_my.js"},"Patterns":null},"messages_my.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_my.min.js"},"Patterns":null},"messages_nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_nl.js"},"Patterns":null},"messages_nl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_nl.min.js"},"Patterns":null},"messages_no.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_no.js"},"Patterns":null},"messages_no.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_no.min.js"},"Patterns":null},"messages_pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pl.js"},"Patterns":null},"messages_pl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pl.min.js"},"Patterns":null},"messages_pt_BR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_BR.js"},"Patterns":null},"messages_pt_BR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_BR.min.js"},"Patterns":null},"messages_pt_PT.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_PT.js"},"Patterns":null},"messages_pt_PT.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_pt_PT.min.js"},"Patterns":null},"messages_ro.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ro.js"},"Patterns":null},"messages_ro.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ro.min.js"},"Patterns":null},"messages_ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ru.js"},"Patterns":null},"messages_ru.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ru.min.js"},"Patterns":null},"messages_sd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sd.js"},"Patterns":null},"messages_sd.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sd.min.js"},"Patterns":null},"messages_si.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_si.js"},"Patterns":null},"messages_si.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_si.min.js"},"Patterns":null},"messages_sk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sk.js"},"Patterns":null},"messages_sk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sk.min.js"},"Patterns":null},"messages_sl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sl.js"},"Patterns":null},"messages_sl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sl.min.js"},"Patterns":null},"messages_sr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr.js"},"Patterns":null},"messages_sr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr.min.js"},"Patterns":null},"messages_sr_lat.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr_lat.js"},"Patterns":null},"messages_sr_lat.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sr_lat.min.js"},"Patterns":null},"messages_sv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sv.js"},"Patterns":null},"messages_sv.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_sv.min.js"},"Patterns":null},"messages_th.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_th.js"},"Patterns":null},"messages_th.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_th.min.js"},"Patterns":null},"messages_tj.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tj.js"},"Patterns":null},"messages_tj.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tj.min.js"},"Patterns":null},"messages_tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tr.js"},"Patterns":null},"messages_tr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_tr.min.js"},"Patterns":null},"messages_uk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_uk.js"},"Patterns":null},"messages_uk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_uk.min.js"},"Patterns":null},"messages_ur.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ur.js"},"Patterns":null},"messages_ur.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_ur.min.js"},"Patterns":null},"messages_vi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_vi.js"},"Patterns":null},"messages_vi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_vi.min.js"},"Patterns":null},"messages_zh.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh.js"},"Patterns":null},"messages_zh.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh.min.js"},"Patterns":null},"messages_zh_TW.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh_TW.js"},"Patterns":null},"messages_zh_TW.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/messages_zh_TW.min.js"},"Patterns":null},"methods_de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_de.js"},"Patterns":null},"methods_de.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_de.min.js"},"Patterns":null},"methods_es_CL.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_es_CL.js"},"Patterns":null},"methods_es_CL.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_es_CL.min.js"},"Patterns":null},"methods_fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_fi.js"},"Patterns":null},"methods_fi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_fi.min.js"},"Patterns":null},"methods_it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_it.js"},"Patterns":null},"methods_it.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_it.min.js"},"Patterns":null},"methods_nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_nl.js"},"Patterns":null},"methods_nl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_nl.min.js"},"Patterns":null},"methods_pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_pt.js"},"Patterns":null},"methods_pt.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validate/localization/methods_pt.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/jquery.slim.min.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/FakePieShop/obj/Debug/net6.0/staticwebassets.pack.json b/FakePieShop/obj/Debug/net6.0/staticwebassets.pack.json index 799002b..76c5b7f 100644 --- a/FakePieShop/obj/Debug/net6.0/staticwebassets.pack.json +++ b/FakePieShop/obj/Debug/net6.0/staticwebassets.pack.json @@ -572,6 +572,538 @@ "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\bootstrap\\scss\\vendor\\_rfs.scss", "PackagePath": "staticwebassets\\lib\\bootstrap\\scss\\vendor\\_rfs.scss" }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\additional-methods.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\additional-methods.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\additional-methods.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\additional-methods.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\jquery-validation-sri.json", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\jquery-validation-sri.json" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\jquery.validate.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\jquery.validate.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\jquery.validate.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\jquery.validate.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ar.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ar.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ar.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ar.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_az.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_az.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_az.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_az.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bg.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_bg.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bg.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_bg.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bn_BD.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_bn_BD.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_bn_BD.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_bn_BD.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ca.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ca.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ca.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ca.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_cs.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_cs.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_cs.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_cs.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_da.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_da.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_da.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_da.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_de.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_de.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_de.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_de.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_el.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_el.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_el.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_el.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_es.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_es.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_AR.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_es_AR.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_AR.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_es_AR.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_PE.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_es_PE.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_es_PE.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_es_PE.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_et.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_et.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_et.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_et.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_eu.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_eu.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_eu.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_eu.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fa.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_fa.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fa.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_fa.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fi.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_fi.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fi.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_fi.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fr.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_fr.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_fr.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_fr.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ge.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ge.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ge.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ge.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_gl.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_gl.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_gl.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_gl.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_he.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_he.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_he.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_he.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hi.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hi.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hi.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hi.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hr.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hr.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hr.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hr.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hu.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hu.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hu.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hu.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hy_AM.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hy_AM.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_hy_AM.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_hy_AM.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_id.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_id.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_id.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_id.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_is.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_is.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_is.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_is.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_it.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_it.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_it.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_it.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ja.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ja.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ja.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ja.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ka.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ka.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ka.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ka.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_kk.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_kk.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_kk.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_kk.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ko.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ko.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ko.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ko.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lt.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_lt.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lt.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_lt.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lv.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_lv.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_lv.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_lv.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_mk.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_mk.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_mk.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_mk.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_my.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_my.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_my.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_my.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_nl.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_nl.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_nl.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_nl.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_no.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_no.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_no.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_no.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pl.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_pl.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pl.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_pl.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_BR.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_pt_BR.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_BR.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_pt_BR.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_PT.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_pt_PT.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_pt_PT.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_pt_PT.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ro.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ro.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ro.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ro.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ru.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ru.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ru.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ru.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sd.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sd.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sd.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sd.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_si.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_si.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_si.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_si.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sk.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sk.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sk.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sk.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sl.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sl.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sl.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sl.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sr.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sr.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr_lat.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sr_lat.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sr_lat.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sr_lat.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sv.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sv.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_sv.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_sv.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_th.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_th.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_th.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_th.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tj.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_tj.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tj.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_tj.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tr.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_tr.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_tr.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_tr.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_uk.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_uk.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_uk.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_uk.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ur.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ur.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_ur.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_ur.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_vi.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_vi.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_vi.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_vi.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_zh.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_zh.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh_TW.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_zh_TW.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\messages_zh_TW.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\messages_zh_TW.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_de.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_de.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_de.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_de.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_es_CL.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_es_CL.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_es_CL.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_es_CL.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_fi.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_fi.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_fi.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_fi.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_it.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_it.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_it.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_it.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_nl.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_nl.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_nl.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_nl.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_pt.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_pt.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validate\\localization\\methods_pt.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validate\\localization\\methods_pt.min.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js" + }, + { + "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js", + "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js" + }, { "Id": "C:\\Users\\mikay\\source\\repos\\FakePieShop\\FakePieShop\\wwwroot\\lib\\jquery\\jquery.js", "PackagePath": "staticwebassets\\lib\\jquery\\jquery.js" diff --git a/FakePieShop/obj/Debug/net6.0/staticwebassets/msbuild.FakePieShop.Microsoft.AspNetCore.StaticWebAssets.props b/FakePieShop/obj/Debug/net6.0/staticwebassets/msbuild.FakePieShop.Microsoft.AspNetCore.StaticWebAssets.props index 63fad2d..87752f9 100644 --- a/FakePieShop/obj/Debug/net6.0/staticwebassets/msbuild.FakePieShop.Microsoft.AspNetCore.StaticWebAssets.props +++ b/FakePieShop/obj/Debug/net6.0/staticwebassets/msbuild.FakePieShop.Microsoft.AspNetCore.StaticWebAssets.props @@ -2288,6 +2288,2134 @@ PreserveNewest $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\scss\_variables.scss)) + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/additional-methods.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\additional-methods.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/additional-methods.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\additional-methods.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/jquery-validation-sri.json + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\jquery-validation-sri.json)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/jquery.validate.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\jquery.validate.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/jquery.validate.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\jquery.validate.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ar.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ar.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ar.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ar.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_az.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_az.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_az.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_az.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_bg.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_bg.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_bg.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_bg.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_bn_BD.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_bn_BD.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_bn_BD.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_bn_BD.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ca.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ca.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ca.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ca.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_cs.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_cs.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_cs.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_cs.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_da.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_da.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_da.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_da.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_de.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_de.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_de.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_de.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_el.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_el.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_el.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_el.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_es.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_es.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_es.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_es.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_es_AR.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_es_AR.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_es_AR.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_es_AR.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_es_PE.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_es_PE.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_es_PE.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_es_PE.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_et.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_et.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_et.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_et.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_eu.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_eu.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_eu.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_eu.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_fa.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_fa.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_fa.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_fa.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_fi.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_fi.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_fi.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_fi.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_fr.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_fr.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_fr.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_fr.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ge.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ge.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ge.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ge.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_gl.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_gl.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_gl.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_gl.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_he.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_he.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_he.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_he.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hi.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hi.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hi.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hi.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hr.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hr.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hr.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hr.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hu.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hu.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hu.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hu.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hy_AM.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hy_AM.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_hy_AM.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_hy_AM.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_id.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_id.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_id.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_id.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_is.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_is.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_is.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_is.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_it.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_it.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_it.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_it.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ja.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ja.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ja.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ja.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ka.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ka.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ka.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ka.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_kk.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_kk.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_kk.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_kk.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ko.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ko.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ko.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ko.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_lt.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_lt.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_lt.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_lt.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_lv.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_lv.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_lv.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_lv.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_mk.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_mk.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_mk.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_mk.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_my.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_my.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_my.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_my.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_nl.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_nl.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_nl.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_nl.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_no.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_no.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_no.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_no.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_pl.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_pl.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_pl.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_pl.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_pt_BR.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_pt_BR.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_pt_BR.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_pt_BR.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_pt_PT.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_pt_PT.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_pt_PT.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_pt_PT.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ro.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ro.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ro.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ro.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ru.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ru.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ru.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ru.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sd.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sd.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sd.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sd.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_si.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_si.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_si.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_si.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sk.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sk.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sk.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sk.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sl.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sl.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sl.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sl.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sr.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sr.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sr.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sr.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sr_lat.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sr_lat.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sr_lat.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sr_lat.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sv.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sv.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_sv.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_sv.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_th.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_th.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_th.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_th.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_tj.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_tj.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_tj.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_tj.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_tr.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_tr.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_tr.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_tr.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_uk.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_uk.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_uk.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_uk.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ur.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ur.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_ur.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_ur.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_vi.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_vi.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_vi.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_vi.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_zh.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_zh.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_zh.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_zh.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_zh_TW.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_zh_TW.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/messages_zh_TW.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\messages_zh_TW.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_de.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_de.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_de.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_de.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_es_CL.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_es_CL.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_es_CL.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_es_CL.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_fi.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_fi.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_fi.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_fi.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_it.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_it.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_it.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_it.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_nl.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_nl.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_nl.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_nl.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_pt.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_pt.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validate/localization/methods_pt.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validate\localization\methods_pt.min.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js)) + + + Package + FakePieShop + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/FakePieShop + lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js)) + Package FakePieShop diff --git a/FakePieShop/obj/Release/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig b/FakePieShop/obj/Release/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig index e0d615e..6595611 100644 --- a/FakePieShop/obj/Release/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig +++ b/FakePieShop/obj/Release/net6.0/FakePieShop.GeneratedMSBuildEditorConfig.editorconfig @@ -16,6 +16,26 @@ build_property.GenerateRazorMetadataSourceChecksumAttributes = build_property.MSBuildProjectDirectory = C:\Users\mikay\source\repos\FakePieShop\FakePieShop build_property._RazorSourceGeneratorDebug = +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/CheckoutCompletePage.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2hlY2tvdXRDb21wbGV0ZVBhZ2UuY3NodG1s +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/CheckoutPage.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2hlY2tvdXRQYWdlLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/Shared/_PageLayout.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2hhcmVkXF9QYWdlTGF5b3V0LmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/_ViewImports.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdJbXBvcnRzLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Pages/_ViewStart.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdTdGFydC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + [C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Views/Contact/Index.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcQ29udGFjdFxJbmRleC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = @@ -28,6 +48,10 @@ build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.TargetPath = Vmlld3NcT3JkZXJcQ2hlY2tvdXQuY3NodG1s build_metadata.AdditionalFiles.CssScope = +[C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Views/Order/CheckoutComplete.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcT3JkZXJcQ2hlY2tvdXRDb21wbGV0ZS5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + [C:/Users/mikay/source/repos/FakePieShop/FakePieShop/Views/Pie/Details.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcUGllXERldGFpbHMuY3NodG1s build_metadata.AdditionalFiles.CssScope =