Add Meta Pixel app (#8476)

* Add Meta Pixel app

* Remove app-store seedinfg for app

* Simplify code

* Apply suggestions from code review

* Fix yarn.lock

* Apply suggestions from code review

---------

Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
This commit is contained in:
Regina Liu 2023-04-24 21:54:42 +07:00 committed by GitHub
parent 6d02ac6729
commit 224a8864a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 1155 additions and 82 deletions

View File

@ -24,6 +24,7 @@ export const EventTypeAddonMap = {
ga4: dynamic(() => import("./ga4/components/EventTypeAppCardInterface")),
giphy: dynamic(() => import("./giphy/components/EventTypeAppCardInterface")),
gtm: dynamic(() => import("./gtm/components/EventTypeAppCardInterface")),
metapixel: dynamic(() => import("./metapixel/components/EventTypeAppCardInterface")),
plausible: dynamic(() => import("./plausible/components/EventTypeAppCardInterface")),
qr_code: dynamic(() => import("./qr_code/components/EventTypeAppCardInterface")),
rainbow: dynamic(() => import("./rainbow/components/EventTypeAppCardInterface")),

View File

@ -10,6 +10,7 @@ import { appKeysSchema as googlecalendar_zod_ts } from "./googlecalendar/zod";
import { appKeysSchema as gtm_zod_ts } from "./gtm/zod";
import { appKeysSchema as hubspot_zod_ts } from "./hubspot/zod";
import { appKeysSchema as larkcalendar_zod_ts } from "./larkcalendar/zod";
import { appKeysSchema as metapixel_zod_ts } from "./metapixel/zod";
import { appKeysSchema as office365calendar_zod_ts } from "./office365calendar/zod";
import { appKeysSchema as office365video_zod_ts } from "./office365video/zod";
import { appKeysSchema as plausible_zod_ts } from "./plausible/zod";
@ -36,6 +37,7 @@ export const appKeysSchemas = {
gtm: gtm_zod_ts,
hubspot: hubspot_zod_ts,
larkcalendar: larkcalendar_zod_ts,
metapixel: metapixel_zod_ts,
office365calendar: office365calendar_zod_ts,
office365video: office365video_zod_ts,
plausible: plausible_zod_ts,

View File

@ -25,6 +25,7 @@ import { metadata as hubspot__metadata_ts } from "./hubspot/_metadata";
import { metadata as huddle01video__metadata_ts } from "./huddle01video/_metadata";
import { metadata as jitsivideo__metadata_ts } from "./jitsivideo/_metadata";
import { metadata as larkcalendar__metadata_ts } from "./larkcalendar/_metadata";
import metapixel_config_json from "./metapixel/config.json";
import n8n_config_json from "./n8n/config.json";
import { metadata as office365calendar__metadata_ts } from "./office365calendar/_metadata";
import office365video_config_json from "./office365video/config.json";
@ -86,6 +87,7 @@ export const appStoreMetadata = {
huddle01video: huddle01video__metadata_ts,
jitsivideo: jitsivideo__metadata_ts,
larkcalendar: larkcalendar__metadata_ts,
metapixel: metapixel_config_json,
n8n: n8n_config_json,
office365calendar: office365calendar__metadata_ts,
office365video: office365video_config_json,

View File

@ -10,6 +10,7 @@ import { appDataSchema as googlecalendar_zod_ts } from "./googlecalendar/zod";
import { appDataSchema as gtm_zod_ts } from "./gtm/zod";
import { appDataSchema as hubspot_zod_ts } from "./hubspot/zod";
import { appDataSchema as larkcalendar_zod_ts } from "./larkcalendar/zod";
import { appDataSchema as metapixel_zod_ts } from "./metapixel/zod";
import { appDataSchema as office365calendar_zod_ts } from "./office365calendar/zod";
import { appDataSchema as office365video_zod_ts } from "./office365video/zod";
import { appDataSchema as plausible_zod_ts } from "./plausible/zod";
@ -36,6 +37,7 @@ export const appDataSchemas = {
gtm: gtm_zod_ts,
hubspot: hubspot_zod_ts,
larkcalendar: larkcalendar_zod_ts,
metapixel: metapixel_zod_ts,
office365calendar: office365calendar_zod_ts,
office365video: office365video_zod_ts,
plausible: plausible_zod_ts,

View File

@ -25,6 +25,7 @@ export const apiHandlers = {
huddle01video: import("./huddle01video/api"),
jitsivideo: import("./jitsivideo/api"),
larkcalendar: import("./larkcalendar/api"),
metapixel: import("./metapixel/api"),
n8n: import("./n8n/api"),
office365calendar: import("./office365calendar/api"),
office365video: import("./office365video/api"),

View File

@ -0,0 +1,8 @@
---
items:
- 1.png
- 2.png
- 3.png
---
{DESCRIPTION}

View File

@ -0,0 +1,16 @@
import { createDefaultInstallation } from "@calcom/app-store/_utils/installation";
import type { AppDeclarativeHandler } from "@calcom/types/AppHandler";
import appConfig from "../config.json";
const handler: AppDeclarativeHandler = {
appType: appConfig.type,
variant: appConfig.variant,
slug: appConfig.slug,
supportsMultipleInstalls: false,
handlerType: "add",
createCredential: ({ appType, user, slug }) =>
createDefaultInstallation({ appType, userId: user.id, slug, key: {} }),
};
export default handler;

View File

@ -0,0 +1 @@
export { default as add } from "./add";

View File

@ -0,0 +1,28 @@
import { useState } from "react";
import { useAppContextWithSchema } from "@calcom/app-store/EventTypeAppContext";
import AppCard from "@calcom/app-store/_components/AppCard";
import type { EventTypeAppCardComponent } from "@calcom/app-store/types";
import { TextField } from "@calcom/ui";
import type { appDataSchema } from "../zod";
const EventTypeAppCard: EventTypeAppCardComponent = function EventTypeAppCard({ app }) {
const [getAppData, setAppData] = useAppContextWithSchema<typeof appDataSchema>();
const trackingId = getAppData("trackingId");
const [enabled, setEnabled] = useState(getAppData("enabled"));
return (
<AppCard setAppData={setAppData} app={app} switchOnClick={setEnabled} switchChecked={enabled}>
<TextField
name="Pixel ID"
value={trackingId}
onChange={(e) => {
setAppData("trackingId", e.target.value);
}}
/>
</AppCard>
);
};
export default EventTypeAppCard;

View File

@ -0,0 +1,27 @@
{
"name": "Meta Pixel",
"slug": "metapixel",
"type": "metapixel_analytics",
"logo": "icon.svg",
"url": "https://developers.facebook.com/docs/metapixel/",
"variant": "analytics",
"categories": [
"analytics"
],
"publisher": "regexyl",
"email": "info@regexyl.com",
"description": "Add Meta Pixel to your bookings page to measure, optimize and build audiences for your ad campaigns.",
"extendsFeature": "EventType",
"isTemplate": false,
"__createdUsingCli": true,
"__template": "event-type-app-card",
"appData": {
"tag": {
"scripts": [
{
"content": "!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','https://connect.facebook.net/en_US/fbevents.js');fbq('init','{TRACKING_ID}');fbq('trackCustom','CalcomView');"
}
]
}
}
}

View File

@ -0,0 +1 @@
export * as api from "./api";

View File

@ -0,0 +1,14 @@
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"name": "@calcom/metapixel",
"version": "0.0.0",
"main": "./index.ts",
"dependencies": {
"@calcom/lib": "*"
},
"devDependencies": {
"@calcom/types": "*"
},
"description": "Add Meta Pixel to your bookings page to measure, optimize and build audiences for your ad campaigns."
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@ -0,0 +1,951 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="100%" viewBox="0 0 3840 2160" enable-background="new 0 0 3840 2160" xml:space="preserve">
<path fill="#FFFFFF" opacity="1.000000" stroke="none"
d="
M2510.000000,2162.000000
C1673.333496,2162.000000 837.666992,2162.000000 2.000336,2162.000000
C2.000224,1442.000244 2.000224,722.000549 2.000112,2.000626
C1281.999512,2.000417 2561.999023,2.000417 3841.999023,2.000209
C3841.999268,721.999329 3841.999268,1441.998657 3841.999512,2161.999023
C3398.333252,2162.000000 2954.666748,2162.000000 2510.000000,2162.000000
M396.017273,966.964172
C396.078247,967.300415 396.139221,967.636597 395.530701,969.360046
C391.083679,990.239441 386.636688,1011.118896 381.644043,1033.505371
C381.258087,1034.414307 380.676208,1035.289917 380.514740,1036.237183
C376.203705,1061.526123 371.503815,1086.758789 367.768280,1112.133301
C362.910583,1145.130005 358.719604,1178.227051 354.482086,1211.311768
C353.435852,1219.480469 353.318787,1227.768066 352.305695,1237.742065
C350.311218,1264.495605 348.074158,1291.234009 346.407440,1318.007935
C345.294647,1335.884277 344.403931,1353.812866 344.457062,1371.714966
C344.555695,1404.936523 345.228210,1438.160645 346.064819,1471.373535
C346.355988,1482.932617 347.838562,1494.461792 348.397919,1507.690552
C349.966827,1523.748901 351.311523,1539.833496 353.183136,1555.856445
C354.439941,1566.616455 356.443024,1577.289429 357.835693,1589.629028
C358.679077,1594.416016 359.522461,1599.203003 360.259888,1605.617798
C365.780029,1631.724976 370.570587,1658.012573 376.977936,1683.900146
C388.910248,1732.109985 405.535950,1778.768799 427.089111,1823.542114
C451.608246,1874.476807 481.893402,1921.624756 519.992676,1963.654541
C548.541077,1995.147949 580.254883,2022.866333 615.695740,2046.261353
C659.638123,2075.268311 707.294250,2096.050049 757.979492,2110.209473
C795.559143,2120.707764 833.891357,2126.678711 872.672668,2129.460205
C892.902832,2130.910889 913.294495,2130.113037 933.613342,2130.323486
C966.281982,2130.661133 998.664429,2127.238525 1030.703125,2121.373535
C1105.966797,2107.594727 1173.757324,2076.480957 1235.311279,2031.365479
C1279.484131,1998.989258 1319.065552,1961.610352 1356.178955,1921.426880
C1388.260742,1886.691650 1418.275024,1850.276489 1446.820679,1812.632202
C1482.431519,1765.670898 1515.965576,1717.256104 1548.238770,1667.934692
C1593.082031,1599.403076 1635.604370,1529.456055 1676.380493,1458.461060
C1718.296143,1385.481934 1759.427734,1312.052368 1800.898193,1238.817505
C1834.828491,1178.898315 1868.712646,1118.953125 1902.712646,1059.073486
C1909.594604,1046.953125 1916.903076,1035.074951 1925.110474,1024.035278
C1967.924438,1094.911743 2010.945679,1165.663940 2053.494629,1236.699097
C2096.380859,1308.298096 2138.599121,1380.297363 2181.471191,1451.904907
C2236.495605,1543.810059 2292.420898,1635.162964 2353.514893,1723.216919
C2370.557617,1747.780518 2388.402588,1771.787720 2406.192627,1797.377808
C2410.135986,1802.221924 2414.079590,1807.066040 2418.355225,1813.160767
C2420.261963,1815.430420 2422.168701,1817.700073 2424.417480,1821.281738
C2465.214844,1874.351562 2508.332275,1925.326782 2557.441162,1971.051392
C2583.546631,1995.357666 2610.822998,2018.135010 2640.292725,2038.212769
C2672.828369,2060.379639 2707.032715,2079.486816 2745.295654,2094.128906
C2800.833984,2116.038818 2858.661133,2126.971191 2918.120850,2129.636230
C2965.358398,2131.753174 3012.449951,2130.684570 3059.198730,2122.304932
C3095.446289,2115.807861 3130.298096,2104.907227 3164.256836,2090.877930
C3187.299561,2081.358398 3208.990967,2069.264404 3230.114014,2056.138184
C3240.307373,2049.803711 3250.577148,2043.454956 3260.036133,2036.112671
C3270.111572,2028.291626 3279.201660,2019.210449 3288.863037,2010.841919
C3292.555664,2007.643311 3297.062744,2005.313232 3300.463867,2001.863159
C3310.385742,1991.799072 3319.936523,1981.369751 3330.699219,1970.386475
C3345.060791,1951.661133 3360.370850,1933.579346 3373.594482,1914.082397
C3405.333008,1867.287964 3428.903809,1816.302124 3447.217041,1762.916260
C3473.758545,1685.543457 3488.950928,1605.761230 3495.841553,1524.397949
C3498.641113,1491.341431 3500.604980,1458.165039 3501.430664,1425.005493
C3502.158936,1395.761230 3500.912842,1366.461426 3500.269043,1337.192139
C3499.896484,1320.255859 3499.215820,1303.318604 3498.270996,1286.404419
C3497.011963,1263.874023 3495.449951,1241.359131 3493.848145,1218.849731
C3492.750000,1203.418335 3490.540283,1188.099243 3489.291992,1172.659058
C3487.424316,1149.557495 3484.071289,1126.517334 3480.176758,1103.650879
C3472.766846,1060.143433 3465.275146,1016.624268 3456.441162,973.391235
C3445.527344,919.978821 3431.054932,867.441101 3414.729736,815.399353
C3390.804688,739.131531 3361.827148,664.873108 3327.167969,592.864441
C3297.103760,530.402527 3262.684570,470.405304 3223.582031,413.136932
C3188.253418,361.395874 3149.292236,312.526428 3105.742432,267.488525
C3086.796387,247.894852 3066.824951,229.203293 3046.384277,211.161331
C2991.976318,163.138443 2932.407471,122.783264 2866.512451,91.940331
C2795.618652,58.757664 2721.447266,38.461437 2643.143311,34.280968
C2595.480957,31.736374 2548.195068,34.548454 2501.432861,44.966084
C2439.469971,58.770096 2381.937988,83.221855 2327.608887,115.713722
C2264.400879,153.515762 2208.356201,200.392288 2155.938477,251.737289
C2136.939941,270.347137 2118.720703,289.820709 2101.061523,309.713226
C2077.458740,336.301483 2054.269043,363.290497 2031.788086,390.830994
C2009.294678,418.386810 1987.892578,446.833527 1964.901733,473.992157
C1957.049194,464.205841 1949.315918,454.320618 1941.305908,444.664948
C1935.039551,437.111328 1928.430298,429.842194 1920.971680,421.497467
C1915.827759,415.100555 1910.948730,408.467529 1905.493652,402.347809
C1882.363647,376.399780 1859.248779,350.433380 1835.752930,324.817902
C1822.052734,309.881622 1808.075195,295.145111 1793.448853,281.125793
C1772.812378,261.345825 1752.003540,241.678589 1730.306885,223.084946
C1674.805176,175.520981 1615.193481,134.055664 1549.503296,101.392632
C1471.372314,62.543747 1388.800415,40.415920 1302.030273,34.621109
C1259.326050,31.769173 1216.427002,32.356586 1173.822754,38.281780
C1140.212524,42.956116 1107.143799,50.072224 1074.756836,60.222172
C996.805359,84.651833 926.022461,122.865204 860.813171,171.746674
C810.850525,209.199173 765.917297,252.067734 724.110840,298.350037
C686.125061,340.402679 652.117737,385.509583 620.604248,432.522064
C594.285339,471.785065 570.445007,512.564209 548.217712,554.262756
C540.259827,569.191833 533.347046,584.677979 524.877563,600.773804
C516.457947,618.807861 507.770294,636.722412 499.669006,654.898376
C475.205322,709.784912 453.860352,765.885071 435.903198,823.225159
C426.900055,851.973633 418.963989,881.056335 409.893982,911.424622
C405.435883,929.639954 400.977783,947.855286 396.017273,966.964172
z"/>
<path fill="#0081FA" opacity="1.000000" stroke="none"
d="
M1966.012207,474.889740
C1987.892578,446.833527 2009.294678,418.386810 2031.788086,390.830994
C2054.269043,363.290497 2077.458740,336.301483 2101.061523,309.713226
C2118.720703,289.820709 2136.939941,270.347137 2155.938477,251.737289
C2208.356201,200.392288 2264.400879,153.515762 2327.608887,115.713722
C2381.937988,83.221855 2439.469971,58.770096 2501.432861,44.966084
C2548.195068,34.548454 2595.480957,31.736374 2643.143311,34.280968
C2721.447266,38.461437 2795.618652,58.757664 2866.512451,91.940331
C2932.407471,122.783264 2991.976318,163.138443 3046.384277,211.161331
C3066.824951,229.203293 3086.796387,247.894852 3105.742432,267.488525
C3149.292236,312.526428 3188.253418,361.395874 3223.582031,413.136932
C3262.684570,470.405304 3297.103760,530.402527 3327.167969,592.864441
C3361.827148,664.873108 3390.804688,739.131531 3414.729736,815.399353
C3431.054932,867.441101 3445.527344,919.978821 3456.441162,973.391235
C3465.275146,1016.624268 3472.766846,1060.143433 3480.176758,1103.650879
C3484.071289,1126.517334 3487.424316,1149.557495 3489.291992,1172.659058
C3490.540283,1188.099243 3492.750000,1203.418335 3493.848145,1218.849731
C3495.449951,1241.359131 3497.011963,1263.874023 3498.270996,1286.404419
C3499.215820,1303.318604 3499.896484,1320.255859 3500.269043,1337.192139
C3500.912842,1366.461426 3502.158936,1395.761230 3501.430664,1425.005493
C3500.604980,1458.165039 3498.641113,1491.341431 3495.841553,1524.397949
C3488.950928,1605.761230 3473.758545,1685.543457 3447.217041,1762.916260
C3428.903809,1816.302124 3405.333008,1867.287964 3373.594482,1914.082397
C3360.370850,1933.579346 3345.060791,1951.661133 3329.297363,1970.246094
C3324.364990,1969.404053 3320.849854,1968.206177 3317.301270,1968.097168
C3307.978760,1967.810913 3298.640625,1968.093628 3289.311035,1967.968018
C3281.750488,1967.866211 3280.752930,1967.389160 3279.142090,1959.890747
C3278.041504,1954.768799 3278.202148,1949.353149 3278.033447,1944.061279
C3277.906250,1940.074707 3277.265137,1936.061279 3272.459961,1936.251465
C3265.689697,1936.519531 3263.926758,1932.251831 3262.696533,1927.177734
C3261.657227,1922.890747 3259.901611,1919.715454 3254.781250,1919.971313
C3250.187012,1920.200562 3248.227783,1917.370361 3247.556152,1913.321533
C3246.963623,1909.748779 3246.101074,1906.156250 3246.069824,1902.566284
C3245.916016,1884.905029 3246.065186,1867.241333 3245.968994,1849.579224
C3245.927246,1841.927246 3245.820557,1841.720215 3237.952148,1840.041016
C3234.537598,1839.312256 3232.510254,1837.799072 3231.876709,1834.461792
C3231.201416,1830.901489 3230.230225,1827.338867 3230.083496,1823.748901
C3229.797852,1816.762085 3229.891357,1809.753540 3230.029297,1802.757812
C3230.147217,1796.777832 3228.210449,1792.824829 3221.937012,1790.823242
C3214.000488,1788.290527 3214.042969,1787.869141 3214.018555,1779.517090
C3213.961182,1759.855103 3214.276123,1740.187744 3213.913086,1720.532349
C3213.619385,1704.618530 3215.284668,1688.677246 3212.293945,1672.754639
C3211.290527,1667.411499 3209.787842,1663.714355 3204.697998,1662.602051
C3198.665283,1661.283569 3197.900391,1657.427734 3197.939697,1652.253540
C3198.089111,1632.592651 3198.123535,1612.928589 3197.922363,1593.268555
C3197.866455,1587.812378 3199.469971,1584.749756 3205.135010,1583.209839
C3215.337891,1580.436157 3213.968506,1579.165039 3213.987549,1570.527588
C3214.028320,1552.198608 3213.989746,1533.869507 3214.004883,1515.540405
C3214.012451,1506.136597 3213.282959,1505.399536 3222.801270,1502.811279
C3228.403076,1501.287964 3230.175049,1498.312988 3230.082031,1492.798584
C3229.834961,1478.139648 3230.040039,1463.473389 3229.984619,1448.810303
C3229.951172,1439.975586 3229.996338,1439.617920 3221.441162,1436.918335
C3216.189697,1435.261108 3213.872314,1432.801270 3213.903809,1427.069458
C3214.100830,1391.078735 3214.082520,1355.086304 3213.920410,1319.095337
C3213.896240,1313.746460 3216.094238,1311.231079 3221.063477,1310.096680
C3229.895752,1308.080566 3229.975098,1307.960205 3229.982178,1299.317017
C3230.020020,1252.994385 3230.023926,1206.671753 3229.979004,1160.349121
C3229.969971,1151.249756 3229.477295,1150.565063 3220.678223,1147.877319
C3216.361816,1146.558838 3213.803223,1144.566528 3213.932129,1139.543091
C3214.188477,1129.552002 3214.077393,1119.549194 3213.983398,1109.552368
C3213.942871,1105.270264 3215.561279,1102.530518 3219.960938,1101.765625
C3228.175049,1100.337646 3230.189209,1095.038208 3230.114502,1087.310547
C3229.830811,1057.986694 3230.020020,1028.658569 3229.988525,999.331970
C3229.978516,989.966370 3229.947266,989.880432 3221.027832,986.643860
C3217.848145,985.489929 3213.926025,984.845154 3214.214600,980.631958
C3214.674805,973.913269 3210.486328,972.115234 3205.353516,970.699097
C3202.187012,969.825562 3197.992920,969.201904 3198.295166,964.957092
C3198.814697,957.663391 3193.995117,955.973938 3188.714355,954.507202
C3185.319824,953.564453 3182.452881,952.444824 3182.034668,948.263184
C3181.508545,943.005005 3180.123779,937.769775 3180.169922,932.533997
C3180.220947,926.737488 3177.353271,923.860657 3172.457764,922.440979
C3168.984863,921.433899 3165.819580,920.164062 3166.132568,916.022339
C3166.610352,909.699646 3162.320312,908.330139 3157.719971,906.838318
C3154.673340,905.850281 3150.174561,905.575256 3150.381836,901.340088
C3150.755615,893.705139 3145.866211,891.724548 3140.136963,890.327698
C3136.489990,889.438538 3133.925293,887.756653 3134.060303,883.674622
C3134.300537,876.419861 3129.657959,875.671387 3123.717773,875.374695
C3117.249756,856.461182 3111.370117,838.106140 3105.083984,819.891418
C3080.725098,749.307983 3050.718750,681.249329 3013.921875,616.217529
C2981.187500,558.366089 2943.257324,504.229218 2897.911377,455.566467
C2865.584717,420.875366 2829.772461,390.095032 2789.463379,364.861877
C2732.377686,329.126862 2670.895508,307.021423 2602.993164,304.158508
C2569.782471,302.758301 2537.328125,306.423309 2505.437744,315.433136
C2460.655029,328.085358 2420.707764,350.272766 2383.605713,377.919891
C2345.022461,406.670746 2310.688232,440.036011 2278.817139,475.925049
C2240.786865,518.749939 2205.948486,564.121277 2173.394043,611.229797
C2155.796631,636.694031 2138.561035,662.407959 2120.683105,687.587952
C2115.475098,680.775757 2110.613770,674.478027 2106.040283,667.977722
C2087.332520,641.388733 2069.022461,614.513672 2049.978027,588.169067
C2028.232910,558.088623 2005.869629,528.454956 1983.759277,498.638611
C1977.872925,490.700562 1971.929443,482.804871 1966.012207,474.889740
z"/>
<path fill="#0081FB" opacity="1.000000" stroke="none"
d="
M1924.014893,1023.084961
C1916.903076,1035.074951 1909.594604,1046.953125 1902.712646,1059.073486
C1868.712646,1118.953125 1834.828491,1178.898315 1800.898193,1238.817505
C1759.427734,1312.052368 1718.296143,1385.481934 1676.380493,1458.461060
C1635.604370,1529.456055 1593.082031,1599.403076 1548.238770,1667.934692
C1515.965576,1717.256104 1482.431519,1765.670898 1446.820679,1812.632202
C1418.275024,1850.276489 1388.260742,1886.691650 1356.178955,1921.426880
C1319.065552,1961.610352 1279.484131,1998.989258 1235.311279,2031.365479
C1173.757324,2076.480957 1105.966797,2107.594727 1030.703125,2121.373535
C998.664429,2127.238525 966.281982,2130.661133 933.613342,2130.323486
C913.294495,2130.113037 892.902832,2130.910889 872.672668,2129.460205
C833.891357,2126.678711 795.559143,2120.707764 757.979492,2110.209473
C707.294250,2096.050049 659.638123,2075.268311 615.695740,2046.261353
C580.254883,2022.866333 548.541077,1995.147949 519.992676,1963.654541
C481.893402,1921.624756 451.608246,1874.476807 427.089111,1823.542114
C405.535950,1778.768799 388.910248,1732.109985 376.977936,1683.900146
C370.570587,1658.012573 365.780029,1631.724976 361.009888,1604.637573
C364.176819,1599.073975 366.593781,1594.490479 369.077972,1589.779541
C366.324738,1584.499146 362.009186,1587.425293 358.112213,1588.001343
C356.443024,1577.289429 354.439941,1566.616455 353.183136,1555.856445
C351.311523,1539.833496 349.966827,1523.748901 349.469910,1506.844360
C358.536072,1505.993896 366.530273,1505.997559 374.524475,1505.982666
C379.669708,1505.973145 383.439331,1503.944946 385.414948,1498.911987
C388.908264,1490.012573 388.967133,1490.034546 398.594727,1490.000977
C400.593262,1489.994019 402.592926,1490.041870 404.590240,1489.991333
C413.728851,1489.760132 414.998810,1488.619263 418.128693,1479.964600
C418.914917,1477.790649 420.931824,1474.664551 422.656586,1474.475952
C429.120392,1473.769043 432.547546,1469.702271 434.466553,1466.003174
C440.951263,1466.003174 446.235809,1465.610107 451.422821,1466.151733
C454.489563,1466.472046 458.116272,1467.529663 460.226685,1469.566040
C463.962433,1473.171143 467.926147,1474.208008 472.847839,1474.068604
C481.501343,1473.823608 490.168488,1473.897705 498.826843,1474.034302
C506.360748,1474.153198 506.358917,1474.272705 508.019897,1481.426270
C509.564392,1488.077881 511.336029,1489.700317 518.099915,1489.958374
C523.422058,1490.161499 528.808411,1489.625488 534.059204,1490.278442
C536.074585,1490.529053 537.793335,1493.164917 539.647278,1494.713989
C538.111816,1496.247925 536.824951,1498.340210 534.973572,1499.164795
C532.966187,1500.058838 530.436462,1499.909790 528.128113,1499.969727
C523.800659,1500.082520 519.468506,1500.038696 515.138428,1500.021118
C510.786285,1500.003296 508.740936,1501.949341 507.914734,1506.440918
C506.325775,1515.078857 505.005798,1515.889526 495.866943,1515.980591
C486.874207,1516.070312 477.877625,1515.876953 468.887115,1516.043823
C461.315216,1516.184204 460.276031,1517.359863 460.005615,1524.746094
C459.677185,1533.716919 461.809479,1537.307739 468.440796,1537.883667
C473.070282,1538.285767 477.764771,1538.114990 482.422760,1537.966553
C487.578857,1537.802246 491.750031,1538.543213 492.266785,1544.997314
C492.379852,1546.409546 493.594177,1548.159912 494.819489,1548.982788
C499.991699,1552.455444 511.218323,1549.654053 513.601562,1543.672729
C515.492676,1538.926270 518.378662,1537.677002 522.748108,1538.016479
C539.108948,1539.287231 555.130371,1536.675659 571.173401,1534.040649
C574.412354,1533.508667 577.429749,1532.847778 577.703430,1529.225830
C578.244690,1522.062744 582.983765,1521.773071 588.341125,1521.981934
C591.001709,1522.085693 593.687805,1522.191895 596.331177,1521.952637
C603.023499,1521.346924 608.831360,1519.344971 610.054077,1511.534180
C610.696716,1507.428711 613.256592,1506.018188 617.053467,1506.021973
C621.050476,1506.026001 625.074463,1506.281494 629.038269,1505.910400
C635.380432,1505.316772 640.846313,1503.057373 641.987610,1495.816528
C642.729065,1491.112915 645.648499,1489.938354 649.762756,1489.998413
C653.426025,1490.051880 657.090637,1490.035156 660.754456,1490.013794
C663.999756,1489.994873 666.830994,1490.786377 667.745361,1494.324341
C669.568359,1501.378418 674.736328,1502.405151 680.895508,1502.031250
C683.882385,1501.849731 686.889343,1501.999268 690.088684,1502.795410
C690.733948,1505.526001 691.400696,1507.438599 691.588196,1509.397217
C694.637756,1541.244019 701.159607,1572.422485 710.374451,1602.996216
C722.666931,1643.781006 740.373474,1681.909424 767.833435,1714.946045
C798.488586,1751.827271 837.225525,1775.501953 884.314453,1784.843018
C906.824768,1789.308472 929.541443,1790.439575 952.617065,1788.559448
C982.114502,1786.156372 1010.303406,1779.698975 1037.116577,1767.224365
C1071.303955,1751.318726 1100.578369,1728.435547 1127.730225,1702.713257
C1155.300537,1676.594727 1180.119873,1647.921387 1203.855713,1618.325562
C1253.023438,1557.019165 1297.733276,1492.481201 1341.274170,1427.138794
C1371.718140,1381.451050 1401.547974,1335.349365 1431.275269,1289.189941
C1457.571167,1248.358765 1483.262451,1207.138794 1509.386719,1166.196533
C1522.265625,1146.012573 1535.520020,1126.068237 1549.476807,1106.011475
C1555.343628,1105.994751 1560.345703,1106.148193 1565.330811,1105.925537
C1571.197876,1105.663696 1575.401123,1102.821655 1577.310059,1097.083252
C1578.018066,1094.955322 1578.568481,1092.774902 1579.374512,1089.981812
C1586.710449,1089.981812 1593.666016,1090.191772 1600.602661,1089.919678
C1606.909302,1089.672363 1609.586670,1086.956299 1609.927002,1080.700806
C1610.197998,1075.720459 1610.087036,1070.712769 1609.982544,1065.720459
C1609.887573,1061.192749 1611.674683,1057.098999 1615.995972,1056.558594
C1625.801392,1055.332520 1626.441406,1048.961060 1626.020386,1041.414185
C1625.890747,1039.090698 1626.063354,1036.751709 1625.992065,1034.423096
C1625.814331,1028.613281 1628.126587,1024.851196 1634.226807,1023.967224
C1638.731567,1023.314331 1641.355469,1020.656311 1641.973511,1016.142700
C1642.657959,1011.143311 1645.536499,1008.671082 1650.466309,1007.886597
C1656.002686,1007.005432 1658.130981,1003.240112 1658.012695,997.866699
C1657.924683,993.873047 1658.068481,989.874390 1657.988892,985.880371
C1657.890625,980.944824 1659.843262,977.038818 1664.810913,976.309021
C1672.229614,975.219177 1673.587280,970.188171 1673.961426,964.203552
C1674.148071,961.218323 1673.931641,958.210083 1674.014771,955.215576
C1674.229492,947.484558 1674.706421,946.556335 1682.470215,944.047974
C1685.776611,942.979614 1687.593140,941.468201 1687.981812,938.001038
C1688.533203,933.082092 1689.790283,928.197449 1689.875977,923.282959
C1689.974243,917.653748 1691.462891,913.594849 1697.299316,911.884827
C1703.860596,909.962463 1704.263184,904.697205 1704.021240,899.074341
C1703.781006,893.492310 1704.890259,887.436401 1697.034058,885.615417
C1695.676636,885.300781 1694.825684,882.801514 1693.872070,880.649719
C1704.937012,862.964294 1715.756958,845.866150 1726.835815,828.937317
C1738.446655,811.195435 1750.305908,793.616028 1762.657959,776.273987
C1772.448242,789.540955 1782.042847,802.233154 1790.754517,815.504944
C1826.250610,869.582031 1861.581787,923.768250 1896.731934,978.070801
C1906.261963,992.793518 1914.943726,1008.065247 1924.014893,1023.084961
z"/>
<path fill="#0264E0" opacity="1.000000" stroke="none"
d="
M525.957214,599.909912
C533.347046,584.677979 540.259827,569.191833 548.217712,554.262756
C570.445007,512.564209 594.285339,471.785065 620.604248,432.522064
C652.117737,385.509583 686.125061,340.402679 724.110840,298.350037
C765.917297,252.067734 810.850525,209.199173 860.813171,171.746674
C926.022461,122.865204 996.805359,84.651833 1074.756836,60.222172
C1107.143799,50.072224 1140.212524,42.956116 1173.822754,38.281780
C1216.427002,32.356586 1259.326050,31.769173 1302.030273,34.621109
C1388.800415,40.415920 1471.372314,62.543747 1549.503296,101.392632
C1615.193481,134.055664 1674.805176,175.520981 1730.306885,223.084946
C1752.003540,241.678589 1772.812378,261.345825 1793.448853,281.125793
C1808.075195,295.145111 1822.052734,309.881622 1835.752930,324.817902
C1859.248779,350.433380 1882.363647,376.399780 1905.493652,402.347809
C1910.948730,408.467529 1915.827759,415.100555 1921.346802,422.614594
C1921.105835,424.482330 1920.606323,425.384186 1919.856812,425.961792
C1895.219360,444.949066 1870.595215,463.953766 1845.891724,482.854828
C1809.104126,511.001648 1772.276123,539.095703 1735.429321,567.164795
C1716.743408,581.399231 1698.026978,595.594421 1679.227295,609.677979
C1670.773438,616.011169 1662.082153,622.027588 1652.899414,627.916321
C1622.792725,591.597046 1591.958984,556.771118 1558.728149,524.062073
C1526.395752,492.237183 1492.049438,462.967041 1453.823242,438.413879
C1423.747559,419.096039 1391.963501,403.349548 1357.748413,392.712799
C1331.004150,384.398529 1303.709595,379.533722 1275.727051,377.450897
C1253.802612,375.818970 1232.001099,375.556000 1210.313843,378.614563
C1163.442017,385.224945 1120.801636,403.155640 1081.189453,428.641052
C1039.184692,455.665894 1002.813293,489.137085 970.127930,526.703613
C926.924255,576.359253 890.901733,630.930481 859.821899,688.855042
C854.183105,699.364319 848.289551,709.736938 841.733582,720.118652
C837.636536,718.687683 833.699036,718.020813 831.135803,715.781067
C826.285400,711.542664 821.140564,709.448608 814.773315,709.968628
C811.343201,710.248657 807.948242,709.915771 806.204956,706.303467
C804.015930,701.767639 800.001770,702.096436 795.949707,701.943115
C792.025208,701.794739 786.550171,702.642151 784.513184,700.468506
C779.432983,695.047424 773.895020,693.625854 766.968811,693.631287
C764.311890,693.633362 761.125122,691.771912 759.112183,689.805237
C755.620605,686.394043 751.710999,685.906128 747.244751,685.924805
C743.647888,685.939819 738.533203,686.650330 736.743835,684.663696
C732.030212,679.430664 725.116516,678.551025 720.216919,674.565613
C715.610168,670.818481 711.073608,670.068970 705.610657,669.812134
C701.880249,669.636719 697.364136,668.645386 694.778381,666.287354
C691.842773,663.610168 689.277039,662.063416 685.373230,661.769226
C683.222717,661.607178 680.302612,660.585022 679.250977,658.963745
C675.932251,653.846985 671.196228,653.644226 666.106506,654.020508
C660.560974,654.430359 655.636292,653.710938 651.742065,648.986755
C650.437927,647.404785 647.792664,646.899719 645.724182,645.984253
C643.622681,645.054138 640.485657,644.825317 639.527649,643.244080
C636.075439,637.546021 630.853149,638.195068 625.505432,637.861450
C622.024048,637.644348 617.520630,637.139221 615.442505,634.920410
C612.145630,631.400513 608.817261,629.940247 604.280640,629.608948
C602.470703,629.476807 600.017456,628.359985 599.146606,626.914612
C595.947998,621.605530 591.040527,621.680054 586.001526,622.034546
C580.423584,622.426819 575.703430,621.427856 571.609619,616.973816
C569.892883,615.106018 566.384033,614.561279 563.578064,614.108215
C560.656372,613.636536 557.476929,613.455750 554.624207,614.098022
C544.499451,616.377136 540.113953,604.130371 530.522034,604.808350
C529.122864,604.907288 527.484802,601.626709 525.957214,599.909912
z"/>
<path fill="#0769E1" opacity="1.000000" stroke="none"
d="
M1653.498657,628.187744
C1662.082153,622.027588 1670.773438,616.011169 1679.227295,609.677979
C1698.026978,595.594421 1716.743408,581.399231 1735.429321,567.164795
C1772.276123,539.095703 1809.104126,511.001648 1845.891724,482.854828
C1870.595215,463.953766 1895.219360,444.949066 1919.856812,425.961792
C1920.606323,425.384186 1921.105835,424.482330 1921.847656,423.089172
C1928.430298,429.842194 1935.039551,437.111328 1941.305908,444.664948
C1949.315918,454.320618 1957.049194,464.205841 1965.457031,474.440918
C1971.929443,482.804871 1977.872925,490.700562 1983.759277,498.638611
C2005.869629,528.454956 2028.232910,558.088623 2049.978027,588.169067
C2069.022461,614.513672 2087.332520,641.388733 2106.040283,667.977722
C2110.613770,674.478027 2115.475098,680.775757 2120.792480,688.318604
C2137.757812,714.539124 2154.416748,739.428955 2170.453125,764.713501
C2203.237061,816.403442 2236.358398,867.897522 2268.131592,920.206970
C2331.160645,1023.974548 2392.733398,1128.629761 2456.130127,1232.169922
C2502.684570,1308.203247 2551.182861,1383.046143 2598.819580,1458.416626
C2606.621094,1470.760376 2614.444092,1483.090332 2621.954590,1496.097168
C2618.607422,1499.165527 2615.891357,1502.333008 2612.450439,1503.802002
C2605.073486,1506.951294 2604.152588,1507.446167 2604.032471,1515.132568
C2603.897705,1523.789062 2604.108398,1532.451172 2603.963867,1541.107300
C2603.843994,1548.286621 2602.694336,1549.708496 2596.233154,1551.973877
C2588.952637,1554.526489 2588.151611,1555.529907 2588.024658,1563.421997
C2587.912109,1570.413696 2587.739502,1577.420410 2588.056885,1584.399536
C2588.638184,1597.189209 2586.568604,1600.786499 2571.913086,1600.059448
C2564.936768,1599.713501 2557.926514,1599.886475 2550.936279,1600.034058
C2543.345947,1600.194214 2541.174805,1601.625488 2540.164795,1608.753540
C2539.476074,1613.615112 2537.586426,1615.498047 2532.730713,1616.164673
C2525.914307,1617.100342 2524.348389,1619.297485 2524.039795,1625.958984
C2523.854980,1629.946777 2524.055420,1633.950806 2523.989258,1637.946167
C2523.839600,1646.980225 2523.061035,1648.294434 2514.366943,1649.922241
C2509.858154,1650.766357 2507.992188,1652.881714 2508.016602,1657.209961
C2508.042725,1661.872070 2508.115234,1666.537964 2507.971924,1671.196045
C2507.731934,1678.994263 2505.926758,1680.896851 2498.125000,1682.001465
C2490.575684,1683.070557 2490.143555,1683.447021 2490.030518,1691.491577
C2489.904297,1700.481567 2490.041016,1709.474731 2489.988525,1718.466064
C2489.933350,1727.900146 2489.933838,1728.102905 2480.367920,1729.940796
C2476.506104,1730.682983 2473.896973,1732.197632 2474.138916,1736.204590
C2474.559082,1743.160889 2471.037354,1745.869751 2464.662109,1746.018921
C2460.758545,1746.110229 2457.939209,1747.873291 2458.169922,1751.928223
C2458.598389,1759.460449 2454.672363,1761.946777 2447.941162,1762.106445
C2443.852051,1762.203369 2441.835693,1764.765625 2442.097900,1768.652100
C2442.538086,1775.177490 2439.103027,1777.794556 2433.211670,1777.949463
C2428.223145,1778.080566 2426.368164,1780.488892 2425.892090,1785.367188
C2425.209473,1792.360596 2423.708740,1793.238159 2416.490723,1794.037598
C2412.923096,1794.432861 2409.414795,1795.362427 2405.879639,1796.050171
C2388.402588,1771.787720 2370.557617,1747.780518 2353.514893,1723.216919
C2292.420898,1635.162964 2236.495605,1543.810059 2181.471191,1451.904907
C2138.599121,1380.297363 2096.380859,1308.298096 2053.494629,1236.699097
C2010.945679,1165.663940 1967.924438,1094.911743 1924.562744,1023.560120
C1914.943726,1008.065247 1906.261963,992.793518 1896.731934,978.070801
C1861.581787,923.768250 1826.250610,869.582031 1790.754517,815.504944
C1782.042847,802.233154 1772.448242,789.540955 1762.550049,775.586182
C1739.096924,743.117676 1716.540894,711.507324 1693.536255,680.227051
C1680.572388,662.599670 1666.869019,645.516174 1653.498657,628.187744
z"/>
<path fill="#027BF3" opacity="1.000000" stroke="none"
d="
M3124.119141,875.997559
C3129.657959,875.671387 3134.300537,876.419861 3134.060303,883.674622
C3133.925293,887.756653 3136.489990,889.438538 3140.136963,890.327698
C3145.866211,891.724548 3150.755615,893.705139 3150.381836,901.340088
C3150.174561,905.575256 3154.673340,905.850281 3157.719971,906.838318
C3162.320312,908.330139 3166.610352,909.699646 3166.132568,916.022339
C3165.819580,920.164062 3168.984863,921.433899 3172.457764,922.440979
C3177.353271,923.860657 3180.220947,926.737488 3180.169922,932.533997
C3180.123779,937.769775 3181.508545,943.005005 3182.034668,948.263184
C3182.452881,952.444824 3185.319824,953.564453 3188.714355,954.507202
C3193.995117,955.973938 3198.814697,957.663391 3198.295166,964.957092
C3197.992920,969.201904 3202.187012,969.825562 3205.353516,970.699097
C3210.486328,972.115234 3214.674805,973.913269 3214.214600,980.631958
C3213.926025,984.845154 3217.848145,985.489929 3221.027832,986.643860
C3229.947266,989.880432 3229.978516,989.966370 3229.988525,999.331970
C3230.020020,1028.658569 3229.830811,1057.986694 3230.114502,1087.310547
C3230.189209,1095.038208 3228.175049,1100.337646 3219.960938,1101.765625
C3215.561279,1102.530518 3213.942871,1105.270264 3213.983398,1109.552368
C3214.077393,1119.549194 3214.188477,1129.552002 3213.932129,1139.543091
C3213.803223,1144.566528 3216.361816,1146.558838 3220.678223,1147.877319
C3229.477295,1150.565063 3229.969971,1151.249756 3229.979004,1160.349121
C3230.023926,1206.671753 3230.020020,1252.994385 3229.982178,1299.317017
C3229.975098,1307.960205 3229.895752,1308.080566 3221.063477,1310.096680
C3216.094238,1311.231079 3213.896240,1313.746460 3213.920410,1319.095337
C3214.082520,1355.086304 3214.100830,1391.078735 3213.903809,1427.069458
C3213.872314,1432.801270 3216.189697,1435.261108 3221.441162,1436.918335
C3229.996338,1439.617920 3229.951172,1439.975586 3229.984619,1448.810303
C3230.040039,1463.473389 3229.834961,1478.139648 3230.082031,1492.798584
C3230.175049,1498.312988 3228.403076,1501.287964 3222.801270,1502.811279
C3213.282959,1505.399536 3214.012451,1506.136597 3214.004883,1515.540405
C3213.989746,1533.869507 3214.028320,1552.198608 3213.987549,1570.527588
C3213.968506,1579.165039 3215.337891,1580.436157 3205.135010,1583.209839
C3199.469971,1584.749756 3197.866455,1587.812378 3197.922363,1593.268555
C3198.123535,1612.928589 3198.089111,1632.592651 3197.939697,1652.253540
C3197.900391,1657.427734 3198.665283,1661.283569 3204.697998,1662.602051
C3209.787842,1663.714355 3211.290527,1667.411499 3212.293945,1672.754639
C3215.284668,1688.677246 3213.619385,1704.618530 3213.913086,1720.532349
C3214.276123,1740.187744 3213.961182,1759.855103 3214.018555,1779.517090
C3214.042969,1787.869141 3214.000488,1788.290527 3221.937012,1790.823242
C3228.210449,1792.824829 3230.147217,1796.777832 3230.029297,1802.757812
C3229.891357,1809.753540 3229.797852,1816.762085 3230.083496,1823.748901
C3230.230225,1827.338867 3231.201416,1830.901489 3231.876709,1834.461792
C3232.510254,1837.799072 3234.537598,1839.312256 3237.952148,1840.041016
C3245.820557,1841.720215 3245.927246,1841.927246 3245.968994,1849.579224
C3246.065186,1867.241333 3245.916016,1884.905029 3246.069824,1902.566284
C3246.101074,1906.156250 3246.963623,1909.748779 3247.556152,1913.321533
C3248.227783,1917.370361 3250.187012,1920.200562 3254.781250,1919.971313
C3259.901611,1919.715454 3261.657227,1922.890747 3262.696533,1927.177734
C3263.926758,1932.251831 3265.689697,1936.519531 3272.459961,1936.251465
C3277.265137,1936.061279 3277.906250,1940.074707 3278.033447,1944.061279
C3278.202148,1949.353149 3278.041504,1954.768799 3279.142090,1959.890747
C3280.752930,1967.389160 3281.750488,1967.866211 3289.311035,1967.968018
C3298.640625,1968.093628 3307.978760,1967.810913 3317.301270,1968.097168
C3320.849854,1968.206177 3324.364990,1969.404053 3328.764160,1970.594604
C3319.936523,1981.369751 3310.385742,1991.799072 3300.463867,2001.863159
C3297.062744,2005.313232 3292.555664,2007.643311 3288.863037,2010.841919
C3279.201660,2019.210449 3270.111572,2028.291626 3260.036133,2036.112671
C3250.577148,2043.454956 3240.307373,2049.803711 3230.114014,2056.138184
C3208.990967,2069.264404 3187.299561,2081.358398 3164.256836,2090.877930
C3130.298096,2104.907227 3095.446289,2115.807861 3059.198730,2122.304932
C3012.449951,2130.684570 2965.358398,2131.753174 2918.120850,2129.636230
C2858.661133,2126.971191 2800.833984,2116.038818 2744.646973,2092.858887
C2744.010254,2085.926514 2743.756104,2080.247559 2744.104004,2074.605469
C2744.522461,2067.814941 2746.681152,2065.140625 2753.453857,2064.106201
C2758.660400,2063.311279 2760.120117,2060.556885 2760.004883,2055.964355
C2759.938232,2053.301270 2759.999268,2050.635010 2759.999756,2047.970215
C2760.002197,2035.978516 2759.835205,2023.983765 2760.064209,2011.996338
C2760.218994,2003.886597 2762.027832,2001.656982 2770.059082,2000.036499
C2774.708008,1999.098389 2776.349121,1996.471313 2775.938232,1992.364014
C2773.766113,1970.651611 2779.981201,1949.484375 2779.963623,1927.928833
C2779.959961,1923.419678 2781.515381,1919.614380 2785.784180,1918.537109
C2790.644531,1917.310669 2792.018066,1914.002930 2792.955078,1910.033081
C2794.080811,1905.265259 2796.813965,1902.400391 2801.791016,1902.016602
C2807.148438,1901.603394 2808.097168,1898.079346 2808.014160,1893.624512
C2807.933594,1889.296021 2807.775879,1884.946533 2808.089600,1880.638306
C2808.570312,1874.039307 2811.740479,1870.816162 2817.873047,1870.062134
C2825.790039,1869.088745 2829.784668,1872.383911 2829.949707,1880.550903
C2830.151123,1890.539917 2830.001709,1900.536011 2830.020264,1910.529053
C2830.026855,1914.118652 2830.744141,1917.684082 2835.146729,1917.558960
C2839.538574,1917.434326 2839.979004,1913.745605 2839.990723,1910.225464
C2840.003662,1906.228271 2839.873047,1902.225952 2840.031738,1898.234985
C2840.355225,1890.106934 2842.395264,1887.195557 2850.292725,1886.208496
C2855.656738,1885.537964 2858.026611,1883.566772 2858.114746,1878.167603
C2858.189941,1873.578491 2861.072510,1871.128052 2865.479248,1870.043091
C2873.850586,1867.982056 2873.839355,1867.891602 2873.992432,1859.918091
C2874.037109,1857.587280 2874.028320,1855.254395 2873.994629,1852.923218
C2873.874512,1844.569946 2873.766357,1844.834961 2865.850830,1841.841553
C2863.034424,1840.776367 2859.701416,1838.589722 2858.554688,1836.038208
C2854.146729,1826.233276 2854.441650,1826.100708 2845.038330,1826.000122
C2823.888672,1825.773804 2823.554932,1825.454834 2824.038818,1803.992188
C2824.097900,1801.372070 2824.340820,1798.658569 2825.106689,1796.175903
C2826.117432,1792.900513 2828.089844,1790.686890 2832.019287,1789.923828
C2839.839600,1788.405029 2839.817627,1788.107300 2839.984131,1780.359619
C2840.070068,1776.364258 2839.429199,1772.255615 2840.168457,1768.400024
C2840.870117,1764.740723 2842.944092,1761.344482 2845.094482,1757.953979
C2846.957031,1758.684204 2848.181885,1759.223022 2849.315674,1759.912109
C2884.123535,1781.061401 2922.422363,1789.291260 2962.585449,1789.467163
C2977.108643,1789.530884 2991.784424,1788.138184 3006.143066,1785.853760
C3042.752197,1780.029541 3075.251953,1765.001953 3102.792969,1739.865601
C3133.556885,1711.788208 3153.571533,1676.854492 3168.039551,1638.250000
C3182.709229,1599.107666 3190.869873,1558.449219 3195.398193,1517.148926
C3198.395996,1489.809814 3199.830566,1462.192871 3200.072266,1434.683716
C3200.410645,1396.118774 3199.170410,1357.534058 3198.236084,1318.966797
C3197.834473,1302.379517 3196.950684,1285.775757 3195.493408,1269.249268
C3193.373779,1245.217285 3190.593994,1221.242310 3187.989258,1197.254639
C3185.959229,1178.559937 3184.316406,1159.800049 3181.516357,1141.217651
C3177.494141,1114.526367 3172.410400,1087.996948 3168.080322,1061.349731
C3161.791260,1022.644165 3152.650146,984.569336 3142.986572,946.614990
C3136.975098,923.005188 3130.426758,899.532043 3124.119141,875.997559
z"/>
<path fill="#0572EA" opacity="1.000000" stroke="none"
d="
M2844.414307,1757.832642
C2842.944092,1761.344482 2840.870117,1764.740723 2840.168457,1768.400024
C2839.429199,1772.255615 2840.070068,1776.364258 2839.984131,1780.359619
C2839.817627,1788.107300 2839.839600,1788.405029 2832.019287,1789.923828
C2828.089844,1790.686890 2826.117432,1792.900513 2825.106689,1796.175903
C2824.340820,1798.658569 2824.097900,1801.372070 2824.038818,1803.992188
C2823.554932,1825.454834 2823.888672,1825.773804 2845.038330,1826.000122
C2854.441650,1826.100708 2854.146729,1826.233276 2858.554688,1836.038208
C2859.701416,1838.589722 2863.034424,1840.776367 2865.850830,1841.841553
C2873.766357,1844.834961 2873.874512,1844.569946 2873.994629,1852.923218
C2874.028320,1855.254395 2874.037109,1857.587280 2873.992432,1859.918091
C2873.839355,1867.891602 2873.850586,1867.982056 2865.479248,1870.043091
C2861.072510,1871.128052 2858.189941,1873.578491 2858.114746,1878.167603
C2858.026611,1883.566772 2855.656738,1885.537964 2850.292725,1886.208496
C2842.395264,1887.195557 2840.355225,1890.106934 2840.031738,1898.234985
C2839.873047,1902.225952 2840.003662,1906.228271 2839.990723,1910.225464
C2839.979004,1913.745605 2839.538574,1917.434326 2835.146729,1917.558960
C2830.744141,1917.684082 2830.026855,1914.118652 2830.020264,1910.529053
C2830.001709,1900.536011 2830.151123,1890.539917 2829.949707,1880.550903
C2829.784668,1872.383911 2825.790039,1869.088745 2817.873047,1870.062134
C2811.740479,1870.816162 2808.570312,1874.039307 2808.089600,1880.638306
C2807.775879,1884.946533 2807.933594,1889.296021 2808.014160,1893.624512
C2808.097168,1898.079346 2807.148438,1901.603394 2801.791016,1902.016602
C2796.813965,1902.400391 2794.080811,1905.265259 2792.955078,1910.033081
C2792.018066,1914.002930 2790.644531,1917.310669 2785.784180,1918.537109
C2781.515381,1919.614380 2779.959961,1923.419678 2779.963623,1927.928833
C2779.981201,1949.484375 2773.766113,1970.651611 2775.938232,1992.364014
C2776.349121,1996.471313 2774.708008,1999.098389 2770.059082,2000.036499
C2762.027832,2001.656982 2760.218994,2003.886597 2760.064209,2011.996338
C2759.835205,2023.983765 2760.002197,2035.978516 2759.999756,2047.970215
C2759.999268,2050.635010 2759.938232,2053.301270 2760.004883,2055.964355
C2760.120117,2060.556885 2758.660400,2063.311279 2753.453857,2064.106201
C2746.681152,2065.140625 2744.522461,2067.814941 2744.104004,2074.605469
C2743.756104,2080.247559 2744.010254,2085.926514 2744.002441,2092.465820
C2707.032715,2079.486816 2672.828369,2060.379639 2640.292725,2038.212769
C2610.822998,2018.135010 2583.546631,1995.357666 2557.441162,1971.051392
C2508.332275,1925.326782 2465.214844,1874.351562 2424.761719,1820.190430
C2426.520508,1813.980347 2424.067627,1810.867920 2419.479492,1808.026001
C2418.859131,1809.680420 2418.441162,1810.795288 2418.022949,1811.910156
C2414.079590,1807.066040 2410.135986,1802.221924 2406.036133,1796.713989
C2409.414795,1795.362427 2412.923096,1794.432861 2416.490723,1794.037598
C2423.708740,1793.238159 2425.209473,1792.360596 2425.892090,1785.367188
C2426.368164,1780.488892 2428.223145,1778.080566 2433.211670,1777.949463
C2439.103027,1777.794556 2442.538086,1775.177490 2442.097900,1768.652100
C2441.835693,1764.765625 2443.852051,1762.203369 2447.941162,1762.106445
C2454.672363,1761.946777 2458.598389,1759.460449 2458.169922,1751.928223
C2457.939209,1747.873291 2460.758545,1746.110229 2464.662109,1746.018921
C2471.037354,1745.869751 2474.559082,1743.160889 2474.138916,1736.204590
C2473.896973,1732.197632 2476.506104,1730.682983 2480.367920,1729.940796
C2489.933838,1728.102905 2489.933350,1727.900146 2489.988525,1718.466064
C2490.041016,1709.474731 2489.904297,1700.481567 2490.030518,1691.491577
C2490.143555,1683.447021 2490.575684,1683.070557 2498.125000,1682.001465
C2505.926758,1680.896851 2507.731934,1678.994263 2507.971924,1671.196045
C2508.115234,1666.537964 2508.042725,1661.872070 2508.016602,1657.209961
C2507.992188,1652.881714 2509.858154,1650.766357 2514.366943,1649.922241
C2523.061035,1648.294434 2523.839600,1646.980225 2523.989258,1637.946167
C2524.055420,1633.950806 2523.854980,1629.946777 2524.039795,1625.958984
C2524.348389,1619.297485 2525.914307,1617.100342 2532.730713,1616.164673
C2537.586426,1615.498047 2539.476074,1613.615112 2540.164795,1608.753540
C2541.174805,1601.625488 2543.345947,1600.194214 2550.936279,1600.034058
C2557.926514,1599.886475 2564.936768,1599.713501 2571.913086,1600.059448
C2586.568604,1600.786499 2588.638184,1597.189209 2588.056885,1584.399536
C2587.739502,1577.420410 2587.912109,1570.413696 2588.024658,1563.421997
C2588.151611,1555.529907 2588.952637,1554.526489 2596.233154,1551.973877
C2602.694336,1549.708496 2603.843994,1548.286621 2603.963867,1541.107300
C2604.108398,1532.451172 2603.897705,1523.789062 2604.032471,1515.132568
C2604.152588,1507.446167 2605.073486,1506.951294 2612.450439,1503.802002
C2615.891357,1502.333008 2618.607422,1499.165527 2622.504883,1496.514404
C2645.215088,1528.045166 2666.787354,1560.030396 2688.999268,1591.565186
C2720.412109,1636.162598 2754.792480,1678.378662 2792.786865,1717.572266
C2797.095459,1722.016846 2802.473145,1725.407349 2806.970459,1729.690796
C2818.365967,1740.544434 2830.673340,1750.127319 2844.414307,1757.832642
z"/>
<path fill="#017BF4" opacity="1.000000" stroke="none"
d="
M689.887207,1501.998901
C686.889343,1501.999268 683.882385,1501.849731 680.895508,1502.031250
C674.736328,1502.405151 669.568359,1501.378418 667.745361,1494.324341
C666.830994,1490.786377 663.999756,1489.994873 660.754456,1490.013794
C657.090637,1490.035156 653.426025,1490.051880 649.762756,1489.998413
C645.648499,1489.938354 642.729065,1491.112915 641.987610,1495.816528
C640.846313,1503.057373 635.380432,1505.316772 629.038269,1505.910400
C625.074463,1506.281494 621.050476,1506.026001 617.053467,1506.021973
C613.256592,1506.018188 610.696716,1507.428711 610.054077,1511.534180
C608.831360,1519.344971 603.023499,1521.346924 596.331177,1521.952637
C593.687805,1522.191895 591.001709,1522.085693 588.341125,1521.981934
C582.983765,1521.773071 578.244690,1522.062744 577.703430,1529.225830
C577.429749,1532.847778 574.412354,1533.508667 571.173401,1534.040649
C555.130371,1536.675659 539.108948,1539.287231 522.748108,1538.016479
C518.378662,1537.677002 515.492676,1538.926270 513.601562,1543.672729
C511.218323,1549.654053 499.991699,1552.455444 494.819489,1548.982788
C493.594177,1548.159912 492.379852,1546.409546 492.266785,1544.997314
C491.750031,1538.543213 487.578857,1537.802246 482.422760,1537.966553
C477.764771,1538.114990 473.070282,1538.285767 468.440796,1537.883667
C461.809479,1537.307739 459.677185,1533.716919 460.005615,1524.746094
C460.276031,1517.359863 461.315216,1516.184204 468.887115,1516.043823
C477.877625,1515.876953 486.874207,1516.070312 495.866943,1515.980591
C505.005798,1515.889526 506.325775,1515.078857 507.914734,1506.440918
C508.740936,1501.949341 510.786285,1500.003296 515.138428,1500.021118
C519.468506,1500.038696 523.800659,1500.082520 528.128113,1499.969727
C530.436462,1499.909790 532.966187,1500.058838 534.973572,1499.164795
C536.824951,1498.340210 538.111816,1496.247925 539.647278,1494.713989
C537.793335,1493.164917 536.074585,1490.529053 534.059204,1490.278442
C528.808411,1489.625488 523.422058,1490.161499 518.099915,1489.958374
C511.336029,1489.700317 509.564392,1488.077881 508.019897,1481.426270
C506.358917,1474.272705 506.360748,1474.153198 498.826843,1474.034302
C490.168488,1473.897705 481.501343,1473.823608 472.847839,1474.068604
C467.926147,1474.208008 463.962433,1473.171143 460.226685,1469.566040
C458.116272,1467.529663 454.489563,1466.472046 451.422821,1466.151733
C446.235809,1465.610107 440.951263,1466.003174 434.466553,1466.003174
C432.547546,1469.702271 429.120392,1473.769043 422.656586,1474.475952
C420.931824,1474.664551 418.914917,1477.790649 418.128693,1479.964600
C414.998810,1488.619263 413.728851,1489.760132 404.590240,1489.991333
C402.592926,1490.041870 400.593262,1489.994019 398.594727,1490.000977
C388.967133,1490.034546 388.908264,1490.012573 385.414948,1498.911987
C383.439331,1503.944946 379.669708,1505.973145 374.524475,1505.982666
C366.530273,1505.997559 358.536072,1505.993896 349.659424,1506.001465
C347.838562,1494.461792 346.355988,1482.932617 346.064819,1471.373535
C345.228210,1438.160645 344.555695,1404.936523 344.457062,1371.714966
C344.403931,1353.812866 345.294647,1335.884277 346.407440,1318.007935
C348.074158,1291.234009 350.311218,1264.495605 353.390869,1236.868652
C360.361084,1235.512451 367.444305,1236.896118 371.831604,1234.079834
C377.470428,1230.460327 382.751251,1230.007080 388.670166,1230.005249
C423.939362,1229.994629 459.209900,1230.146973 494.476318,1229.834839
C499.518860,1229.790161 506.480591,1229.142212 509.154968,1225.937134
C514.146423,1219.955444 519.688721,1219.976562 526.024780,1219.981934
C567.283081,1220.017090 608.541504,1220.040161 649.799500,1219.928345
C653.336731,1219.918701 657.935974,1220.095215 660.183655,1218.095947
C664.767090,1214.019409 669.675842,1213.940186 675.014893,1213.983887
C682.667175,1214.046753 690.320251,1213.999146 698.116943,1214.876953
C696.039001,1239.863281 693.519531,1263.948730 691.674133,1288.085571
C689.575928,1315.529053 687.452759,1342.997070 686.506409,1370.494507
C685.635925,1395.786133 686.303833,1421.131104 686.323242,1446.452515
C686.325256,1449.109985 686.464783,1451.771240 686.642883,1454.423950
C687.707642,1470.283447 688.802490,1486.140747 689.887207,1501.998901
z"/>
<path fill="#0169E3" opacity="1.000000" stroke="none"
d="
M525.417358,600.341858
C527.484802,601.626709 529.122864,604.907288 530.522034,604.808350
C540.113953,604.130371 544.499451,616.377136 554.624207,614.098022
C557.476929,613.455750 560.656372,613.636536 563.578064,614.108215
C566.384033,614.561279 569.892883,615.106018 571.609619,616.973816
C575.703430,621.427856 580.423584,622.426819 586.001526,622.034546
C591.040527,621.680054 595.947998,621.605530 599.146606,626.914612
C600.017456,628.359985 602.470703,629.476807 604.280640,629.608948
C608.817261,629.940247 612.145630,631.400513 615.442505,634.920410
C617.520630,637.139221 622.024048,637.644348 625.505432,637.861450
C630.853149,638.195068 636.075439,637.546021 639.527649,643.244080
C640.485657,644.825317 643.622681,645.054138 645.724182,645.984253
C647.792664,646.899719 650.437927,647.404785 651.742065,648.986755
C655.636292,653.710938 660.560974,654.430359 666.106506,654.020508
C671.196228,653.644226 675.932251,653.846985 679.250977,658.963745
C680.302612,660.585022 683.222717,661.607178 685.373230,661.769226
C689.277039,662.063416 691.842773,663.610168 694.778381,666.287354
C697.364136,668.645386 701.880249,669.636719 705.610657,669.812134
C711.073608,670.068970 715.610168,670.818481 720.216919,674.565613
C725.116516,678.551025 732.030212,679.430664 736.743835,684.663696
C738.533203,686.650330 743.647888,685.939819 747.244751,685.924805
C751.710999,685.906128 755.620605,686.394043 759.112183,689.805237
C761.125122,691.771912 764.311890,693.633362 766.968811,693.631287
C773.895020,693.625854 779.432983,695.047424 784.513184,700.468506
C786.550171,702.642151 792.025208,701.794739 795.949707,701.943115
C800.001770,702.096436 804.015930,701.767639 806.204956,706.303467
C807.948242,709.915771 811.343201,710.248657 814.773315,709.968628
C821.140564,709.448608 826.285400,711.542664 831.135803,715.781067
C833.699036,718.020813 837.636536,718.687683 841.614868,720.856323
C841.286133,724.104919 840.460693,726.643982 839.281616,729.006592
C818.312805,771.023438 799.732605,814.078369 784.073059,858.338989
C774.677612,884.894653 766.289368,911.805542 757.283447,938.501099
C755.937683,942.490234 753.685425,946.173584 751.024536,949.998413
C747.671509,949.694885 745.146423,949.391357 742.330078,949.052856
C742.859131,937.844971 737.153137,933.224792 727.255127,933.395691
C726.753357,931.957214 726.311951,931.067383 726.135315,930.127747
C724.181580,919.731445 722.327087,918.144531 711.639465,918.010193
C706.978516,917.951599 702.316162,917.978577 697.654602,918.004150
C685.174011,918.072632 683.895020,919.175476 681.363586,931.747437
C681.252380,932.299927 680.571594,932.737732 679.503967,934.000000
C676.875610,934.000000 673.592346,934.000000 670.309143,934.000000
C647.999756,934.000000 625.687256,934.209900 603.382751,933.881409
C595.989197,933.772583 589.573425,934.737488 584.891602,941.041199
C584.660828,941.351807 583.647461,941.081177 581.515381,941.081177
C581.032776,937.636841 580.223206,933.962708 580.057495,930.259644
C579.651367,921.180420 577.285645,918.362610 568.213684,918.070435
C559.232544,917.781250 550.234131,918.067566 541.245361,917.946350
C539.151672,917.918152 537.066406,917.262207 534.977295,916.895020
C534.800110,916.182373 534.622864,915.469788 534.445679,914.757141
C536.545410,913.849060 538.584778,912.391357 540.758118,912.152649
C544.707336,911.718933 548.738220,912.087402 552.731323,911.982117
C561.214661,911.758484 563.596680,909.519348 563.994690,901.587708
C564.562256,890.276733 562.389404,886.395508 553.539062,886.170776
C535.902893,885.722961 518.243713,885.834045 500.602264,886.159729
C495.564026,886.252686 491.213257,888.037598 489.786591,894.379150
C488.081451,901.958496 487.539429,901.930298 479.456879,901.978088
C466.138306,902.056824 452.818695,902.048462 439.500031,901.977966
C433.890411,901.948303 428.900604,902.999939 425.821655,908.317871
C423.557983,912.227722 420.261658,912.500000 416.347137,911.179382
C414.490540,910.552979 412.483978,910.371094 410.545349,909.987854
C418.963989,881.056335 426.900055,851.973633 435.903198,823.225159
C453.860352,765.885071 475.205322,709.784912 499.669006,654.898376
C507.770294,636.722412 516.457947,618.807861 525.417358,600.341858
z"/>
<path fill="#0172ED" opacity="1.000000" stroke="none"
d="
M697.973022,1213.998779
C690.320251,1213.999146 682.667175,1214.046753 675.014893,1213.983887
C669.675842,1213.940186 664.767090,1214.019409 660.183655,1218.095947
C657.935974,1220.095215 653.336731,1219.918701 649.799500,1219.928345
C608.541504,1220.040161 567.283081,1220.017090 526.024780,1219.981934
C519.688721,1219.976562 514.146423,1219.955444 509.154968,1225.937134
C506.480591,1229.142212 499.518860,1229.790161 494.476318,1229.834839
C459.209900,1230.146973 423.939362,1229.994629 388.670166,1230.005249
C382.751251,1230.007080 377.470428,1230.460327 371.831604,1234.079834
C367.444305,1236.896118 360.361084,1235.512451 353.625305,1235.998291
C353.318787,1227.768066 353.435852,1219.480469 354.482086,1211.311768
C358.719604,1178.227051 362.910583,1145.130005 367.768280,1112.133301
C371.503815,1086.758789 376.203705,1061.526123 380.514740,1036.237183
C380.676208,1035.289917 381.258087,1034.414307 382.750275,1032.729736
C387.421356,1031.304077 390.980103,1030.133789 394.552032,1030.092285
C411.505096,1029.894531 428.468628,1029.741577 445.412445,1030.184082
C449.811676,1030.299072 455.348724,1031.401978 458.223846,1034.227783
C461.957428,1037.897339 465.634399,1037.987427 469.886871,1037.991333
C491.164215,1038.010498 512.441895,1038.058716 533.718689,1037.955811
C538.538513,1037.932495 543.506592,1038.157837 546.480896,1042.115356
C549.429932,1046.039429 553.005310,1046.020630 557.022034,1046.013916
C575.972168,1045.982178 594.922729,1046.065186 613.872253,1045.955200
C618.705505,1045.927246 623.637695,1046.247803 626.594727,1050.218506
C629.551941,1054.189453 633.195068,1054.008789 637.175598,1054.006592
C661.777527,1053.993286 686.380310,1053.893555 710.980652,1054.090454
C715.873718,1054.129639 720.757568,1055.329834 725.695923,1056.790771
C721.357361,1079.376465 716.324280,1101.060791 712.741150,1122.982178
C708.149780,1151.071167 700.556946,1178.710571 699.631226,1207.378052
C699.559448,1209.600586 698.547852,1211.792603 697.973022,1213.998779
z"/>
<path fill="#016DE9" opacity="1.000000" stroke="none"
d="
M725.645630,1055.994629
C720.757568,1055.329834 715.873718,1054.129639 710.980652,1054.090454
C686.380310,1053.893555 661.777527,1053.993286 637.175598,1054.006592
C633.195068,1054.008789 629.551941,1054.189453 626.594727,1050.218506
C623.637695,1046.247803 618.705505,1045.927246 613.872253,1045.955200
C594.922729,1046.065186 575.972168,1045.982178 557.022034,1046.013916
C553.005310,1046.020630 549.429932,1046.039429 546.480896,1042.115356
C543.506592,1038.157837 538.538513,1037.932495 533.718689,1037.955811
C512.441895,1038.058716 491.164215,1038.010498 469.886871,1037.991333
C465.634399,1037.987427 461.957428,1037.897339 458.223846,1034.227783
C455.348724,1031.401978 449.811676,1030.299072 445.412445,1030.184082
C428.468628,1029.741577 411.505096,1029.894531 394.552032,1030.092285
C390.980103,1030.133789 387.421356,1031.304077 383.023071,1031.976196
C386.636688,1011.118896 391.083679,990.239441 396.168915,968.519409
C396.941528,967.501221 397.226868,967.259888 397.183533,967.157471
C397.020142,966.770691 396.749908,966.429138 396.519684,966.070618
C400.977783,947.855286 405.435883,929.639954 410.219666,910.706238
C412.483978,910.371094 414.490540,910.552979 416.347137,911.179382
C420.261658,912.500000 423.557983,912.227722 425.821655,908.317871
C428.900604,902.999939 433.890411,901.948303 439.500031,901.977966
C452.818695,902.048462 466.138306,902.056824 479.456879,901.978088
C487.539429,901.930298 488.081451,901.958496 489.786591,894.379150
C491.213257,888.037598 495.564026,886.252686 500.602264,886.159729
C518.243713,885.834045 535.902893,885.722961 553.539062,886.170776
C562.389404,886.395508 564.562256,890.276733 563.994690,901.587708
C563.596680,909.519348 561.214661,911.758484 552.731323,911.982117
C548.738220,912.087402 544.707336,911.718933 540.758118,912.152649
C538.584778,912.391357 536.545410,913.849060 534.445679,914.757141
C534.622864,915.469788 534.800110,916.182373 534.977295,916.895020
C537.066406,917.262207 539.151672,917.918152 541.245361,917.946350
C550.234131,918.067566 559.232544,917.781250 568.213684,918.070435
C577.285645,918.362610 579.651367,921.180420 580.057495,930.259644
C580.223206,933.962708 581.032776,937.636841 581.515381,941.081177
C583.647461,941.081177 584.660828,941.351807 584.891602,941.041199
C589.573425,934.737488 595.989197,933.772583 603.382751,933.881409
C625.687256,934.209900 647.999756,934.000000 670.309143,934.000000
C673.592346,934.000000 676.875610,934.000000 679.503967,934.000000
C680.571594,932.737732 681.252380,932.299927 681.363586,931.747437
C683.895020,919.175476 685.174011,918.072632 697.654602,918.004150
C702.316162,917.978577 706.978516,917.951599 711.639465,918.010193
C722.327087,918.144531 724.181580,919.731445 726.135315,930.127747
C726.311951,931.067383 726.753357,931.957214 727.255127,933.395691
C737.153137,933.224792 742.859131,937.844971 742.330078,949.052856
C745.146423,949.391357 747.671509,949.694885 751.281250,950.793335
C750.593689,958.852722 748.924255,966.143982 747.029053,973.376160
C742.330505,991.305786 737.471924,1009.193604 732.791138,1027.127808
C730.288086,1036.718384 728.019836,1046.370361 725.645630,1055.994629
z"/>
<path fill="#017BF4" opacity="1.000000" stroke="none"
d="
M357.973938,1588.815186
C362.009186,1587.425293 366.324738,1584.499146 369.077972,1589.779541
C366.593781,1594.490479 364.176819,1599.073975 361.062866,1603.823730
C359.522461,1599.203003 358.679077,1594.416016 357.973938,1588.815186
z"/>
<path fill="#0769E1" opacity="1.000000" stroke="none"
d="
M2418.188965,1812.535400
C2418.441162,1810.795288 2418.859131,1809.680420 2419.479492,1808.026001
C2424.067627,1810.867920 2426.520508,1813.980347 2424.590820,1819.534302
C2422.168701,1817.700073 2420.261963,1815.430420 2418.188965,1812.535400
z"/>
<path fill="#0172ED" opacity="1.000000" stroke="none"
d="
M396.268494,966.517395
C396.749908,966.429138 397.020142,966.770691 397.183533,967.157471
C397.226868,967.259888 396.941528,967.501221 396.503662,967.825806
C396.139221,967.636597 396.078247,967.300415 396.268494,966.517395
z"/>
<path fill="#FFFFFF" opacity="1.000000" stroke="none"
d="
M2845.094482,1757.953979
C2830.673340,1750.127319 2818.365967,1740.544434 2806.970459,1729.690796
C2802.473145,1725.407349 2797.095459,1722.016846 2792.786865,1717.572266
C2754.792480,1678.378662 2720.412109,1636.162598 2688.999268,1591.565186
C2666.787354,1560.030396 2645.215088,1528.045166 2622.807373,1495.843750
C2614.444092,1483.090332 2606.621094,1470.760376 2598.819580,1458.416626
C2551.182861,1383.046143 2502.684570,1308.203247 2456.130127,1232.169922
C2392.733398,1128.629761 2331.160645,1023.974548 2268.131592,920.206970
C2236.358398,867.897522 2203.237061,816.403442 2170.453125,764.713501
C2154.416748,739.428955 2137.757812,714.539124 2121.271484,688.739990
C2138.561035,662.407959 2155.796631,636.694031 2173.394043,611.229797
C2205.948486,564.121277 2240.786865,518.749939 2278.817139,475.925049
C2310.688232,440.036011 2345.022461,406.670746 2383.605713,377.919891
C2420.707764,350.272766 2460.655029,328.085358 2505.437744,315.433136
C2537.328125,306.423309 2569.782471,302.758301 2602.993164,304.158508
C2670.895508,307.021423 2732.377686,329.126862 2789.463379,364.861877
C2829.772461,390.095032 2865.584717,420.875366 2897.911377,455.566467
C2943.257324,504.229218 2981.187500,558.366089 3013.921875,616.217529
C3050.718750,681.249329 3080.725098,749.307983 3105.083984,819.891418
C3111.370117,838.106140 3117.249756,856.461182 3123.717773,875.374634
C3130.426758,899.532043 3136.975098,923.005188 3142.986572,946.614990
C3152.650146,984.569336 3161.791260,1022.644165 3168.080322,1061.349731
C3172.410400,1087.996948 3177.494141,1114.526367 3181.516357,1141.217651
C3184.316406,1159.800049 3185.959229,1178.559937 3187.989258,1197.254639
C3190.593994,1221.242310 3193.373779,1245.217285 3195.493408,1269.249268
C3196.950684,1285.775757 3197.834473,1302.379517 3198.236084,1318.966797
C3199.170410,1357.534058 3200.410645,1396.118774 3200.072266,1434.683716
C3199.830566,1462.192871 3198.395996,1489.809814 3195.398193,1517.148926
C3190.869873,1558.449219 3182.709229,1599.107666 3168.039551,1638.250000
C3153.571533,1676.854492 3133.556885,1711.788208 3102.792969,1739.865601
C3075.251953,1765.001953 3042.752197,1780.029541 3006.143066,1785.853760
C2991.784424,1788.138184 2977.108643,1789.530884 2962.585449,1789.467163
C2922.422363,1789.291260 2884.123535,1781.061401 2849.315674,1759.912109
C2848.181885,1759.223022 2846.957031,1758.684204 2845.094482,1757.953979
z"/>
<path fill="#FFFFFF" opacity="1.000000" stroke="none"
d="
M725.695923,1056.790771
C728.019836,1046.370361 730.288086,1036.718384 732.791138,1027.127808
C737.471924,1009.193604 742.330505,991.305786 747.029053,973.376160
C748.924255,966.143982 750.593689,958.852722 752.109192,950.793335
C753.685425,946.173584 755.937683,942.490234 757.283447,938.501099
C766.289368,911.805542 774.677612,884.894653 784.073059,858.338989
C799.732605,814.078369 818.312805,771.023438 839.281616,729.006592
C840.460693,726.643982 841.286133,724.104919 842.394836,720.910278
C848.289551,709.736938 854.183105,699.364319 859.821899,688.855042
C890.901733,630.930481 926.924255,576.359253 970.127930,526.703613
C1002.813293,489.137085 1039.184692,455.665894 1081.189453,428.641052
C1120.801636,403.155640 1163.442017,385.224945 1210.313843,378.614563
C1232.001099,375.556000 1253.802612,375.818970 1275.727051,377.450897
C1303.709595,379.533722 1331.004150,384.398529 1357.748413,392.712799
C1391.963501,403.349548 1423.747559,419.096039 1453.823242,438.413879
C1492.049438,462.967041 1526.395752,492.237183 1558.728149,524.062073
C1591.958984,556.771118 1622.792725,591.597046 1652.899414,627.916321
C1666.869019,645.516174 1680.572388,662.599670 1693.536255,680.227051
C1716.540894,711.507324 1739.096924,743.117676 1761.948608,775.277832
C1750.305908,793.616028 1738.446655,811.195435 1726.835815,828.937317
C1715.756958,845.866150 1704.937012,862.964294 1693.280273,881.028259
C1690.143921,885.633545 1687.662476,889.154602 1685.327759,892.770386
C1651.780029,944.725220 1618.196899,996.657288 1584.748779,1048.676147
C1572.529663,1067.679321 1560.642822,1086.895996 1548.604370,1106.015381
C1535.520020,1126.068237 1522.265625,1146.012573 1509.386719,1166.196533
C1483.262451,1207.138794 1457.571167,1248.358765 1431.275269,1289.189941
C1401.547974,1335.349365 1371.718140,1381.451050 1341.274170,1427.138794
C1297.733276,1492.481201 1253.023438,1557.019165 1203.855713,1618.325562
C1180.119873,1647.921387 1155.300537,1676.594727 1127.730225,1702.713257
C1100.578369,1728.435547 1071.303955,1751.318726 1037.116577,1767.224365
C1010.303406,1779.698975 982.114502,1786.156372 952.617065,1788.559448
C929.541443,1790.439575 906.824768,1789.308472 884.314453,1784.843018
C837.225525,1775.501953 798.488586,1751.827271 767.833435,1714.946045
C740.373474,1681.909424 722.666931,1643.781006 710.374451,1602.996216
C701.159607,1572.422485 694.637756,1541.244019 691.588196,1509.397217
C691.400696,1507.438599 690.733948,1505.526001 690.088684,1502.795410
C688.802490,1486.140747 687.707642,1470.283447 686.642883,1454.423950
C686.464783,1451.771240 686.325256,1449.109985 686.323242,1446.452515
C686.303833,1421.131104 685.635925,1395.786133 686.506409,1370.494507
C687.452759,1342.997070 689.575928,1315.529053 691.674133,1288.085571
C693.519531,1263.948730 696.039001,1239.863281 698.116943,1214.876953
C698.547852,1211.792603 699.559448,1209.600586 699.631226,1207.378052
C700.556946,1178.710571 708.149780,1151.071167 712.741150,1122.982178
C716.324280,1101.060791 721.357361,1079.376465 725.695923,1056.790771
z"/>
<path fill="#047FF9" opacity="1.000000" stroke="none"
d="
M1549.476807,1106.011475
C1560.642822,1086.895996 1572.529663,1067.679321 1584.748779,1048.676147
C1618.196899,996.657288 1651.780029,944.725220 1685.327759,892.770386
C1687.662476,889.154602 1690.143921,885.633545 1693.148926,881.689941
C1694.825684,882.801514 1695.676636,885.300781 1697.034058,885.615417
C1704.890259,887.436401 1703.781006,893.492310 1704.021240,899.074341
C1704.263184,904.697205 1703.860596,909.962463 1697.299316,911.884827
C1691.462891,913.594849 1689.974243,917.653748 1689.875977,923.282959
C1689.790283,928.197449 1688.533203,933.082092 1687.981812,938.001038
C1687.593140,941.468201 1685.776611,942.979614 1682.470215,944.047974
C1674.706421,946.556335 1674.229492,947.484558 1674.014771,955.215576
C1673.931641,958.210083 1674.148071,961.218323 1673.961426,964.203552
C1673.587280,970.188171 1672.229614,975.219177 1664.810913,976.309021
C1659.843262,977.038818 1657.890625,980.944824 1657.988892,985.880371
C1658.068481,989.874390 1657.924683,993.873047 1658.012695,997.866699
C1658.130981,1003.240112 1656.002686,1007.005432 1650.466309,1007.886597
C1645.536499,1008.671082 1642.657959,1011.143311 1641.973511,1016.142700
C1641.355469,1020.656311 1638.731567,1023.314331 1634.226807,1023.967224
C1628.126587,1024.851196 1625.814331,1028.613281 1625.992065,1034.423096
C1626.063354,1036.751709 1625.890747,1039.090698 1626.020386,1041.414185
C1626.441406,1048.961060 1625.801392,1055.332520 1615.995972,1056.558594
C1611.674683,1057.098999 1609.887573,1061.192749 1609.982544,1065.720459
C1610.087036,1070.712769 1610.197998,1075.720459 1609.927002,1080.700806
C1609.586670,1086.956299 1606.909302,1089.672363 1600.602661,1089.919678
C1593.666016,1090.191772 1586.710449,1089.981812 1579.374512,1089.981812
C1578.568481,1092.774902 1578.018066,1094.955322 1577.310059,1097.083252
C1575.401123,1102.821655 1571.197876,1105.663696 1565.330811,1105.925537
C1560.345703,1106.148193 1555.343628,1105.994751 1549.476807,1106.011475
z"/>
</svg>

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -0,0 +1,10 @@
import { z } from "zod";
import { eventTypeAppCardZod } from "@calcom/app-store/eventTypeAppCardZod";
export const appDataSchema = eventTypeAppCardZod.merge(
z.object({
trackingId: z.string().default("").optional(),
})
);
export const appKeysSchema = z.object({});

173
yarn.lock
View File

@ -4440,6 +4440,15 @@ __metadata:
languageName: unknown
linkType: soft
"@calcom/metapixel@workspace:packages/app-store/metapixel":
version: 0.0.0-use.local
resolution: "@calcom/metapixel@workspace:packages/app-store/metapixel"
dependencies:
"@calcom/lib": "*"
"@calcom/types": "*"
languageName: unknown
linkType: soft
"@calcom/n8n@workspace:packages/app-store/n8n":
version: 0.0.0-use.local
resolution: "@calcom/n8n@workspace:packages/app-store/n8n"
@ -8571,14 +8580,14 @@ __metadata:
languageName: node
linkType: hard
"@prisma/debug@npm:4.12.0":
version: 4.12.0
resolution: "@prisma/debug@npm:4.12.0"
"@prisma/debug@npm:4.13.0":
version: 4.13.0
resolution: "@prisma/debug@npm:4.13.0"
dependencies:
"@types/debug": 4.1.7
debug: 4.3.4
strip-ansi: 6.0.1
checksum: 0ae182634f4a25231ff946768e1da1f694b5141d21c92cb2a142580de30d67ebd1595f8575a4c63356740e415d5d64829449a4710d8421e7147016ea0acb2643
checksum: cd8b3361a3992ad93855923aeea0cedfc3ff316508fc1d6b526d46d05af35b47dc2e2203e3e0f95258c9e5a72a8a6d9a9737ebca9d8280e4df6135ef810b553b
languageName: node
linkType: hard
@ -8611,14 +8620,14 @@ __metadata:
linkType: hard
"@prisma/generator-helper@npm:^4.0.0":
version: 4.12.0
resolution: "@prisma/generator-helper@npm:4.12.0"
version: 4.13.0
resolution: "@prisma/generator-helper@npm:4.13.0"
dependencies:
"@prisma/debug": 4.12.0
"@prisma/debug": 4.13.0
"@types/cross-spawn": 6.0.2
chalk: 4.1.2
cross-spawn: 7.0.3
checksum: b844fcf736c922ce39e6aa1081b7c133b921ceb5d272f51296cf7afc3128ca6085ef1594ce63045ef47a462c56e5e37b9a1094a36d5dd484f77017d6f227641f
checksum: 0b0724bd03d40b691a85e002d8ed91216df9e6883d1fe5e69368ad135b59cff5ae49d65860db727fca6acf984c3efe382bca26c4127e0328b2e72748dbf59369
languageName: node
linkType: hard
@ -10085,29 +10094,29 @@ __metadata:
languageName: node
linkType: hard
"@sentry-internal/tracing@npm:7.48.0":
version: 7.48.0
resolution: "@sentry-internal/tracing@npm:7.48.0"
"@sentry-internal/tracing@npm:7.49.0":
version: 7.49.0
resolution: "@sentry-internal/tracing@npm:7.49.0"
dependencies:
"@sentry/core": 7.48.0
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry/core": 7.49.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
tslib: ^1.9.3
checksum: 61e9d1c5f34db9a23ae8f34b6d479e9929e968fa63e4d0d2da92cf49f4a6d82b992161b781278296112a8851920d75a9e538134014c63f7e3d7de2b3d3e6fc4a
checksum: 765e15b26e5074acb49f7b18f1eac9171cd00f19d9c7b311af1da05d5a8f8e114ee99512deeb9a85e2759ffea521a392da5edda529485abe5d519a3047ca02bf
languageName: node
linkType: hard
"@sentry/browser@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/browser@npm:7.48.0"
"@sentry/browser@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/browser@npm:7.49.0"
dependencies:
"@sentry-internal/tracing": 7.48.0
"@sentry/core": 7.48.0
"@sentry/replay": 7.48.0
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry-internal/tracing": 7.49.0
"@sentry/core": 7.49.0
"@sentry/replay": 7.49.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
tslib: ^1.9.3
checksum: 582199f54122fe8f9631fc5ab3910b82a4965b6f3b72572c5e497bf225b5bd38542a0576a01d4ccf2b47e8ac9995fbf2942fab702770f2ac33dbbb0c5ce9bda1
checksum: 4a7ff0cf566937b59f892d52453895dea0e9b689f6fa0f725909171afc9d2e692ccb767cd277b325355fb4406dc17bbd1398ed9b3a291cd1d83a67e9377335b8
languageName: node
linkType: hard
@ -10127,40 +10136,40 @@ __metadata:
languageName: node
linkType: hard
"@sentry/core@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/core@npm:7.48.0"
"@sentry/core@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/core@npm:7.49.0"
dependencies:
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
tslib: ^1.9.3
checksum: cc4d0ada638a6da4b56f1824c419ef1aea7867cb1079d647cf9397752e86215fcad2dd7eebdf9893dedab64cfa3473435ed89e2afdc6eb8d68041b836b3e605a
checksum: b1222afd09d219c990e2a8df136c6e540bd13f26616331f3d4e143182b6b4b550426b165dafc52e504a4bff111b634c756202656b383557e4cb3f2ff58022e1b
languageName: node
linkType: hard
"@sentry/integrations@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/integrations@npm:7.48.0"
"@sentry/integrations@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/integrations@npm:7.49.0"
dependencies:
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
localforage: ^1.8.1
tslib: ^1.9.3
checksum: f3347e0c5b696cc14c91a5e8c63130c2c0d3971bbbe725d5e4e423fa65bda31bd56c3c0cd6ad5a667ea98a79a7a3f584c7b44cf7bad5a17dc81df7ec98c5e398
checksum: 547d3bf84e9abfa7a6ab80e7a2589293657166334a9fb75d221f4fa0f8d6327f35b4c2e5bea3f87ea0306392908c159ce3961ceb04f06e82ee656d39aa0cf4d6
languageName: node
linkType: hard
"@sentry/nextjs@npm:^7.20.0":
version: 7.48.0
resolution: "@sentry/nextjs@npm:7.48.0"
version: 7.49.0
resolution: "@sentry/nextjs@npm:7.49.0"
dependencies:
"@rollup/plugin-commonjs": 24.0.0
"@sentry/core": 7.48.0
"@sentry/integrations": 7.48.0
"@sentry/node": 7.48.0
"@sentry/react": 7.48.0
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry/core": 7.49.0
"@sentry/integrations": 7.49.0
"@sentry/node": 7.49.0
"@sentry/react": 7.49.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
"@sentry/webpack-plugin": 1.20.0
chalk: 3.0.0
rollup: 2.78.0
@ -10173,66 +10182,66 @@ __metadata:
peerDependenciesMeta:
webpack:
optional: true
checksum: 4ded73f7e130fdc48be19b2ee1c648883c5dcbbdaefa33af47384531b3ed4e15ae7c8c23ae16a809df83788793e1f4eccdee089c2b5d5a7c7ca8d4c2dca7202b
checksum: 79a330e77851d2c809db5909d9591b9c88145a75ce0a9856860dee9b627ac82071298bf92ba5dae7e20a21ea4c7052dd7f78408b12d6769d40cacd0f7b3162b2
languageName: node
linkType: hard
"@sentry/node@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/node@npm:7.48.0"
"@sentry/node@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/node@npm:7.49.0"
dependencies:
"@sentry-internal/tracing": 7.48.0
"@sentry/core": 7.48.0
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry-internal/tracing": 7.49.0
"@sentry/core": 7.49.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
cookie: ^0.4.1
https-proxy-agent: ^5.0.0
lru_map: ^0.3.3
tslib: ^1.9.3
checksum: de9bbdd84d56a7851006a1c61c6ec08877fb7332bad83bfc4a3f5ca172a46b2d34cd084844531ac37de25fc317347820f182fd82e60aa54b4bb5046f848888ec
checksum: 13650fb0384e438f18c4cba1d0cff86d4be4c61da4ed12d4fa720bc37627ff7190c2368f934287cb39fe898b38e24f7b097fcb5e4b10aaf24131c46145f1e3c2
languageName: node
linkType: hard
"@sentry/react@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/react@npm:7.48.0"
"@sentry/react@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/react@npm:7.49.0"
dependencies:
"@sentry/browser": 7.48.0
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
"@sentry/browser": 7.49.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
hoist-non-react-statics: ^3.3.2
tslib: ^1.9.3
peerDependencies:
react: 15.x || 16.x || 17.x || 18.x
checksum: 3ba6723ffc3c2236e322237d265cd8520d93ed7b7a793dd69d8c2bbf290db7c2ad68cf946f33af0d95481b3dd4c6ca485285cfcff1b8276da96cd3c810273249
checksum: 73cdef3362c9263c04ecdfa677f7a7b39109d6247737f2592b21e17fdfcfcd0fda3ac3a2fafcd1db8b2fe34a5d1882e7062fe931c590fbb8cb290149f71b24f0
languageName: node
linkType: hard
"@sentry/replay@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/replay@npm:7.48.0"
"@sentry/replay@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/replay@npm:7.49.0"
dependencies:
"@sentry/core": 7.48.0
"@sentry/types": 7.48.0
"@sentry/utils": 7.48.0
checksum: e5ba2051966ea02b9d634132219a76cf020399bef87cc64105e31b620a1831661c69e46136198df751f18eff55ef5aff4b70178a37a08f5d334a258d1de6bb21
"@sentry/core": 7.49.0
"@sentry/types": 7.49.0
"@sentry/utils": 7.49.0
checksum: 0789ead51e2284fcf6871ba11c4b022de608b31354aa1c1fc30bb26811bad3e353a80dfb2a1517b1567c39be80e263e67f4d5d1efb0747048ee173d855daa308
languageName: node
linkType: hard
"@sentry/types@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/types@npm:7.48.0"
checksum: a2378f3ccfe0d3c28031c48edb4516e4fd77d5e709f2b758dffc4e0c98a83983a9c2f1022d2a719b14a0db9427a53f689ccae6df24644389e461152e44da1ae0
"@sentry/types@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/types@npm:7.49.0"
checksum: c6665e5ea14aa0288a44daf0ccbf8ab3134ec7ab61a6cda57e233c865a9c1ca3a9e45b5ab75705d2d3506c357e08cc500a550794fe6e888d363e0254b46c057b
languageName: node
linkType: hard
"@sentry/utils@npm:7.48.0":
version: 7.48.0
resolution: "@sentry/utils@npm:7.48.0"
"@sentry/utils@npm:7.49.0":
version: 7.49.0
resolution: "@sentry/utils@npm:7.49.0"
dependencies:
"@sentry/types": 7.48.0
"@sentry/types": 7.49.0
tslib: ^1.9.3
checksum: 879a2866897684b5af43fdf2946bc37f6e5d7dd4310d3cc838a3f9b59dc3ed39084e8cf90ebf5cc699946b7c280653d6bff9cf695b43203f033aee08781b787a
checksum: b3382418fbc98a685c3c01571ef24217d8cbcb283f8e12e2e44a518d9697e9fadcaa48c24e31063ecad6a13f3fc7b0caf0dcb8e7c0097bc2613e8f465de5d0be
languageName: node
linkType: hard
@ -12752,9 +12761,9 @@ __metadata:
linkType: hard
"@types/estree@npm:^1.0.0":
version: 1.0.0
resolution: "@types/estree@npm:1.0.0"
checksum: 910d97fb7092c6738d30a7430ae4786a38542023c6302b95d46f49420b797f21619cdde11fa92b338366268795884111c2eb10356e4bd2c8ad5b92941e9e6443
version: 1.0.1
resolution: "@types/estree@npm:1.0.1"
checksum: e9aa175eacb797216fafce4d41e8202c7a75555bc55232dee0f9903d7171f8f19f0ae7d5191bb1a88cb90e65468be508c0df850a9fb81b4433b293a5a749899d
languageName: node
linkType: hard
@ -33737,12 +33746,12 @@ __metadata:
linkType: hard
"react-fast-marquee@npm:^1.3.5":
version: 1.3.5
resolution: "react-fast-marquee@npm:1.3.5"
version: 1.5.0
resolution: "react-fast-marquee@npm:1.5.0"
peerDependencies:
react: ">= 16.8.0 || 18.0.0"
react-dom: ">= 16.8.0 || 18.0.0"
checksum: 95301d63faa858ac0e8c2ab32e1e864ed49d8b36e96216960af0ac797bc30fe11c7747b9c3bed3728f5371e57a93277a064fd433c6f8e1a24a9a32bbf1d354e8
checksum: b159c1f567d24eed00a20c72339e896213b3107d0dd30a24bbcac5a8ae39b23398ff721efdbe63224b5c87ae7997351cac425046dd9d632ebe4b166d466f30fe
languageName: node
linkType: hard