forked from HomePlaza-Of-PCL2/Homepage-Market
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Custom.xaml
703 lines (686 loc) · 68.7 KB
/
Custom.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
<Border BorderBrush="{DynamicResource ColorBrush3}"
BorderThickness="3"
CornerRadius="8"
Margin="0,0,0,20">
<Border.Background>
<LinearGradientBrush StartPoint="0.5,0"
EndPoint="0.5,1">
<GradientStop Color="#abdcff"
Offset="0.0" />
<GradientStop Color="#5CBBFF"
Offset="1.0" />
</LinearGradientBrush>
</Border.Background>
<StackPanel Margin="0,40,0,0">
<StackPanel HorizontalAlignment="Center">
<TextBlock Text="欢迎来到 PCL 主页广场"
FontSize="38"
Margin="0,-5,0,20"
FontWeight="Bold"
Foreground="#ffffff">
<TextBlock.Effect>
<DropShadowEffect Color="#fff"
Direction="320"
ShadowDepth="0"
BlurRadius="15"
Opacity="0.5" />
</TextBlock.Effect>
</TextBlock>
</StackPanel>
<StackPanel HorizontalAlignment="Center">
<TextBlock Text="这里是所有人的 PCL 主页实验室!"
FontSize="14"
Margin="0,-5,0,20"
FontWeight="Bold"
Foreground="#ffffff"
Opacity="0.75">
<TextBlock.Effect>
<DropShadowEffect Color="#fff"
Direction="320"
ShadowDepth="0"
BlurRadius="15"
Opacity="0.5" />
</TextBlock.Effect>
</TextBlock>
</StackPanel>
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Center"
VerticalAlignment="Bottom"
Margin="0,0,0,0">
<Image Height="40"
Source="http://image.hhhhhy.kim/45/81.png" />
</StackPanel>
</StackPanel>
</Border>
<StackPanel Margin="0,-10,0,0"
Opacity="{Binding Path=Value,ElementName=OpacitySlider}"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<StackPanel.Resources>
<Style TargetType="FlowDocumentScrollViewer">
<Setter Property="IsSelectionEnabled"
Value="False" />
<Setter Property="VerticalScrollBarVisibility"
Value="Hidden" />
<Setter Property="Margin"
Value="0" />
</Style>
<Style TargetType="FlowDocument">
<Setter Property="FontFamily"
Value="Microsoft YaHei UI" />
<Setter Property="FontSize"
Value="14" />
<Setter Property="TextAlignment"
Value="Left" />
</Style>
<Style TargetType="StackPanel"
x:Key="ContentStack">
<Setter Property="Margin"
Value="20,40,20,20" />
</Style>
<Style TargetType="local:MyCard"
x:Key="Card">
<Setter Property="Margin"
Value="0,5" />
</Style>
<Style TargetType="TextBox"
x:Key="InlineCode">
<Setter Property="FontSize"
Value="14" />
<Setter Property="IsReadOnly"
Value="True" />
<Setter Property="Margin"
Value="2,0,2,-4" />
<Setter Property="FontFamily"
Value="Consolas" />
<Setter Property="Height"
Value="18" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="TextBox">
<Border Background="{DynamicResource ColorBrush6}"
Opacity="0.9"
BorderBrush="{DynamicResource ColorBrush4}"
BorderThickness="0"
CornerRadius="5"
Padding="4,0.2">
<ScrollViewer x:Name="PART_ContentHost"
Focusable="false"
HorizontalScrollBarVisibility="Hidden"
VerticalScrollBarVisibility="Hidden" />
</Border>
<ControlTemplate.Triggers></ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style TargetType="Image"
x:Key="InnerImage">
<Setter Property="MaxHeight"
Value="500" />
<Setter Property="HorizontalAlignment"
Value="Center" />
</Style>
<Style TargetType="TextBlock">
<Setter Property="TextWrapping"
Value="Wrap" />
<Setter Property="HorizontalAlignment"
Value="Left" />
<Setter Property="FontSize"
Value="14" />
<Setter Property="Foreground"
Value="Black" />
</Style>
<Style TargetType="List">
<Setter Property="Foreground"
Value="{DynamicResource ColorBrush3}" />
<Setter Property="Margin"
Value="20,0,0,0" />
<Setter Property="MarkerStyle"
Value="1" />
<Setter Property="Padding"
Value="0" />
</Style>
<Style TargetType="ListItem">
<Setter Property="Foreground"
Value="Black" />
<Setter Property="LineHeight"
Value="22" />
</Style>
<Style TargetType="Paragraph"
x:Key="H1">
<Setter Property="FontSize"
Value="24" />
<Setter Property="Margin"
Value="0,10,0,10" />
<Setter Property="FontWeight"
Value="Bold" />
<Setter Property="Foreground"
Value="{DynamicResource ColorBrush3}" />
</Style>
<Style TargetType="Paragraph"
x:Key="H2">
<Setter Property="FontSize"
Value="22" />
<Setter Property="Margin"
Value="0,10,0,5" />
<Setter Property="FontWeight"
Value="Bold" />
<Setter Property="Foreground"
Value="{DynamicResource ColorBrush3}" />
</Style>
<Style TargetType="Paragraph"
x:Key="H3">
<Setter Property="FontSize"
Value="18" />
<Setter Property="Margin"
Value="0,5,0,5" />
<Setter Property="FontWeight"
Value="Bold" />
<Setter Property="Foreground"
Value="{DynamicResource ColorBrush4}" />
</Style>
<Style TargetType="Paragraph"
x:Key="H4">
<Setter Property="FontSize"
Value="16" />
<Setter Property="Margin"
Value="0,3,0,5" />
<Setter Property="FontWeight"
Value="Bold" />
<Setter Property="Foreground"
Value="{DynamicResource ColorBrush4}" />
</Style>
<Style TargetType="Paragraph"
x:Key="H5">
<Setter Property="FontSize"
Value="15" />
<Setter Property="Margin"
Value="0,3,0,5" />
<Setter Property="Foreground"
Value="{DynamicResource ColorBrush4}" />
</Style>
<Style TargetType="Border"
x:Key="Quote">
<Setter Property="BorderThickness"
Value="5,0,0,0" />
<Setter Property="BorderBrush"
Value="{DynamicResource ColorBrush4}" />
<Setter Property="Padding"
Value="10,5" />
<Setter Property="Margin"
Value="0,5" />
</Style>
<Style x:Key="imgTitle"
TargetType="TextBlock">
<Setter Property="FontSize"
Value="14" />
<Setter Property="Foreground"
Value="#FF777777" />
<Setter Property="HorizontalAlignment"
Value="Center" />
<Setter Property="Margin"
Value="0,0,0,15" />
</Style>
<sys:String x:Key="GitIcon">M 46.792969 22.089844 L 27.910156 3.207031 C 27.109375 2.402344 26.054688 2 25 2 C 23.945313 2 22.890625 2.402344 22.089844 3.207031 L 18.355469 6.941406 L 22.976563 11.5625 C 24.511719 10.660156 26.511719 10.855469 27.828125 12.171875 C 29.144531 13.488281 29.335938 15.488281 28.433594 17.019531 L 32.976563 21.5625 C 34.511719 20.660156 36.511719 20.855469 37.828125 22.171875 C 39.390625 23.734375 39.390625 26.265625 37.828125 27.828125 C 36.265625 29.390625 33.734375 29.390625 32.171875 27.828125 C 30.855469 26.511719 30.660156 24.511719 31.5625 22.976563 L 27.019531 18.433594 C 26.695313 18.625 26.355469 18.765625 26 18.855469 L 26 31.140625 C 27.722656 31.585938 29 33.136719 29 35 C 29 37.210938 27.210938 39 25 39 C 22.789063 39 21 37.210938 21 35 C 21 33.136719 22.277344 31.585938 24 31.140625 L 24 18.855469 C 23.332031 18.683594 22.695313 18.351563 22.171875 17.828125 C 20.855469 16.511719 20.664063 14.511719 21.566406 12.980469 L 16.941406 8.355469 L 3.207031 22.089844 C 1.597656 23.695313 1.597656 26.304688 3.207031 27.910156 L 22.089844 46.792969 C 22.890625 47.597656 23.945313 48 25 48 C 26.054688 48 27.109375 47.597656 27.910156 46.792969 L 46.792969 27.910156 C 48.402344 26.304688 48.402344 23.695313 46.792969 22.089844 Z</sys:String>
<sys:String x:Key="IssueIcon">M181.25 105.206L156.25 105.206L156.25 70.5688L173.062 54.5188C173.137 54.4482 173.209 54.3758 173.279 54.3016C173.35 54.2273 173.418 54.1516 173.485 54.074C173.552 53.9965 173.616 53.9172 173.679 53.8365C173.742 53.7559 173.803 53.6736 173.862 53.5898C173.921 53.5063 173.977 53.4211 174.032 53.3346C174.087 53.2481 174.139 53.1604 174.189 53.0713C174.24 52.9822 174.288 52.892 174.334 52.8006C174.379 52.7092 174.423 52.6166 174.464 52.523C174.506 52.4295 174.545 52.335 174.581 52.2395C174.618 52.1439 174.653 52.0477 174.685 51.9504C174.716 51.8533 174.746 51.7555 174.773 51.6568C174.8 51.5582 174.825 51.4588 174.847 51.359C174.87 51.2592 174.889 51.159 174.907 51.058C174.924 50.9572 174.939 50.8561 174.952 50.7545C174.964 50.6529 174.974 50.5512 174.981 50.4492C174.989 50.3471 174.994 50.2449 174.996 50.1428C174.998 50.0404 174.998 49.9381 174.996 49.8359C174.993 49.7336 174.988 49.6314 174.98 49.5295C174.972 49.4275 174.962 49.3258 174.95 49.2242C174.937 49.1227 174.922 49.0215 174.904 48.9207C174.887 48.8199 174.867 48.7197 174.844 48.6199C174.822 48.5201 174.797 48.4211 174.769 48.3225C174.742 48.2238 174.712 48.126 174.68 48.0289C174.647 47.9318 174.613 47.8357 174.576 47.7402C174.539 47.6447 174.5 47.5504 174.458 47.4568C174.417 47.3633 174.373 47.2709 174.327 47.1797C174.281 47.0885 174.232 46.9982 174.182 46.9094C174.131 46.8205 174.079 46.7328 174.024 46.6463C173.969 46.56 173.912 46.475 173.853 46.3914C173.794 46.3078 173.733 46.2258 173.67 46.1453C173.607 46.0647 173.542 45.9857 173.475 45.9084C173.408 45.8309 173.339 45.7553 173.269 45.6813C173.198 45.6072 173.126 45.5352 173.052 45.4647C172.977 45.3941 172.902 45.3256 172.824 45.2588C172.746 45.1922 172.667 45.1273 172.587 45.0645C172.506 45.0016 172.424 44.9408 172.34 44.882C172.256 44.8232 172.171 44.7664 172.085 44.7119C171.998 44.6572 171.91 44.6047 171.821 44.5545C171.732 44.5041 171.642 44.4561 171.551 44.4102C171.459 44.3643 171.367 44.3207 171.273 44.2793C171.179 44.2381 171.085 44.199 170.989 44.1623C170.894 44.1256 170.798 44.0912 170.7 44.0592C170.603 44.0273 170.505 43.9977 170.407 43.9705C170.308 43.9434 170.209 43.9186 170.109 43.8963C170.009 43.874 169.909 43.8543 169.808 43.8369C169.707 43.8195 169.606 43.8045 169.504 43.7922C169.403 43.7799 169.301 43.7699 169.199 43.7625C169.097 43.7551 168.995 43.7502 168.893 43.7479C168.79 43.7455 168.688 43.7457 168.586 43.7482C168.484 43.7508 168.382 43.7561 168.279 43.7637C168.178 43.7713 168.076 43.7814 167.974 43.7941C167.873 43.8068 167.771 43.8219 167.671 43.8395C167.57 43.857 167.47 43.8772 167.37 43.8996C167.27 43.9221 167.171 43.9471 167.072 43.9746C166.974 44.002 166.876 44.0318 166.779 44.0641C166.682 44.0963 166.586 44.1309 166.49 44.1678C166.395 44.2047 166.3 44.2438 166.207 44.2854C166.113 44.327 166.021 44.3709 165.93 44.417C165.838 44.4631 165.748 44.5113 165.659 44.5619C165.57 44.6125 165.483 44.665 165.396 44.7199C165.31 44.7748 165.225 44.8316 165.141 44.8906C165.058 44.9498 164.976 45.0107 164.895 45.0738C164.815 45.1369 164.736 45.2018 164.658 45.2688C164.581 45.3357 164.505 45.4045 164.431 45.475L146.606 62.5L53.3937 62.5L35.5625 45.4813C35.4885 45.4107 35.4129 45.342 35.3355 45.275C35.2584 45.208 35.1795 45.143 35.0988 45.0799C35.0184 45.0168 34.9363 44.9559 34.8529 44.8969C34.7693 44.8379 34.6844 44.7811 34.598 44.7262C34.5119 44.6713 34.4242 44.6186 34.3354 44.568C34.2465 44.5174 34.1562 44.4691 34.065 44.423C33.9738 44.3768 33.8814 44.333 33.7881 44.2914C33.6945 44.2498 33.6002 44.2105 33.5049 44.1736C33.4096 44.1367 33.3135 44.1021 33.2164 44.0699C33.1193 44.0377 33.0215 44.0078 32.923 43.9805C32.8244 43.9529 32.7254 43.9279 32.6256 43.9055C32.5258 43.8828 32.4256 43.8627 32.325 43.8451C32.2242 43.8275 32.123 43.8123 32.0217 43.7996C31.9201 43.7869 31.8184 43.7768 31.7164 43.7691C31.6145 43.7615 31.5124 43.7563 31.4102 43.7537C31.3079 43.751 31.2057 43.7508 31.1035 43.7533C31.0013 43.7557 30.8992 43.7606 30.7971 43.7678C30.6951 43.7752 30.5934 43.7852 30.492 43.7975C30.3904 43.8098 30.2893 43.8246 30.1885 43.842C30.0877 43.8594 29.9874 43.8791 29.8877 43.9014C29.7878 43.9236 29.6886 43.9484 29.59 43.9756C29.4915 44.0027 29.3936 44.0322 29.2965 44.0643C29.1994 44.0961 29.1031 44.1305 29.0076 44.1672C28.9121 44.2037 28.8175 44.2428 28.724 44.2842C28.6305 44.3254 28.5381 44.3689 28.4467 44.4148C28.3553 44.4607 28.265 44.5088 28.176 44.5592C28.0869 44.6094 27.9992 44.6619 27.9127 44.7164C27.8262 44.7709 27.7412 44.8277 27.6574 44.8865C27.5738 44.9453 27.4917 45.0061 27.4109 45.0689C27.3302 45.1316 27.2511 45.1965 27.1736 45.2631C27.0962 45.3297 27.0203 45.3982 26.9461 45.4688C26.872 45.5393 26.7997 45.6113 26.7291 45.6854C26.6585 45.7594 26.5898 45.835 26.5229 45.9123C26.4559 45.9897 26.391 46.0686 26.3279 46.1492C26.2649 46.2299 26.2039 46.3119 26.1449 46.3953C26.0861 46.4789 26.0292 46.5639 25.9744 46.6502C25.9196 46.7365 25.8669 46.8242 25.8164 46.9131C25.7659 47.002 25.7176 47.0922 25.6715 47.1834C25.6254 47.2746 25.5816 47.367 25.54 47.4604C25.4985 47.5539 25.4593 47.6482 25.4225 47.7436C25.3855 47.8391 25.3509 47.9352 25.3188 48.0322C25.2866 48.1293 25.2568 48.2271 25.2295 48.3256C25.2021 48.4242 25.1772 48.5232 25.1547 48.6231C25.1322 48.7229 25.1121 48.8231 25.0945 48.9238C25.077 49.0244 25.0619 49.1256 25.0492 49.2271C25.0366 49.3285 25.0264 49.4303 25.0187 49.5322C25.0112 49.6342 25.0061 49.7363 25.0035 49.8387C25.0009 49.9408 25.0008 50.0432 25.0031 50.1453C25.0056 50.2475 25.0105 50.3496 25.018 50.4516C25.0254 50.5535 25.0353 50.6553 25.0477 50.7568C25.0602 50.8582 25.0751 50.9594 25.0924 51.0602C25.1098 51.1609 25.1297 51.2613 25.152 51.3611C25.1744 51.4609 25.1992 51.56 25.2264 51.6586C25.2535 51.7572 25.283 51.8551 25.315 51.9522C25.3471 52.0492 25.3814 52.1455 25.4182 52.241C25.4549 52.3365 25.4939 52.4309 25.5352 52.5244C25.5766 52.618 25.6203 52.7104 25.6662 52.8018C25.7121 52.8932 25.7602 52.9834 25.8105 53.0725C25.8608 53.1613 25.9133 53.249 25.968 53.3355C26.0225 53.4221 26.0792 53.507 26.1381 53.5906C26.1969 53.6744 26.2578 53.7564 26.3207 53.8371C26.3835 53.9178 26.4482 53.9969 26.515 54.0744C26.5817 54.152 26.6503 54.2277 26.7207 54.3018C26.7913 54.3758 26.8635 54.4482 26.9375 54.5188L43.75 70.575L43.75 105.213L18.75 105.213C18.6477 105.213 18.5455 105.215 18.4433 105.22C18.3412 105.225 18.2392 105.233 18.1374 105.243C18.0356 105.253 17.9341 105.265 17.8329 105.28C17.7318 105.295 17.631 105.313 17.5307 105.333C17.4304 105.353 17.3306 105.375 17.2314 105.4C17.1321 105.425 17.0336 105.452 16.9357 105.482C16.8379 105.511 16.7407 105.543 16.6444 105.578C16.5481 105.612 16.4527 105.649 16.3582 105.688C16.2637 105.727 16.1703 105.769 16.0778 105.813C15.9853 105.856 15.894 105.902 15.8038 105.95C15.7136 105.999 15.6246 106.049 15.5369 106.102C15.4491 106.154 15.3627 106.209 15.2777 106.266C15.1926 106.323 15.109 106.381 15.0269 106.442C14.9447 106.503 14.8641 106.566 14.785 106.631C14.706 106.696 14.6286 106.763 14.5528 106.832C14.477 106.9 14.4029 106.971 14.3306 107.043C14.2583 107.115 14.1877 107.189 14.1191 107.265C14.0504 107.341 13.9836 107.418 13.9187 107.497C13.8538 107.577 13.7909 107.657 13.73 107.739C13.669 107.821 13.6101 107.905 13.5533 107.99C13.4965 108.075 13.4418 108.162 13.3892 108.249C13.3366 108.337 13.2862 108.426 13.238 108.516C13.1898 108.606 13.1438 108.698 13.1001 108.79C13.0563 108.883 13.0149 108.976 12.9758 109.071C12.9366 109.165 12.8998 109.261 12.8654 109.357C12.8309 109.453 12.7988 109.55 12.7691 109.648C12.7394 109.746 12.7122 109.845 12.6873 109.944C12.6624 110.043 12.64 110.143 12.6201 110.243C12.6001 110.343 12.5827 110.444 12.5677 110.546C12.5526 110.647 12.5401 110.748 12.5301 110.85C12.5201 110.952 12.5125 111.054 12.5075 111.156C12.5025 111.258 12.5 111.36 12.5 111.463C12.5 111.565 12.5025 111.667 12.5075 111.769C12.5125 111.871 12.5201 111.973 12.5301 112.075C12.5401 112.177 12.5526 112.278 12.5677 112.38C12.5827 112.481 12.6001 112.581 12.6201 112.682C12.64 112.782 12.6624 112.882 12.6873 112.981C12.7122 113.08 12.7394 113.179 12.7691 113.277C12.7988 113.375 12.8309 113.472 12.8654 113.568C12.8998 113.664 12.9366 113.76 12.9757 113.854C13.0149 113.949 13.0563 114.042 13.1001 114.135C13.1438 114.227 13.1898 114.319 13.238 114.409C13.2862 114.499 13.3366 114.588 13.3892 114.676C13.4418 114.763 13.4965 114.85 13.5533 114.935C13.6101 115.02 13.669 115.103 13.73 115.186C13.7909 115.268 13.8538 115.348 13.9187 115.428C13.9836 115.507 14.0504 115.584 14.1191 115.66C14.1877 115.736 14.2583 115.81 14.3306 115.882C14.4029 115.954 14.477 116.025 14.5528 116.093C14.6286 116.162 14.706 116.229 14.785 116.294C14.8641 116.359 14.9447 116.422 15.0269 116.483C15.109 116.544 15.1926 116.602 15.2777 116.659C15.3627 116.716 15.4491 116.771 15.5369 116.823C15.6246 116.876 15.7136 116.926 15.8038 116.974C15.894 117.023 15.9853 117.069 16.0778 117.113C16.1703 117.156 16.2637 117.197 16.3582 117.237C16.4527 117.276 16.5481 117.313 16.6444 117.347C16.7407 117.382 16.8379 117.414 16.9357 117.443C17.0336 117.473 17.1321 117.5 17.2314 117.525C17.3306 117.55 17.4304 117.572 17.5307 117.592C17.631 117.612 17.7318 117.63 17.8329 117.645C17.9341 117.66 18.0356 117.672 18.1374 117.682C18.2392 117.692 18.3412 117.7 18.4433 117.705C18.5455 117.71 18.6477 117.713 18.75 117.713L43.75 117.713L43.75 125C43.75 135.344 46.5438 145.038 51.4125 153.363L26.9375 176.731C26.8635 176.802 26.7913 176.874 26.7209 176.948C26.6504 177.023 26.5818 177.098 26.515 177.176C26.4484 177.254 26.3836 177.333 26.3207 177.413C26.2578 177.494 26.197 177.576 26.1383 177.66C26.0794 177.744 26.0227 177.829 25.9682 177.915C25.9135 178.002 25.861 178.09 25.8107 178.179C25.7604 178.268 25.7122 178.358 25.6664 178.449C25.6206 178.541 25.577 178.633 25.5355 178.727C25.4943 178.821 25.4553 178.915 25.4186 179.011C25.3818 179.106 25.3475 179.202 25.3154 179.3C25.2835 179.397 25.254 179.495 25.2268 179.593C25.1996 179.692 25.1748 179.791 25.1525 179.891C25.1303 179.991 25.1105 180.091 25.0932 180.192C25.0757 180.293 25.0608 180.394 25.0484 180.496C25.0361 180.597 25.0262 180.699 25.0187 180.801C25.0113 180.903 25.0064 181.005 25.0041 181.107C25.0016 181.21 25.0018 181.312 25.0045 181.414C25.0071 181.516 25.0122 181.619 25.0199 181.721C25.0275 181.822 25.0376 181.924 25.0504 182.026C25.063 182.127 25.0781 182.229 25.0957 182.329C25.1133 182.43 25.1333 182.53 25.1559 182.63C25.1784 182.73 25.2034 182.829 25.2309 182.928C25.2582 183.026 25.288 183.124 25.3203 183.221C25.3525 183.318 25.3871 183.414 25.424 183.51C25.4609 183.605 25.5001 183.7 25.5416 183.793C25.5833 183.887 25.6271 183.979 25.6732 184.07C25.7193 184.162 25.7676 184.252 25.8182 184.341C25.8687 184.43 25.9213 184.517 25.9762 184.604C26.031 184.69 26.0879 184.775 26.1469 184.859C26.206 184.942 26.2671 185.024 26.3301 185.105C26.3931 185.185 26.4581 185.264 26.525 185.342C26.5919 185.419 26.6607 185.495 26.7313 185.569C26.8018 185.643 26.8742 185.715 26.9484 185.785C27.0227 185.856 27.0985 185.924 27.176 185.991C27.2536 186.058 27.3328 186.123 27.4135 186.186C27.4942 186.248 27.5764 186.309 27.6602 186.368C27.7437 186.427 27.8288 186.484 27.9154 186.538C28.0019 186.593 28.0896 186.645 28.1787 186.696C28.2678 186.746 28.358 186.794 28.4494 186.84C28.5408 186.886 28.6333 186.929 28.727 186.971C28.8206 187.012 28.9151 187.051 29.0105 187.088C29.106 187.124 29.2023 187.159 29.2996 187.191C29.3967 187.223 29.4946 187.252 29.5932 187.279C29.6919 187.307 29.7912 187.331 29.891 187.354C29.9908 187.376 30.0911 187.396 30.192 187.413C30.2928 187.43 30.3939 187.446 30.4955 187.458C30.5971 187.47 30.6988 187.48 30.8008 187.488C30.9029 187.495 31.005 187.5 31.1072 187.502C31.2096 187.505 31.3119 187.505 31.4141 187.502C31.5164 187.499 31.6186 187.494 31.7205 187.486C31.8225 187.479 31.9242 187.469 32.0258 187.456C32.1273 187.443 32.2285 187.428 32.3293 187.411C32.4299 187.393 32.5303 187.373 32.6301 187.35C32.7299 187.328 32.8289 187.303 32.9275 187.275C33.0262 187.248 33.124 187.218 33.2211 187.186C33.3182 187.154 33.4143 187.119 33.5098 187.082C33.6053 187.045 33.6996 187.006 33.7932 186.965C33.8867 186.923 33.9791 186.879 34.0703 186.833C34.1615 186.787 34.2518 186.739 34.3406 186.688C34.4295 186.638 34.5172 186.585 34.6037 186.53C34.69 186.475 34.775 186.418 34.8586 186.359C34.9422 186.3 35.0242 186.239 35.1047 186.176C35.1854 186.113 35.2643 186.048 35.3416 185.981C35.4191 185.914 35.4947 185.846 35.5687 185.775L58.95 163.456C59.2328 163.759 59.5189 164.058 59.8084 164.355C60.0979 164.651 60.3906 164.944 60.6865 165.234C60.9824 165.524 61.2814 165.81 61.5838 166.093C61.8861 166.377 62.1916 166.656 62.5 166.933C62.8084 167.209 63.1199 167.482 63.4346 167.752C63.749 168.021 64.0664 168.287 64.3869 168.55C64.7074 168.812 65.0307 169.071 65.3568 169.327C65.683 169.582 66.0119 169.834 66.3438 170.082C66.6756 170.33 67.01 170.574 67.3471 170.815C67.6844 171.055 68.024 171.292 68.3664 171.525C68.7088 171.758 69.0539 171.988 69.4014 172.213C69.7488 172.438 70.0986 172.66 70.4512 172.878C70.8035 173.095 71.1582 173.309 71.5154 173.519C71.8727 173.729 72.232 173.935 72.5938 174.137C72.9555 174.338 73.3193 174.536 73.6853 174.73C74.0516 174.924 74.4197 175.113 74.79 175.299C75.1602 175.485 75.5324 175.666 75.9068 175.844C76.2812 176.021 76.6574 176.194 77.0355 176.363C77.4137 176.532 77.7937 176.697 78.1756 176.858C78.5574 177.019 78.9408 177.175 79.3262 177.327C79.7115 177.479 80.0984 177.627 80.4869 177.771C80.8754 177.914 81.2654 178.053 81.657 178.188C82.0486 178.323 82.4418 178.454 82.8363 178.58C83.2309 178.706 83.6268 178.828 84.024 178.946C84.4211 179.063 84.8195 179.176 85.2193 179.285C85.6191 179.393 86.0199 179.497 86.4221 179.597C86.824 179.697 87.2271 179.792 87.6312 179.883C88.0354 179.974 88.4406 180.06 88.8467 180.142C89.2527 180.223 89.6596 180.301 90.0674 180.374C90.4752 180.446 90.8838 180.515 91.293 180.578C91.7021 180.642 92.1121 180.701 92.5229 180.756C92.9334 180.811 93.3445 180.861 93.7562 180.906L93.7562 106.25C93.7562 106.148 93.7588 106.046 93.7639 105.943C93.7688 105.841 93.7764 105.739 93.7863 105.637C93.7963 105.536 93.8088 105.434 93.8238 105.333C93.8389 105.232 93.8564 105.131 93.8764 105.031C93.8963 104.93 93.9187 104.831 93.9436 104.731C93.9684 104.632 93.9957 104.534 94.0254 104.436C94.0551 104.338 94.0871 104.241 94.1217 104.144C94.1561 104.048 94.1928 103.953 94.232 103.858C94.2711 103.764 94.3125 103.67 94.3562 103.578C94.4 103.485 94.4459 103.394 94.4941 103.304C94.5424 103.213 94.593 103.125 94.6455 103.037C94.698 102.949 94.7527 102.863 94.8096 102.778C94.8664 102.693 94.9252 102.609 94.9861 102.527C95.0471 102.445 95.11 102.364 95.175 102.285C95.2398 102.206 95.3066 102.129 95.3754 102.053C95.4439 101.977 95.5145 101.903 95.5869 101.831C95.6592 101.758 95.7332 101.688 95.809 101.619C95.8848 101.55 95.9621 101.484 96.0412 101.419C96.1203 101.354 96.201 101.291 96.2832 101.23C96.3654 101.169 96.449 101.11 96.534 101.053C96.6189 100.996 96.7055 100.942 96.7932 100.889C96.8809 100.837 96.9697 100.786 97.06 100.738C97.1502 100.69 97.2416 100.644 97.334 100.6C97.4264 100.556 97.5199 100.515 97.6145 100.476C97.709 100.437 97.8043 100.4 97.9006 100.365C97.9969 100.331 98.0941 100.299 98.192 100.269C98.2898 100.239 98.3885 100.212 98.4877 100.187C98.5869 100.163 98.6867 100.14 98.7869 100.12C98.8873 100.1 98.9881 100.083 99.0893 100.068C99.1904 100.053 99.2918 100.04 99.3936 100.03C99.4953 100.02 99.5975 100.013 99.6996 100.008C99.8018 100.003 99.9039 100 100.006 100C100.109 100 100.211 100.003 100.313 100.008C100.415 100.013 100.517 100.02 100.619 100.03C100.721 100.04 100.822 100.053 100.923 100.068C101.024 100.083 101.125 100.1 101.226 100.12C101.326 100.14 101.426 100.163 101.525 100.187C101.624 100.212 101.723 100.239 101.821 100.269C101.918 100.299 102.015 100.331 102.112 100.365C102.208 100.4 102.304 100.437 102.398 100.476C102.493 100.515 102.586 100.556 102.679 100.6C102.771 100.644 102.862 100.69 102.953 100.738C103.043 100.786 103.132 100.837 103.219 100.889C103.307 100.942 103.394 100.996 103.479 101.053C103.563 101.11 103.647 101.169 103.729 101.23C103.812 101.291 103.892 101.354 103.971 101.419C104.05 101.484 104.128 101.55 104.204 101.619C104.279 101.688 104.353 101.758 104.426 101.831C104.498 101.903 104.569 101.977 104.637 102.053C104.706 102.129 104.773 102.206 104.838 102.285C104.903 102.364 104.965 102.445 105.026 102.527C105.087 102.609 105.146 102.693 105.203 102.778C105.26 102.863 105.314 102.949 105.367 103.037C105.42 103.125 105.47 103.213 105.518 103.304C105.566 103.394 105.613 103.485 105.656 103.578C105.7 103.67 105.741 103.764 105.78 103.858C105.82 103.953 105.856 104.048 105.891 104.144C105.925 104.241 105.957 104.338 105.987 104.436C106.017 104.534 106.044 104.632 106.069 104.731C106.094 104.831 106.116 104.93 106.136 105.031C106.156 105.131 106.174 105.232 106.189 105.333C106.204 105.434 106.216 105.536 106.226 105.637C106.236 105.739 106.244 105.841 106.249 105.943C106.254 106.046 106.256 106.148 106.256 106.25L106.256 180.906C106.668 180.861 107.079 180.81 107.49 180.755C107.9 180.701 108.31 180.641 108.719 180.577C109.129 180.513 109.537 180.445 109.945 180.372C110.352 180.299 110.759 180.222 111.165 180.14C111.571 180.058 111.976 179.971 112.38 179.881C112.785 179.79 113.188 179.695 113.59 179.595C113.992 179.495 114.393 179.391 114.792 179.282C115.192 179.173 115.59 179.06 115.988 178.943C116.385 178.825 116.78 178.703 117.175 178.577C117.57 178.451 117.963 178.32 118.354 178.185C118.746 178.05 119.136 177.911 119.524 177.767C119.913 177.624 120.3 177.476 120.685 177.323C121.07 177.171 121.454 177.015 121.835 176.854C122.217 176.694 122.597 176.529 122.975 176.36C123.353 176.191 123.729 176.017 124.104 175.84C124.478 175.663 124.85 175.481 125.221 175.296C125.591 175.11 125.959 174.92 126.325 174.726C126.691 174.533 127.055 174.335 127.417 174.133C127.779 173.931 128.138 173.725 128.495 173.515C128.852 173.306 129.207 173.092 129.559 172.874C129.912 172.657 130.262 172.435 130.609 172.21C130.957 171.984 131.302 171.755 131.644 171.522C131.987 171.289 132.326 171.052 132.664 170.812C133.001 170.571 133.335 170.327 133.667 170.079C133.999 169.831 134.328 169.579 134.654 169.324C134.98 169.069 135.304 168.81 135.624 168.548C135.945 168.285 136.262 168.019 136.577 167.75C136.891 167.481 137.203 167.208 137.512 166.931C137.82 166.655 138.125 166.375 138.428 166.092C138.73 165.809 139.029 165.523 139.325 165.233C139.621 164.944 139.914 164.651 140.204 164.354C140.493 164.058 140.779 163.759 141.062 163.456L164.444 185.775C164.519 185.841 164.595 185.905 164.673 185.967C164.751 186.029 164.83 186.089 164.911 186.147C164.992 186.205 165.074 186.262 165.158 186.316C165.241 186.371 165.326 186.423 165.412 186.473C165.498 186.523 165.585 186.572 165.674 186.618C165.762 186.664 165.851 186.708 165.942 186.75C166.032 186.792 166.124 186.831 166.216 186.869C166.308 186.906 166.402 186.942 166.496 186.975C166.589 187.008 166.684 187.038 166.78 187.067C166.875 187.095 166.971 187.121 167.068 187.146C167.165 187.17 167.262 187.191 167.36 187.21C167.458 187.23 167.556 187.246 167.654 187.261C167.753 187.276 167.852 187.288 167.951 187.298C168.05 187.308 168.15 187.315 168.249 187.32C168.349 187.325 168.448 187.328 168.548 187.328C168.648 187.329 168.747 187.327 168.847 187.322C168.946 187.318 169.046 187.311 169.145 187.302C169.244 187.293 169.343 187.281 169.442 187.267C169.54 187.254 169.639 187.237 169.737 187.219C169.835 187.2 169.932 187.179 170.029 187.156C170.126 187.133 170.222 187.107 170.318 187.079C170.413 187.051 170.508 187.021 170.603 186.989C170.697 186.956 170.79 186.922 170.883 186.885C170.976 186.848 171.067 186.809 171.158 186.768C171.249 186.727 171.338 186.683 171.427 186.638C171.516 186.592 171.603 186.545 171.69 186.495C171.776 186.445 171.861 186.394 171.945 186.34C172.029 186.286 172.112 186.23 172.193 186.173C172.274 186.115 172.354 186.055 172.432 185.994C172.511 185.932 172.587 185.869 172.663 185.804C172.738 185.738 172.812 185.671 172.884 185.603C172.956 185.534 173.027 185.464 173.096 185.392C173.164 185.32 173.231 185.246 173.297 185.171C173.362 185.095 173.426 185.018 173.487 184.94C173.549 184.862 173.608 184.782 173.666 184.701C173.724 184.62 173.78 184.537 173.834 184.453C173.887 184.37 173.939 184.284 173.989 184.198C174.039 184.112 174.087 184.024 174.132 183.936C174.178 183.847 174.221 183.757 174.263 183.667C174.304 183.576 174.343 183.484 174.38 183.392C174.417 183.299 174.452 183.206 174.484 183.112C174.517 183.017 174.547 182.922 174.575 182.827C174.603 182.731 174.629 182.635 174.652 182.538C174.675 182.441 174.696 182.344 174.715 182.246C174.734 182.148 174.75 182.05 174.764 181.951C174.778 181.852 174.79 181.754 174.799 181.654C174.808 181.555 174.815 181.456 174.82 181.356C174.824 181.257 174.826 181.157 174.826 181.057C174.826 180.958 174.823 180.858 174.818 180.758C174.813 180.659 174.806 180.56 174.796 180.46C174.786 180.361 174.774 180.262 174.76 180.164C174.745 180.065 174.729 179.967 174.709 179.869C174.69 179.771 174.669 179.674 174.645 179.577C174.621 179.481 174.595 179.384 174.566 179.289C174.538 179.193 174.507 179.098 174.474 179.005C174.441 178.911 174.406 178.817 174.369 178.725C174.332 178.632 174.292 178.541 174.25 178.451C174.209 178.36 174.165 178.271 174.119 178.182C174.073 178.094 174.024 178.007 173.974 177.921C173.924 177.834 173.872 177.75 173.818 177.666C173.763 177.582 173.707 177.5 173.649 177.419C173.591 177.338 173.53 177.259 173.469 177.181C173.407 177.103 173.343 177.026 173.277 176.951C173.212 176.876 173.144 176.803 173.075 176.731L148.594 153.363C148.906 152.828 149.21 152.288 149.504 151.743C149.799 151.198 150.084 150.649 150.361 150.095C150.637 149.54 150.904 148.982 151.162 148.419C151.42 147.855 151.668 147.288 151.907 146.717C152.146 146.146 152.375 145.57 152.595 144.991C152.815 144.413 153.026 143.83 153.226 143.244C153.427 142.658 153.618 142.069 153.799 141.477C153.98 140.885 154.151 140.289 154.313 139.692C154.474 139.094 154.626 138.493 154.767 137.89C154.909 137.288 155.04 136.682 155.162 136.075C155.283 135.468 155.394 134.859 155.496 134.248C155.597 133.637 155.688 133.024 155.769 132.41C155.85 131.796 155.921 131.181 155.981 130.565C156.042 129.948 156.092 129.331 156.132 128.713C156.172 128.095 156.202 127.476 156.222 126.857C156.242 126.238 156.251 125.619 156.25 125L156.25 117.706L181.25 117.706C181.352 117.706 181.454 117.704 181.557 117.699C181.659 117.694 181.761 117.686 181.863 117.676C181.964 117.666 182.066 117.654 182.167 117.639C182.268 117.624 182.369 117.606 182.469 117.586C182.57 117.566 182.669 117.544 182.769 117.519C182.868 117.494 182.966 117.467 183.064 117.437C183.162 117.407 183.259 117.375 183.355 117.341C183.452 117.306 183.547 117.27 183.642 117.23C183.736 117.191 183.83 117.15 183.922 117.106C184.015 117.063 184.106 117.016 184.196 116.968C184.286 116.92 184.375 116.87 184.463 116.817C184.551 116.764 184.637 116.71 184.722 116.653C184.807 116.596 184.891 116.537 184.973 116.476C185.055 116.415 185.136 116.353 185.215 116.288C185.294 116.223 185.371 116.156 185.447 116.087C185.523 116.019 185.597 115.948 185.669 115.876C185.742 115.803 185.812 115.729 185.881 115.654C185.95 115.578 186.016 115.5 186.081 115.421C186.146 115.342 186.209 115.262 186.27 115.179C186.331 115.097 186.39 115.013 186.447 114.929C186.504 114.844 186.558 114.757 186.611 114.669C186.663 114.582 186.714 114.493 186.762 114.403C186.81 114.312 186.856 114.221 186.9 114.129C186.944 114.036 186.985 113.943 187.024 113.848C187.063 113.754 187.1 113.658 187.135 113.562C187.169 113.466 187.201 113.368 187.231 113.271C187.261 113.173 187.288 113.074 187.313 112.975C187.337 112.876 187.36 112.776 187.38 112.676C187.4 112.575 187.417 112.474 187.432 112.373C187.447 112.272 187.46 112.171 187.47 112.069C187.48 111.967 187.488 111.865 187.492 111.763C187.497 111.661 187.5 111.559 187.5 111.456C187.5 111.354 187.497 111.252 187.492 111.15C187.488 111.047 187.48 110.945 187.47 110.844C187.46 110.742 187.447 110.64 187.432 110.539C187.417 110.438 187.4 110.337 187.38 110.237C187.36 110.137 187.337 110.037 187.313 109.938C187.288 109.838 187.261 109.74 187.231 109.642C187.201 109.544 187.169 109.447 187.135 109.351C187.1 109.254 187.063 109.159 187.024 109.064C186.985 108.97 186.944 108.876 186.9 108.784C186.856 108.692 186.81 108.6 186.762 108.51C186.714 108.42 186.663 108.331 186.611 108.243C186.558 108.155 186.504 108.069 186.447 107.984C186.39 107.899 186.331 107.815 186.27 107.733C186.209 107.651 186.146 107.57 186.081 107.491C186.016 107.412 185.95 107.335 185.881 107.259C185.812 107.183 185.742 107.109 185.669 107.037C185.597 106.964 185.523 106.894 185.447 106.825C185.371 106.757 185.294 106.69 185.215 106.625C185.136 106.56 185.055 106.497 184.973 106.436C184.891 106.375 184.807 106.316 184.722 106.26C184.637 106.203 184.551 106.148 184.463 106.096C184.375 106.043 184.286 105.993 184.196 105.944C184.106 105.896 184.015 105.85 183.922 105.806C183.83 105.763 183.736 105.721 183.642 105.682C183.547 105.643 183.452 105.606 183.355 105.572C183.259 105.537 183.162 105.505 183.064 105.475C182.966 105.446 182.868 105.418 182.769 105.394C182.669 105.369 182.57 105.346 182.469 105.326C182.369 105.306 182.268 105.289 182.167 105.274C182.066 105.259 181.964 105.246 181.863 105.236C181.761 105.226 181.659 105.219 181.557 105.214C181.454 105.209 181.352 105.206 181.25 105.206ZM131.25 46.875C131.25 46.3635 131.238 45.8523 131.212 45.3416C131.187 44.8309 131.15 44.3209 131.1 43.8119C131.049 43.3029 130.987 42.7955 130.912 42.2896C130.837 41.7838 130.749 41.2801 130.65 40.7785C130.55 40.2768 130.438 39.7779 130.313 39.2818C130.189 38.7857 130.053 38.293 129.904 37.8035C129.756 37.3143 129.596 36.8287 129.423 36.3473C129.251 35.8656 129.067 35.3887 128.871 34.9162C128.676 34.4437 128.468 33.9762 128.25 33.5139C128.031 33.0516 127.801 32.595 127.56 32.1439C127.319 31.6929 127.067 31.248 126.804 30.8094C126.541 30.3707 126.268 29.9387 125.983 29.5135C125.699 29.0882 125.405 28.6702 125.1 28.2594C124.796 27.8486 124.481 27.4455 124.157 27.0502C123.832 26.6549 123.498 26.2678 123.155 25.8889C122.811 25.5098 122.459 25.1395 122.097 24.7779C121.736 24.4163 121.365 24.0638 120.986 23.7203C120.607 23.3768 120.22 23.0428 119.825 22.7184C119.429 22.394 119.026 22.0795 118.616 21.7748C118.205 21.4701 117.787 21.1757 117.362 20.8916C116.936 20.6075 116.504 20.3339 116.066 20.0709C115.627 19.808 115.182 19.556 114.731 19.315C114.28 19.0739 113.823 18.844 113.361 18.6253C112.899 18.4067 112.431 18.1995 111.959 18.0038C111.486 17.808 111.009 17.624 110.528 17.4517C110.046 17.2794 109.561 17.1191 109.071 16.9706C108.582 16.8222 108.089 16.6858 107.593 16.5615C107.097 16.4373 106.598 16.3252 106.096 16.2255C105.595 16.1257 105.091 16.0383 104.585 15.9632C104.079 15.8882 103.572 15.8256 103.063 15.7755C102.554 15.7254 102.044 15.6877 101.533 15.6626C101.023 15.6375 100.512 15.625 100 15.625C99.4885 15.625 98.9773 15.6375 98.4666 15.6626C97.9559 15.6877 97.4459 15.7254 96.9369 15.7755C96.4279 15.8256 95.9205 15.8882 95.4146 15.9632C94.9088 16.0383 94.4051 16.1257 93.9035 16.2255C93.4018 16.3252 92.9029 16.4373 92.4068 16.5615C91.9107 16.6858 91.418 16.8222 90.9285 16.9706C90.4393 17.1191 89.9537 17.2794 89.4723 17.4517C88.9906 17.624 88.5137 17.808 88.0412 18.0038C87.5687 18.1995 87.1012 18.4067 86.6389 18.6253C86.1766 18.844 85.7199 19.0739 85.2689 19.315C84.8178 19.556 84.3728 19.808 83.9342 20.0709C83.4957 20.3339 83.0637 20.6075 82.6385 20.8916C82.2133 21.1757 81.7951 21.4701 81.3844 21.7748C80.9736 22.0795 80.5705 22.394 80.1752 22.7184C79.7799 23.0428 79.3928 23.3768 79.0137 23.7203C78.6348 24.0638 78.2645 24.4163 77.9029 24.7779C77.5414 25.1395 77.1889 25.5098 76.8453 25.8889C76.5018 26.2678 76.1678 26.6549 75.8434 27.0502C75.5189 27.4455 75.2045 27.8486 74.8998 28.2594C74.5951 28.6702 74.3008 29.0882 74.0166 29.5135C73.7324 29.9387 73.459 30.3707 73.1959 30.8094C72.933 31.248 72.6811 31.6929 72.44 32.1439C72.1988 32.5949 71.9689 33.0515 71.7504 33.5139C71.5316 33.9762 71.3244 34.4437 71.1287 34.9162C70.933 35.3887 70.749 35.8656 70.5768 36.3473C70.4045 36.8287 70.2441 37.3143 70.0957 37.8035C69.9471 38.293 69.8107 38.7857 69.6865 39.2818C69.5623 39.7779 69.4502 40.2768 69.3504 40.7785C69.2506 41.2801 69.1633 41.7838 69.0883 42.2896C69.0131 42.7955 68.9506 43.3029 68.9004 43.8119C68.8502 44.3209 68.8127 44.8309 68.7877 45.3416C68.7625 45.8523 68.75 46.3635 68.75 46.875L68.75 51.0438L131.25 51.0438L131.25 46.875Z</sys:String>
<sys:String x:Key="ClipboardIcon">M438.857 950.857h512V585.143H713.143q-22.82 0-38.839-16.018t-16.018-38.84V292.572H438.857v658.286zM585.143 128V91.429q0-7.461-5.413-12.874t-12.873-5.412H164.571q-7.46 0-12.873 5.412t-5.412 12.874V128q0 7.46 5.412 12.873t12.873 5.413h402.286q7.46 0 12.873-5.413T585.143 128z m146.286 384H902.29L731.43 341.138V512zM1024 585.143v384q0 22.82-16.018 38.839T969.142 1024h-548.57q-22.821 0-38.84-16.018t-16.018-38.84v-91.428H54.857q-22.82 0-38.839-16.018T0 822.857v-768q0-22.82 16.018-38.839T54.858 0H676.57q22.821 0 38.84 16.018t16.018 38.84v187.464q11.995 7.46 20.553 16.019l233.18 233.179q16.017 16.018 27.428 43.447t11.41 50.322z</sys:String>
<sys:String x:Key="UseIcon">M519.432652 1023.658762A511.800376 511.800376 0 1 1 519.546399 0.05801a511.800376 511.800376 0 0 1-0.113747 1023.600752zM438.957318 740.601703c14.332003-9.042811 271.113723-190.752135 295.455379-206.278471a27.014688 27.014688 0 0 0 0-44.759073c-17.630639-11.374606-275.436073-194.05077-296.137855-206.733455-15.185098-9.270304-35.147531 0.966841-35.147531 22.123608v413.296291c0 19.223083 18.02875 33.555086 35.830007 22.3511z</sys:String>
<Style TargetType="local:MyIconTextButton"
x:Key="GithubRepoButton">
<Setter Property="Text"
Value="项目仓库" />
<Setter Property="ToolTip"
Value="打开项目 Git 源仓库" />
<Setter Property="EventType"
Value="打开网页" />
</Style>
<Style TargetType="local:MyIconTextButton"
x:Key="IssueButton">
<Setter Property="Text"
Value="报告问题" />
<Setter Property="ToolTip"
Value="向作者反馈问题" />
<Setter Property="EventType"
Value="打开网页" />
</Style>
<Style TargetType="local:MyIconTextButton"
x:Key="ClipboardButton">
<Setter Property="Text"
Value="复制直链" />
<Setter Property="ToolTip"
Value="复制主页的联网加载链接" />
<Setter Property="EventType"
Value="复制文本" />
</Style>
<Style TargetType="local:MyIconTextButton"
x:Key="LoadingButton">
<Setter Property="Text"
Value="打开主页" />
<Setter Property="ToolTip"
Value="直接加载主页内容并进入" />
<Setter Property="EventType"
Value="打开帮助" />
</Style>
</StackPanel.Resources>
<local:MyCard Title="Ad_closeNN 的 PCL2 主页"
CanSwap="True"
IsSwaped="True"
Style="{StaticResource Card}">
<StackPanel Style="{StaticResource ContentStack}">
<FlowDocumentScrollViewer Margin="0,-5,0,0">
<FlowDocument>
<Paragraph Style="{StaticResource H1}">Ad_closeNN 的 PCL2 主页</Paragraph>
<Paragraph>据本人所描述,这是一个无用主页</Paragraph>
<Paragraph>代码借鉴了 Light Beacon,MFn233,SYBass</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Grid>
<Grid.ColumnDefinitions >
<ColumnDefinition />
<ColumnDefinition Width="1*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Margin="-2,2"
Grid.Column="0"
Orientation="Horizontal"
VerticalAlignment="Center">
<local:MyIconTextButton Style="{StaticResource GithubRepoButton}"
LogoScale="0.85"
Logo="{StaticResource GitIcon}"
EventData="https://github.com/Ad-closeNN/PCL2-home-page" />
<local:MyIconTextButton Style="{StaticResource IssueButton}"
LogoScale="0.85"
Logo="{StaticResource IssueIcon}"
EventData="https://github.com/Ad-closeNN/PCL2-home-page/issues/new?assignees=&labels=%C2%B7+Bug%2C%E6%96%B0%E5%8F%8D%E9%A6%88&projects=&template=bug9.yml" />
<local:MyIconTextButton Style="{StaticResource ClipboardButton}"
LogoScale="0.85"
Logo="{StaticResource ClipboardIcon}"
EventData="https://raw.gitcode.com/Ad_closeNN/aft/raw/main/Custom.xaml" />
<local:MyIconTextButton Style="{StaticResource LoadingButton}"
LogoScale="0.85"
Logo="{StaticResource UseIcon}"
EventData="https://raw.gitcode.com/Ad_closeNN/aft/raw/main/Custom.json" />
</WrapPanel>
<WrapPanel Margin="-2,2,0,2"
Grid.Column="2"
Orientation="Horizontal"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<Path Grid.Column="0"
Margin="8,0"
Width="18"
Height="18"
Fill="{DynamicResource ColorBrush4}"
Stretch="Uniform"
Data="M853.333333 375.466667C947.2 238.933333 964.266667 51.2 964.266667 42.666667c0-17.066667-8.533333-25.6-25.6-34.133334-17.066667-8.533333-34.133333-8.533333-51.2 0-34.133333 17.066667-332.8 179.2-392.533334 273.066667-85.333333 128-315.733333 477.866667-315.733333 486.4v8.533333L51.2 955.733333c-8.533333 17.066667-8.533333 42.666667 17.066667 51.2 8.533333 0 17.066667 8.533333 25.6 8.533334 17.066667 0 34.133333-8.533333 42.666666-17.066667L256 810.666667c76.8-51.2 503.466667-298.666667 597.333333-435.2zM938.666667 896H307.2c-25.6 0-42.666667 25.6-42.666667 68.266667s17.066667 59.733333 42.666667 59.733333H938.666667c25.6 0 42.666667-25.6 42.666666-68.266667s-17.066667-59.733333-42.666666-59.733333z" />
<TextBlock HorizontalAlignment="Right"
Grid.Column="1"
Text="Ad_closeNN"
FontSize="14"
VerticalAlignment="Center"
Foreground="{DynamicResource ColorBrush4}" />
</WrapPanel>
</Grid>
</StackPanel>
</local:MyCard>
<local:MyCard Title="炽翎主页"
CanSwap="True"
IsSwaped="True"
Style="{StaticResource Card}">
<StackPanel Style="{StaticResource ContentStack}">
<FlowDocumentScrollViewer Margin="0,-5,0,0">
<FlowDocument>
<Paragraph Style="{StaticResource H1}">炽翎主页</Paragraph>
<Paragraph>一个简洁又不失优雅的PCL2主页</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Grid>
<Grid.ColumnDefinitions >
<ColumnDefinition />
<ColumnDefinition Width="1*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Margin="-2,2"
Grid.Column="0"
Orientation="Horizontal"
VerticalAlignment="Center">
<local:MyIconTextButton Style="{StaticResource GithubRepoButton}"
LogoScale="0.85"
Logo="{StaticResource GitIcon}"
EventData="https://github.com/YuShanNan/ChiLing-HomePage-PCL2/" />
<local:MyIconTextButton Style="{StaticResource IssueButton}"
LogoScale="0.85"
Logo="{StaticResource IssueIcon}"
EventData="https://github.com/YuShanNan/ChiLing-HomePage-PCL2/issues" />
<local:MyIconTextButton Style="{StaticResource ClipboardButton}"
LogoScale="0.85"
Logo="{StaticResource ClipboardIcon}"
EventData="http://samiuv.mcfuns.cn/PCL2/Custom.xaml" />
</WrapPanel>
<WrapPanel Margin="-2,2,0,2"
Grid.Column="2"
Orientation="Horizontal"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<Path Grid.Column="0"
Margin="8,0"
Width="18"
Height="18"
Fill="{DynamicResource ColorBrush4}"
Stretch="Uniform"
Data="M853.333333 375.466667C947.2 238.933333 964.266667 51.2 964.266667 42.666667c0-17.066667-8.533333-25.6-25.6-34.133334-17.066667-8.533333-34.133333-8.533333-51.2 0-34.133333 17.066667-332.8 179.2-392.533334 273.066667-85.333333 128-315.733333 477.866667-315.733333 486.4v8.533333L51.2 955.733333c-8.533333 17.066667-8.533333 42.666667 17.066667 51.2 8.533333 0 17.066667 8.533333 25.6 8.533334 17.066667 0 34.133333-8.533333 42.666666-17.066667L256 810.666667c76.8-51.2 503.466667-298.666667 597.333333-435.2zM938.666667 896H307.2c-25.6 0-42.666667 25.6-42.666667 68.266667s17.066667 59.733333 42.666667 59.733333H938.666667c25.6 0 42.666667-25.6 42.666666-68.266667s-17.066667-59.733333-42.666666-59.733333z" />
<TextBlock HorizontalAlignment="Right"
Grid.Column="1"
Text="YuShanNan"
FontSize="14"
VerticalAlignment="Center"
Foreground="{DynamicResource ColorBrush4}" />
</WrapPanel>
</Grid>
</StackPanel>
</local:MyCard>
<local:MyCard Title="SYC"
CanSwap="True"
IsSwaped="True"
Style="{StaticResource Card}">
<StackPanel Style="{StaticResource ContentStack}">
<FlowDocumentScrollViewer Margin="0,-5,0,0">
<FlowDocument>
<Paragraph Style="{StaticResource H1}">SYC</Paragraph>
<Paragraph>无法描述具体内容(杠掉)</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Grid>
<Grid.ColumnDefinitions >
<ColumnDefinition />
<ColumnDefinition Width="1*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Margin="-2,2"
Grid.Column="0"
Orientation="Horizontal"
VerticalAlignment="Center">
<local:MyIconTextButton Style="{StaticResource GithubRepoButton}"
LogoScale="0.85"
Logo="{StaticResource GitIcon}"
EventData="https://github.com/SYBass/SYC" />
<local:MyIconTextButton Style="{StaticResource IssueButton}"
LogoScale="0.85"
Logo="{StaticResource IssueIcon}"
EventData="https://github.com/SYBass/SYC/issues" />
<local:MyIconTextButton Style="{StaticResource ClipboardButton}"
LogoScale="0.85"
Logo="{StaticResource ClipboardIcon}"
EventData="https://gluvsf.mcfuns.cn/index.html" />
</WrapPanel>
<WrapPanel Margin="-2,2,0,2"
Grid.Column="2"
Orientation="Horizontal"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<Path Grid.Column="0"
Margin="8,0"
Width="18"
Height="18"
Fill="{DynamicResource ColorBrush4}"
Stretch="Uniform"
Data="M853.333333 375.466667C947.2 238.933333 964.266667 51.2 964.266667 42.666667c0-17.066667-8.533333-25.6-25.6-34.133334-17.066667-8.533333-34.133333-8.533333-51.2 0-34.133333 17.066667-332.8 179.2-392.533334 273.066667-85.333333 128-315.733333 477.866667-315.733333 486.4v8.533333L51.2 955.733333c-8.533333 17.066667-8.533333 42.666667 17.066667 51.2 8.533333 0 17.066667 8.533333 25.6 8.533334 17.066667 0 34.133333-8.533333 42.666666-17.066667L256 810.666667c76.8-51.2 503.466667-298.666667 597.333333-435.2zM938.666667 896H307.2c-25.6 0-42.666667 25.6-42.666667 68.266667s17.066667 59.733333 42.666667 59.733333H938.666667c25.6 0 42.666667-25.6 42.666666-68.266667s-17.066667-59.733333-42.666666-59.733333z" />
<TextBlock HorizontalAlignment="Right"
Grid.Column="1"
Text="SYBass"
FontSize="14"
VerticalAlignment="Center"
Foreground="{DynamicResource ColorBrush4}" />
</WrapPanel>
</Grid>
</StackPanel>
</local:MyCard>
<local:MyCard Title="Magic Box PCL Mainpage"
CanSwap="True"
IsSwaped="True"
Style="{StaticResource Card}">
<StackPanel Style="{StaticResource ContentStack}">
<FlowDocumentScrollViewer Margin="0,-5,0,0">
<FlowDocument>
<Paragraph Style="{StaticResource H1}">Magic Box PCL Mainpage</Paragraph>
<Paragraph>FSC 制作的第一个 PCL 主页, 偶尔看到自定义主页之后做的。</Paragraph>
<Paragraph>感谢 Github@MFn233</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Grid>
<Grid.ColumnDefinitions >
<ColumnDefinition />
<ColumnDefinition Width="1*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Margin="-2,2"
Grid.Column="0"
Orientation="Horizontal"
VerticalAlignment="Center">
<local:MyIconTextButton Style="{StaticResource ClipboardButton}"
LogoScale="0.85"
Logo="{StaticResource ClipboardIcon}"
EventData="http://xxag.top/FSC%20Statics/Misc/MagicBox.xaml" />
<local:MyIconTextButton Style="{StaticResource LoadingButton}"
LogoScale="0.85"
Logo="{StaticResource UseIcon}"
EventData="http://xxag.top/FSC%20Statics/Misc/MagicBox.json" />
</WrapPanel>
<WrapPanel Margin="-2,2,0,2"
Grid.Column="2"
Orientation="Horizontal"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<Path Grid.Column="0"
Margin="8,0"
Width="18"
Height="18"
Fill="{DynamicResource ColorBrush4}"
Stretch="Uniform"
Data="M853.333333 375.466667C947.2 238.933333 964.266667 51.2 964.266667 42.666667c0-17.066667-8.533333-25.6-25.6-34.133334-17.066667-8.533333-34.133333-8.533333-51.2 0-34.133333 17.066667-332.8 179.2-392.533334 273.066667-85.333333 128-315.733333 477.866667-315.733333 486.4v8.533333L51.2 955.733333c-8.533333 17.066667-8.533333 42.666667 17.066667 51.2 8.533333 0 17.066667 8.533333 25.6 8.533334 17.066667 0 34.133333-8.533333 42.666666-17.066667L256 810.666667c76.8-51.2 503.466667-298.666667 597.333333-435.2zM938.666667 896H307.2c-25.6 0-42.666667 25.6-42.666667 68.266667s17.066667 59.733333 42.666667 59.733333H938.666667c25.6 0 42.666667-25.6 42.666666-68.266667s-17.066667-59.733333-42.666666-59.733333z" />
<TextBlock HorizontalAlignment="Right"
Grid.Column="1"
Text="FSC"
FontSize="14"
VerticalAlignment="Center"
Foreground="{DynamicResource ColorBrush4}" />
</WrapPanel>
</Grid>
</StackPanel>
</local:MyCard>
<local:MyCard Title="SoftOSDev 的主页"
CanSwap="True"
IsSwaped="True"
Style="{StaticResource Card}">
<StackPanel Style="{StaticResource ContentStack}">
<FlowDocumentScrollViewer Margin="0,-5,0,0">
<FlowDocument>
<Paragraph Style="{StaticResource H1}">SoftOSDev 的主页</Paragraph>
<BlockUIContainer>
<Border Style="{StaticResource Quote}">
<TextBlock Foreground="{DynamicResource ColorBrush2}">❔这个主页很神奇,什么简介都没有……</TextBlock>
</Border>
</BlockUIContainer><Paragraph></Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Grid>
<Grid.ColumnDefinitions >
<ColumnDefinition />
<ColumnDefinition Width="1*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Margin="-2,2"
Grid.Column="0"
Orientation="Horizontal"
VerticalAlignment="Center">
<local:MyIconTextButton Style="{StaticResource ClipboardButton}"
LogoScale="0.85"
Logo="{StaticResource ClipboardIcon}"
EventData="https://huaxihao.eu.org/desk/" />
</WrapPanel>
<WrapPanel Margin="-2,2,0,2"
Grid.Column="2"
Orientation="Horizontal"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<Path Grid.Column="0"
Margin="8,0"
Width="18"
Height="18"
Fill="{DynamicResource ColorBrush4}"
Stretch="Uniform"
Data="M853.333333 375.466667C947.2 238.933333 964.266667 51.2 964.266667 42.666667c0-17.066667-8.533333-25.6-25.6-34.133334-17.066667-8.533333-34.133333-8.533333-51.2 0-34.133333 17.066667-332.8 179.2-392.533334 273.066667-85.333333 128-315.733333 477.866667-315.733333 486.4v8.533333L51.2 955.733333c-8.533333 17.066667-8.533333 42.666667 17.066667 51.2 8.533333 0 17.066667 8.533333 25.6 8.533334 17.066667 0 34.133333-8.533333 42.666666-17.066667L256 810.666667c76.8-51.2 503.466667-298.666667 597.333333-435.2zM938.666667 896H307.2c-25.6 0-42.666667 25.6-42.666667 68.266667s17.066667 59.733333 42.666667 59.733333H938.666667c25.6 0 42.666667-25.6 42.666666-68.266667s-17.066667-59.733333-42.666666-59.733333z" />
<TextBlock HorizontalAlignment="Right"
Grid.Column="1"
Text="SoftOSDev"
FontSize="14"
VerticalAlignment="Center"
Foreground="{DynamicResource ColorBrush4}" />
</WrapPanel>
</Grid>
</StackPanel>
</local:MyCard>
<local:MyCard Title="PCL2更新日志-预览版"
CanSwap="True"
IsSwaped="True"
Style="{StaticResource Card}">
<StackPanel Style="{StaticResource ContentStack}">
<FlowDocumentScrollViewer Margin="0,-5,0,0">
<FlowDocument>
<Paragraph Style="{StaticResource H1}">一个...PCL2更新日志(!</Paragraph>
<BlockUIContainer>
<Border Style="{StaticResource Quote}">
<TextBlock Foreground="{DynamicResource ColorBrush2}">要不...乱点点测测Bug?</TextBlock>
</Border>
</BlockUIContainer><Paragraph></Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
<Grid>
<Grid.ColumnDefinitions >
<ColumnDefinition />
<ColumnDefinition Width="1*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<WrapPanel Margin="-2,2"
Grid.Column="0"
Orientation="Horizontal"
VerticalAlignment="Center">
<local:MyIconTextButton Style="{StaticResource GithubRepoButton}"
LogoScale="0.85"
Logo="{StaticResource GitIcon}"
EventData="https://github.com/Joker2184/UpdateHomepage" />
<local:MyIconTextButton Style="{StaticResource IssueButton}"
LogoScale="0.85"
Logo="{StaticResource IssueIcon}"
EventData="https://github.com/Joker2184/UpdateHomepage/issues" />
<local:MyIconTextButton Style="{StaticResource ClipboardButton}"
LogoScale="0.85"
Logo="{StaticResource ClipboardIcon}"
EventData="https://updatehomepage.pages.dev/UpdateHomepageTest.xaml" />
</WrapPanel>
<WrapPanel Margin="-2,2,0,2"
Grid.Column="2"
Orientation="Horizontal"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<Path Grid.Column="0"
Margin="8,0"
Width="18"
Height="18"
Fill="{DynamicResource ColorBrush4}"
Stretch="Uniform"
Data="M853.333333 375.466667C947.2 238.933333 964.266667 51.2 964.266667 42.666667c0-17.066667-8.533333-25.6-25.6-34.133334-17.066667-8.533333-34.133333-8.533333-51.2 0-34.133333 17.066667-332.8 179.2-392.533334 273.066667-85.333333 128-315.733333 477.866667-315.733333 486.4v8.533333L51.2 955.733333c-8.533333 17.066667-8.533333 42.666667 17.066667 51.2 8.533333 0 17.066667 8.533333 25.6 8.533334 17.066667 0 34.133333-8.533333 42.666666-17.066667L256 810.666667c76.8-51.2 503.466667-298.666667 597.333333-435.2zM938.666667 896H307.2c-25.6 0-42.666667 25.6-42.666667 68.266667s17.066667 59.733333 42.666667 59.733333H938.666667c25.6 0 42.666667-25.6 42.666666-68.266667s-17.066667-59.733333-42.666666-59.733333z" />
<TextBlock HorizontalAlignment="Right"
Grid.Column="1"
Text="Joker2184"
FontSize="14"
VerticalAlignment="Center"
Foreground="{DynamicResource ColorBrush4}" />
</WrapPanel>
</Grid>
</StackPanel>
</local:MyCard>
</StackPanel>
<local:MyCard Margin="0,10,0,14">
<Border BorderBrush="{DynamicResource ColorBrush2}"
Margin="-0.6"
CornerRadius="5"
BorderThickness="0,0,0,10">
<StackPanel>
<Grid Margin="26,20,20,2">
<StackPanel>
<StackPanel Orientation="Horizontal"
VerticalAlignment="Center"
Margin="0,0,0,4">
<TextBlock FontSize="18"
Foreground="{DynamicResource ColorBrush2}">
<Bold>PCL2 主页广场</Bold>
</TextBlock>
<local:MyIconTextButton ColorType="Highlight"
Margin="4,-2,4,0"
Text="Unknown"
ToolTip="当前 Commit 版本"
EventType="弹出窗口"
EventData="提示|未获取到提交哈希\n如果你是普通用户,请向主页作者报告此问题"
LogoScale="1.1"
Logo="M11.93 8.5a4.002 4.002 0 0 1-7.86 0H.75a.75.75 0 0 1 0-1.5h3.32a4.002 4.002 0 0 1 7.86 0h3.32a.75.75 0 0 1 0 1.5Zm-1.43-.75a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z" />
</StackPanel>
<StackPanel Orientation="Horizontal"
VerticalAlignment="Center"
Margin="-4,0,0,10"
Height="48">
<Image Margin="2"
Source="https://s3.bmp.ovh/imgs/2024/08/18/5454ae7566fc802d.png" />
<Image Margin="2"
Source="https://s3.bmp.ovh/imgs/2024/08/18/db681f5ee25b47c7.png" />
</StackPanel>
<StackPanel Orientation="Horizontal"
VerticalAlignment="Center"
Margin="-8,0,0,10">
<local:MyIconTextButton HorizontalAlignment="Left"
Text="GitHub"
ToolTip="前往主页广场 GitHub 页面"
EventType="打开网页"
EventData="https://github.com/HomePlaza-Of-PCL2/Homepage-Market"
LogoScale="1"
Logo="M512 42.666667A464.64 464.64 0 0 0 42.666667 502.186667 460.373333 460.373333 0 0 0 363.52 938.666667c23.466667 4.266667 32-9.813333 32-22.186667v-78.08c-130.56 27.733333-158.293333-61.44-158.293333-61.44a122.026667 122.026667 0 0 0-52.053334-67.413333c-42.666667-28.16 3.413333-27.733333 3.413334-27.733334a98.56 98.56 0 0 1 71.68 47.36 101.12 101.12 0 0 0 136.533333 37.973334 99.413333 99.413333 0 0 1 29.866667-61.44c-104.106667-11.52-213.333333-50.773333-213.333334-226.986667a177.066667 177.066667 0 0 1 47.36-124.16 161.28 161.28 0 0 1 4.693334-121.173333s39.68-12.373333 128 46.933333a455.68 455.68 0 0 1 234.666666 0c89.6-59.306667 128-46.933333 128-46.933333a161.28 161.28 0 0 1 4.693334 121.173333A177.066667 177.066667 0 0 1 810.666667 477.866667c0 176.64-110.08 215.466667-213.333334 226.986666a106.666667 106.666667 0 0 1 32 85.333334v125.866666c0 14.933333 8.533333 26.88 32 22.186667A460.8 460.8 0 0 0 981.333333 502.186667 464.64 464.64 0 0 0 512 42.666667" />
<local:MyIconTextButton Text="WTFPL license"
ToolTip="无特殊声明本主页文字内容使用该授权协议"
EventType="打开网页"
EventData="http://www.wtfpl.net/"
LogoScale="1"
Logo="M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736c.038.022.08.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04c-.21.176-.441.327-.686.45C14.556 10.78 13.88 11 13 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.245.245 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.245.245 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04c-.21.176-.441.327-.686.45C4.556 10.78 3.88 11 3 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.249.249 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0Zm2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z" />
<local:MyIconTextButton Text="鸣谢"
ToolTip="感谢为本项目提供了技术支持的人"
EventType="弹出窗口"
EventData="鸣谢|在此感谢为主页广场提供了技术支持的人\n名称使用“昵称 @GitHub用户名”的形式标注\n\n鸣谢列表:\n 最亮的信标 @Light-Beacon\n · 借鉴使用了部分样式代码\n 雨杉楠 @YuShanNan\n · 从其主页中获得了早期 UI 灵感"
LogoScale="1"
Logo="M330.688 192c41.152 0 74.624 33.536 74.624 74.688V352a32 32 0 1 0 64.064 0V266.688a138.88 138.88 0 0 0-138.688-138.752 32 32 0 1 0 0 64.128z m225.792 279.232a32 32 0 0 1-22.656-54.72c23.808-23.808 50.752-22.656 66.816-22.016 13.888 0.64 15.424 0.128 18.816-3.2 3.328-3.392 3.84-4.928 3.2-18.752-0.64-16.064-1.92-43.008 21.952-66.816 23.808-23.808 50.752-22.656 66.816-22.016 13.888 0.64 15.424 0.128 18.816-3.2 3.392-3.456 3.84-4.992 3.328-18.944-0.64-16.064-1.792-43.008 22.08-66.816 23.808-23.872 50.752-22.72 66.816-22.08 13.952 0.576 15.488 0.064 18.88-3.328a32 32 0 0 1 45.312 45.312c-23.808 23.808-50.752 22.72-66.816 22.08-13.952-0.64-15.488-0.064-18.88 3.328-3.392 3.392-3.904 4.928-3.328 18.88 0.64 16.064 1.728 43.008-22.08 66.816s-50.752 22.72-66.816 22.016c-13.888-0.576-15.424-0.064-18.816 3.328-3.328 3.328-3.84 4.864-3.2 18.688 0.64 16.064 1.856 43.008-21.952 66.816-23.808 23.808-50.752 22.656-66.816 21.952-13.888-0.64-15.424-0.064-18.752 3.264a32 32 0 0 1-22.72 9.408zM512.64 208.896a31.808 31.808 0 0 0 13.632 20.48 32 32 0 0 0 46.08-11.584 36.096 36.096 0 0 0 3.2-8.896 31.616 31.616 0 0 0-13.696-32.896 27.648 27.648 0 0 0-8.448-3.968 31.68 31.68 0 0 0-37.568 15.552 35.712 35.712 0 0 0-3.2 8.832 31.104 31.104 0 0 0 0 12.48zM302.08 384.832c10.752-2.56 22.144 0.64 30.016 8.512l298.624 298.688a32 32 0 0 1-12.48 53.056l-448 149.312a32 32 0 0 1-40.576-40.512l149.312-448a32 32 0 0 1 23.04-21.12z m591.552 82.944a29.76 29.76 0 0 1 2.496 12.16 32.192 32.192 0 0 1-16.96 28.352A33.024 33.024 0 0 1 864 512a32.512 32.512 0 0 1-20.288-7.296 27.264 27.264 0 0 1-4.48-4.48 30.464 30.464 0 0 1-5.888-10.944 31.744 31.744 0 0 1 24.384-40.768 31.68 31.68 0 0 1 35.84 19.2z m-570.24 7.552l-112.64 337.984 337.984-112.64-225.28-225.28z m433.984 79.296H672a32 32 0 1 0 0 64.064h85.312c41.152 0 74.624 33.472 74.624 74.624a32 32 0 1 0 64.128 0 138.88 138.88 0 0 0-138.752-138.688z" />
</StackPanel>
</StackPanel>
<StackPanel HorizontalAlignment="Right">
<local:MyIconTextButton HorizontalAlignment="Left"
ToolTip="反馈主页广场问题"
Text="反馈"
EventType="打开网页"
EventData="https://github.com/HomePlaza-Of-PCL2/Homepage-Market/issues/new/choose"
LogoScale="1"
Logo="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0z M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0z" />
<local:MyIconTextButton HorizontalAlignment="Left"
ToolTip="投稿你制作了但是没选上的主页"
Text="投稿"
EventType="打开网页"
EventData="https://github.com/HomePlaza-Of-PCL2/Homepage-Market/issues/new?assignees=&labels=a%3A%E6%96%B0%E4%B8%BB%E9%A1%B5&projects=&template=4_new.yml"
LogoScale="1"
Logo="M464.5888 584.3456a25.088 25.088 0 0 1-17.7664-42.8032l377.1904-377.1904a25.088 25.088 0 0 1 35.4816 35.4816L482.304 577.024a24.9856 24.9856 0 0 1-17.7152 7.3216z m165.2736 337.1008a25.088 25.088 0 0 1-22.6304-14.2336l-153.7024-321.536L116.224 416.3584a25.088 25.088 0 0 1 3.328-46.2336l753.0496-250.6752a25.088 25.088 0 1 1 31.7952 31.744L653.7216 904.192a25.088 25.088 0 0 1-22.2208 17.1008c-0.6144 0.1024-1.1264 0.1024-1.6384 0.1024zM192.8192 398.6432l290.816 146.0224a25.2416 25.2416 0 0 1 11.4176 11.6224l130.56 273.152 215.296-646.5024L192.8192 398.6432z m192.768 393.728a25.088 25.088 0 0 1-24.576-30.0544l39.4752-197.376a25.088 25.088 0 1 1 49.2032 9.8304l-27.648 137.8816 67.9936-45.2608a25.088 25.088 0 0 1 27.8528 41.7792l-118.4256 78.8992a24.7296 24.7296 0 0 1-13.8752 4.2496z" />
<local:MyIconTextButton HorizontalAlignment="Left"
Text="刷新"
ToolTip="刷新主页广场"
EventType="刷新主页"
LogoScale="0.9"
Logo="M960 416V192l-73.056 73.056a447.712 447.712 0 0 0-373.6-201.088C265.92 63.968 65.312 264.544 65.312 512S265.92 960.032 513.344 960.032a448.064 448.064 0 0 0 415.232-279.488 38.368 38.368 0 1 0-71.136-28.896 371.36 371.36 0 0 1-344.096 231.584C308.32 883.232 142.112 717.024 142.112 512S308.32 140.768 513.344 140.768c132.448 0 251.936 70.08 318.016 179.84L736 416h224z" />
</StackPanel>
</Grid>
</StackPanel>
</Border>
</local:MyCard>