Skip to content

Commit 149a16f

Browse files
MekDropgithub-actions[bot]
authored andcommitted
Apply Prettier formatting
1 parent 916638c commit 149a16f

37 files changed

+810
-695
lines changed

index.html

+50-13
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,75 @@
33
<head>
44
<title><%= productName %></title>
55

6-
<meta charset="utf-8">
7-
<meta name="description" content="<%= productDescription %>">
8-
<meta name="format-detection" content="telephone=no">
9-
<meta name="msapplication-tap-highlight" content="no">
10-
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
6+
<meta charset="utf-8" />
7+
<meta name="description" content="<%= productDescription %>" />
8+
<meta name="format-detection" content="telephone=no" />
9+
<meta name="msapplication-tap-highlight" content="no" />
10+
<meta
11+
name="viewport"
12+
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
13+
/>
1114

1215
<!--suppress HtmlUnknownTarget -->
13-
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png?v=3" />
16+
<link
17+
rel="apple-touch-icon"
18+
sizes="180x180"
19+
href="icons/apple-touch-icon.png?v=3"
20+
/>
1421
<!--suppress HtmlUnknownTarget -->
15-
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png?v=3" />
22+
<link
23+
rel="icon"
24+
type="image/png"
25+
sizes="32x32"
26+
href="icons/favicon-32x32.png?v=3"
27+
/>
1628
<!--suppress HtmlUnknownTarget -->
17-
<link rel="icon" type="image/png" sizes="194x194" href="icons/favicon-194x194.png?v=3" />
29+
<link
30+
rel="icon"
31+
type="image/png"
32+
sizes="194x194"
33+
href="icons/favicon-194x194.png?v=3"
34+
/>
1835
<!--suppress HtmlUnknownTarget -->
19-
<link rel="icon" type="image/png" sizes="192x192" href="icons/android-chrome-192x192.png?v=3" />
36+
<link
37+
rel="icon"
38+
type="image/png"
39+
sizes="192x192"
40+
href="icons/android-chrome-192x192.png?v=3"
41+
/>
2042
<!--suppress HtmlUnknownTarget -->
21-
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png?v=3" />
43+
<link
44+
rel="icon"
45+
type="image/png"
46+
sizes="16x16"
47+
href="icons/favicon-16x16.png?v=3"
48+
/>
2249
<!--suppress HtmlUnknownTarget -->
2350
<link rel="icon" type="image/ico" href="favicon.ico?v=3" />
2451
<!--suppress HtmlUnknownTarget -->
2552
<link rel="shortcut icon" type="image/ico" href="favicon.ico?v=3" />
2653
<!--suppress HtmlUnknownTarget -->
2754
<link rel="manifest" href="icons/site.webmanifest?v=3" />
2855
<!--suppress HtmlUnknownTarget -->
29-
<link rel="mask-icon" href="icons/safari-pinned-tab.svg?v=3" color="#2b5797" />
56+
<link
57+
rel="mask-icon"
58+
href="icons/safari-pinned-tab.svg?v=3"
59+
color="#2b5797"
60+
/>
3061
<meta name="msapplication-TileColor" content="#ffffff" />
31-
<meta name="msapplication-TileImage" content="icons/mstile-144x144.png?v=3" />
62+
<meta
63+
name="msapplication-TileImage"
64+
content="icons/mstile-144x144.png?v=3"
65+
/>
3266
<meta name="msapplication-config" content="icons/browserconfig.xml?v=3" />
3367
<meta name="theme-color" content="#ffffff" />
3468

3569
<link rel="preconnect" href="https://fonts.googleapis.com" />
3670
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
37-
<link href="https://fonts.googleapis.com/css2?family=Itim&display=swap" rel="stylesheet" />
71+
<link
72+
href="https://fonts.googleapis.com/css2?family=Itim&display=swap"
73+
rel="stylesheet"
74+
/>
3875
<link href="font/custom-icons.css" rel="stylesheet" />
3976
</head>
4077
<body class="body--dark">

jsconfig.json

+11-33
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,16 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"paths": {
5-
"src/*": [
6-
"src/*"
7-
],
8-
"app/*": [
9-
"*"
10-
],
11-
"components/*": [
12-
"src/components/*"
13-
],
14-
"layouts/*": [
15-
"src/layouts/*"
16-
],
17-
"pages/*": [
18-
"src/pages/*"
19-
],
20-
"assets/*": [
21-
"src/assets/*"
22-
],
23-
"boot/*": [
24-
"src/boot/*"
25-
],
26-
"stores/*": [
27-
"src/stores/*"
28-
],
29-
"vue$": [
30-
"node_modules/vue/dist/vue.runtime.esm-bundler.js"
31-
]
5+
"src/*": ["src/*"],
6+
"app/*": ["*"],
7+
"components/*": ["src/components/*"],
8+
"layouts/*": ["src/layouts/*"],
9+
"pages/*": ["src/pages/*"],
10+
"assets/*": ["src/assets/*"],
11+
"boot/*": ["src/boot/*"],
12+
"stores/*": ["src/stores/*"],
13+
"vue$": ["node_modules/vue/dist/vue.runtime.esm-bundler.js"]
3214
}
3315
},
34-
"exclude": [
35-
"dist",
36-
".quasar",
37-
"node_modules"
38-
]
39-
}
16+
"exclude": ["dist", ".quasar", "node_modules"]
17+
}

public/font/config.json

+7-20
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"path": "M661.1 430.8C674.9 415.1 692.1 399.2 713 393.9 733.7 388.5 764.7 388 789.2 394.7L670.2 275.8C676.4 282.3 679.6 291.4 678.5 301.1L661.1 430.8ZM497.5 1000H1000V605.5 591.7L821.1 412.8C829 421.3 834.1 431.3 836.7 442.3 838.8 452.3 839.1 462.9 837.3 473.9 834.1 495.7 818.7 524.6 793.3 522.3 784.2 521.4 775 521.7 765.9 521.7 755.8 530 747 543 739.3 553.3L773.5 615.6C784.2 613.5 793.6 610.3 806.3 618.2 823.7 629.2 830.8 648.7 830.8 668.4 830.8 697.4 815.2 720.1 789.5 732.5 765 744 722.2 749 695.3 745.8 681.4 744.3 668.7 739.6 657.8 730.7 654.6 728.1 651.3 724.8 648.4 721.3 638.9 710.1 633.3 697.4 626.8 684.4L623.3 711.5C622.7 723.6 615 734.9 602.6 739.3 570.4 750.8 513.4 751.1 488.3 728.9 479.5 721.3 473.3 711.8 469.7 700.6 429.6 735.7 377.3 748.1 325.4 748.1 284.3 748.1 243 738.4 212.3 714.8L497.5 1000ZM496.6 435.8C501 403 509.6 332.7 518.2 299.4 522.6 287.3 528.8 277.8 536.8 270.7 557.4 252.4 588.4 249.8 614.7 253 631.8 255.1 650.1 260.7 664.3 271 674 277.2 679.9 288.8 678.5 301.1L661.1 430.8C674.9 415.1 692.1 399.2 713 393.9 741.4 386.5 789.2 388.2 812.5 405.4 834.9 421.9 841.4 447.6 837.3 473.9 834.1 495.7 818.7 524.6 793.3 522.3 784.2 521.4 775 521.7 765.9 521.7 755.8 530 747 543 739.3 553.3L773.5 615.6C784.2 613.5 793.6 610.3 806.3 618.2 823.7 629.2 830.8 648.7 830.8 668.4 830.8 697.4 815.2 720.1 789.5 732.5 765 744 722.2 749 695.3 745.8 681.4 744.3 668.7 739.6 657.8 730.7 654.6 728.1 651.3 724.8 648.4 721.3 638.9 710.1 633.3 697.4 626.8 684.4L623.3 711.5C622.7 723.6 615 734.9 602.6 739.3 570.4 750.8 513.4 751.1 488.3 728.9 479.5 721.3 473.3 711.8 469.7 700.6 429.6 735.7 377.3 748.1 325.4 748.1 261.6 748.1 196.9 724.8 172.7 661.1 155.9 616.8 159.1 556.3 175.1 511.7 193.4 460.3 229.1 423.7 280.5 403.3 318.6 388.2 363.7 385.6 403.9 391.2 437.9 395.9 473 410.1 496.6 435.8L496.6 435.8ZM501.6 545.3C501.6 526.4 499.6 509.6 494.8 493.9 490.1 478.6 482.1 465.3 471.2 454.4 460.3 443.5 446.1 434.9 428.7 429 411 422.8 389.7 419.8 364.3 419.8 337.5 419.8 313.3 424 292 432.5 270.7 440.8 252.7 452.6 238 467.4 223.2 482.4 212 500.4 204.3 522 196.6 543.5 192.8 567.2 192.8 592.9 192.8 637.1 204.9 669 228.8 688.2 253 707.4 284.9 716.8 325.4 716.8 381.8 716.8 425.2 701.5 455.9 671.1 486.6 640.4 501.6 598.5 501.6 545.3L501.6 545.3ZM406.6 548.6C406.6 581 400.1 605.8 387.4 623.3 374.4 640.7 358.1 649.5 338.7 649.5 321.2 649.5 309.1 644.8 302.3 634.8 295.5 625 292.3 609.7 292.3 588.7 292.3 574.3 293.8 560.7 296.7 548.3 300 535.9 304.1 525.2 309.7 516.1 315.3 506.9 322.4 499.9 330.4 494.8 338.6 489.5 348.1 487.2 358.7 487.2 377 487.2 389.4 492.2 396.2 502.2 403 512.2 406.6 527.6 406.6 548.6L406.6 548.6ZM807.2 459.1C807.2 446.4 802.8 437 794.2 430.8 785.7 424.3 770 421.3 747.6 421.3 736.9 421.3 728.1 422.2 720.7 424 713.3 425.7 705.3 430.8 696.5 439 687.6 447.3 677 459.4 664.6 475.9 652.2 492.2 635.7 514.9 614.4 543.8L647.5 297.3C641.3 292.6 633.9 289 624.7 286.7 615.6 284.3 606.1 283.1 596.4 283.1 578.7 283.1 565.7 286.7 557.4 294.1 549.2 301.1 543.8 315.9 540.9 337.8L501.6 636.3C499 655.5 497.5 668.7 497.5 676.1 497.5 702.4 512.5 715.4 542.4 715.4 549.8 715.4 558.3 715.1 568.1 714.5 577.5 713.6 585.5 712.1 592.3 709.8L609.7 578.1 656.6 674C660.5 682 663.7 688.8 667 694.1 670.5 699.4 673.8 703.6 677.6 706.8 681.4 709.8 685.6 711.8 690.6 713.3 695.6 714.8 701.5 715.4 708.3 715.4 737.8 715.4 760.3 711.8 775.9 704.2 791.6 696.8 799.5 685 799.5 668.4 799.5 663.7 798.9 659.3 797.5 654.9 796 650.4 793.3 646.9 789.8 644.8 785.3 645.7 780.9 646.3 776.5 646.9 771.8 647.2 767.6 647.5 764.4 647.5 760.8 647.5 757.9 646.3 755.8 644.2 753.8 642.2 751.7 639.8 749.6 636.9L702.1 550.9C712.4 536.8 720.7 525.8 727.5 517.6 734 509.3 739.6 503.4 744.3 499.3 748.7 495.4 752.9 492.8 756.1 491.9 759.4 491 762.9 490.4 766.4 490.4 770.9 490.4 775.6 490.4 780.6 490.4S791 490.7 796 491.3C799.8 487.5 802.5 483 804.5 478 806.3 472.7 807.2 466.5 807.2 459.1L807.2 459.1Z",
1717
"width": 1000
1818
},
19-
"search": [
20-
"iconfinder_okcupid_231153"
21-
]
19+
"search": ["iconfinder_okcupid_231153"]
2220
},
2321
{
2422
"uid": "e398a1221916f0c7f9bddcc18b9dbce8",
@@ -30,9 +28,7 @@
3028
"path": "M297.9 635H181.7A16.7 16.7 0 0 0 165 651.7V735C165 743.8 172.5 751.7 181.7 751.7H298.3V806.7H152.5C129.2 806.7 110 787.5 110 763.7V622.5C110 599.2 129.2 580 152.9 580H297.9V635ZM340 480.8C340 505 320.4 524.6 296.3 524.6H109.6V468.3H267.1A16.7 16.7 0 0 0 283.8 451.7V266.2A16.7 16.7 0 0 0 267.1 249.6H182.9A16.7 16.7 0 0 0 165.8 266.2V350.4C165.8 360 173.3 367.1 182.5 367.1H250V423.3H153.3C129.2 423.3 109.6 404.2 109.6 380V236.7C109.6 212.9 129.2 193.3 153.3 193.3H295.8C320 193.3 339.6 212.9 339.6 236.7V480.8ZM890 806.7H835V635H796.2A16.7 16.7 0 0 0 779.6 651.7V806.7H724.2V635H685.4A16.7 16.7 0 0 0 668.8 651.7V806.7H613.3V622.5C613.3 599.2 632.5 580 656.3 580H890V806.7ZM890.4 480.8C890.4 505 870.8 524.6 846.7 524.6H660V468.3H817.5A16.7 16.7 0 0 0 834.2 451.7V266.2A16.7 16.7 0 0 0 817.5 249.6H732.9A16.7 16.7 0 0 0 716.3 266.2V350.4C716.3 360 723.8 367.1 732.9 367.1H800.4V423.3H704.2C680 423.3 660.4 404.2 660.4 380V236.7C660.4 212.9 680 193.3 704.2 193.3H847.1C871.2 193.3 890.8 212.9 890.8 236.7V480.8ZM571.7 193.3H428.3C404.2 193.3 385 212.9 385 236.7V380C385 404.2 404.2 423.3 428.3 423.3H571.7C595.4 423.3 615 404.2 615 380V236.7C615 212.9 595.4 193.3 571.7 193.3M559.2 266.2V350.4A16.7 16.7 0 0 1 542.5 367.1H457.9A16.7 16.7 0 0 1 441.3 350.4V266.7C441.3 257.5 448.3 250 457.9 250H541.7C551.3 250 558.3 257.5 558.3 266.7ZM526.3 580H385C361.3 580 342.1 599.2 342.1 622.5V763.7C342.1 787.5 361.3 806.7 385 806.7H526.3C550 806.7 569.2 787.5 569.2 763.7V622.5C569.2 599.2 550 580 526.3 580M513.8 651.7V735A16.7 16.7 0 0 1 497.1 751.7V751.2H414.2A16.7 16.7 0 0 1 397.5 734.6V651.7C397.5 642.5 405 635 414.2 635H497.5C506.7 635 514.2 642.5 514.2 651.7ZM978.7 45.8A72.5 72.5 0 0 0 927.1 24.2H72.9A72.5 72.5 0 0 0 0 97.1V902.9A72.5 72.5 0 0 0 72.9 975.8H927.1A72.5 72.5 0 0 0 1000 902.9V97.1C1000 77.1 991.7 58.8 978.7 45.4M978.7 902.9A51.2 51.2 0 0 1 927.1 954.6H72.9A51.2 51.2 0 0 1 20.8 902.9V97.1A51.2 51.2 0 0 1 72.5 45.4H926.7A51.7 51.7 0 0 1 978.3 97.1V902.9Z",
3129
"width": 1000
3230
},
33-
"search": [
34-
"iconfinder_gog-dot-com_4691216"
35-
]
31+
"search": ["iconfinder_gog-dot-com_4691216"]
3632
},
3733
{
3834
"uid": "7f2e6d28f7e4db976ae353cd16812cbd",
@@ -44,9 +40,7 @@
4440
"path": "M717 279C715.6 267.6 717 254.3 717 254.3V253.9C722.9 224.1 749.2 201.6 780.6 201.6 780.8 201.6 781 201.7 781.2 201.7H781.2C817 201.7 846.1 230.8 846.1 266.5S817.1 331.3 781.2 331.3C781.1 331.3 781 331.3 780.9 331.3H780.6C749.7 331.3 723.1 309.4 717 279ZM1000 64.2V935.8C1000 971.3 973.1 1000 939.9 1000H60.2C27 1000 0 971.3 0 935.8V64.2C0 28.7 27 0 60.2 0H939.9C973.1 0 1000 28.7 1000 64.2ZM904 731.1C904 663 848.8 607.7 780.7 607.7 725.8 607.7 677.5 644 662.2 696.6H588.9L474.8 500.1 474.7 499.9 474.8 499.8 588.8 303.5H661.6C680.6 369 749.2 406.6 814.6 387.6 880.1 368.5 917.8 300 898.7 234.5 879.6 169.1 811.1 131.5 745.7 150.5A123.5 123.5 0 0 0 661.6 234.5H550.5L549.5 233.9 415 465.2 414 467H334.1C315 401.5 246.5 363.9 181 383 115.6 402 78 470.5 97 536 116.1 601.5 184.6 639.1 250 620 290.6 608.3 322.3 576.5 334.1 536H415.8L549.5 766 550.1 765.6H662.2A123.3 123.3 0 0 0 780.6 854.5H780.7C848.8 854.5 904 799.3 904 731.1ZM781.8 663.7C750.9 663.8 724.3 685.6 718.2 715.9 718 717.1 718 718.3 717.9 719.5 717.7 720.2 717.3 720.7 717.2 721.4 715.5 733.9 717.2 746.5 717.2 746.5 724.4 781.5 758.6 804.1 793.7 796.8 817.6 791.9 835.6 774 842.2 751.5 844.9 744.3 846.6 736.7 846.6 728.5 846.6 692.8 817.5 663.7 781.8 663.7ZM216.7 434C180.9 434 151.8 463.1 151.8 498.9 151.8 499.2 151.9 499.4 151.9 499.7 151.9 499.8 151.9 499.9 151.9 500 151.9 535.6 180.8 564.5 216.4 564.5 238.9 564.5 258.7 552.9 270.2 535.4 277.3 525 281.5 512.5 281.5 499 281.5 463.1 252.5 434 216.7 434Z",
4541
"width": 1000
4642
},
47-
"search": [
48-
"iconfinder_stackshare_4691412"
49-
]
43+
"search": ["iconfinder_stackshare_4691412"]
5044
},
5145
{
5246
"uid": "ea5bd42ab43dd2431659814cc942af2d",
@@ -58,10 +52,7 @@
5852
"path": "M0 1000L1000 1000 1000 873.9 936.9 873.9 936.9 936.9 63.1 936.9 63.1 63.1 936.9 63.1 936.9 576 1000 576 1000 0 0 0 0 1000M219.7 842.9L282.8 842.9 282.8 606.9 219.7 606.9ZM219.7 842.9M444 716.2L380.3 606.9 314.1 606.9 314.1 842.9 373.9 842.9 373.9 720.3 374.9 720.3 447.2 842.9 505.1 842.9 505.1 606.9 445 606.9 445 716.2 444 716.2M662.1 725.1C662.1 784.7 645.2 788.5 621.7 788.5L599.7 788.5 599.7 664.3 619.1 664.3C645.9 664.3 662.1 665.9 662.1 725.1M536.6 606.9L536.6 842.9 615.9 842.9C690.8 842.9 726.1 824.2 726.1 724.8 726.1 627.3 690.1 606.9 615 606.9L536.6 606.9M748.7 842.9L811.8 842.9 811.8 606.9 748.7 606.9ZM748.7 842.9M1332.8 790.1C1298.1 790.1 1293.3 766.2 1293.3 727.3 1293.3 688.8 1298.1 664.9 1332.8 664.9 1367.2 664.9 1372 688.8 1372 727.3 1372 766.2 1367.2 790.1 1332.8 790.1M1332.8 604.1C1244.9 604.1 1229.3 661.7 1229.3 725.1 1229.3 788.2 1244.9 845.8 1332.8 845.8 1420.4 845.8 1436 788.2 1436 725.1 1436 661.7 1420.7 604.1 1332.8 604.1M1774.8 790.1C1740.1 790.1 1735.3 766.2 1735.3 727.3 1735.3 688.8 1740.1 664.9 1774.8 664.9 1809.2 664.9 1814 688.8 1814 727.3 1814 766.2 1809.2 790.1 1774.8 790.1M1774.8 604.1C1686.9 604.1 1671.3 661.7 1671.3 725.1 1671.3 788.2 1686.9 845.8 1774.8 845.8 1862.4 845.8 1878 788.2 1878 725.1 1878 661.7 1862.7 604.1 1774.8 604.1M1898.3 838.9C1888.9 838.9 1886.8 832.2 1886.8 823.6 1886.8 814.8 1888.9 808.2 1898.3 808.2 1907.8 808.2 1910 814.8 1910 823.6 1910 832.2 1907.8 838.9 1898.3 838.9M1898.3 805.6C1886.8 805.6 1884 813.4 1884 823.6 1884 833.7 1886.8 841.4 1898.3 841.4 1909.8 841.4 1912.7 833.7 1912.7 823.6 1912.7 813.4 1909.8 805.6 1898.3 805.6M1899.2 823L1895.6 823 1895.6 816.6 1899.2 816.6C1901.3 816.6 1902 817.5 1902 819.8 1902 822.1 1901.3 823 1899.2 823M1906.3 819.5C1906.3 815.2 1904.9 812.8 1899.3 812.8L1891.2 812.8 1891.2 834.1 1895.6 834.1 1895.6 826.6 1898.3 826.6 1901.6 834.1 1906.1 834.1 1902.5 826.1C1905.4 825.2 1906.3 822.9 1906.3 819.5M1108.4 751.9L1149 751.9 1149 756C1149 782.1 1149.9 793.6 1118.8 793.6 1089.8 793.6 1079.9 780.2 1079.9 727 1079.9 671.6 1096.5 664.9 1121.3 664.9 1139.8 664.9 1152.9 669.7 1163.7 675.8L1197.5 623.2C1179.6 611.7 1153.5 604.1 1124.2 604.1 1042.7 604.1 1016.5 643.3 1016.5 725.1 1016.5 796.4 1035.7 845.8 1113 845.8 1126.8 845.8 1138.5 844.9 1148.7 842.9L1206.7 842.9 1206.7 700.6 1115.3 700.6 1108.4 751.9M1550.4 751.9L1591.1 751.9 1591.1 756C1591.1 782.1 1591.9 793.6 1560.8 793.6 1531.8 793.6 1522 780.2 1522 727 1522 671.6 1538.5 664.9 1563.4 664.9 1581.8 664.9 1594.9 669.7 1605.7 675.8L1639.5 623.2C1621.6 611.7 1595.5 604.1 1566.2 604.1 1484.7 604.1 1458.6 643.3 1458.6 725.1 1458.6 796.4 1477.7 845.8 1555.1 845.8 1568.8 845.8 1580.6 844.9 1590.7 842.9L1648.7 842.9 1648.7 700.6 1557.3 700.6 1550.4 751.9M999.9 664.6L999.9 606.9 843.2 606.9 843.2 842.9 999.9 842.9 999.9 786.9 905 786.9 905 751.5 967.4 751.5 975 695.5 905 695.5 905 664.6 999.9 664.6",
5953
"width": 1913
6054
},
61-
"search": [
62-
"337964",
63-
"indiegogo"
64-
]
55+
"search": ["337964", "indiegogo"]
6556
},
6657
{
6758
"uid": "2ea9b6fc71328b7dc94fefe79d79032f",
@@ -73,9 +64,7 @@
7364
"path": "M653.5 533.2C653.5 346.4 587 261.2 551.8 228.9 545 223.1 534.2 228 535.2 237.8 542 343.4 409.1 369.8 409.1 535.2V536.2C409.1 636.9 485.3 719.1 579.2 719.1 673 719.1 749.3 636.9 749.3 536.2V535.2C749.3 488.2 731.7 443.2 714.1 409.9 710.2 403.1 700.4 406 701.4 411.9 733.6 554.8 653.5 642.8 653.5 533.2ZM451.1 927.5C447.2 927.5 442.3 925.6 439.4 922.6L4.4 487.2C-1.5 481.4-1.5 470.6 4.4 463.8L463.8 3.9C466.8 2 470.7 0 474.6 0H606.5C614.4 0 619.3 4.9 621.2 9.8 623.2 14.7 623.2 21.5 617.3 27.4L186.2 459.8C177.4 468.7 177.4 482.3 186.2 491.2L527.4 833.6C533.2 839.5 533.2 850.2 527.4 857.1L461.9 923.6C458.9 925.6 455 927.5 451.1 927.5ZM538.1 1003.8C530.3 1003.8 525.4 998.9 523.5 994 521.5 989.2 521.5 982.3 527.4 976.4L959.4 544C963.3 540.1 966.3 534.2 966.3 528.3 966.3 522.5 964.3 516.6 959.4 512.7L617.3 170.2C611.4 164.4 611.4 153.6 617.3 146.8L683.8 80.2C686.7 77.3 690.6 75.3 695.5 75.3 700.4 75.3 703.3 78.3 706.3 81.2L1140.3 516.6C1143.2 519.5 1145.2 523.4 1145.2 528.3 1145.2 533.2 1143.2 537.1 1140.3 540.1L680.8 999.9C677.9 1002.9 674 1004.8 669.1 1004.8H538.1Z",
7465
"width": 1144
7566
},
76-
"search": [
77-
"sf"
78-
]
67+
"search": ["sf"]
7968
},
8069
{
8170
"uid": "cc4439a969ff796a8aa17a18f1f542c7",
@@ -87,9 +76,7 @@
8776
"path": "M0 500L0 1000 524.9 1000 1049.9 1000 1049.9 708.2 1049.9 416.4 743.3 416.4 436.7 416.4 436.7 500 436.7 583.6 611.9 583.6 787.1 583.6 787.1 666.4 787.1 749.3 524.9 749.3 262.8 749.3 262.8 500 262.8 250.7 656.3 250.7 1049.9 250.7 1049.9 125.3 1049.9 0 524.9 0 0 0 0 500Z",
8877
"width": 1050
8978
},
90-
"search": [
91-
"gamersgate"
92-
]
79+
"search": ["gamersgate"]
9380
}
9481
]
95-
}
82+
}

0 commit comments

Comments
 (0)