-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeature Engagement & Adoption Dashboard - Amplitude.html
1047 lines (945 loc) · 563 KB
/
Feature Engagement & Adoption Dashboard - Amplitude.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- saved from url=(0072)https://app.amplitude.com/analytics/calm-limit-415616/dashboard/hwdbf37k -->
<html lang="en" class="js-focus-visible wf-ibmplexsans-n1-active wf-ibmplexsans-n2-active wf-ibmplexsans-n3-active wf-ibmplexsans-n4-active wf-ibmplexsans-n5-active wf-ibmplexsans-n6-active wf-ibmplexsans-n7-active wf-ibmplexsans-i1-active wf-ibmplexsans-i5-active wf-ibmplexsans-i3-active wf-ibmplexsans-i6-active wf-ibmplexsans-i2-active wf-ibmplexsans-i4-active wf-active" data-js-focus-visible=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Feature Engagement & Adoption Dashboard - Amplitude</title>
<meta name="viewport" content="width=1248">
<meta name="referrer" content="origin-when-cross-origin">
<style type="text/css">
#root { visibility: hidden; }
@layer reset, baseLayer, variantLayer, tailwind;
</style>
<link rel="mask-icon" href="https://static.amplitude.com/onenav/static/img/mask_icon.svg?v=20230411" color="#007fd2">
<link rel="icon" sizes="64x64" href="https://static.amplitude.com/onenav/static/favicon.svg?v=20230412">
<link rel="icon" sizes="64x64" href="https://static.amplitude.com/onenav/static/favicon.png?v=20230411">
<link rel="apple-touch-icon" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon.png?v=20230411">
<link rel="apple-touch-icon" sizes="57x57" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-57x57.png?v=20230411">
<link rel="apple-touch-icon" sizes="72x72" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-72x72.png?v=20230411">
<link rel="apple-touch-icon" sizes="76x76" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-76x76.png?v=20230411">
<link rel="apple-touch-icon" sizes="114x114" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-114x114.png?v=20230411">
<link rel="apple-touch-icon" sizes="120x120" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-120x120.png?v=20230411">
<link rel="apple-touch-icon" sizes="144x144" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-144x144.png?v=20230411">
<link rel="apple-touch-icon" sizes="152x152" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-152x152.png?v=20230411">
<link rel="apple-touch-icon" sizes="180x180" href="https://static.amplitude.com/onenav/static/img/touch-icons/apple-touch-icon-180x180.png?v=20230411">
<script type="text/javascript" async="" src="./Feature Engagement & Adoption Dashboard - Amplitude_files/gjvo8fgi"></script><script>
(function() {
var params = new URLSearchParams(window.location.search);
if (params.get('reactScan') === 'true') {
var scriptTag = document.createElement('script');
scriptTag.src = '/static/scripts/react-scan.js';
document.currentScript.insertAdjacentElement('afterend', scriptTag);
}
})();
</script>
<script type="importmap">
{
"imports": {}
}
</script>
<!-- eslint-disable -->
<script type="text/javascript">
window.__MAINFRAME__ = true;
window.__ONENAV_VERSION__ = '274db18a17f22c49cef6ec254f89e61b0595f1f1';
window.__DEPLOYMENT__ = 'prod';
window.__ENVIRONMENT__ ='production';
window.__NAMESPACE__ ='';
window.__AMP_ORG__ = {
orgId: "336481" || "",
orgUrl: "calm-limit-415616" || "",
isLoggedIn: true,
user: "[email protected]",
}
window.env = {
"SERVER_FINISH_TIME": 1743038605024,
"NODE_ENV": "production",
"REACT_APP_DASH_HOST": "https://analytics.amplitude.com",
"REACT_APP_SKYLAB_BACKEND_HOST": "https://experiment.amplitude.com",
"REACT_APP_THUNDER_HOST": "https://analytics.amplitude.com",
"REACT_APP_ORBIT_HOST": "https://data-api.amplitude.com",
"REACT_APP_ANALYTICS_HOST": "https://analytics.amplitude.com",
"REACT_APP_ANALYTICS_MANIFEST_PATH": "https://analytics.amplitude.com/onenav-manifest",
"REACT_APP_AUDIENCES_MANIFEST_PATH": "https://audiences.amplitude.com/onenav-manifest",
"REACT_APP_DATA_MANIFEST_PATH": "https://data.amplitude.com",
"REACT_APP_EXPERIMENT_MANIFEST_PATH": "https://experiment.amplitude.com/onenav-manifest",
"REACT_APP_EXPLORER_MANIFEST_PATH": "https://explorer.amplitude.com/onenav-manifest",
"REACT_APP_HELLO_WORLD_MANIFEST_PATH": "https://hello-world.amplitude.com/onenav-manifest"
};
window.__MANIFEST__ = {
"analytics": {
"onenav.tsx": "https://static.amplitude.com/analytics/assets/e-onenav-2dabae36b9a76df9.js",
"onenav.css": "https://static.amplitude.com/analytics/assets/a-onenav-86ef637094987d0d.css"
},
"audiences": {
"index.tsx": "https://static.amplitude.com/cerebro/db86d9d0358eb144444e4f141a07ec649a6a6112/assets/e-index-c6e45833f3df763b.js",
"style.css": "https://static.amplitude.com/cerebro/db86d9d0358eb144444e4f141a07ec649a6a6112/assets/a-index-321a9d41f24e862e.css"
},
"data": {
"index.tsx": "https://data.amplitude.com/assets/e-entrypoint-09f1bf2e9af49d04.js",
"style.css": "https://data.amplitude.com/assets/a-entrypoint-7816ef92ec798007.css"
},
"experiment": {
"index.tsx": "https://static.amplitude.com/skylab/cf1809ea0f191cc0d3871e0c658c112c4c7338ec/assets/e-index-c8bcf126fc595721.js",
"style.css": "https://static.amplitude.com/skylab/cf1809ea0f191cc0d3871e0c658c112c4c7338ec/assets/a-index-d4b5dfbc035fd1c6.css"
},
"explorer": {
"index.tsx": "https://static.amplitude.com/explorer/assets/e-index-c13e175b83c4474a.js",
"style.css": "https://static.amplitude.com/explorer/assets/a-index-22a34200d7f2f0eb.css"
},
"assistance": {
"assistance.tsx": "https://static.amplitude.com/assistance/f70f2e1de182a5557e8629b5b6d6f91cc3712f16/assets/e-assistance-827e9fcf23da4245.js",
"assistance.css": "https://static.amplitude.com/assistance/f70f2e1de182a5557e8629b5b6d6f91cc3712f16/assets/a-assistance-15bda85f99ac103b.css"
},
"onenav": {
"main.tsx": "https://static.amplitude.com/onenav/assets/e-main-c9c4c6c5eb062f26.js",
"main.css": [
"https://static.amplitude.com/onenav/assets/main-a8e11a9c5baafa66.css",
"https://static.amplitude.com/onenav/assets/index-ae8b85d1e0f6f8aa.css",
"https://static.amplitude.com/onenav/assets/style-4e8877a63f8d4df0.css",
"https://static.amplitude.com/onenav/assets/marketing-space-59fb896a5188a0cf.css"
],
"login.tsx": "https://static.amplitude.com/onenav/assets/e-login-f50df4712186602d.js",
"login.css": [
"https://static.amplitude.com/onenav/assets/login-cf0d6c9ba7e0a2e2.css",
"https://static.amplitude.com/onenav/assets/index-ae8b85d1e0f6f8aa.css",
"https://static.amplitude.com/onenav/assets/style-4e8877a63f8d4df0.css",
"https://static.amplitude.com/onenav/assets/configureStore-9b8ffcc26dff20fd.css",
"https://static.amplitude.com/onenav/assets/TextInput-8fc5342b6d312708.css",
"https://static.amplitude.com/onenav/assets/get-cohort-location-5342905df6c3e919.css",
"https://static.amplitude.com/onenav/assets/ModalBodyItem-fb38be0fcb9f2e55.css",
"https://static.amplitude.com/onenav/assets/LegacyTextInput-20e4da644357052c.css",
"https://static.amplitude.com/onenav/assets/Popout-0c1bf61aba93f779.css",
"https://static.amplitude.com/onenav/assets/TextArea-174d9bed1f8214bc.css"
],
"render.tsx": "https://static.amplitude.com/onenav/assets/e-render-26d7c97770a0c63a.js",
"render.css": [
"https://static.amplitude.com/onenav/assets/render-a83181f09990736c.css",
"https://static.amplitude.com/onenav/assets/index-ae8b85d1e0f6f8aa.css",
"https://static.amplitude.com/onenav/assets/style-4e8877a63f8d4df0.css",
"https://static.amplitude.com/onenav/assets/configureStore-9b8ffcc26dff20fd.css",
"https://static.amplitude.com/onenav/assets/marketing-space-59fb896a5188a0cf.css",
"https://static.amplitude.com/onenav/assets/get-cohort-location-5342905df6c3e919.css",
"https://static.amplitude.com/onenav/assets/LegacyTextInput-20e4da644357052c.css",
"https://static.amplitude.com/onenav/assets/PropertySelect-3418585374550590.css",
"https://static.amplitude.com/onenav/assets/use-add-user-achievement-key-f989ead3ea5dc446.css",
"https://static.amplitude.com/onenav/assets/Select-faa35bddb01ad3e7.css",
"https://static.amplitude.com/onenav/assets/Grid-beefbc17640485ec.css",
"https://static.amplitude.com/onenav/assets/OfficialContentIcon-754607bfb3083317.css",
"https://static.amplitude.com/onenav/assets/TextInput-8fc5342b6d312708.css",
"https://static.amplitude.com/onenav/assets/ModalBodyItem-fb38be0fcb9f2e55.css",
"https://static.amplitude.com/onenav/assets/TextArea-174d9bed1f8214bc.css",
"https://static.amplitude.com/onenav/assets/Search-4c606a24cf5b2561.css",
"https://static.amplitude.com/onenav/assets/QuotaProgressBar-85fa7dc381469155.css",
"https://static.amplitude.com/onenav/assets/SecondaryButtonIconOnlySmall-fd2af1edacadaf8c.css",
"https://static.amplitude.com/onenav/assets/Popout-0c1bf61aba93f779.css",
"https://static.amplitude.com/onenav/assets/RichTextEditor-7ad65c9b9a4a5f4a.css",
"https://static.amplitude.com/onenav/assets/OnOffCheckboxInputBase-8a042e737ee551b7.css",
"https://static.amplitude.com/onenav/assets/TokenizedList-37f025d6ba351904.css",
"https://static.amplitude.com/onenav/assets/FormGroup-0f66a48adc8623e9.css",
"https://static.amplitude.com/onenav/assets/Separator-e9ce91e4e7f466cd.css"
]
},
"importMaps": {}
};
window.__AMP_FEATURE_FLAGS__ = {
"amp-guides-surveys-sdk": {
"key": "on",
"value": "on"
},
"amp-v3-nav": {
"key": "on",
"value": "on"
},
"app-redirect-always": {
"key": "on",
"value": "on"
},
"ask-amplitude-2-0": {
"key": "on",
"value": "on"
},
"assistance-ui": {
"key": "on",
"value": "on"
},
"braze-multi-key-cohort-destination": {
"key": "on",
"value": "on"
},
"cerulean-flexbase-fix": {
"key": "on",
"value": "on"
},
"chart-templates": {
"key": "on",
"value": "on"
},
"clear-sdk-cookies": {
"key": "on",
"value": "on"
},
"data-fetcher-orgdata": {
"key": "on",
"value": "on"
},
"data-table-v2": {
"key": "v2-sot-v2-render-double-write",
"value": "v2-sot-v2-render-double-write"
},
"data_source_shopify": {
"key": "on",
"value": "on"
},
"guided-workflow-checklist-dashboard-subscription": {
"key": "treatment",
"value": "treatment"
},
"guided-workflow-checklist-filters": {
"key": "treatment",
"value": "treatment"
},
"microscope-ui-v2": {
"key": "on",
"value": "on"
},
"nudges-callouts-in-home-page": {
"key": "on",
"value": "on"
},
"org-data-cache-on": {
"key": "on",
"value": "on"
},
"org-data-localstorage-cache": {
"key": "on",
"value": "on"
},
"quickstart-v2": {
"key": "treatment",
"value": "treatment"
},
"redirect-to-apps": {
"key": "on",
"value": "on"
},
"session-replay-sdk": {
"key": "on",
"value": "on"
},
"session-replay-sdk-performance": {
"key": "on",
"value": "on"
},
"session-replay-service": {
"key": "on",
"value": "on"
},
"shared-redux-use-context": {
"key": "on",
"value": "on"
},
"use-radix-tooltip": {
"key": "on",
"value": "on"
},
"wna-remove-any-onboarding-bypass": {
"key": "on",
"value": "on"
}
};
</script>
<!-- eslint-enable -->
<script async="" defer="" src="./Feature Engagement & Adoption Dashboard - Amplitude_files/polyfill.min.js.download"></script>
<script type="module" crossorigin="" defer="" src="./Feature Engagement & Adoption Dashboard - Amplitude_files/e-main-c9c4c6c5eb062f26.js.download"></script>
<link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/main-a8e11a9c5baafa66.css">
<link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/index-ae8b85d1e0f6f8aa.css">
<link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/style-4e8877a63f8d4df0.css">
<link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/marketing-space-59fb896a5188a0cf.css">
<link rel="modulepreload" crossorigin="" href="https://static.amplitude.com/analytics/assets/e-onenav-2dabae36b9a76df9.js">
<link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-onenav-86ef637094987d0d.css">
<link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/css" media="all"><script async="" type="module" src="./Feature Engagement & Adoption Dashboard - Amplitude_files/userflow.js.download"></script><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/SetupSDKs-9b08d0a4109535ec.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-e915b497f8bb6483.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/page-globals-67d877608e89ce8a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/style-d72b8e433156b577.js"><link type="text/css" rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-onenav-86ef637094987d0d.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/SyncMainAppId-e4e2cbbf542ba29a.js"><script src="./Feature Engagement & Adoption Dashboard - Amplitude_files/index.min.js.gz" id="engagement-sdk-bundle"></script><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-b1157fa710d52969.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/base-BrE4jft0-eb17101d49d254ee.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LoadHighcharts-f374375ad2e4c85d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-vendor-2ca7ddf34f807a13.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/css" media="all"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-LoadHighcharts-450af2a802aa6fc2.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-actions-562a20781ea9ff39.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartToolbar-9c271ea5614366fc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-window-scroll-breakpoints-d444e196ac8c7bc3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-onenav-e2f109938c225835.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-scroll-breakpoints-a530557221219a92.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AIInlineSuggestion-6c870db45da448f4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AccessDisclosureBadge-bf3b0491da6ad025.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Drawer-8a9037d130c21654.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Drawer-31a22d74405b0856.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AskConversationMessage-a16ce1176c894a0a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AlphaButtonCard-495eebab9ec80880.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-AlphaButtonCard-c790d8911e5af88f.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-AskConversationMessage-839d31cf13951b74.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-ask-opt-in-1efd2e395274a92d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-conversation-actions-466898d9624021c1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ShareButton-41986af05c096f0e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-useTeamSpaceUsers-b5dd30664400f6be.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-current-url-39e1de82a2b7212e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-query-string-4bbb43e5a42e144c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-actions-aee3a39874b29cee.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-shared-link-object-types-5d1216bc2b6d3a9d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-camelCase-a4b8d90ea224854c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-upperFirst-ef9b0c575871a671.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-_createCompounder-661a8368e526e5ee.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Toggle-ec6b1a0714494a5d.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Toggle-62a022011ab98e69.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-org-link-settings-98c41b8454ab0983.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FormGroup-d3720dc4adf724bc.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-FormGroup-0f66a48adc8623e9.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DangerButtonAltIconOnly-9da6e0017d8e944c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FullHr-a4de546b11bf6132.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-TokenizedUserListInput-42bd191353a1ae9d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-TokenizedList-e7a9cc490792c018.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-TokenizedList-37f025d6ba351904.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-TokenizedUserListInput-6d80aad075425815.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SharedInviteLinkTray-31c8bc1c9d50206d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-humanize-duration-c2e918e4fab092b3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-useCanUserEditChart-e38bd7e19293cc80.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-useDashboardAccessPolicy-0a47040ececc3079.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-force-request-on-mount-26d4546f21620362.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-featureWrapper-9b2563169cc17fe7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-location-aceef5cd71ab268b.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ShareButton-a46ea840dd30140d.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ContentLocationField-7690fc142994f90a.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ContentLocationField-2ec922e4a3e286d6.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-StarButtonWithSubscribeConfirmationPopover-acffacb92f39bd1f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-StarButton-037d4eba39217e4c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-StarCheckboxMedium-86bf863cec1a207d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Toolbar-70183f04cf6d4b93.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Toolbar-53f24ceae9527182.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-helpers-31eaec5cd9b93fa2.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-UpgradeModal-53f07bf3734f93df.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-is-journeys-collaboration-1dd3b002a073d6b4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-favorites-76a8608c9fa247fe.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-actions-ff35f88bd5e6ff91.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-manage-monitors-location-b539d399b91214c0.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-is-dac-restricted-520a4e66b18a2bbb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-selectors-a495759fa6ce2731.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartToolbar-89dbca0eefc20e4c.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartHeader-7de1f330124f9df4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ContentIconDropdown-2946a4ab61459e87.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ContentIconDropdown-9b52c9b2f9fbf99b.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ShowMoreContainer-a7f81615cfc6f645.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ContentEditors-51a56302a815dddd.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ObjectAccessDisclosure-16a8ed08baaee66e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartHeader-307e2a2918b6dbdf.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DateRangeAdjust-08e6ffe5ba3baffe.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Legend-6fb9332458e67141.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-RenderLegend-59f0dc125be31b22.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LegendItem-c018681c9ce85800.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-LegendItem-a8ed106552d7dbe0.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-series-511081654dfcd1e4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-series-badge-e53399660ece65db.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-RenderLegend-1291837cc38cf362.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-series-axis-assignments-31acafd3fb82ce90.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-InsightsLegend-dd98cf9b932794eb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-InsightsFeatureFlag-aa472bdfa2a77c0e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-InsightsLegend-cafb6e1262fe96d4.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartRecommendations-a0306de5cad289d1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PrimaryHr-72edf3d0caed6166.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartRecommendations-ef4ccdcbf506c5c7.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartXAxis-381215205790799e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartXAxis-910cf5c248858b0b.css"><style>#engagement-wrapper *,
#engagement-wrapper *:before,
#engagement-wrapper *:after,
.engagement-nudge-modal *,
.engagement-nudge-modal *:before,
.engagement-nudge-modal *:after,
.engagement-nudge-modal-mock *,
.engagement-nudge-modal-mock *:before,
.engagement-nudge-modal-mock *:after {
box-sizing: border-box;
}
.engagement-modal > .rc-dialog > .rc-dialog-content {
background-color: transparent;
}
.engagement-tooltip {
z-index: 2147483647 !important; /*make the tooltip the highest possible z index*/
}
/*** Hack: Hide this because it's less flexible (classnames can't be changes)
Instead we only show its children, by translating its children ***/
.engagement-modal > .rc-dialog > .rc-dialog-content > .rc-dialog-header {
max-height: 0px !important;
padding: 0px !important;
}
.engagement-modal > .rc-dialog {
left: 0px;
transition: left 0.3s;
}
.engagement-modal > .rc-dialog > .rc-dialog-content > .rc-dialog-body {
position: relative !important;
}
/* TestMode inline engagement */
.engagement-modal-inline.rc-dialog-wrap {
position: relative;
height: 100%;
}
#engagement-container > div {
height: 100%;
}
#engagement-home > .rc-dialog-root {
height: 100%;
}
#engagement-wrapper .rc-header-guidance {
background: rgba(174, 177, 221, 1) !important;
filter: brightness(135%);
border-radius: 2px 2px 0px 0px !important;
border-bottom: 0px !important;
padding: 8px 30px 2px 30px !important;
margin: 0px 10px 0px 10px;
box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px !important;
font-weight: 400;
text-align: center;
}
@keyframes fontbulger {
0% {
font-size: 10px;
}
30% {
font-size: 15px;
}
100% {
font-size: 12px;
}
}
@keyframes shimmer {
0% {
background-position: top left;
}
100% {
background-position: top right;
}
}
.engagement-category-collapse {
transform: scale(1, -1);
transition: 0.3s ease-in;
cursor: pointer;
}
.engagement-category-expand {
transition: 0.3s ease-in;
cursor: pointer;
}
/* Nudges - modal */
.engagement-nudge-modal {
display: flex;
align-items: center;
justify-content: center;
z-index: 2147483644 !important;
}
.engagement-nudge-modal-mock {
display: flex;
align-items: center;
justify-content: center;
margin-right: 0;
transition: margin-right cubic-bezier(0.78, 0.14, 0.15, 0.86) 0.3s;
z-index: 2147483644 !important;
}
/* Nudges - media */
.engagement-help-doc-title::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(180deg, transparent 66.67%, gray 93.08%);
content: '';
}
/* Recorder */
#engagement-recorder-mask {
background: transparent;
}
</style><style>/*** Guidance banner styling and animation ***/
@keyframes example {
from {
transform: translateY(0px);
}
to {
transform: translateY(-30px);
}
}
.rc-header-guidance {
animation: example 0.5s;
animation-fill-mode: forwards;
}
/*** engagement entry animation ***/
/*** We can't do exit animation because rc-dialog makes display: none ***/
@keyframes onEntry {
0% {
opacity: 0.3;
}
100% {
opacity: 1;
}
}
.engagement-opened {
animation: onEntry 0.1s;
animation-fill-mode: forwards;
}
@keyframes onSelect {
0% {
transform: translate3d(0px, 0px, 0px);
}
50% {
transform: translate3d(0px, 0px, -0.5px);
}
100% {
transform: translate3d(0px, 0px, 0px);
}
}
.engagement-selected {
animation: onSelect 0.4s;
}
@keyframes ScaleEntry {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
.engagement-scale-entry-animation {
animation: ScaleEntry 0.3s;
animation-fill-mode: forwards;
}
@keyframes onEntry {
0% {
opacity: 0.3;
}
100% {
opacity: 1;
}
}
.engagement-shortcut-tooltip {
opacity: 0;
animation: tagEntry 0.2s;
animation-delay: 0.5s;
animation-fill-mode: forwards;
}
@keyframes tagExit {
from {
transform: scale(1);
opacity: 1;
}
to {
transform: scale(0.8);
opacity: 0;
}
}
.engagement-shortcut-tooltip-remove {
animation: tagExit 0.2s;
animation-fill-mode: forwards;
}
.engagement-shortcut-tooltip,
.engagement-shortcut-tooltip-remove {
z-index: 99999999;
position: absolute;
padding: 8px 12px;
background-color: rgba(0, 0, 0, 0.8);
font-family: proxima-nova, sans-serif;
color: rgba(255, 255, 255, 0.6);
border-radius: 4px;
font-size: 13px;
}
.engagement-shortcut-tooltip-tag {
margin-left: 10px;
padding: 2px 5px;
border-radius: 2px;
background-color: grey;
}
#engagement-launcher {
animation: 0.25s ease-out scaleIn;
}
@keyframes scaleIn {
0% {
transform: scale(0.06);
}
100% {
transform: scale(1);
}
}
@keyframes growFromBottom {
0% {
transform: scale(1, 0.3);
}
100% {
transform: scale(1, 1);
}
}
</style><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/UniversalToolbar-93af254748e46407.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-debounced-resize-observer-e9191d7775c88a3d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index.module-a61d138ec71e85aa.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/PrimaryToggleMedium-860f62056e3b84ca.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/SubtleText-1638e1738ec12218.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/HrBase-64c2e2b7883744f6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/monetization-91f889ae4476a933.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/marketing-space-57a3565048a17230.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/tips-c34787a31a75a2ec.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-show-pricing-modal-from-one-nav-d2c2862af92a6321.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TertiaryButtonAlt-769c2ae250d90bde.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/ToolbarDropdown-07e51186a279a474.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/ToolbarDropdown-68ec80e71057c41a.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/e-core-f28554c8927f43ad.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/LayoutContext-e745b601e7f18d52.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/layout-5aebbc079a25d3a9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-chart-dataset-context-90ad93116b36f4f9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/onenav-c713042f22a9280a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-card-journeys-fcc18eecb23c3088.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-card-pathfinder-66102f29f3807b83.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-segmentation-chart-77273e6eb2f344ac.js"><style data-emotion="css" data-s=""></style><style>.rc-dialog {
position: relative;
width: auto;
margin: 10px;
}
.rc-dialog-wrap {
position: fixed;
overflow: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.rc-dialog-title {
margin: 0;
font-size: 14px;
line-height: 21px;
font-weight: bold;
}
.rc-dialog-content {
position: relative;
background-color: #ffffff;
border: none;
border-radius: 6px 6px;
background-clip: padding-box;
}
.rc-dialog-close {
cursor: pointer;
border: 0;
background: transparent;
font-size: 21px;
position: absolute;
right: 20px;
top: 12px;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
opacity: 0.2;
text-decoration: none;
}
.rc-dialog-close-x:after {
content: '×';
}
.rc-dialog-close:hover {
opacity: 1;
filter: alpha(opacity=100);
text-decoration: none;
}
.rc-dialog-header {
padding: 13px 20px 14px 20px;
border-radius: 5px 5px 0 0;
background: #fff;
color: #666;
border-bottom: 1px solid #e9e9e9;
}
.rc-dialog-body {
padding: 20px;
}
.rc-dialog-footer {
border-top: 1px solid #e9e9e9;
padding: 10px 20px;
text-align: right;
border-radius: 0 0 5px 5px;
}
.rc-dialog-zoom-enter,
.rc-dialog-zoom-appear {
opacity: 0;
animation-duration: 0.3s;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
animation-play-state: paused;
}
.rc-dialog-zoom-leave {
animation-duration: 0.3s;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
animation-play-state: paused;
}
.rc-dialog-zoom-enter.rc-dialog-zoom-enter-active,
.rc-dialog-zoom-appear.rc-dialog-zoom-appear-active {
animation-name: rcDialogZoomIn;
animation-play-state: running;
}
.rc-dialog-zoom-leave.rc-dialog-zoom-leave-active {
animation-name: rcDialogZoomOut;
animation-play-state: running;
}
@keyframes rcDialogZoomIn {
0% {
opacity: 0;
transform: scale(0, 0);
}
100% {
opacity: 1;
transform: scale(1, 1);
}
}
@keyframes rcDialogZoomOut {
0% {
transform: scale(1, 1);
}
100% {
opacity: 0;
transform: scale(0, 0);
}
}
@media (min-width: 768px) {
.rc-dialog {
width: 600px;
margin: 30px auto;
}
}
.rc-dialog-mask {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #373737;
background-color: rgba(55, 55, 55, 0.6);
height: 100%;
filter: alpha(opacity=50);
z-index: 1050;
}
.rc-dialog-mask-hidden {
display: none;
}
.rc-dialog-fade-enter,
.rc-dialog-fade-appear {
opacity: 0;
animation-duration: 0.3s;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
animation-play-state: paused;
}
.rc-dialog-fade-leave {
animation-duration: 0.3s;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
animation-play-state: paused;
}
.rc-dialog-fade-enter.rc-dialog-fade-enter-active,
.rc-dialog-fade-appear.rc-dialog-fade-appear-active {
animation-name: rcDialogFadeIn;
animation-play-state: running;
}
.rc-dialog-fade-leave.rc-dialog-fade-leave-active {
animation-name: rcDialogFadeOut;
animation-play-state: running;
}
@keyframes rcDialogFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes rcDialogFadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-MoreActionsButton-f9e3b942f99631bb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-onenav-d04ffc5b88533df4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-help-articles-80f7eb6d8848df50.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CommentsButton-e03d4a6d2ad1c49a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-data-table-csv-export-518dfb8729cbeabc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DiscoverabilityDropdownItem-766942f2ff27d15a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PaidFeatureLockState-8538c0e830a19095.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-GroupTypeSelect-e20d5191877ade98.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-dynamic-group-properties-84f819e237a100b6.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-MoreActionsButton-1b508df184ff908f.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LazyOnOrgRoute-8c4fbd5f108a846f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-UniversalSidebar-ca4acac9708647e4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-react-spring_web.modern-d4b2fc80ea890ab0.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-UniversalSidebar-a1345a986cd6a071.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CohortsReverseTrialCountdownBanner-ca2ae32477481fd6.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-CohortsReverseTrialCountdownBanner-14f45d19b28b3643.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-NotificationMonitor-599dc75e9be222bf.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-knock-4226b5d03f31c398.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-notifications-v2-408166bd46fb8e02.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-notification-store-34f082218cbbff75.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-notifications-daf0c8e10d857687.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartSwitcherContainer-68a72068ef29f298.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartSwitcher-b8d3a3726372e136.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartSwitcher-558dd04404719cc9.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-accumulated-val-4f2da412c00f59f2.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-latest-callback-8541b947572f191f.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartSwitcherContainer-0bf6ad7d7ae9ab77.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-VerticalChartControls-ae9ddbe1d22d4820.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-drag-x-a698e5e134766b70.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-colors-b6c6002db3ba8af1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-7fbbbf7264bb1486.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AlphaPrimaryButton-09e6bc046d5690b4.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-colors-fd7a468b147da9da.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartPalettePicker-6b2b915938541e3f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SecondaryButtonWide-340a043849aab42c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-window-width-51ae835ce35f8fe0.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-VerticalChartControls-2113d4a420b5b77e.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ControlsOnChart-559b43a4614a38aa.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-EventScheduledActionChartWarning-0c0d080814a6dffb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ResizablePanel-82450923ab096ccb.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ResizablePanel-b2ceb623b9a255e4.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-EventScheduledActionChartWarning-d909317b7690c3e0.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-QueryTimeSamplingControl-803d547a5425373e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-QueryTimeSamplingControl-0ea25876b0c7c1cd.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartTopControlLayout-d505f7bd49a77589.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DataStatus-6a434a30acbc8025.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-DataStatus-3d612f49439d2de3.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-InsightsButton-63396d95badf3e8e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-RadioButtonGroup-bda774ff536c72ca.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Separator-7ddb772a6c7d8ad7.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Separator-e9ce91e4e7f466cd.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-InsightsButton-5e4695381c23199a.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ControlsOnChart-12b502ddf4799e7d.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartTable-71f08c81b244743e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-get-derived-property-display-name-a31d0da9454018ee.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-fetch-event-properties-for-event-85e7493ecbb9b55f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChangeTracker-18bf0d3d831cb9a4.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChangeTracker-6ec9c830d8345f78.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-root-cause-analysis-905d79decd83170d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DefinitionDrivenDatasetContainer-0be79c00d8665bf3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-clusters-actions-fb8cf6e480ae766a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-clusters-7f9142817d187a95.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-selectors-9811cf5735785a5e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartTable-e1768cfb3dc8cd75.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-MicroscopeComparisonPanel-8ee3cb327afd9147.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-event-distribution-0c23e7e578990f6c.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-event-distribution-4fec599bd3f7cb93.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Header-7c0eac6310f6c99f.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Header-37d872f7bcd9dff8.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-MicroscopeComparisonPanel-5e067d5b320b9c78.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-VerticalFunnelControls-95cdcc11e2f83aba.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FunnelChartVisControl-31634a93236bd917.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-VerticalAnalysisBlock-be1b4cee158ba547.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-VerticalAnalysisBlock-611e3fd7b87ede23.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FunnelIntervalSelect-83744c4756f5ebae.js"><link rel="modulepreload" as="script" crossorigin="" href="https://js.userflow.com/es2020/flow-condition-types.v1.D9SWUa-0.js"><link rel="modulepreload" as="script" crossorigin="" href="https://js.userflow.com/es2020/roots.v1.hNKatgg1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FunnelChartControls-0ca591041d1ed547.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-StatisticalSignificanceIndicator-0574860cfd7cc7d8.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-StatisticalSignificanceIndicator-5d18c807d162f8df.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/UniversalToolbarNext-ccdeca9961221095.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TopBarLogo-e26d7782c8c4d579.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/LegacyTextInput-07f05cef11906d38.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/LegacyTextInput-20e4da644357052c.css"><link rel="modulepreload" as="script" crossorigin="" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/e-main-c9c4c6c5eb062f26.js.download"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/get-in-product-pricing-page-path-209e4d83c1028a68.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/BaseOrgLink-ecdb6ff72404847b.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/TopBarLogo-634e2d9043a8ed1c.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-is-assistance-ui-visible-0d5283ebe0286f8d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/get-cohort-location-c4eeda42c3ebcf7a.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/get-cohort-location-5342905df6c3e919.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/StandardText-064af68ea3053b26.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/QuotaProgressBar-9a251c97ccf66117.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/LegacyDropdownAlt-81827be555079b89.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/Popout-68adc31dcf3a8bfc.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/Popout-0c1bf61aba93f779.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/QuotaProgressBar-85fa7dc381469155.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/Select-a179ef1eb64fdd74.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/Search-4286e65db333ad5b.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/clsx.m-84295364606d0739.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/Search-4c606a24cf5b2561.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/Select-faa35bddb01ad3e7.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/UniversalToolbarNext-e033eb4945b36ad7.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartAlertsButton-e7a0a4fdc970d82c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-chart-last-modified-d616d8220bb4f9ad.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-slack-channels-3a1a46592f7e40eb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-slack-connection-status-98275999d550df14.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AlertAnomalySentence-2535e462ca731b54.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-AlertAnomalySentence-37af0ab095e04a6c.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-snakeCase-a31c08e4f7e74674.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-IconSVG-588da41adf15e901.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ConnectToSlackButton-356e6c13dd6ccba7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-slack-connect-butter-bar-params-47608891a9537b85.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-help-doc-urls-6167a5f52137793a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ManualCondition-a9141dcc4b49f16b.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ManualCondition-7b988a3b1bad858e.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LoadableModalBody-d9fa7406e0df7e15.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartAlertsButton-3785500264c89fb8.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartAddToReportDropdown-cb69369d526f08e1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-notebook-rows-452f1547cfa4607f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-rich-text-fb613c578ea1a7ba.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/NavigationSidebar-92b09c1a0bff8e90.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/FullHr-f689482a9c929b23.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-d47db3ae2546e31e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-6ad57ad81ef0ddcf.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/NavigationButton-5f83ed03abbf4835.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/NavigationSidebar-e28cd7222fa292f1.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-GlobalModals-a9ef32633d440123.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-conversational-modal-6b1c6cb81e3fd998.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-query-params-906c96ed7449aa1f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SelectDataSources-a099a2bfb0cb8781.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DataSourceTypeLabel.module-be82928233cce863.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-DataSourceTypeLabel-08a4ae4d5eff69d2.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-SelectDataSources-aaa5fa301df389e6.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-reducer-e671c78d7ab3e773.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-GlobalModals-628701a838292dee.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-GlobalIframeDownloader-1c97cb35f5645b31.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-reducer-8cca0f03fb1a86b4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-BrowserWarningModal-be32de27de011a6a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-d152e4a2fa9bdaa1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/RecentsButton-e26b86c25dd28136.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/OfficialContentIcon-7a02f3efe19fc91d.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/OfficialContentIcon-754607bfb3083317.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/ToolbarDropdownWithSections-8ffdcc0afcf45f26.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/react-sortable-hoc.esm-be8c416c606f82df.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/OnOffCheckboxInputBase-8b4adcd80cfe0278.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/OnOffCheckboxInputBase-8a042e737ee551b7.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/Illustration-c69dce20aa56af0f.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/ToolbarDropdownWithSections-fb70de0797fb16e5.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/workspace-f203918fc83ef4fa.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/get-chart-location-f4d956d6cfdadf14.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/query-15e68e3e1793c83d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/get-experiment-location-289dc65456e1d1d4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/FavoritesButton-c63f15c84f8f6910.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/SpacesButton-5cc7690236063b2d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/get-space-location-d4f20f4731a2ef09.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/immer.esm-5f8ea78844c66351.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/permissions-ed84970b30c3dba7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/get-avatar-url-1feb5b5fa9f0bd88.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TextInput-ae62b82e32dafef0.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/TextInput-8fc5342b6d312708.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/users-8e2fdcfc3df7ea31.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/AvatarGroup-a99d68cb52d406fb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/user-initials-color-hash-9193c060075e4102.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/GlobalSearchNext-18d9818094dcd043.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/ChartTypeIcon-fb487686f3d2c1ee.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/Popover-fa0669776ba56bcd.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/FeatureIcon.types-3ae9fb28a5d61363.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/OverlayArrow-03f312f46f709915.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TertiaryButton-9624142715117300.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/user-agent-b22d342ef8e06bea.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/GlobalSearchNext-c260cad8701ad0af.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-dff02797e8ffce94.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-local-storage-5204853cb4f2c4b6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TeamSetupInviteUsersModal-946864332e413056.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-add-user-achievement-key-677e4f7a0cf39786.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/BrandIcon-304f20199116add8.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/use-add-user-achievement-key-f989ead3ea5dc446.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-is-first-render-38b71c7983179e7b.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TextArea-1d8fe13947f80982.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/TextArea-174d9bed1f8214bc.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TokenizedList-53eb2d73192ed683.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/TokenizedList-37f025d6ba351904.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/SharedInviteLinkTray-0f6db6b33728e86d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/humanize-duration-0917f21bc83f1807.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/modal-state-a2922ab3db44bff3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/Grid-254bf853fee91f1d.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/Grid-beefbc17640485ec.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/TeamSetupInviteUsersModal-29e8720d4efe6886.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/index-cf90d266eab5e956.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/NotificationsButton-f2bab5d8a1cc5129.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/NotificationsButton-0f49e4d5d57f0920.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/UniversalToolbarRightIconLinks-8f4d2d9028e35200.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/UserButton-1a557ab0d7710074.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/notification-tags-006a59900c4b360e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/CardContent-fb72a12237f3807d.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/UserButton-fedbed91693f63b3.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/UniversalToolbarPricingIconLink-29495c5a265464bc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LazyBreakdownTable-38322972d99b2143.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index.esm-49f651f0916864f6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-main.esm-92b8f7100c96c42b.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-main.esm-420f0627e5d2fc49.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-main.esm-d1165eeb946c05ed.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-main.esm-bf642fa26d89f32f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-breakdown-table-56806c4e8b7aab33.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-RenderBreakdownTableHeader-f90dc05897469211.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SortIcon-38942784273e56a1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-downloads-49fdefbb657658b0.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-LazyBreakdownTable-f03f2e8337fa6546.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-data-table-v2-32b8c0967d09b472.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PersonalSpaceRoute-361a677d9f8125de.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FeatureFlagRedirect-8a299b1646091cfa.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ErrorState-d67688328c652c05.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ObjectNameAndIcon-a3a0520ac26f2370.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ContentLocationShortcutIcon-e05d0cbd7cc709a0.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ContentLocationShortcutIcon-d933e033ce1f3edf.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CohortLink-8de3e62beec4be5f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-NavigationButton-af170a0593257262.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CreateSpaceModal-3789f7fa6071bfcd.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-users-cb1d411728531321.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-QuotaModalBodyItem.css-72b6ce5af5e506dc.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-QuotaModalBodyItem-3c1a24c7b8c42768.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-RichTextEditor-1cd7874ddf9820bc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-bdc334e8c6857790.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-RichTextEditor-7ad65c9b9a4a5f4a.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-useJoinTeamSpace-43b428f6c2dcb62e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-request-notification-ba375847d113e4e3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CardBeta-9ad06a7563f2b425.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-card-3b58c3d172858707.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-UserIdAvatarGroup-cde64ca26e30c87d.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-CardBeta-5571fc7ac5715a6a.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-NoMetadataObjectCard-b606dcb62bdade94.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartBody-09effcb9d8c0db57.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-intersection-observer-ecea2b028c778864.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartWithLegend-b1ad97313d380a81.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-MiniLegend-f59c763d07e72051.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-MiniLegend-b2e4eb85d6590522.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-limax-754d54449b8eb8b0.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-reached-exposure-target-0f4afb90c5ab829c.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartWithLegend-bdbc1a68e9ca0154.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DataTableChartCardPlaceholder-bea23db145d594de.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-DataTableChartCardPlaceholder-e46f8aa2d9fae973.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-NoMetadataObjectCard-944fdbe619f472c7.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartTypeDescription-1f54bf656d8546fa.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-chart-type-description-a3dd439dcd24d790.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ContentFilterSelect-c95a78e42d8c18fc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-BaseUnisearchSearchResult-0676c8cc2eca51b7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SearchResultLink-23cf34ecc957d1f7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-nudge-location-64127f3cbd976646.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-BaseUnisearchSearchResult-26b1e926485cb19e.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-UnisearchResults-cf3f3cfec05f63fe.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PrimaryButtonWide-775ce97b4e2db9d9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-EmptySearchState-1bfeb32fadda2bf4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-window-dimensions-5233d0586fc2fa75.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ErrorState-16d589d1ed30f696.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DashboardViewContainer-0e19cdd3a454b2b5.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartGrid-5d8f8b4d0da014cf.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SessionReplayPlayerGridItem-bdf2a717e0ea2e3f.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-on-screen-eaf63e19f2128e8a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-FunnelStepsLabel-d112966b1da13678.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ValueTracker-9daaa9ae8257923b.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ValueTracker-e6340e3e72444065.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SessionReplayPlayerCard-e93ee3b153d478e4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LoadingIndicator-f2218f8061dd8159.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-LoadingIndicator-21908a7ca981b334.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SessionReplayPlayer-e781339274882ae7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-unpack-ade01c2602fd53ee.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-session-replay-f01c7ad74dc05f34.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-SessionReplayPlayer-65b6be9383f689e1.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-SessionReplayPlayerCard-85af37ea9ceaed7c.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-SessionReplayPlayerGridItem-36ffae098706dff3.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-difference-913f191ec4a1e684.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-DragDropGrid-61db0660302782ae.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-DragDropGrid-56a344dc6e621841.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-MultiDatasetLoader-c05128aef529c03a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartHeadline-74986f0e8873bf62.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartHeadline-803cab6d366327b1.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartGridItemCohortHeader-80e788d090083a4a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AppLabel-bfdc4ba94b3cd8a3.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartGridItemCohortHeader-2f9a997521fcb594.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Title-2657352397c58173.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Title-0ba413d62bd5f1aa.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-dataset-loading-14ae229c2f9273a8.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ConsolidatedPropertyValueSelect-86dbdd6ef15a2203.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ValueSelectMenu-50e78bae90d36c10.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ConsolidatedPropertyValueSelect-3bf1f3b2c5c9e095.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-OperatorSelectMenu-a57ceba465fdd02d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartTable-01c00ac1af7e45f5.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-onboarding-709f3fba06bba5fd.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-first-time-chart-events-600eedfbda6c27a4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-InsightGridCardMoreDropdown-124ea0faa0d7144a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PulsingBlueDot-8801cec26788576e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-PulsingBlueDot-a698a35d141fe4c5.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SessionReplayTable-bacd02d4fadbb755.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-fdedfb74bc82fc7a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-9c99ed51624bf6c6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-session-replay-view-0ee0194d32d902a0.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-fetch-session-replay-list-7c6ddf53b4eb0325.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-format-time-for-event-logs-52cf56e26a2bf989.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-geo-location-b110462830a3a822.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-empty-state-viewed-9e28b419e5efd15c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-InviteWizard-6f8a15e782499e12.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Wizard-e202119def21948a.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Wizard-88d609c2d7e93220.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-get-org-onboarding-preferences-c4644118c672b6c4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-UserOrgTeamSelect-0771968e33608e4e.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-org-teams-c6179fbf56b546b4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-actions-36125980cfb62592.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-TeamSpaceSelect-15318a2a174cbb0d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-RoleSelect-8375f8d869c7ae49.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-InviteWizard-3db66ec652e4c73d.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CodeSnippet-357379e7f58018f1.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-CodeSnippet-e664f2513c5baeec.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SnippetConfigLineItem-b82ca450999b3897.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-hooks-33432caa82ad3a28.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SessionReplayUpsellCard-cd368115992e19b3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Button-1e7a2a2e9ab057ad.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-716eb6f8320ced8c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Popover-f6acb0afec9106f3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-filters-bc2d651194eeaad2.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-utils-eaf1c9405e35b813.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-SessionReplayTable-ef516c44db7adfa5.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartTable-56e556be4119da21.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-get-target-metric-progress-percent-52affb9bc6b30ec7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CohortBody-157e269a4c7b42b6.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-CohortBody-e80fada5af6d036c.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-utils-f4e5b47849a29b88.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartGrid-f7377d2f341d6111.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Comments-2349132a1e24acdb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-356e7789f12eab80.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-selectors-d2b23e0f3c3a162a.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-Comments-fff71b2c0523b496.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LastEditedTime-40639b2050e626d4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ArchivedReportBody-0d28b03d6469fcdc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SettingsSelectorCard-35f0258235760456.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-SettingsSelectorCard-9462a56a1e890804.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-get-dashboard-page-46e26627dc244b74.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-omitBy-28216e84af15893d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-templates-dfc4eb3847ffe8f9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-templates-94a028bc50618250.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-recents-295d32880f0c1b70.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-use-get-dashboard-page-cc8f411213fcaa7d.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-SaveAsModal-4aa2a47227b02e23.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ReportLimitQuotaModalBodyItem-c633f98c9779805c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-actions-ec4f6b7331a8bad6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-get-template-gallery-location-677124a3748456ec.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AddItemsDrawer-e739e9ff2125e102.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-BaseUnisearchFilters-6f9d1f440717c0da.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-BaseTokenizedTeamSpaceListInput-8a98bc9151c44a2a.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-BaseTokenizedTeamSpaceListInput-0d33edbb44d53ebd.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-BaseUnisearchFilters-34fd4bce0d224f6a.css"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-AddItemsDrawer-6d1a0d012fcf4de4.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-StarterTemplateCard-c7176b7152c213f1.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-StarterTemplateCard-9b272cc32f4e27a5.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-on-demand-request-33f1db1708480813.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-use-on-page-leave-f7f89a798c05e6b5.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-DashboardViewContainer-4b51b459ea69c154.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-dashboard-empty-new-385a249bcb4696ed.js"><style data-tiptap-style="">.ProseMirror {
position: relative;
}
.ProseMirror {
word-wrap: break-word;
white-space: pre-wrap;
white-space: break-spaces;
-webkit-font-variant-ligatures: none;
font-variant-ligatures: none;
font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */
}
.ProseMirror [contenteditable="false"] {
white-space: normal;
}
.ProseMirror [contenteditable="false"] [contenteditable="true"] {
white-space: pre-wrap;
}
.ProseMirror pre {
white-space: pre-wrap;
}
img.ProseMirror-separator {
display: inline !important;
border: none !important;
margin: 0 !important;
width: 1px !important;
height: 1px !important;
}
.ProseMirror-gapcursor {
display: none;
pointer-events: none;
position: absolute;
margin: 0;
}
.ProseMirror-gapcursor:after {
content: "";
display: block;
position: absolute;
top: -2px;
width: 20px;
border-top: 1px solid black;
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
}
@keyframes ProseMirror-cursor-blink {
to {
visibility: hidden;
}
}
.ProseMirror-hideselection *::selection {
background: transparent;
}
.ProseMirror-hideselection *::-moz-selection {
background: transparent;
}
.ProseMirror-hideselection * {
caret-color: transparent;
}
.ProseMirror-focused .ProseMirror-gapcursor {
display: block;
}
.tippy-box[data-animation=fade][data-state=hidden] {
opacity: 0
}</style><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-GroupByVis-3fc7aedbae62d481.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-BoschContainer-dc6978e14d3ac30e.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-GroupByVis-3b23b011ea48caf3.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-KPIView-f6fa4cf3d34a0370.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-KPIView-34490ff68802b331.css"><style id="detectElementResize" type="text/css">@keyframes resizeanim { from { opacity: 0; } to { opacity: 0; } } .resize-triggers { animation: 1ms resizeanim; visibility: hidden; opacity: 0; } .resize-triggers, .resize-triggers > div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; z-index: -1; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }</style><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-ChartTakeawayPanelV2-6560bc5e6e083840.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-ChartTakeawayPanelV2-7a5625cf0ddba593.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-AnnotationsBelowChart-2a4bd61962249743.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-index-00891a2bcd30ed41.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-AnnotationsBelowChart-5d1cf93b127d8d15.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-VerticalUserCompositionControls-de8a8d002ff73c7c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-CompositionChartControls-d0cdba89aab7cf7d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PricingModal-7ad32f5a1e644b74.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PlusIntervalToggle-98735359c05b26fb.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-PlusIntervalToggle-220a46d70cf48081.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-modal-header-multicolored-9a4d718662dd1e30.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-Confetti-651034ceb0cbbfd5.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-PrimaryButtonLargeWide-f240f02be55e8fb6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-LoadingBars-834b839faa147b38.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-sendSlackNotif-5cabcaccdb5ac52b.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/analytics/assets/c-hooks-4c8ea565a3a15062.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/a-PricingModal-37582c7eebea7bcc.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/UsageMini-8ecda729540142a3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/AlphaSecondaryButton-782e5aa29e3f74b6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/RenderPricingModal-b30013f2aaad0958.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/TertiaryButtonIconOnly-0a97f349ebb349da.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/ModalBodyItem-9bbe07344840d770.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/ModalBodyItem-fb38be0fcb9f2e55.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/SecondaryButtonWide-05db90c30bfa21c6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/PrimaryButtonWide-3d3de69dbfa191d2.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/modal-header-multicolored-a8446a505d1571c6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/PlusPlanTrialSuccessIllustration-0b3b1e3b870e8ef9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-92837550116c9763.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/index-743bf33da07eb068.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/PrimaryButtonLargeWide-306b45e50ae93173.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/IllustrationImg-1e6ef11806a6044c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/PrimaryButtonLarge-d798af925323cc49.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/AlphaPrimaryButton-59bfd857e807e668.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/RenderPricingModal-cba7554c1b5e2242.css"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/keyBy-16f48f7951f19862.js"><link rel="modulepreload" as="script" crossorigin="" href="https://static.amplitude.com/onenav/assets/use-org-foundation-entitlement-current-period-usage-83358e3ce365f268.js"><link rel="stylesheet" href="./Feature Engagement & Adoption Dashboard - Amplitude_files/UsageMini-49b4b5fffd3ce874.css"></head>
<body data-theme="amplitude" class="themes_amplitudeTheme__1u18oam2 themes_coreAmplitudeTheme__1u18oam0" style=""><iframe src="./Feature Engagement & Adoption Dashboard - Amplitude_files/saved_resource.html" title="iframe downloader" style="display: none;"></iframe>
<div id="root" style="display: flex; flex-grow: 1; flex-direction: column"><div class="omain-containeroY1Ixw28" data-testid="orgplan-starter_v3"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" id="icon-svg-provider" style="width: 0px; height: 0px; position: absolute;"><symbol id="icon-2-lines-chart" viewBox="0 0 24 24"><path fill="currentColor" d="M21 5.47 12 12 7.62 7.62 3 11V8.52L7.83 5l4.38 4.38L21 3zM21 15h-4.7l-4.17 3.34L6 12.41l-3 2.13V17l2.8-2 6.2 6 5-4h4z"></path></symbol><symbol id="icon-API" viewBox="0 0 24 24"><path fill="currentColor" d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96M19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3"></path></symbol><symbol id="icon-academy" viewBox="0 0 24 24"><path fill="currentColor" d="m12 21-7-3.8v-6L1 9l11-6 11 6v8h-2v-6.9l-2 1.1v6zm0-8.3L18.85 9 12 5.3 5.15 9zm0 6.025 5-2.7V12.25L12 15l-5-2.75v3.775z"></path></symbol><symbol id="icon-activity" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v14H5V5zm-7 2H6v2h6zm0 8v2h6v-2zm3-4v2H9v-2z" clip-rule="evenodd"></path></symbol><symbol id="icon-add-reaction" viewBox="0 -960 960 960"><path d="M480-80q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880q43 0 83 8.5t77 24.5v90q-35-20-75.5-31.5T480-800q-133 0-226.5 93.5T160-480t93.5 226.5T480-160t226.5-93.5T800-480q0-32-6.5-62T776-600h86q9 29 13.5 58.5T880-480q0 83-31.5 156T763-197t-127 85.5T480-80m320-600v-80h-80v-80h80v-80h80v80h80v80h-80v80zM620-520q25 0 42.5-17.5T680-580t-17.5-42.5T620-640t-42.5 17.5T560-580t17.5 42.5T620-520m-280 0q25 0 42.5-17.5T400-580t-17.5-42.5T340-640t-42.5 17.5T280-580t17.5 42.5T340-520m140 260q68 0 123.5-38.5T684-400H276q25 63 80.5 101.5T480-260"></path></symbol><symbol id="icon-add-solid" viewBox="0 0 24 24"><g clip-path="url(#a81f__a)"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m5 11h-4v4h-2v-4H7v-2h4V7h2v4h4z"></path></g><defs><clippath id="a81f__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="icon-add" viewBox="0 0 24 24"><path fill="currentColor" d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8"></path></symbol><symbol id="icon-amplitude" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M11.017 7.474c.123.18.337.585.654 1.49.217.618.453 1.384.703 2.277a732 732 0 0 0-2.838-.033l-.47-.005c.531-1.952 1.18-3.432 1.654-3.782a.26.26 0 0 1 .129-.04q.093 0 .168.093m7.455 4.742-.002.002-.03.022-.01.007-.04.024h-.002a.5.5 0 0 1-.221.056h-4.263q.051.214.111.479c.234 1.014.855 3.71 1.514 3.71h.033c.515 0 .778-.75 1.354-2.39l.007-.02c.092-.264.197-.561.31-.876l.029-.08a.206.206 0 0 1 .39.133l-.023.08c-.06.196-.124.462-.198.77-.344 1.431-.862 3.593-2.193 3.593h-.01c-.86-.007-1.374-1.39-1.594-1.98-.411-1.104-.722-2.28-1.022-3.42H8.688l-.815 2.623-.012-.01a.414.414 0 0 1-.763-.221v-.014l.05-.297c.112-.674.247-1.373.4-2.08H5.892l-.006-.007a.63.63 0 0 1-.021-1.239c.027-.003.082-.008.194-.008h.08c.526.01 1.083.018 1.694.026.865-3.535 1.867-5.329 2.978-5.334 1.193 0 2.077 2.73 2.785 5.402l.003.01c1.455.03 3.006.073 4.513.181l.063.006q.036 0 .071.007h.01l.007.002.004.001a.481.481 0 0 1 .206.842M12 3c-4.97 0-9 4.052-9 9.051s4.03 9.052 9 9.052 9-4.053 9-9.052S16.97 3 12 3" clip-rule="evenodd"></path></symbol><symbol id="icon-analytics" viewBox="0 0 24 24"><path fill="currentColor" d="m3 19.191 6.75-6.759 3.6 3.6 6.381-6.273L21 11.03l-7.65 7.703-3.6-3.6-5.4 5.41z"></path><path fill="currentColor" d="m15.6 3 2.061 2.061-4.392 4.392-3.6-3.6L3 12.531 4.269 13.8l5.4-5.4 3.6 3.6 5.67-5.661L21 8.4V3z"></path></symbol><symbol id="icon-angry" viewBox="0 0 24 24"><path fill="currentColor" d="M12 22a9.7 9.7 0 0 1-3.9-.787 10.1 10.1 0 0 1-3.175-2.138q-1.35-1.35-2.138-3.175A9.7 9.7 0 0 1 2 12a9.7 9.7 0 0 1 .787-3.9 10.1 10.1 0 0 1 2.138-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2a9.7 9.7 0 0 1 3.9.788 10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.138 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.787 3.9 10.1 10.1 0 0 1-2.138 3.175q-1.35 1.35-3.175 2.138A9.7 9.7 0 0 1 12 22m0-2q3.325 0 5.663-2.337T20 12q0-3.325-2.337-5.662Q15.325 4 12 4T6.338 6.338 4 12t2.338 5.663Q8.675 20 12 20m1.5-9.1.5-.3q.05.6.475 1t1.025.4a1.45 1.45 0 0 0 1.063-.437A1.45 1.45 0 0 0 17 10.5q0-.375-.175-.712a1.4 1.4 0 0 0-.475-.538l.65-.375L16.5 8 13 10zm-3 0 .5-.9-3.5-2-.5.875.65.375q-.3.2-.475.538A1.5 1.5 0 0 0 7 10.5q0 .625.438 1.063Q7.875 12 8.5 12q.6 0 1.025-.4t.475-1zM12 13a4.7 4.7 0 0 0-3.125 1.138A6.08 6.08 0 0 0 6.975 17h10.05a6.08 6.08 0 0 0-1.9-2.862A4.7 4.7 0 0 0 12 13"></path></symbol><symbol id="icon-apps" viewBox="0 0 24 24"><path fill="currentColor" d="M4 8h4V4H4zm6 12h4v-4h-4zm-6 0h4v-4H4zm0-6h4v-4H4zm6 0h4v-4h-4zm6-10v4h4V4zm-6 4h4V4h-4zm6 6h4v-4h-4zm0 6h4v-4h-4z"></path></symbol><symbol id="icon-archive" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M4 2.5h16c1 0 2 .9 2 2v2.01c0 .72-.43 1.34-1 1.69v11.3c0 1.1-1.1 2-2 2H5c-.9 0-2-.9-2-2V8.2c-.57-.35-1-.97-1-1.69V4.5c0-1.1 1-2 2-2m1 6v11h14v-11zm-1-2h16v-2H4zm9.41 7L15 15.09l-1.41 1.41L12 14.91l-1.59 1.59L9 15.09l1.59-1.59L9 11.91l1.41-1.41L12 12.09l1.59-1.59L15 11.91z" clip-rule="evenodd"></path></symbol><symbol id="icon-arrow-circle" viewBox="0 0 24 24"><path fill="currentColor" d="M4 12c0-4.41 3.59-8 8-8s8 3.59 8 8-3.59 8-8 8-8-3.59-8-8m-2 0c0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2 2 6.48 2 12m10-1H8v2h4v3l4-4-4-4z"></path></symbol><symbol id="icon-arrow-left" viewBox="0 0 24 24"><path fill="currentColor" d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20z"></path></symbol><symbol id="icon-arrow-right" viewBox="0 0 24 24"><path fill="currentColor" d="m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"></path></symbol><symbol id="icon-assistance-compass" viewBox="0 0 24 24"><path fill="currentColor" d="m7.5 16.5 7-2 2-7-7 2zm4.5-3q-.625 0-1.062-.437A1.45 1.45 0 0 1 10.5 12q0-.625.438-1.062A1.45 1.45 0 0 1 12 10.5q.624 0 1.063.438.437.437.437 1.062 0 .624-.437 1.063A1.45 1.45 0 0 1 12 13.5m0 8.5a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m0-2q3.325 0 5.663-2.337T20 12t-2.337-5.662T12 4 6.338 6.338 4 12t2.338 5.663T12 20"></path></symbol><symbol id="icon-assistance-guide" viewBox="0 0 24 24"><path fill="currentColor" d="M19 21q-.975 0-1.75-.562A2.9 2.9 0 0 1 16.175 19H11q-1.65 0-2.825-1.175T7 15t1.175-2.825T11 11h2q.825 0 1.412-.588Q15 9.826 15 9t-.588-1.412A1.93 1.93 0 0 0 13 7H7.825a3.1 3.1 0 0 1-1.088 1.438A2.85 2.85 0 0 1 5 9a2.9 2.9 0 0 1-2.125-.875A2.9 2.9 0 0 1 2 6q0-1.25.875-2.125A2.9 2.9 0 0 1 5 3q.976 0 1.737.563Q7.5 4.125 7.826 5H13q1.65 0 2.825 1.175T17 9t-1.175 2.825T13 13h-2q-.825 0-1.412.588A1.93 1.93 0 0 0 9 15q0 .824.588 1.413Q10.175 17 11 17h5.175a3.1 3.1 0 0 1 1.087-1.437A2.85 2.85 0 0 1 19 15q1.25 0 2.125.875T22 18t-.875 2.125A2.9 2.9 0 0 1 19 21M5 7q.424 0 .713-.287A.97.97 0 0 0 6 6a.97.97 0 0 0-.287-.713A.97.97 0 0 0 5 5a.97.97 0 0 0-.713.287A.97.97 0 0 0 4 6q0 .424.287.713Q4.576 7 5 7"></path></symbol><symbol id="icon-assistance-survey" viewBox="0 0 24 24"><path fill="currentColor" d="M6 14h8v-2H6zm0-3h12V9H6zm0-3h12V6H6zM2 22V4q0-.824.587-1.412A1.93 1.93 0 0 1 4 2h16q.824 0 1.413.587Q22 3.176 22 4v12q0 .824-.587 1.413A1.93 1.93 0 0 1 20 18H6zm3.15-6H20V4H4v13.125z"></path></symbol><symbol id="icon-asterisk" viewBox="0 0 24 24"><path fill="currentColor" d="m10.669 16.8 1.371-2.388 1.372 2.388 2.097-1.21-1.371-2.388h2.743v-2.42h-2.743l1.371-2.372-2.097-1.21-1.372 2.372L10.67 7.2 8.57 8.41l1.372 2.372H7.2v2.42h2.743L8.57 15.59z"></path></symbol><symbol id="icon-audiences" viewBox="0 0 24 24"><path fill="currentColor" d="M4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58A2.01 2.01 0 0 0 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29M20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4 3.43c0-.81-.48-1.53-1.22-1.85A6.95 6.95 0 0 0 20 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24zm-7.76-2.78c-1.17-.52-2.61-.9-4.24-.9s-3.07.39-4.24.9A2.99 2.99 0 0 0 6 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74M8.07 16c.09-.23.13-.39.91-.69a8.3 8.3 0 0 1 3.02-.56c1.03 0 2.05.18 3.02.56.77.3.81.46.91.69zM12 7.5c1 0 1.5.862 1.5 1.5 0 1-.838 1.5-1.5 1.5-1 0-1.5-.737-1.5-1.5S11 7.5 12 7.5M12 6c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"></path></symbol><symbol id="icon-bar-chart" viewBox="0 0 24 24"><path fill="currentColor" d="M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z"></path></symbol><symbol id="icon-bell" viewBox="0 0 24 24"><path fill="currentColor" d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2m6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5z"></path></symbol><symbol id="icon-block" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2M4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9A7.9 7.9 0 0 1 4 12m8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1A7.9 7.9 0 0 1 20 12c0 4.42-3.58 8-8 8"></path></symbol><symbol id="icon-branch" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M10.042 5.021c0 1.4-.897 2.594-2.147 3.037v5.837l8.203-1.81a.5.5 0 0 0 .392-.48l.023-1.39a3.23 3.23 0 0 1-2.176-3.047 3.225 3.225 0 0 1 3.22-3.22 3.225 3.225 0 0 1 3.222 3.22c0 1.4-.898 2.594-2.147 3.038v3.007a.5.5 0 0 1-.388.487L8.12 16.032a3.23 3.23 0 0 1 1.921 2.947A3.225 3.225 0 0 1 6.821 22.2 3.225 3.225 0 0 1 3.6 18.979c0-1.4.897-2.594 2.147-3.037V8.058A3.23 3.23 0 0 1 3.6 5.021 3.225 3.225 0 0 1 6.821 1.8a3.225 3.225 0 0 1 3.221 3.221m-3.221-1.38c.764 0 1.38.616 1.38 1.38s-.616 1.38-1.38 1.38-1.38-.616-1.38-1.38.616-1.38 1.38-1.38m0 13.958c.764 0 1.38.616 1.38 1.38s-.616 1.38-1.38 1.38-1.38-.616-1.38-1.38.616-1.38 1.38-1.38m12.117-10.43c0-.764-.616-1.381-1.38-1.381s-1.38.617-1.38 1.38c0 .764.616 1.38 1.38 1.38s1.38-.616 1.38-1.38" clip-rule="evenodd"></path></symbol><symbol id="icon-building" viewBox="0 0 24 24"><path fill="currentColor" d="M2.4 21.6V6.667h4.267V2.4h10.666v8.533H21.6V21.6h-8.533v-4.267h-2.134V21.6zm2.133-2.133h2.134v-2.134H4.533zm0-4.267h2.134v-2.133H4.533zm0-4.267h2.134V8.8H4.533zM8.8 15.2h2.133v-2.133H8.8zm0-4.267h2.133V8.8H8.8zm0-4.266h2.133V4.533H8.8zm4.267 8.533H15.2v-2.133h-2.133zm0-4.267H15.2V8.8h-2.133zm0-4.266H15.2V4.533h-2.133zm4.266 12.8h2.134v-2.134h-2.134zm0-4.267h2.134v-2.133h-2.134z"></path></symbol><symbol id="icon-calendar" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V9h14zm0-12H5V5h14zM7 11h5v5H7z"></path></symbol><symbol id="icon-caret-down" viewBox="0 0 24 24"><path fill="currentColor" d="m7 10 5 5 5-5z"></path></symbol><symbol id="icon-caret-up" viewBox="0 0 24 24"><path fill="currentColor" d="m7 14 5-5 5 5z"></path></symbol><symbol id="icon-category" viewBox="0 0 24 24"><path fill="currentColor" d="m12 2-5.5 9h11zm0 3.84L13.93 9h-3.87zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5m0 7a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M3 21.5h8v-8H3zm2-6h4v4H5z"></path></symbol><symbol id="icon-chart-control-collapse" viewBox="0 0 20 20"><path fill="currentColor" d="M4.25 13.75c0 .414.336.75.75.75h8.25a.75.75 0 0 0 0-1.5H5a.75.75 0 0 0-.75.75m0-3.75c0 .414.336.75.75.75h6a.75.75 0 0 0 0-1.5H5a.75.75 0 0 0-.75.75M5 5.5A.75.75 0 0 0 5 7h8.25a.75.75 0 0 0 0-1.5zm12.222 7.72a.75.75 0 0 0 0-1.057l-1.453-1.457a1 1 0 0 1 0-1.412l1.453-1.457a.748.748 0 0 0-1.059-1.057L13.65 9.292a1 1 0 0 0 0 1.414l2.513 2.514a.75.75 0 0 0 1.059 0"></path></symbol><symbol id="icon-chart-control-expand" viewBox="0 0 20 20"><path fill="currentColor" d="M17.75 6.25A.75.75 0 0 0 17 5.5H8.75a.75.75 0 0 0 0 1.5H17a.75.75 0 0 0 .75-.75m0 3.75a.75.75 0 0 0-.75-.75h-6a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 .75-.75M17 14.5a.75.75 0 0 0 0-1.5H8.75a.75.75 0 0 0 0 1.5zM4.778 6.78a.75.75 0 0 0 0 1.057L6.23 9.294a1 1 0 0 1 0 1.412l-1.453 1.457a.748.748 0 0 0 1.059 1.058l2.513-2.514a1 1 0 0 0 0-1.414L5.837 6.779a.75.75 0 0 0-1.059 0"></path></symbol><symbol id="icon-chart" viewBox="0 0 24 24"><path fill="currentColor" d="M9 17H7v-7h2zm4 0h-2V7h2zm4 0h-2v-4h2zm2.5 2.1h-15V5h15zm0-16.1h-15c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"></path></symbol><symbol id="icon-check-badge-solid" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M20.586 9.7 22 12l-1.414 2.3.074 2.7-2.375 1.285L17 20.66l-2.7-.074L12 22l-2.3-1.414-2.7.074-1.286-2.375L3.34 17l.074-2.7L2 12l1.414-2.3L3.34 7l2.375-1.285L7 3.34l2.7.074L12 2l2.3 1.414L17 3.34l1.285 2.375L20.66 7zM10.08 14.09 16.17 8l1.41 1.41-7.49 7.5L6 12.82l1.41-1.41z" clip-rule="evenodd"></path></symbol><symbol id="icon-check-badge" viewBox="0 0 24 24"><path fill="currentColor" d="m22 12-1.414-2.3.074-2.7-2.375-1.285L17 3.34l-2.7.074L12 2 9.7 3.414 7 3.34 5.715 5.715 3.34 7l.074 2.7L2 12l1.414 2.3L3.34 17l2.374 1.285L7 20.66l2.7-.074L12 22l2.3-1.414 2.7.074 1.285-2.375L20.66 17l-.074-2.7zm-2.525 2.331.056 2.017-1.774.96-.291.158-.158.29-.96 1.775-2.017-.056-.33-.009-.282.173L12 20.696l-1.719-1.057-.281-.173-.331.01-2.017.055-.96-1.774-.158-.291-.29-.158-1.775-.96.056-2.017.009-.33-.173-.282L3.304 12l1.056-1.719.174-.282-.01-.33-.055-2.017 1.774-.96.291-.158.158-.29.96-1.775L10 4.534l.282-.173L12 3.304l1.719 1.057.282.173 2.347-.065.96 1.774.157.291.291.158 1.775.96-.056 2.016-.009.331.173.282L20.696 12l-1.056 1.719-.174.282z"></path><path fill="currentColor" d="m16.17 8-6.09 6.09-2.67-2.68L6 12.82l4.09 4.09 7.49-7.5z"></path></symbol><symbol id="icon-check-indeterminate" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="square" stroke-width="2" d="M7.5 12h9"></path></symbol><symbol id="icon-check" viewBox="0 0 24 24"><path fill="currentColor" d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"></path></symbol><symbol id="icon-chevron-down" viewBox="0 0 24 24"><path fill="currentColor" d="m12.3 12.76 4.36-4.36L18 9.74l-5.7 5.7-5.7-5.7L7.94 8.4z"></path></symbol><symbol id="icon-chevron-left" viewBox="0 0 24 24"><path fill="currentColor" d="m11.24 11.7 4.36-4.36L14.26 6l-5.7 5.7 5.7 5.7 1.34-1.34z"></path></symbol><symbol id="icon-chevron-right" viewBox="0 0 24 24"><path fill="currentColor" d="M12.76 11.7 8.4 7.34 9.74 6l5.7 5.7-5.7 5.7-1.34-1.34z"></path></symbol><symbol id="icon-chevron-up" viewBox="0 0 24 24"><path fill="currentColor" d="m12.3 11.24 4.36 4.36L18 14.26l-5.7-5.7-5.7 5.7 1.34 1.34z"></path></symbol><symbol id="icon-clock-timer" viewBox="0 0 24 24"><path fill="currentColor" d="M12 21a8.7 8.7 0 0 1-3.513-.713 9.2 9.2 0 0 1-2.85-1.925 9.2 9.2 0 0 1-1.925-2.849A8.7 8.7 0 0 1 3 12q0-1.875.712-3.513a9.2 9.2 0 0 1 1.925-2.85 9.2 9.2 0 0 1 2.85-1.925A8.7 8.7 0 0 1 12 3a8.9 8.9 0 0 1 3.887.875c.825.583 2.263 1.408 3.113 2.475V4h2v6h-6V8h2.75a7.4 7.4 0 0 0-2.525-2.2Q13.725 5 12 5 9.075 5 7.037 7.037 5 9.075 5 12t2.037 4.962Q9.075 19 12 19q2.625 0 4.587-1.7Q18.55 15.6 18.9 13h2.05q-.375 3.425-2.938 5.712Q15.45 21 12 21m2.8-4.8L11 12.4V7h2v4.6l3.2 3.2z"></path></symbol><symbol id="icon-clock" viewBox="0 0 24 24"><path fill="currentColor" d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2M12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8m.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"></path></symbol><symbol id="icon-close" viewBox="0 0 24 24"><path fill="currentColor" d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path></symbol><symbol id="icon-cohort" viewBox="0 0 24 24"><path fill="currentColor" d="M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5M4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12m0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7m7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44M15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35"></path></symbol><symbol id="icon-collapse" viewBox="0 0 24 24"><path fill="currentColor" d="M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59z"></path></symbol><symbol id="icon-columns" viewBox="0 0 24 24"><path fill="currentColor" d="M2.407 1.5h16.85a2.407 2.407 0 0 1 2.408 2.407v8.522a7.23 7.23 0 0 0-5.2 1.107h-4.429v4.815h1.3a7.3 7.3 0 0 0 0 2.407H2.407A2.407 2.407 0 0 1 0 18.35V3.906A2.414 2.414 0 0 1 2.407 1.5m0 4.814v4.815H9.63V6.314zm9.63 0v4.815h7.22V6.314zm-9.63 7.222v4.815H9.63v-4.815zm14.371 6.62h2.408v-4.814h2.407v4.814H24l-3.61 3.61z"></path></symbol><symbol id="icon-comment" viewBox="0 0 24 24"><path fill="currentColor" d="M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4zM20 4v13.17L18.83 16H4V4zM7 11h10v2H7zm0-4h10v2H7z"></path></symbol><symbol id="icon-compass" viewBox="0 0 24 24"><path fill="currentColor" d="M7 11H1v2h6zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12zM13 1h-2v6h2zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41zM17 11v2h6v-2zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41zM11 23h2v-6h-2z"></path></symbol><symbol id="icon-computation" viewBox="0 0 24 24"><path fill="currentColor" d="m19.07 4.93-1.41 1.41A8.01 8.01 0 0 1 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07"></path></symbol><symbol id="icon-conversion-drivers" viewBox="0 0 24 24"><path fill="currentColor" d="M16 17.01V9h-2v8.01h-3L15 21l4-3.99zM9 3 5 6.99h3V15h2V6.99h3zm7 14.01V9h-2v8.01h-3L15 21l4-3.99zM9 3 5 6.99h3V15h2V6.99h3z"></path></symbol><symbol id="icon-cursor" viewBox="0 0 24 24"><path fill="#fff" fill-opacity=".01" d="M0 0h24v24H0z"></path><path fill="currentColor" fill-rule="evenodd" d="m13.856 21 2.31-1.194-3.63-6.6h4.714L6.75 3v14.196l3.31-3.098z" clip-rule="evenodd"></path></symbol><symbol id="icon-custom-event" viewBox="0 0 24 24"><path fill="currentColor" d="M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6M3 12a5.99 5.99 0 0 1 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09A5.99 5.99 0 0 1 3 12"></path></symbol><symbol id="icon-dark-mode" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"></path><path d="M12 3a9 9 0 1 0 9 9c0-.46-.04-.92-.1-1.36a5.39 5.39 0 0 1-4.4 2.26 5.403 5.403 0 0 1-3.14-9.8c-.44-.06-.9-.1-1.36-.1"></path></symbol><symbol id="icon-dashboard" viewBox="0 0 24 24"><path fill="currentColor" d="M19 5v2h-4V5zM9 5v6H5V5zm10 8v6h-4v-6zM9 17v2H5v-2zM21 3h-8v6h8zM11 3H3v10h8zm10 8h-8v10h8zm-10 4H3v6h8z"></path></symbol><symbol id="icon-data-destinations" viewBox="0 0 24 24"><path fill="currentColor" d="M19 8.7c-2.46 1.5-5.5 4.17-6 8.3h2v2H9v-2h2c-.5-4.5-4.37-8-9-8V7c4.39 0 8.22 2.55 10 6.3 1.38-2.97 3.86-5.03 5.96-6.31L14 7V5h7v7h-2z"></path></symbol><symbol id="icon-data-sources" viewBox="0 0 24 24"><path fill="currentColor" d="M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3m0-17C8.1 3 4.56 4.59 2 7.15l5 5a7.06 7.06 0 0 1 10-.01l5-5C19.44 4.59 15.9 3 12 3m4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4s-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5s5 .79 7.05 2.26z"></path></symbol><symbol id="icon-data-table" viewBox="0 0 24 25"><path fill="currentColor" d="M20 3.17H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2m0 2v3H5v-3zm-5 14h-5v-9h5zm-10-9h3v9H5zm12 9v-9h3v9z"></path></symbol><symbol id="icon-data" viewBox="0 0 24 24"><path fill="currentColor" d="m15.556 7.555-3.555 3.556H8.174c-.173.389-.674 1.389 0 1.778H12l3.555 3.555 1.733-.889L13.556 12l3.733-3.556z"></path><path fill="currentColor" d="M15 21h6v-6h-6zm1.5-4.5h3v3h-3zM15 9h6V3h-6zm1.5-4.5h3v3h-3zM5.5 10.25c1.167 0 1.75 1.005 1.75 1.75 0 1.167-.978 1.75-1.75 1.75-1.167 0-1.75-.86-1.75-1.75s.583-1.75 1.75-1.75m0-1.75A3.495 3.495 0 0 0 2 12c0 1.937 1.563 3.5 3.5 3.5S9 13.937 9 12 7.437 8.5 5.5 8.5"></path></symbol><symbol id="icon-database" viewBox="0 0 24 24"><path fill="currentColor" d="M5 12c0 .313.461.858 1.53 1.393C7.914 14.085 9.877 14.5 12 14.5s4.086-.415 5.47-1.107C18.539 12.858 19 12.313 19 12V9.829c-1.65 1.02-4.173 1.671-7 1.671s-5.35-.652-7-1.671zm14 2.829c-1.65 1.02-4.173 1.671-7 1.671s-5.35-.652-7-1.671V17c0 .313.461.858 1.53 1.393C7.914 19.085 9.877 19.5 12 19.5s4.086-.415 5.47-1.107C18.539 17.858 19 17.313 19 17zM3 17V7c0-2.485 4.03-4.5 9-4.5s9 2.015 9 4.5v10c0 2.485-4.03 4.5-9 4.5S3 19.485 3 17m9-7.5c2.123 0 4.086-.415 5.47-1.107C18.539 7.858 19 7.313 19 7s-.461-.858-1.53-1.393C16.086 4.915 14.123 4.5 12 4.5s-4.086.415-5.47 1.107C5.461 6.142 5 6.687 5 7s.461.858 1.53 1.393C7.914 9.085 9.877 9.5 12 9.5"></path></symbol><symbol id="icon-derived-property" viewBox="0 0 24 24"><path fill="currentColor" d="M7.562 17.447Q7.052 20 4.294 20H3l.409-1.906h1.634l1.702-8.528H5.57l.375-1.906h1.174l.221-1.107Q7.85 4 10.608 4h1.294l-.408 1.906H9.86L9.52 7.66h3.863l-.374 1.906H9.128z"></path><path fill="currentColor" d="m9.613 16.596 3.881-4.664-1.906-4.272h2.57l1.055 2.978h.103l2.212-2.978h2.605l-3.898 4.646 1.957 4.29h-2.57l-1.09-2.928h-.101l-2.213 2.928z"></path></symbol><symbol id="icon-desktop"><path fill="currentColor" d="M8 21v-2h2v-2H4q-.824 0-1.413-.587A1.93 1.93 0 0 1 2 15V5q0-.824.587-1.413A1.93 1.93 0 0 1 4 3h16q.824 0 1.413.587.586.589.587 1.413v10q0 .824-.587 1.413A1.93 1.93 0 0 1 20 17h-6v2h2v2zm-4-6h16V5H4z"></path></symbol><symbol id="icon-device" viewBox="0 0 24 24"><path fill="currentColor" d="M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1m-1 9h-4v-7h4z"></path></symbol><symbol id="icon-discover" viewBox="0 0 24 24"><path fill="currentColor" d="m6.575 17.425 7.25-3.575L17.4 6.6l-7.25 3.575zM12 13a.97.97 0 0 1-.713-.287A.97.97 0 0 1 11 12q0-.424.287-.713A.97.97 0 0 1 12 11q.424 0 .713.287.287.288.287.713 0 .424-.287.713A.97.97 0 0 1 12 13m0 9a9.7 9.7 0 0 1-3.875-.788 10.1 10.1 0 0 1-3.187-2.15 10.1 10.1 0 0 1-2.15-3.187A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10 10 0 0 1 2.15-3.175 10.3 10.3 0 0 1 3.187-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.875 10.3 10.3 0 0 1-2.137 3.188 10 10 0 0 1-3.175 2.15A9.7 9.7 0 0 1 12 22m0-1.5q3.55 0 6.025-2.488T20.5 12q0-3.55-2.475-6.025T12 3.5q-3.525 0-6.012 2.475Q3.5 8.45 3.5 12q0 3.525 2.488 6.012Q8.474 20.5 12 20.5"></path></symbol><symbol id="icon-do-no-harm" viewBox="0 0 24 24"><path fill="currentColor" d="M12 18.15q.6 0 1.025-.425t.425-1.025-.425-1.025A1.4 1.4 0 0 0 12 15.25q-.6 0-1.025.425a1.4 1.4 0 0 0-.425 1.025q0 .6.425 1.025T12 18.15m0-4.7q.6 0 1.025-.425T13.45 12t-.425-1.025A1.4 1.4 0 0 0 12 10.55q-.6 0-1.025.425A1.4 1.4 0 0 0 10.55 12q0 .6.425 1.025T12 13.45m0-4.7q.6 0 1.025-.425T13.45 7.3t-.425-1.025A1.4 1.4 0 0 0 12 5.85q-.6 0-1.025.425A1.4 1.4 0 0 0 10.55 7.3q0 .6.425 1.025T12 8.75m-5.125 6.575v-2Q5.6 13.05 4.8 12.138 4 11.224 4 10.15h2.875V8.225Q5.6 7.95 4.8 7.05T4 5.075h2.875v-.6q0-.65.425-1.062T8.375 3h7.25q.65 0 1.075.413t.425 1.062v.6H20q0 1.075-.8 1.975t-2.075 1.175v1.925H20q0 1.076-.8 1.987-.8.913-2.075 1.188v2H20q0 1.125-.8 2t-2.075 1.15V19.5q0 .65-.425 1.075T15.625 21h-7.25q-.65 0-1.075-.425T6.875 19.5v-1.025Q5.6 18.2 4.8 17.325t-.8-2zm1.5 4.175h7.25v-15h-7.25zm0 0v-15z"></path></symbol><symbol id="icon-double-arrow-down" viewBox="0 0 24 24"><path fill="currentColor" d="M16.59 4.8 12 9.39 7.41 4.8 6 6.21l6 6 6-6zM16.59 12.41 12 17l-4.59-4.59L6 13.82l6 6 6-6z"></path></symbol><symbol id="icon-double-arrow-left" viewBox="0 0 20 20"><path d="m9.166 15-5-5 5-5 1.167 1.167L6.52 10l3.813 3.833zm5.5 0-5-5 5-5 1.167 1.167L12.02 10l3.813 3.833z"></path></symbol><symbol id="icon-double-arrow-right" viewBox="0 0 20 20"><path d="M7.979 10 4.166 6.167 5.333 5l5 5-5 5-1.167-1.167zm5.5 0L9.666 6.167 10.833 5l5 5-5 5-1.167-1.167z"></path></symbol><symbol id="icon-download" viewBox="0 0 24 24"><path fill="currentColor" d="M19 9h-4V3H9v6H5l7 7zm-8 2V5h2v6h1.17L12 13.17 9.83 11zm-6 7h14v2H5z"></path></symbol><symbol id="icon-drag-handle" viewBox="0 0 24 24"><path fill="currentColor" d="M3 17h18v-2H3zm0-4h18v-2H3zm0-6v2h18V7z"></path></symbol><symbol id="icon-drag-indicator-horizontal" viewBox="0 0 24 24"><path fill="currentColor" d="M6 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m8-2c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2m6 0c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2m-4 6c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2m-2 0c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2m-6 0c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2"></path></symbol><symbol id="icon-drag-indicator-vertical" viewBox="0 0 24 24"><path fill="currentColor" d="M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"></path></symbol><symbol id="icon-dynamic-event" viewBox="0 0 24 24"><path fill="currentColor" d="M11.517 17.049q-2.107-.11-3.556-1.625t-1.449-3.643q0-2.196 1.537-3.732t3.732-1.537q2.129 0 3.643 1.449 1.515 1.449 1.625 3.556l-1.844-.549q-.285-1.185-1.23-1.942-.943-.758-2.194-.758-1.449 0-2.481 1.032t-1.032 2.48q0 1.252.758 2.196a3.46 3.46 0 0 0 1.942 1.229zm1.054 3.468a2 2 0 0 1-.395.044h-.396a8.55 8.55 0 0 1-3.424-.692 8.9 8.9 0 0 1-2.788-1.876 8.9 8.9 0 0 1-1.877-2.788A8.55 8.55 0 0 1 3 11.78q0-1.823.691-3.425a8.9 8.9 0 0 1 1.877-2.788 8.9 8.9 0 0 1 2.788-1.877A8.55 8.55 0 0 1 11.781 3a8.55 8.55 0 0 1 3.424.691 8.9 8.9 0 0 1 2.788 1.877q1.185 1.186 1.877 2.788a8.55 8.55 0 0 1 .691 3.425v.395q0 .197-.044.395l-1.712-.527v-.264q0-2.94-2.042-4.982-2.04-2.042-4.983-2.042-2.94 0-4.982 2.042-2.042 2.04-2.042 4.983 0 2.94 2.042 4.982 2.04 2.042 4.983 2.042h.263zm6.695.483-3.754-3.754-1.097 3.315-2.634-8.78 8.78 2.634-3.315 1.097L21 19.266z"></path></symbol><symbol id="icon-email" viewBox="0 0 24 24"><path fill="currentColor" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2m-8 7L4 6h16zm7 4 4 4-4 4v-3h-4v-2h4z"></path></symbol><symbol id="icon-engagement-matrix" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M3 15h2v4h4v2H5c-1.1 0-2-.9-2-2zM9 5H5v4H3V5c0-1.1.9-2 2-2h4zm6-2h4c1.1 0 2 .9 2 2v4h-2V5h-4zm0 16h4v-4h2v4c0 1.1-.9 2-2 2h-4zm.5-10.5c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m-7 2.5c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11m-1 4.5c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m10 1c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m0-3c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m-2.5-1c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5" clip-rule="evenodd"></path></symbol><symbol id="icon-error" viewBox="0 0 24 24"><path fill="currentColor" d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2M12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8"></path></symbol><symbol id="icon-event-log" viewBox="0 0 24 24"><path fill="currentColor" d="M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9M19 19H5V5h14z"></path></symbol><symbol id="icon-expand" viewBox="0 0 24 24"><path fill="currentColor" d="M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z"></path></symbol><symbol id="icon-experiment-add" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m19.409 17.613-5.07-6.44v-5.29H12.31v5.29l-5.07 6.44zM9.309 3.954h8.031a.49.49 0 0 1 .396.799l-1.37 1.652v4.13l5.882 7.522c.497.656.02 1.588-.811 1.588H5.213c-.831 0-1.308-.932-.811-1.588l5.881-7.522v-4.13L8.914 4.753a.49.49 0 0 1 .396-.799M6.2 13.6v-2.9h2.2l.8-2h-3V5.8h-2v2.9h-3v2h3v2.9z" clip-rule="evenodd"></path></symbol><symbol id="icon-experiment-results" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M3.5 19h8.999a5 5 0 1 0 3.064-7.912L14.499 9.67V5.5l1.35-1.69c.26-.33.03-.81-.39-.81H7.54c-.42 0-.65.48-.39.81L8.5 5.5v4.17L2.7 17.4c-.49.66-.02 1.6.8 1.6m10.163-7.118-1.164-1.552V5h-2v5.33L5.5 17h6.1a4.994 4.994 0 0 1 2.063-5.118m.658 6.26.974.715 1.191-1.891 1.205 1.891.974-.716-1.359-1.783 2.05-.621-.384-1.176-1.96.81.09-2.228h-1.218l.09 2.229-1.96-.81-.372 1.175 2.037.621z" clip-rule="evenodd"></path></symbol><symbol id="icon-experiment" viewBox="0 0 24 24"><path fill="currentColor" d="m13.139 11.432 5.07 6.764H6.04l5.07-6.764V6.028h2.028zM16.14 4H8.11a.505.505 0 0 0-.396.821l1.369 1.714v4.228l-5.881 7.838c-.497.67-.02 1.623.811 1.623h16.224c.831 0 1.308-.954.81-1.623l-5.88-7.838V6.535l1.369-1.714A.505.505 0 0 0 16.14 4"></path></symbol><symbol id="icon-export" viewBox="0 0 24 24"><path fill="currentColor" d="M5 21h14a2 2 0 0 0 2-2v-2h-2v2H5V5h14v2h2V5a2 2 0 0 0-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2"></path><path fill="currentColor" d="m16 7-1.41 1.41L17.17 11H7.5v2h9.67l-2.58 2.59L16 17l5-5z"></path></symbol><symbol id="icon-filled-circle" viewBox="0 0 24 24"><path fill="currentColor" d="M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4"></path></symbol><symbol id="icon-filter-exclude" viewBox="0 0 24 24"><path fill="currentColor" d="M7.5 13 1.725 5.625a.9.9 0 0 1-.175-.312A1 1 0 0 1 1.5 5q0-.4.288-.7.287-.3.712-.3h14q.424 0 .712.3a.98.98 0 0 1 .288.7q0 .15-.05.313a.9.9 0 0 1-.175.312L11.5 13v6q0 .424-.287.712A.97.97 0 0 1 10.5 20h-2a.97.97 0 0 1-.713-.288A.97.97 0 0 1 7.5 19zm15 2h-8v-2h8zq-1.566 0 0 0m-13-2.7L14.45 6h-9.9z"></path></symbol><symbol id="icon-filter-include" viewBox="0 0 24 24"><path fill="currentColor" d="M7.5 13 1.725 5.625a.9.9 0 0 1-.175-.312A1 1 0 0 1 1.5 5q0-.4.288-.7.287-.3.712-.3h14q.424 0 .712.3a.98.98 0 0 1 .288.7q0 .15-.05.313a.9.9 0 0 1-.175.312L11.5 13v6q0 .424-.287.712A.97.97 0 0 1 10.5 20h-2a.97.97 0 0 1-.713-.288A.97.97 0 0 1 7.5 19zm2-.7L14.45 6h-9.9zM17.5 15v3h2v-3h3v-2h-3v-3h-2v3h-3v2z"></path></symbol><symbol id="icon-filter-off" viewBox="0 0 24 24"><path fill="currentColor" d="M15.359 11.304 13.99 9.937l3.43-4.366H9.626l-1.92-1.92H19.39q.6 0 .864.528.262.528-.096 1.008zM20.133 21.5l-5.542-5.542v2.088q0 .407-.276.683a.93.93 0 0 1-.684.276h-1.919a.93.93 0 0 1-.684-.276.93.93 0 0 1-.276-.683V12.12L2.5 3.867 3.843 2.5 21.5 20.157z"></path></symbol><symbol id="icon-filter" viewBox="0 0 24 24"><path fill="currentColor" d="M7 6h10l-5.01 6.3zm-2.75-.39C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39A.998.998 0 0 0 18.95 4H5.04c-.83 0-1.3.95-.79 1.61"></path></symbol><symbol id="icon-flag" viewBox="0 0 24 24"><path fill="currentColor" d="m12.36 6 .4 2H18v6h-3.36l-.4-2H7V6zM14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z"></path></symbol><symbol id="icon-folder-add" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 6h8c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h6zM4 8v10h16V8zm5 4v2h2v2h2v-2h2v-2h-2v-2h-2v2z" clip-rule="evenodd"></path></symbol><symbol id="icon-folder-move" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 6h8c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h6zM4 8v10h16V8zm6.59 7.59L12 17l4-4-4-4-1.41 1.41L12.17 12H8v2h4.17z" clip-rule="evenodd"></path></symbol><symbol id="icon-folder" viewBox="0 0 24 24"><path fill="currentColor" d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m0 12H4V8h16z"></path></symbol><symbol id="icon-format-bold" viewBox="0 0 24 24"><path fill="currentColor" d="M7.3 19V5h5.175q1.675 0 2.9 1.051Q16.6 7.103 16.6 8.744q0 .948-.462 1.743-.463.795-1.313 1.205v.077q1.05.308 1.65 1.231.6.924.6 2.051 0 1.719-1.325 2.834T12.65 19zm2.15-8.128h2.85q.85 0 1.488-.539.637-.539.637-1.41t-.637-1.41a2.24 2.24 0 0 0-1.488-.539H9.45zm0 6.154h3.05q.9 0 1.613-.603.712-.603.712-1.526t-.712-1.526a2.43 2.43 0 0 0-1.613-.602H9.45z"></path></symbol><symbol id="icon-format-divider" viewBox="0 0 24 24"><path fill="currentColor" d="M20 11H4v2h16z"></path></symbol><symbol id="icon-format-font-color" viewBox="0 0 24 24"><path fill="currentColor" d="M2 20h20v4H2zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5zm4.42-5.61 2.03-5.79h.12l2.03 5.79z"></path></symbol><symbol id="icon-format-italic" viewBox="0 0 24 24"><path fill="currentColor" d="M5 19v-1.947h3.552l4.511-10.106H9.511V5H19v1.947h-3.552l-4.511 10.106h3.552V19z"></path></symbol><symbol id="icon-format-list-bullets" viewBox="0 0 24 24"><path fill="currentColor" d="M4.5 11c-.83 0-1.5.67-1.5 1.5S3.67 14 4.5 14 6 13.33 6 12.5 5.33 11 4.5 11m0-6C3.67 5 3 5.67 3 6.5S3.67 8 4.5 8 6 7.33 6 6.5 5.33 5 4.5 5m0 12c-.83 0-1.5.68-1.5 1.5S3.68 20 4.5 20 6 19.32 6 18.5 5.33 17 4.5 17m3 2.5h14v-2h-14zm0-6h14v-2h-14zm0-8v2h14v-2z"></path></symbol><symbol id="icon-format-list-checks" viewBox="0 0 24 24"><path fill="currentColor" d="M22 7h-9v2h9zm0 8h-9v2h9zM5.54 11 2 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41zm0 8L2 15.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41z"></path></symbol><symbol id="icon-format-list-numbers" viewBox="0 0 24 24"><path fill="currentColor" d="M2 17h2v.5H3v1h1v.5H2v1h3v-4H2zm1-9h1V4H2v1h1zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2zm5-6v2h14V5zm0 14h14v-2H7zm0-6h14v-2H7z"></path></symbol><symbol id="icon-format-strikethrough" viewBox="0 0 24 24"><path fill="currentColor" d="M11.902 19q-2 0-3.5-.886-1.5-.885-2.085-2.783l2.366-.843Q9 15.69 9.805 16.248q.805.56 2.122.56 1.195 0 1.94-.422.743-.422.743-1.308 0-.358-.11-.674a1.5 1.5 0 0 0-.33-.549h2.732q.098.296.16.59.06.296.06.633 0 1.856-1.488 2.889T11.902 19M4 13.012V11h16v2.012zM11.756 5q1.659 0 2.964.77a4.73 4.73 0 0 1 1.938 2.16l-2.34.823q-.22-.612-.928-1.086a2.83 2.83 0 0 0-1.61-.474q-1.072 0-1.621.411-.55.41-.671.98c-.082.38.671.97.671.97l.865.633H8.098c-.337-.194-.512-.34-.732-.633-.253-.336-.39-.632-.39-.97 0-.956.463-1.792 1.341-2.509Q9.633 5 11.757 5"></path></symbol><symbol id="icon-format-underline" viewBox="0 0 24 24"><path fill="currentColor" d="M5.3 22v-2H19v2zm6.7-3.3q-2.475 0-4.162-1.687Q6.15 15.325 6.15 12.85V5h2.2v7.85q0 1.525 1.063 2.587T12 16.5q1.526 0 2.588-1.063t1.062-2.587V5h2.2v7.85q0 2.45-1.687 4.15T12 18.7"></path></symbol><symbol id="icon-forward-10" viewBox="0 0 24 24"><g fill="currentColor" clip-path="url(#4bc6__a)"><path d="M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8z"></path><path d="M10.86 15.942v-4.27h-.09l-1.77.63v.69l1.01-.31v3.26zM12.25 13.442v.74c0 1.9 1.31 1.82 1.44 1.82.14 0 1.44.09 1.44-1.82v-.74c0-1.9-1.31-1.82-1.44-1.82-.14 0-1.44-.09-1.44 1.82m2.04-.12v.97c0 .77-.21 1.03-.59 1.03s-.6-.26-.6-1.03v-.97c0-.75.22-1.01.59-1.01.38-.01.6.26.6 1.01"></path></g><defs><clippath id="4bc6__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="icon-funnel" viewBox="0 0 24 24"><path fill="currentColor" d="M23 3.5H1l9.855 16.754a.5.5 0 0 0 .431.246h1.428a.5.5 0 0 0 .431-.247zm-3.47 2-1.74 3H6.21l-1.74-3zm-9.27 10h3.48l-1.74 3zm4.64-2H9.1l-1.74-3h9.27z"></path></symbol><symbol id="icon-go-to-bottom" viewBox="0 0 24 24"><path fill="currentColor" d="M16.59 5.59 12 10.18 7.41 5.59 6 7l6 6 6-6zM18 16v2H6v-2z"></path></symbol><symbol id="icon-go-to-first-page" viewBox="0 0 24 24"><path fill="currentColor" d="M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"></path></symbol><symbol id="icon-go-to-last-page" viewBox="0 0 24 24"><path fill="currentColor" d="M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"></path></symbol><symbol id="icon-go-to-top" viewBox="0 0 24 24"><path fill="currentColor" d="M7.41 18.41 12 13.82l4.59 4.59L18 17l-6-6-6 6zM6 8V6h12v2z"></path></symbol><symbol id="icon-govern" viewBox="0 0 24 24"><path fill="currentColor" d="M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83zm5.78 8.75-1.07-.83c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83a4 4 0 0 0 0 .98l-1.06.83a.26.26 0 0 0-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73a.26.26 0 0 0-.06-.32m-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5"></path></symbol><symbol id="icon-groups" viewBox="0 0 24 24"><path fill="currentColor" d="M4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58A2.01 2.01 0 0 0 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29M20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4 3.43c0-.81-.48-1.53-1.22-1.85A6.95 6.95 0 0 0 20 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24zm-7.76-2.78c-1.17-.52-2.61-.9-4.24-.9s-3.07.39-4.24.9A2.99 2.99 0 0 0 6 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74M8.07 16c.09-.23.13-.39.91-.69a8.3 8.3 0 0 1 3.02-.56c1.03 0 2.05.18 3.02.56.77.3.81.46.91.69zM12 7.5c1 0 1.5.862 1.5 1.5 0 1-.838 1.5-1.5 1.5-1 0-1.5-.737-1.5-1.5S11 7.5 12 7.5M12 6c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"></path></symbol><symbol id="icon-guide" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12.67 7.376v-.05a2.014 2.014 0 0 1 2.007-1.974h4.984v10.823h-3.932c-1.376 0-2.358.37-3.06.916zM9.323 4c1.094 0 2.066.53 2.677 1.348A3.33 3.33 0 0 1 14.677 4H21v13.527h-5.271c-1.142 0-1.829.305-2.262.65-.368.293-.56.774-.71 1.151q-.045.116-.087.214v.003s0 .402-.52.45c-.763.07-.763-.632-.763-.632-.168-.39-.411-.833-.854-1.186-.433-.344-1.12-.65-2.262-.65H3V4zm2.007 3.376v9.715c-.7-.546-1.683-.916-3.059-.916H4.34V5.352h4.984a2.015 2.015 0 0 1 2.007 2.024M17 8h-3v1h3zm1.5 2H14v1h4.5zM14 12h4.5v1H14z" clip-rule="evenodd"></path></symbol><symbol id="icon-hamburger" viewBox="0 0 24 24"><rect width="18" height="2" x="3" y="5" fill="currentColor" rx="1"></rect><rect width="18" height="2" x="3" y="10.727" fill="currentColor" rx="1"></rect><rect width="18" height="2" x="3" y="16.454" fill="currentColor" rx="1"></rect></symbol><symbol id="icon-heatmap" viewBox="0 0 25 24"><path fill="currentColor" stroke="currentColor" stroke-width=".6" d="M5.128 13.432q0 2.232 1.083 4.1t2.913 2.8a3.14 3.14 0 0 1-.46-1.653q-.001-.763.274-1.445.275-.683.77-1.228l2.491-2.698 2.514 2.698q.495.545.76 1.228.262.682.262 1.445 0 .435-.114.852a3.1 3.1 0 0 1-.346.802q1.83-.935 2.912-2.801 1.084-1.868 1.084-4.1 0-1.62-.545-3.06a8 8 0 0 0-1.577-2.575q-.59.422-1.237.632t-1.326.21q-1.85 0-3.19-1.327-1.341-1.328-1.524-3.321a17 17 0 0 0-2.033 2.193A14.6 14.6 0 0 0 6.35 8.541a12 12 0 0 0-.914 2.438q-.31 1.23-.31 2.453Zm7.071 1.684-1.68 1.814a2.6 2.6 0 0 0-.677 1.749q0 1.035.692 1.78.693.746 1.665.746t1.665-.745q.693-.745.692-1.781a2.53 2.53 0 0 0-.677-1.75zM11.021 1.5v1.958q0 1.65 1.032 2.768t2.533 1.118a2.9 2.9 0 0 0 1.078-.206q.525-.205.991-.591l.508-.438q1.545 1.26 2.416 3.203.87 1.944.87 4.12 0 3.792-2.4 6.43T12.2 22.5t-5.85-2.638-2.4-6.43q0-3.33 1.903-6.514Q7.754 3.735 11.021 1.5Z"></path></symbol><symbol id="icon-highlight" viewBox="0 0 24 24"><path fill="currentColor" d="M2 24v-4h20v4zm12.6-12L12 9.4l-4 4 2.575 2.6zm-1.175-4L16 10.575 20 6.6 17.4 4zm-2.1-.725 5.4 5.4L12 17.425q-.6.6-1.412.6-.813 0-1.413-.6L8.5 18h-5l3.15-3.125q-.6-.6-.625-1.437A1.88 1.88 0 0 1 6.6 12zm0 0L16 2.6q.6-.6 1.413-.6.812 0 1.412.6l2.6 2.575q.6.6.6 1.413 0 .812-.6 1.412l-4.7 4.675z"></path></symbol><symbol id="icon-home" viewBox="0 0 24 24"><path fill="currentColor" d="m12 5.69 5 4.5V18h-2v-6H9v6H7v-7.81zM12 3 2 12h3v8h6v-6h2v6h6v-8h3z"></path></symbol><symbol id="icon-horizontal-chart" viewBox="0 0 24 24"><path fill="currentColor" d="M14.8 5v3H5V5zm4.2 5.6v2.8H5v-2.8zm-8 5.6V19H5v-2.8z"></path></symbol><symbol id="icon-hypothesis-test" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2m3-3H9v-2h6zm.73-3c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2S4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5zM12 4c3.03 0 5.5 2.47 5.5 5.5 0 2.47-1.49 3.89-2.35 4.5h-2.572v-2.453l1.829-1.83-.707-.707-1.616 1.617L10.457 9l-.707.707 1.828 1.828V14H8.85c-.86-.61-2.35-2.03-2.35-4.5C6.5 6.47 8.97 4 12 4" clip-rule="evenodd"></path></symbol><symbol id="icon-image" viewBox="0 0 24 24"><path fill="currentColor" d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-4.86 8.86-3 3.87L9 13.14 6 17h12z"></path></symbol><symbol id="icon-impact-analysis" viewBox="0 0 24 24"><path fill="currentColor" d="M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2zm0 15H5l5-6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"></path></symbol><symbol id="icon-information-circle" viewBox="0 0 24 24"><path fill="currentColor" d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8"></path></symbol><symbol id="icon-job" viewBox="0 0 24 24"><path fill="currentColor" d="M14 6V4h-4v2zM4 8v11h16V8zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2z"></path></symbol><symbol id="icon-journeys" viewBox="0 0 24 25"><path fill="currentColor" fill-rule="evenodd" d="M9 11.17v-2H2v6h7v-2h3v2h2.5v2H12v6h7v-2h3v-2h-3v-2h-2.5v-2H19v-2h3v-2h-3v-2h-2.5v-2H19v-2h3v-2h-3v-2h-7v6h2.5v2H12v2zm5-8h3v2h-3zm3 18h-3v-2h3zm0-8h-3v-2h3zm-10 0H4v-2h3z" clip-rule="evenodd"></path></symbol><symbol id="icon-kpi" viewBox="0 0 24 24"><path fill="currentColor" d="M13 15h1.5v-2.25L16.25 15h1.825l-2.325-3 2.325-3H16.25l-1.75 2.25V9H13zm-6.5 0H11v-1.5H8v-1h2q.424 0 .713-.287A.97.97 0 0 0 11 11.5V10a.97.97 0 0 0-.287-.713A.97.97 0 0 0 10 9H6.5v1.5h3v1h-2a.97.97 0 0 0-.713.287.97.97 0 0 0-.287.713zM5 21q-.824 0-1.412-.587A1.93 1.93 0 0 1 3 19V5q0-.824.587-1.412A1.93 1.93 0 0 1 5 3h14q.824 0 1.413.587Q21 4.176 21 5v14q0 .824-.587 1.413A1.93 1.93 0 0 1 19 21zm0-2h14V5H5z"></path></symbol><symbol id="icon-labeled-event" viewBox="0 0 24 24"><path fill="currentColor" d="M11.517 17.049q-2.107-.11-3.556-1.625t-1.449-3.643q0-2.196 1.537-3.732t3.732-1.537q2.129 0 3.643 1.449 1.515 1.449 1.625 3.556l-1.844-.549q-.285-1.185-1.23-1.942-.943-.758-2.194-.758-1.449 0-2.481 1.032t-1.032 2.48q0 1.252.758 2.196a3.46 3.46 0 0 0 1.942 1.229zm1.054 3.468a2 2 0 0 1-.395.044h-.396a8.55 8.55 0 0 1-3.424-.692 8.9 8.9 0 0 1-2.788-1.876 8.9 8.9 0 0 1-1.877-2.788A8.55 8.55 0 0 1 3 11.78q0-1.823.691-3.425a8.9 8.9 0 0 1 1.877-2.788 8.9 8.9 0 0 1 2.788-1.877A8.55 8.55 0 0 1 11.781 3a8.55 8.55 0 0 1 3.424.691 8.9 8.9 0 0 1 2.788 1.877q1.185 1.186 1.877 2.788a8.55 8.55 0 0 1 .691 3.425v.395q0 .197-.044.395l-1.712-.527v-.264q0-2.94-2.042-4.982-2.04-2.042-4.983-2.042-2.94 0-4.982 2.042-2.042 2.04-2.042 4.983 0 2.94 2.042 4.982 2.04 2.042 4.983 2.042h.263zm6.695.483-3.754-3.754-1.097 3.315-2.634-8.78 8.78 2.634-3.315 1.097L21 19.266z"></path></symbol><symbol id="icon-laptop"><path fill="currentColor" d="M1 21v-2h22v2zm3-3q-.824 0-1.413-.587A1.93 1.93 0 0 1 2 16V5q0-.824.587-1.413A1.93 1.93 0 0 1 4 3h16q.824 0 1.413.587.586.589.587 1.413v11q0 .824-.587 1.413A1.93 1.93 0 0 1 20 18zm0-2h16V5H4z"></path></symbol><symbol id="icon-lifecycle" viewBox="0 0 24 24"><path fill="currentColor" d="M12 23h-1v-6.57C9.93 17.4 8.52 18 7 18c-3.25 0-6-2.75-6-6v-1h6.57C6.6 9.93 6 8.52 6 7c0-3.25 2.75-6 6-6h1v6.57C14.07 6.6 15.48 6 17 6c3.25 0 6 2.75 6 6v1h-6.57c.97 1.07 1.57 2.48 1.57 4 0 3.25-2.75 6-6 6m1-9.87v7.74c1.7-.46 3-2.04 3-3.87s-1.3-3.41-3-3.87M3.13 13c.46 1.7 2.04 3 3.87 3s3.41-1.3 3.87-3zm10-2h7.74c-.46-1.7-2.05-3-3.87-3s-3.41 1.3-3.87 3M11 3.13C9.3 3.59 8 5.18 8 7s1.3 3.41 3 3.87z"></path></symbol><symbol id="icon-light-mode" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"></path><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5M2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1m18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1M11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1m0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1M5.99 4.58a.996.996 0 0 0-1.41 0 .996.996 0 0 0 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41zm12.37 12.37a.996.996 0 0 0-1.41 0 .996.996 0 0 0 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0a.996.996 0 0 0 0-1.41zm1.06-10.96a.996.996 0 0 0 0-1.41.996.996 0 0 0-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0zM7.05 18.36a.996.996 0 0 0 0-1.41.996.996 0 0 0-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0z"></path></symbol><symbol id="icon-lightning" viewBox="0 0 24 24"><path fill="currentColor" d="m8.534 2.104-4.52 10.868c-.048.114.033.241.153.241h6.748c.117 0 .198.122.155.235l-3.122 8.316c-.065.174.146.316.273.184l11.73-12.15c.105-.108.03-.294-.118-.294h-7.346c-.137 0-.215-.16-.134-.275l4.94-6.954c.08-.114.001-.275-.135-.275H8.687a.17.17 0 0 0-.153.104"></path></symbol><symbol id="icon-line-chart" viewBox="0 0 24 24"><path fill="currentColor" d="m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z"></path></symbol><symbol id="icon-link" viewBox="0 0 24 24"><path fill="currentColor" d="m12.129 18.942 2.4-2.27-1.414-1.415-2.4 2.27a3.01 3.01 0 0 1-4.243 0 3.01 3.01 0 0 1 0-4.242l2.271-2.4L7.33 9.471l-2.271 2.4a5 5 0 0 0 0 7.071 5 5 0 0 0 7.071 0m-.986-10.457 2.4-2.27a3.01 3.01 0 0 1 4.243 0 3.01 3.01 0 0 1 0 4.242l-2.271 2.4 1.414 1.414 2.271-2.4a5 5 0 0 0 0-7.071 5 5 0 0 0-7.071 0l-2.4 2.271zm4.522 1.265-5.657 5.657-1.415-1.415 5.657-5.656z"></path></symbol><symbol id="icon-live-events" viewBox="0 0 24 24"><path fill="currentColor" d="M2 12v-2h3v2zm3.4 5.55L4 16.1 6.1 14l1.45 1.4zM6.1 8 4 5.9l1.4-1.45L7.55 6.6zM18 20l-4.75-4.75L12 19 9 9l10 3-3.7 1.3L20 18zM10 6V3h2v3zm5.9 2-1.45-1.4 2.15-2.15 1.4 1.4z"></path></symbol><symbol id="icon-location" viewBox="0 0 24 24"><path fill="currentColor" d="M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2"></path><path fill="currentColor" d="M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 0 0 0-4M5 20h14v2H5z"></path></symbol><symbol id="icon-lock-open" viewBox="0 0 24 24"><path fill="currentColor" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2m0 12H6V10h12zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2"></path></symbol><symbol id="icon-lock" viewBox="0 0 24 24"><path fill="currentColor" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2M9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9zm9 14H6V10h12zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2"></path></symbol><symbol id="icon-lookup-property" viewBox="0 0 24 24"><path fill="currentColor" d="M7 11H2V9h5zm0 2H2v2h5zm13.59 6-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3M2 19h10v-2H2zM2 7h7V5H2z"></path></symbol><symbol id="icon-media" viewBox="0 0 24 24"><path fill="currentColor" d="M4 21q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 19V3l1.675 1.675L5.325 3 7 4.675 8.675 3l1.65 1.675L12 3l1.675 1.675L15.325 3 17 4.675 18.675 3l1.65 1.675L22 3v16q0 .825-.587 1.413A1.93 1.93 0 0 1 20 21zm0-2h7v-6H4zm9 0h7v-2h-7zm0-4h7v-2h-7zm-9-4h16V8H4z"></path></symbol><symbol id="icon-merge" viewBox="0 0 24 24"><path fill="currentColor" d="M3.59 17 5 18.41 8.41 15 7 13.59zM16 7.5V11h-5.59L5 5.59 3.59 7l6 6H16v3.5l4.5-4.5z"></path></symbol><symbol id="icon-messaging" viewBox="0 0 24 24"><path fill="currentColor" d="M2.4 16.8V3.36q0-.408.276-.684A.93.93 0 0 1 3.36 2.4h12.48q.408 0 .683.276a.93.93 0 0 1 .277.684V12q0 .408-.277.684a.93.93 0 0 1-.683.276h-9.6zm4.8.96a.93.93 0 0 1-.685-.276.93.93 0 0 1-.275-.684v-1.92h12.48V6.24h1.92q.408 0 .683.276a.93.93 0 0 1 .277.684v14.4l-3.84-3.84zm7.68-13.44H4.32v7.848l1.128-1.167h9.432z"></path></symbol><symbol id="icon-metric" viewBox="0 0 24 24"><path fill="currentColor" d="M9.025 22q-.35 0-.613-.187a.96.96 0 0 1-.362-.513L5.5 13H2v-2h4.25q.325 0 .588.188a.96.96 0 0 1 .362.512l1.65 5.375L12.025 2.8a1 1 0 0 1 .35-.575A.96.96 0 0 1 13 2q.35 0 .625.212.275.213.35.563l2.175 9.4 1.4-4.475a.96.96 0 0 1 .363-.513A1 1 0 0 1 18.5 7q.325 0 .575.175t.375.475L20.7 11H22v2h-2a.98.98 0 0 1-.575-.175 1.06 1.06 0 0 1-.375-.475l-.475-1.275L16.95 16.3a1 1 0 0 1-.375.525.92.92 0 0 1-.625.175 1 1 0 0 1-.6-.238.97.97 0 0 1-.325-.537L13 7.525l-3.025 13.7a.9.9 0 0 1-.338.55 1.1 1.1 0 0 1-.612.225"></path></symbol><symbol id="icon-minus" viewBox="0 0 24 24"><path fill="currentColor" d="M18 13.2H6v-2.4h12z"></path></symbol><symbol id="icon-mobile-devices" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M5.135 2.4h8.6c.847 0 1.535.697 1.535 1.556v.31H4.828V14.49H9.36v2.844H5.135A1.546 1.546 0 0 1 3.6 15.778V3.956c0-.86.688-1.556 1.535-1.556m7.322 3.556 7.02.007c.771 0 1.403.633 1.403 1.415v12.8c0 .782-.632 1.422-1.404 1.422h-7.02c-.771 0-1.403-.64-1.403-1.422v-12.8c0-.782.632-1.422 1.404-1.422m0 12.8h7.02V8.8h-7.02z" clip-rule="evenodd"></path></symbol><symbol id="icon-mobile"><path fill="currentColor" d="M7 23q-.824 0-1.412-.587A1.93 1.93 0 0 1 5 21V3q0-.824.588-1.413A1.93 1.93 0 0 1 7 1h10q.824 0 1.413.587.586.589.587 1.413v18q0 .824-.587 1.413A1.93 1.93 0 0 1 17 23zm0-5v3h10v-3zm5 2.5a.97.97 0 0 0 .713-.288A.97.97 0 0 0 13 19.5a.97.97 0 0 0-.287-.712A.97.97 0 0 0 12 18.5a.97.97 0 0 0-.713.288.97.97 0 0 0-.287.712q0 .424.287.712.288.288.713.288M7 16h10V6H7zM7 4h10V3H7z"></path></symbol><symbol id="icon-monetization-key"><path fill="currentColor" fill-rule="evenodd" d="m15.836 7.924 1.434-1.722 3.411 2.916 1.436-1.7-3.411-2.916.957-1.14-1.723-1.388L9.177 12.49c-2.06-.892-4.529-.459-6.045 1.35a5.21 5.21 0 0 0 7.985 6.696c1.516-1.809 1.428-4.75-.279-6.653l3.523-4.21 3.494 2.874 1.392-1.707-3.41-2.917ZM9.25 19.154c-1.022 1.218-2.781 1.441-4.073.358s-1.361-2.876-.358-4.073 2.862-1.374 4.073-.358a2.905 2.905 0 0 1 .358 4.073M6.42 1.17 5.305 3.633 2.84 4.749l2.463 1.117L6.42 8.33l1.116-2.463L10 4.75 7.537 3.633 6.421 1.17Z" clip-rule="evenodd"></path></symbol><symbol id="icon-money" viewBox="0 0 24 24"><path fill="currentColor" d="M13.964 12.436a2.84 2.84 0 0 1-2.087-.859 2.84 2.84 0 0 1-.859-2.086q0-1.227.86-2.087a2.84 2.84 0 0 1 2.086-.859 2.84 2.84 0 0 1 2.086.86 2.84 2.84 0 0 1 .86 2.086 2.84 2.84 0 0 1-.86 2.086 2.84 2.84 0 0 1-2.086.86M7.09 15.382q-.81 0-1.386-.577a1.9 1.9 0 0 1-.578-1.387V5.564q0-.81.578-1.387A1.89 1.89 0 0 1 7.09 3.6h13.746q.809 0 1.391.577.571.577.572 1.387v7.854a1.9 1.9 0 0 1-.576 1.387 1.9 1.9 0 0 1-1.387.577zm1.964-1.964h9.818q0-.81.576-1.387a1.9 1.9 0 0 1 1.387-.577V7.528q-.81 0-1.387-.577a1.9 1.9 0 0 1-.576-1.386H9.055q0 .81-.578 1.386a1.89 1.89 0 0 1-1.386.577v3.927q.81 0 1.386.577.578.577.578 1.387m10.8 5.891H3.164a1.9 1.9 0 0 1-1.387-.576 1.9 1.9 0 0 1-.577-1.388v-10.8h1.964v10.8h16.69z"></path></symbol><symbol id="icon-more-horizontal" viewBox="0 0 24 24"><path fill="currentColor" d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"></path></symbol><symbol id="icon-more-vertical" viewBox="0 0 24 24"><path fill="currentColor" d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"></path></symbol><symbol id="icon-navigate" viewBox="0 0 24 24"><path fill="currentColor" d="M13.59 21c-.417 0-.792-.253-.948-.64l-2.592-6.41-6.425-2.597A1 1 0 0 1 3 10.426v-.031a1 1 0 0 1 .651-.937l15.3-5.695a1 1 0 0 1 1.287 1.286l-5.69 15.285c-.15.4-.531.666-.958.666m-.04-3.7 3.67-9.877a.5.5 0 0 0-.643-.643L6.7 10.45l4.9 1.95z"></path></symbol><symbol id="icon-note" viewBox="0 0 24 24"><path fill="currentColor" d="M19 5v9h-5v5H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10l6-6V5c0-1.1-.9-2-2-2"></path></symbol><symbol id="icon-notebook" viewBox="0 0 24 24"><path fill="currentColor" d="M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm4 18H6V4h7v5h5z"></path></symbol><symbol id="icon-number" viewBox="0 0 24 24"><path fill="currentColor" d="M19 10.25V8.5h-3.5V5h-1.75v3.5h-3.5V5H8.5v3.5H5v1.75h3.5v3.5H5v1.75h3.5V19h1.75v-3.5h3.5V19h1.75v-3.5H19v-1.75h-3.5v-3.5zm-5.25 3.5h-3.5v-3.5h3.5z"></path></symbol><symbol id="icon-object-array" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M5 7v2c0 .55-.45 1-1 1H3v4h1c.55 0 1 .45 1 1v2c0 1.65 1.35 3 3 3h2v-2H8c-.55 0-1-.45-1-1v-2c0-1.3-.84-2.42-2-2.83v-.34C6.16 11.42 7 10.3 7 9V7c0-.55.45-1 1-1h2V4H8C6.35 4 5 5.35 5 7m15 3c-.55 0-1-.45-1-1V7c0-1.65-1.35-3-3-3h-2v2h2c.55 0 1 .45 1 1v2c0 1.3.84 2.42 2 2.83v.34c-1.16.41-2 1.52-2 2.83v2c0 .55-.45 1-1 1h-2v2h2c1.65 0 3-1.35 3-3v-2c0-.55.45-1 1-1h1v-4zm-7-2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m-2 4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m0 4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1" clip-rule="evenodd"></path></symbol><symbol id="icon-object-management" viewBox="0 0 24 24"><path fill="currentColor" d="M3 5h2V3c-1.1 0-2 .9-2 2m0 8h2v-2H3zm4 8h2v-2H7zM3 9h2V7H3zm10-6h-2v2h2zm6 0v2h2c0-1.1-.9-2-2-2M5 21v-2H3c0 1.1.9 2 2 2m-2-4h2v-2H3zM9 3H7v2h2zm2 18h2v-2h-2zm8-8h2v-2h-2zm0 8c1.1 0 2-.9 2-2h-2zm0-12h2V7h-2zm0 8h2v-2h-2zm-4 4h2v-2h-2zm0-16h2V3h-2zM7 17h10V7H7zm2-8h6v6H9z"></path></symbol><symbol id="icon-offset" viewBox="0 0 24 24"><path fill="currentColor" d="M19 4.004h-1v-2h-2v2H8v-2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2m0 16H5v-10h14zm0-12H5v-2h14z"></path><path fill="currentColor" d="m11.7 17.429-1.275 1.275-3.525-3.6 3.525-3.6 1.275 1.275-1.4 1.425h6.8v1.8h-6.8z"></path></symbol><symbol id="icon-one-time-sync" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zm-7-2h2V7h-4v2h2z"></path></symbol><symbol id="icon-open-in-new" viewBox="0 0 24 24"><path fill="currentColor" d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3z"></path></symbol><symbol id="icon-palette" viewBox="0 0 24 24"><path fill="currentColor" d="M11.998 21.6a9.4 9.4 0 0 1-3.725-.75 9.7 9.7 0 0 1-3.062-2.063 9.7 9.7 0 0 1-2.063-3.063A9.4 9.4 0 0 1 2.398 12q0-2 .763-3.737a9.7 9.7 0 0 1 2.1-3.05 9.9 9.9 0 0 1 3.125-2.063 9.8 9.8 0 0 1 3.812-.75q1.95 0 3.663.675a9.5 9.5 0 0 1 2.987 1.85 8.8 8.8 0 0 1 2.013 2.75 7.9 7.9 0 0 1 .737 3.375q0 2.4-1.675 4.075T15.848 16.8h-1.7a.53.53 0 0 0-.35.125.4.4 0 0 0-.15.325q0 .376.375.625.375.25.375 1.325 0 .925-.675 1.663-.675.737-1.725.737m-5.4-8.7q.625 0 1.063-.438t.437-1.063-.437-1.062a1.45 1.45 0 0 0-1.063-.438q-.624 0-1.062.438a1.45 1.45 0 0 0-.438 1.062q0 .625.438 1.063t1.062.437m3-3.6q.625 0 1.063-.438t.437-1.063q0-.624-.437-1.062a1.45 1.45 0 0 0-1.063-.438q-.624 0-1.062.438a1.45 1.45 0 0 0-.438 1.062q0 .625.438 1.063t1.062.437m4.8 0q.625 0 1.063-.438t.437-1.063q0-.624-.437-1.062a1.45 1.45 0 0 0-1.063-.438q-.624 0-1.062.438a1.45 1.45 0 0 0-.438 1.062q0 .625.438 1.063t1.062.437m3 3.6q.625 0 1.063-.438t.437-1.063-.437-1.062a1.45 1.45 0 0 0-1.063-.438q-.624 0-1.062.438a1.45 1.45 0 0 0-.438 1.062q0 .625.438 1.063t1.062.437m-5.4 6.9q.276 0 .438-.213.162-.212.162-.388 0-.4-.375-.7t-.375-1.25.663-1.6q.664-.65 1.612-.65h1.725q1.65 0 2.8-1.15t1.15-2.8q0-2.874-2.212-4.862t-5.388-1.988q-3.35 0-5.675 2.275T4.198 12t2.275 5.525 5.525 2.275"></path></symbol><symbol id="icon-pathfinder-users" viewBox="0 0 25 25"><path fill="currentColor" fill-rule="evenodd" d="M21 2.83H3v2h18zm0 4s-2.515.01-4 .5-4 2-4 2l1.5 2.5 1.656-.946a8 8 0 0 1 3.968-1.053H21zm-4.304 14H21v-3h-2.804a4 4 0 0 1-3.375-1.853l-4.642-7.294A4 4 0 0 0 6.804 6.83H3v2.996h2.304a4 4 0 0 1 3.375 1.854l4.642 7.297a4 4 0 0 0 3.375 1.853M9 15a2 2 0 1 0-3.999-.001 2 2 0 0 0 3.999 0m-1 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m-5 4.83v1h8v-1c0-1.33-2.665-2-4-2s-4 .67-4 2m1 0c.1-.355 1.65-1 3-1 1.345 0 2.885.64 3 1z" clip-rule="evenodd"></path></symbol><symbol id="icon-pathfinder" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M21 3H3v2h18zm0 18h-4.304a4 4 0 0 1-3.375-1.853L8.679 11.85a4 4 0 0 0-3.375-1.854H3V7h3.804a4 4 0 0 1 3.375 1.853l4.642 7.294A4 4 0 0 0 18.196 18H21zm0-14s-2.515.01-4 .5-4 2-4 2l1.5 2.5 1.656-.946A8 8 0 0 1 20.124 10H21z" clip-rule="evenodd"></path></symbol><symbol id="icon-pause-filled" viewBox="0 0 24 24"><path fill="currentColor" d="M6 18a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1zm9-13a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1z"></path></symbol><symbol id="icon-pause" viewBox="0 0 24 24"><path fill="currentColor" d="M9 16h2V8H9zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m1-4h2V8h-2z"></path></symbol><symbol id="icon-pencil" viewBox="0 0 24 24"><path fill="currentColor" d="m14.06 9.02.92.92L5.92 19H5v-.92zM17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83a.996.996 0 0 0 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29m-3.6 3.19L3 17.25V21h3.75L17.81 9.94z"></path></symbol><symbol id="icon-percent" viewBox="0 0 24 24"><path fill="currentColor" d="M8.063 5A3.066 3.066 0 0 0 5 8.063a3.066 3.066 0 0 0 3.063 3.062 3.066 3.066 0 0 0 3.062-3.062A3.066 3.066 0 0 0 8.063 5m0 4.375A1.31 1.31 0 0 1 6.75 8.063 1.31 1.31 0 0 1 8.063 6.75a1.31 1.31 0 0 1 1.312 1.313 1.31 1.31 0 0 1-1.312 1.312m7.874 3.5a3.066 3.066 0 0 0-3.062 3.063A3.066 3.066 0 0 0 15.938 19 3.066 3.066 0 0 0 19 15.938a3.066 3.066 0 0 0-3.062-3.063m0 4.375a1.31 1.31 0 0 1-1.312-1.312 1.31 1.31 0 0 1 1.313-1.313 1.31 1.31 0 0 1 1.312 1.313 1.31 1.31 0 0 1-1.312 1.312M6.235 19 5 17.766 17.766 5 19 6.234z"></path></symbol><symbol id="icon-person-add" viewBox="0 0 24 24"><path fill="currentColor" d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4m-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z"></path></symbol><symbol id="icon-person-contained" viewBox="0 0 24 24"><path fill="currentColor" d="M21 3H3c-1.1 0-2 .9-2 2v8h2V5h18v16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"></path><path fill="currentColor" d="M13 10c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4 4-1.79 4-4m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2M15.39 16.56C13.71 15.7 11.53 15 9 15s-4.71.7-6.39 1.56A2.97 2.97 0 0 0 1 19.22V22h16v-2.78c0-1.12-.61-2.15-1.61-2.66M15 20H3c0-.72-.1-1.34.52-1.66C4.71 17.73 6.63 17 9 17s4.29.73 5.48 1.34c.63.32.52.95.52 1.66"></path></symbol><symbol id="icon-person" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4"></path></symbol><symbol id="icon-personas" viewBox="0 0 24 24"><path fill="currentColor" d="M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M16.5 3A5.51 5.51 0 0 0 11 8.5c0 3.03 2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3m0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12"></path></symbol><symbol id="icon-pie-chart" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93M4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93m9 7.93V13h6.93A8 8 0 0 1 13 19.93"></path></symbol><symbol id="icon-pin-bottom" viewBox="0 0 24 24"><path fill="currentColor" d="m12 11.5 4-4H8zM19 3q.824 0 1.413.587Q21 4.176 21 5v14q0 .824-.587 1.413A1.93 1.93 0 0 1 19 21H5q-.824 0-1.412-.587A1.93 1.93 0 0 1 3 19V5q0-.824.587-1.412A1.93 1.93 0 0 1 5 3zM5 16v3h14v-3zm14-2V5H5v9z"></path></symbol><symbol id="icon-pin-solid" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M16 9V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3" clip-rule="evenodd"></path></symbol><symbol id="icon-pin-top" viewBox="0 0 24 24"><path fill="currentColor" d="m12 12.7 4 4.4H8zM19 3q.824 0 1.413.587Q21 4.176 21 5v14q0 .824-.587 1.413A1.93 1.93 0 0 1 19 21H5q-.824 0-1.412-.587A1.93 1.93 0 0 1 3 19V5q0-.824.587-1.412A1.93 1.93 0 0 1 5 3zM5 10v9h14v-9zm14-2V5H5v3z"></path></symbol><symbol id="icon-pin" viewBox="0 0 24 24"><path fill="currentColor" d="M14 4v5c0 1.12.37 2.16 1 3H9c.65-.86 1-1.9 1-3V4zm3-2H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3V4h1c.55 0 1-.45 1-1s-.45-1-1-1"></path></symbol><symbol id="icon-plan" viewBox="0 0 24 24"><path fill="currentColor" d="M14 10H2v2h12zm0-4H2v2h12zM2 16h8v-2H2zm19.5-4.5L23 13l-6.99 7-4.51-4.5L13 14l3.01 3z"></path></symbol><symbol id="icon-play-filled" viewBox="0 0 24 24"><path fill="currentColor" d="M9.537 5.978A1 1 0 0 0 8 6.822v10.356a1 1 0 0 0 1.537.844l8.137-5.178a1 1 0 0 0 0-1.688z"></path></symbol><symbol id="icon-play" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12m2 0c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8-8 3.59-8 8m5.739-4.685 6.6 4.012a.903.903 0 0 1 0 1.575l-6.6 3.788a.902.902 0 0 1-1.339-.788v-7.8a.902.902 0 0 1 1.339-.787M9.6 9.036v5.959c0 .172.187.281.337.195l5.044-2.895a.225.225 0 0 0 .004-.386L9.941 8.845a.223.223 0 0 0-.341.191" clip-rule="evenodd"></path></symbol><symbol id="icon-plus" viewBox="0 0 24 24"><path fill="currentColor" d="M18 13.2h-4.8V18h-2.4v-4.8H6v-2.4h4.8V6h2.4v4.8H18z"></path></symbol><symbol id="icon-prediction" viewBox="0 0 24 24"><path fill="currentColor" d="M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2m-4 12.5h-2V19h2zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5m5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5m-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5"></path></symbol><symbol id="icon-priority-high" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M20 4h-4v16h4zM10 8h4v12h-4zm-6 5h4v7H4z" clip-rule="evenodd"></path></symbol><symbol id="icon-priority-low" viewBox="0 0 24 24"><path fill="currentColor" d="M4 13h4v7H4z"></path><path fill="currentColor" fill-opacity=".25" d="M10 8h4v12h-4zM16 4h4v16h-4z"></path></symbol><symbol id="icon-priority-medium" viewBox="0 0 24 24"><path fill="currentColor" d="M4 13h4v7H4zM10 8h4v12h-4z"></path><path fill="currentColor" fill-opacity=".25" d="M16 4h4v16h-4z"></path></symbol><symbol id="icon-priority-urgent" viewBox="0 0 24 24"><path fill="currentColor" d="M6.5 20q-.6 0-1.05-.45T5 18.5t.45-1.05T6.5 17t1.05.45T8 18.5t-.45 1.05T6.5 20M5 15V4h3v11zM11.5 20q-.6 0-1.05-.45T10 18.5t.45-1.05T11.5 17t1.05.45.45 1.05-.45 1.05-1.05.45M10 15V4h3v11zM16.5 20q-.6 0-1.05-.45T15 18.5t.45-1.05T16.5 17t1.05.45.45 1.05-.45 1.05-1.05.45M15 15V4h3v11z"></path></symbol><symbol id="icon-profile" viewBox="0 -960 960 960"><path fill="currentColor" d="M560-440h200v-80H560zm0-120h200v-80H560zM200-320h320v-22q0-45-44-71.5T360-440t-116 26.5-44 71.5zm160-160q33 0 56.5-23.5T440-560t-23.5-56.5T360-640t-56.5 23.5T280-560t23.5 56.5T360-480M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160zm0-80h640v-480H160zm0 0v-480z"></path></symbol><symbol id="icon-project" viewBox="0 0 24 24"><path fill="currentColor" d="M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7m-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5"></path></symbol><symbol id="icon-question-mark-circle" viewBox="0 0 24 24"><path fill="currentColor" d="M11 18h2v-2h-2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4"></path></symbol><symbol id="icon-question-mind" viewBox="0 0 24 24"><path fill="currentColor" d="M6 22v-4.3a9.2 9.2 0 0 1-2.212-3.037A8.8 8.8 0 0 1 3 11q0-3.75 2.625-6.375T12 2q3.125 0 5.538 1.838 2.412 1.838 3.137 4.787L22 13.75a.95.95 0 0 1-.175.863.96.96 0 0 1-.8.387H19v3a1.93 1.93 0 0 1-.587 1.413A1.93 1.93 0 0 1 17 20h-2v2h-2v-4h4v-5h2.7l-.95-3.875a6.53 6.53 0 0 0-2.45-3.7Q14.425 4 12 4 9.1 4 7.05 6.025T5 10.95q0 1.5.613 2.85.612 1.35 1.737 2.4l.65.6V22zm6-6a.97.97 0 0 0 .713-.287A.97.97 0 0 0 13 15a.97.97 0 0 0-.287-.712A.97.97 0 0 0 12 14a.97.97 0 0 0-.712.288A.97.97 0 0 0 11 15q0 .425.288.713A.97.97 0 0 0 12 16m-.75-3.2h1.525q0-.624.163-1.012.162-.388.662-.938.45-.5.875-1.012.425-.513.425-1.338 0-1.05-.812-1.775T12.075 6q-1 0-1.812.575a3.04 3.04 0 0 0-1.138 1.5l1.375.575a1.77 1.77 0 0 1 .613-.887q.437-.338.962-.338.55 0 .913.3.362.3.362.775 0 .525-.312.938a8 8 0 0 1-.738.837q-.5.525-.775 1.05T11.25 12.8"></path></symbol><symbol id="icon-rca" viewBox="0 0 24 24"><path fill="currentColor" d="m12 7.57 4.42 4.42L12 16.41l-4.42-4.42zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63zm8 .81h2v2h-2zm2-10h-2v8h2z"></path></symbol><symbol id="icon-re-roll" viewBox="0 0 22 22"><path fill="currentColor" d="M6.928 13.797a.94.94 0 0 0 .741-.071.94.94 0 0 0 .471-.577.94.94 0 0 0-.071-.74.94.94 0 0 0-.576-.472.94.94 0 0 0-.742.072.94.94 0 0 0-.47.576.94.94 0 0 0 .07.741.94.94 0 0 0 .577.471m1.693-5.58a.94.94 0 0 0 .74-.071.94.94 0 0 0 .472-.577.94.94 0 0 0-.072-.74.94.94 0 0 0-.576-.472.94.94 0 0 0-.741.072.94.94 0 0 0-.471.576.94.94 0 0 0 .071.741.94.94 0 0 0 .577.471m1.944 3.636a.94.94 0 0 0 .74-.071.94.94 0 0 0 .472-.576.94.94 0 0 0-.072-.742.94.94 0 0 0-.576-.47.94.94 0 0 0-.741.07.94.94 0 0 0-.471.577.94.94 0 0 0 .071.741.94.94 0 0 0 .577.471m1.943 3.637a.94.94 0 0 0 .741-.072.94.94 0 0 0 .471-.576.94.94 0 0 0-.071-.741.94.94 0 0 0-.577-.472.94.94 0 0 0-.74.072.94.94 0 0 0-.472.576.94.94 0 0 0 .072.742.94.94 0 0 0 .576.47m1.693-5.58a.94.94 0 0 0 .74-.072.94.94 0 0 0 .472-.576.94.94 0 0 0-.072-.741.94.94 0 0 0-.576-.471.94.94 0 0 0-.741.071.94.94 0 0 0-.471.577.94.94 0 0 0 .071.74.94.94 0 0 0 .577.472m-9.387 5.277a1.25 1.25 0 0 1-.765-.63 1.25 1.25 0 0 1-.099-.986l2.633-8.68q.154-.51.63-.765.474-.254.986-.099l8.68 2.633q.51.154.765.63.254.474.099.986l-2.633 8.68a1.25 1.25 0 0 1-.63.765q-.474.254-.986.099zm.376-1.24 8.68 2.633 2.633-8.68-8.68-2.633z"></path></symbol><symbol id="icon-recommendation" viewBox="0 0 24 24"><path fill="currentColor" d="M5 15h14V9H5zm2-4h10v2H7zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z"></path></symbol><symbol id="icon-redo" viewBox="0 0 24 24"><path fill="currentColor" d="M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16a8 8 0 0 1 7.6-5.5c1.95 0 3.73.72 5.12 1.88L13 16h9V7z"></path></symbol><symbol id="icon-refresh" viewBox="0 0 24 24"><g clip-path="url(#bc15__a)"><path fill="currentColor" d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0 0 20 12c0-4.42-3.58-8-8-8m0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 0 0 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4z"></path></g><defs><clippath id="bc15__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="icon-release" viewBox="0 0 24 24"><path fill="currentColor" d="m20 18-4-4v3H9c-1.1 0-2-.9-2-2s.9-2 2-2h7c2.21 0 4-1.79 4-4s-1.79-4-4-4H6v2h10c1.1 0 2 .9 2 2s-.9 2-2 2H9c-2.21 0-4 1.79-4 4s1.79 4 4 4h7v3z"></path><path fill="currentColor" d="M7 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4"></path></symbol><symbol id="icon-rename" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M21.995 16.471 18.516 7.3H16.73l-3.479 9.171h1.815l.798-2.323h3.41l.797 2.323zm-10.383-5.94a.37.37 0 0 0-.627.272l.017.965-1.8.031a.682.682 0 1 0 .024 1.364l1.8-.032.017.965a.37.37 0 0 0 .635.25l1.874-1.941zm4.732 2.186 1.223-3.56 1.21 3.56zm-10.92 3.71q.536-.247.797-.563l.042.605h1.512v-4.332q0-.509-.193-.941a2.1 2.1 0 0 0-.55-.743 2.6 2.6 0 0 0-.859-.481 3.4 3.4 0 0 0-1.12-.172q-.577 0-1.011.076-.433.075-.763.192t-.578.261q-.247.145-.44.282l.743 1.1q.316-.206.728-.385.414-.178 1.1-.178.62 0 1.004.274a.88.88 0 0 1 .385.757v.151l-.508-.027a14 14 0 0 0-.88-.028q-.633 0-1.155.151-.524.152-.894.447a2.04 2.04 0 0 0-.578.729 2.26 2.26 0 0 0-.206.983q0 .536.2.935.198.399.522.653.323.255.715.378.392.124.79.124.66 0 1.197-.248m.316-2.9.481.027v.632q0 .247-.13.468-.131.22-.337.385a1.6 1.6 0 0 1-.475.261 1.6 1.6 0 0 1-.556.096q-.578 0-.874-.234-.295-.232-.295-.646 0-.399.316-.708.315-.31 1.1-.31a12 12 0 0 1 .77.028" clip-rule="evenodd"></path></symbol><symbol id="icon-replay-10" viewBox="0 0 24 24"><g fill="currentColor" clip-path="url(#8abc__a)"><path d="M11.992 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8"></path><path d="M10.891 16h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09zM15.171 14.24c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33q-.195-.225-.3-.57c-.07-.23-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33q.195.225.3.57c.07.23.11.5.11.82zm-.85-.86c0-.19-.01-.35-.04-.48a1 1 0 0 0-.12-.31.4.4 0 0 0-.19-.17.655.655 0 0 0-.5 0c-.07.03-.14.09-.19.17s-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z"></path></g><defs><clippath id="8abc__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="icon-restore-from-archive" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M4 2.5h16c1 0 2 .9 2 2v2.01c0 .72-.43 1.34-1 1.69v11.3c0 1.1-1.1 2-2 2H5c-.9 0-2-.9-2-2V8.2c-.57-.35-1-.97-1-1.69V4.5c0-1.1 1-2 2-2m1 6v11h14v-11zm-1-2h16v-2H4zM8 14h2.55v3h2.9v-3H16l-4-4z" clip-rule="evenodd"></path></symbol><symbol id="icon-restore-from-trash" viewBox="0 0 24 24"><path fill="currentColor" d="M16 4.056 14.857 3H9.143L8 4.056H4v2.11h16v-2.11zM5.143 19.889C5.143 21.05 6.17 22 7.429 22h9.142c1.258 0 2.286-.95 2.286-2.111V7.222H5.143zm2.286-5.278V9.333h9.142V19.89H7.43z"></path><path fill="currentColor" d="M10.55 15H8l4-4 4 4h-2.55v3h-2.9z"></path></symbol><symbol id="icon-retention" viewBox="0 0 24 24"><path fill="currentColor" d="M5 5H3V3h2zm16 10h-2v2h2zm0 4h-2v2h2zM9 3H7v2h2zm0 0H7v2h2zM3 16c0 2.76 2.24 5 5 5h9v-2H8c-1.65 0-3-1.35-3-3V7H3z"></path></symbol><symbol id="icon-revenue-ltv" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42"></path></symbol><symbol id="icon-reverse-left" viewBox="0 0 24 24"><path fill="currentColor" fill-opacity=".1" d="M-654-271h11237v-2H-654zm11238 1v1476h2V-270zm-1 1477H-654v2h11237zm-11238-1V-270h-2v1476zm1 1c-.552 0-1-.45-1-1h-2c0 1.66 1.343 3 3 3zm11238-1c0 .55-.4 1-1 1v2c1.7 0 3-1.34 3-3zm-1-1477c.6 0 1 .448 1 1h2c0-1.657-1.3-3-3-3zm-11237-2a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1z"></path><path fill="currentColor" d="M7 19v-2h7.1q1.576 0 2.737-1Q18 15 18 13.5T16.837 11 14.1 10H7.8l2.6 2.6L9 14 4 9l5-5 1.4 1.4L7.8 8h6.3q2.425 0 4.163 1.575Q20 11.15 20 13.5t-1.738 3.925Q16.526 19 14.1 19z"></path></symbol><symbol id="icon-rocket" viewBox="0 0 24 24"><path fill="currentColor" d="m5.762 9.912 1.95.825q.35-.7.725-1.35t.825-1.3l-1.4-.275zm3.55 2.075 2.85 2.825q1.05-.4 2.25-1.225t2.25-1.875A13.5 13.5 0 0 0 19.4 7.824q.987-2.137.862-3.937-1.8-.125-3.95.862a13.4 13.4 0 0 0-3.9 2.738q-1.05 1.05-1.875 2.25t-1.225 2.25m4.45-1.625a1.92 1.92 0 0 1-.575-1.413q0-.838.575-1.412.575-.576 1.425-.575.85 0 1.425.575t.575 1.412a1.92 1.92 0 0 1-.575 1.413q-.574.575-1.425.575-.85 0-1.425-.575m.475 8.025 2.1-2.1-.275-1.4q-.65.45-1.3.812t-1.35.713zm7.825-16.325q.475 3.024-.587 5.887-1.064 2.863-3.663 5.463l.5 2.475q.1.5-.05.975-.15.474-.5.825l-4.2 4.2-2.1-4.925-4.275-4.275-4.925-2.1 4.175-4.2q.35-.35.838-.5t.987-.05l2.475.5q2.6-2.601 5.45-3.675 2.85-1.076 5.875-.6m-18.025 13.8q.875-.876 2.138-.888t2.137.863.863 2.137q-.014 1.262-.888 2.138-.625.624-2.087 1.075t-4.038.8q.35-2.575.8-4.038.45-1.462 1.075-2.087m1.425 1.4q-.25.249-.5.912a6.5 6.5 0 0 0-.35 1.338q.675-.1 1.338-.338.662-.237.912-.487.3-.3.325-.725a.9.9 0 0 0-.275-.725.95.95 0 0 0-.725-.288 1.03 1.03 0 0 0-.725.313"></path></symbol><symbol id="icon-rows" viewBox="0 0 24 24"><path fill="currentColor" d="M2.348 1.5h16.439a2.35 2.35 0 0 1 2.348 2.348v8.313a7.06 7.06 0 0 0-5.072 1.08h-4.321v4.697h1.268a7.2 7.2 0 0 0 0 2.349H2.348A2.35 2.35 0 0 1 0 17.938V3.848A2.355 2.355 0 0 1 2.348 1.5m0 4.697v4.696h7.045V6.197zm9.394 0v4.696h7.045V6.197zm-9.394 7.045v4.696h7.045v-4.696zm18.13 9.393v-2.348H15.78v-2.349h4.696V15.59L24 19.113z"></path></symbol><symbol id="icon-save-a-copy" viewBox="0 0 24 24"><path fill="currentColor" d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11zM8 21V7h6v5h5v9z"></path></symbol><symbol id="icon-save" viewBox="0 0 24 24"><path fill="currentColor" d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V7zm2 16H5V5h11.17L19 7.83zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M6 6h9v4H6z"></path></symbol><symbol id="icon-scrollmap" viewBox="0 0 24 24"><path fill="currentColor" d="M5 21q-.824 0-1.412-.587A1.93 1.93 0 0 1 3 19V5q0-.824.587-1.412A1.93 1.93 0 0 1 5 3h14q.824 0 1.413.587Q21 4.176 21 5v14q0 .824-.587 1.413A1.93 1.93 0 0 1 19 21zm0-2h14v-5H5zm0-7h14V5H5z"></path></symbol><symbol id="icon-search" viewBox="0 0 24 24"><path fill="currentColor" d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14"></path></symbol><symbol id="icon-segmentation" viewBox="0 0 24 24"><path fill="currentColor" d="M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2"></path></symbol><symbol id="icon-selectors" viewBox="0 0 24 24"><path fill="currentColor" d="M11.25 13.083V9.417h1.833v1.833h1.834v1.833zm6.417 0V11.25H19.5V9.417h1.833v3.666zM11.25 6.667V3h3.667v1.833h-1.834v1.834zm8.25 0V4.833h-1.833V3h3.666v3.667zM4.283 21.333 3 20.05l5.133-5.133H3.917v-1.834h7.333v7.334H9.417V16.2z"></path></symbol><symbol id="icon-session-replay" viewBox="0 0 24 24"><path fill="currentColor" stroke="currentColor" stroke-width=".6" d="M4.433 18.015q-.912-1.18-1.393-2.35a9.6 9.6 0 0 1-.642-2.592H3.48q.16 1.18.588 2.239a8 8 0 0 0 1.122 1.944zm-2.035-7.088a10 10 0 0 1 .648-2.582q.475-1.16 1.387-2.34l.757.76a8 8 0 0 0-1.122 1.933 9.1 9.1 0 0 0-.588 2.23zM10.855 21.6q-1.54-.223-2.642-.706-1.101-.481-2.283-1.365l.757-.771A9.3 9.3 0 0 0 8.61 19.9q1.05.466 2.246.627zM6.74 5.222l-.769-.772q1.183-.882 2.283-1.355 1.101-.472 2.655-.695v1.073a8.5 8.5 0 0 0-2.255.616A8.6 8.6 0 0 0 6.74 5.222Zm3.47 10.377a.24.24 0 0 1-.37-.202V8.603c0-.19.21-.305.37-.202l5.278 3.397a.24.24 0 0 1 0 .404zm2.837 6.001v-1.073q3.234-.455 5.358-2.869 2.124-2.413 2.124-5.658t-2.124-5.658-5.358-2.87V2.4q3.684.394 6.117 3.135Q21.598 8.277 21.598 12q.001 3.723-2.434 6.465-2.433 2.74-6.117 3.135Z"></path></symbol><symbol id="icon-settings" viewBox="0 0 24 24"><path fill="currentColor" d="M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46a.5.5 0 0 0-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65A.49.49 0 0 0 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1a.6.6 0 0 0-.18-.03c-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46a.5.5 0 0 0 .61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1q.09.03.18.03c.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64zm-1.98-1.71c.04.31.05.52.05.73s-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"></path></symbol><symbol id="icon-shapes" viewBox="0 0 24 24"><path fill="currentColor" d="M6.667 14.958A9 9 0 0 0 7.5 15a8 8 0 0 0 .833-.042v1.709h8.334V8.333h-1.709A9 9 0 0 0 15 7.5a8 8 0 0 0-.042-.833h1.709q.687 0 1.177.49.49.489.49 1.176v8.334q0 .687-.49 1.177t-1.177.49H8.333q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177zm.833-1.625q-2.438 0-4.135-1.697Q1.667 9.938 1.667 7.5q0-2.437 1.698-4.135T7.5 1.667t4.135 1.698T13.333 7.5t-1.698 4.136T7.5 13.333m0-1.666q1.729 0 2.948-1.219Q11.666 9.23 11.667 7.5q0-1.729-1.22-2.948Q9.23 3.333 7.5 3.333t-2.948 1.22Q3.333 5.77 3.333 7.5t1.219 2.948q1.219 1.22 2.948 1.219"></path></symbol><symbol id="icon-share" viewBox="0 0 24 24"><path fill="currentColor" d="M17 22a2.9 2.9 0 0 1-2.125-.875A2.9 2.9 0 0 1 14 19q0-.15.075-.7L7.05 14.2A2.97 2.97 0 0 1 5 15a2.9 2.9 0 0 1-2.125-.875A2.9 2.9 0 0 1 2 12q0-1.25.875-2.125A2.9 2.9 0 0 1 5 9a2.97 2.97 0 0 1 2.05.8l7.025-4.1a1.7 1.7 0 0 1-.062-.338A5 5 0 0 1 14 5q0-1.25.875-2.125A2.9 2.9 0 0 1 17 2q1.25 0 2.125.875T20 5t-.875 2.125A2.9 2.9 0 0 1 17 8a2.97 2.97 0 0 1-2.05-.8l-7.025 4.1q.05.176.063.337Q8 11.801 8 12q0 .2-.013.363t-.062.337l7.025 4.1A2.97 2.97 0 0 1 17 16q1.25 0 2.125.875T20 19t-.875 2.125A2.9 2.9 0 0 1 17 22m0-2q.424 0 .712-.288A.97.97 0 0 0 18 19a.97.97 0 0 0-.288-.712A.97.97 0 0 0 17 18a.97.97 0 0 0-.712.288A.97.97 0 0 0 16 19q0 .424.288.712.287.288.712.288M5 13q.424 0 .713-.287A.97.97 0 0 0 6 12a.97.97 0 0 0-.287-.713A.97.97 0 0 0 5 11a.97.97 0 0 0-.713.287A.97.97 0 0 0 4 12q0 .424.287.713Q4.576 13 5 13m12-7q.424 0 .712-.287A.97.97 0 0 0 18 5a.97.97 0 0 0-.288-.713A.97.97 0 0 0 17 4a.97.97 0 0 0-.712.287A.97.97 0 0 0 16 5q0 .424.288.713Q16.575 6 17 6"></path></symbol><symbol id="icon-shopping-cart" viewBox="0 0 24 24"><path fill="currentColor" d="M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49A.996.996 0 0 0 20.01 4H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2zM6.16 6h12.15l-2.76 5H8.53zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2m10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2"></path></symbol><symbol id="icon-slack" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M9.626 6.782c-1.04 0-1.891-.85-1.891-1.891S8.585 3 9.625 3c1.042 0 1.892.85 1.892 1.89v1.892zM4.89 16.265c1.04 0 1.89-.85 1.89-1.89v-1.892h-1.89c-1.04 0-1.891.85-1.891 1.891s.85 1.891 1.89 1.891m4.735-3.782c-1.04 0-1.891.85-1.891 1.891v4.735c0 1.04.85 1.89 1.89 1.89 1.042 0 1.892-.85 1.892-1.89v-4.735c0-1.04-.85-1.89-1.891-1.89m1.89-2.858c0-1.04-.85-1.89-1.89-1.89H4.89C3.85 7.734 3 8.584 3 9.624s.85 1.891 1.89 1.891h4.735c1.041 0 1.891-.85 1.891-1.89m5.702 0c0-1.04.85-1.89 1.891-1.89S21 8.584 21 9.624s-.85 1.891-1.89 1.891h-1.892zm-2.844 1.891c1.04 0 1.891-.85 1.891-1.89V4.89c0-1.04-.85-1.891-1.89-1.891-1.042 0-1.892.85-1.892 1.89v4.735c0 1.041.85 1.891 1.891 1.891m0 5.702c1.04 0 1.891.85 1.891 1.89 0 1.042-.85 1.892-1.89 1.892-1.042 0-1.892-.85-1.892-1.891v-1.891zm-1.89-2.844c0 1.041.85 1.891 1.89 1.891h4.735c1.04 0 1.89-.85 1.89-1.89s-.85-1.892-1.89-1.892h-4.735c-1.04 0-1.89.85-1.89 1.891" clip-rule="evenodd"></path></symbol><symbol id="icon-snail" viewBox="0 0 24 24"><path fill="currentColor" d="M15.198 2.325c-.428.267-.783.489-.789.494s.596.879 1.336 1.941l1.347 1.932-.115.084a2.4 2.4 0 0 0-.958 1.439c-.048.203-.058.808-.058 3.552 0 2.245-.015 3.344-.044 3.42-.185.489-.754.452-1.187.453l.02-.436c.098-2.063-1.043-4.035-2.93-5.063-.94-.513-1.847-.739-2.966-.74-1.46-.002-2.81.481-3.885 1.391-1.169.99-1.836 2.267-1.967 3.768a3.87 3.87 0 0 0 .337 2.026l.135.292-.49.491c-.525.524-.785.875-1.074 1.452-.416.831-.546 1.394-.578 2.51l-.023.79 8.136-.01 7.595-.01a3.3 3.3 0 0 0 1.056-.16c.902-.31 1.703-.772 2.302-1.573.364-.486.647-1.22.721-1.868.025-.225.04-2.14.04-5.12-.002-5.146 0-5.136-.216-5.604-.13-.287-.433-.711-.585-.824-.065-.048-.118-.101-.118-.118s.56-.934 1.243-2.037 1.237-2.01 1.23-2.016c-.09-.081-1.616-.893-1.635-.871-.015.016-.544.867-1.176 1.89q-.584.951-1.18 1.893c-.018.018-.63-.828-1.363-1.88q-.675-.974-1.357-1.943c-.014-.016-.376.188-.804.455m3.9 5.882c.114.11.142.273.142.43v4.841c0 5.403.01 5.167-.23 5.619-.295.559-.916 1.01-1.52 1.146-.294.075-.515.077-7.216.077-6.023 0-6.914-.007-6.914-.058 0-.116.193-.585.364-.886.177-.31.591-.79.876-1.016l.155-.122.225.144c.31.198.725.369 1.174.483 1.464.371 3.09-.077 4.145-1.143l.28-.282h2.446c2.756 0 2.84-.007 3.401-.276.627-.3.912-.614 1.107-.983.228-.432.288-.932.291-1.42l.016-2.741c.014-2.424.019-3.16.05-3.434a.64.64 0 0 1 .138-.36c.211-.235.75-.325 1.07-.019M9.605 11.26c1.558.273 2.81 1.415 3.158 2.885.114.477.135 1.016.031 1.496H11.4c.073-.399.073-.804.002-1.204-.203-.879-1.015-1.667-1.914-1.858-.604-.128-1.328-.042-1.833.217-.88.451-1.374 1.315-1.374 2.285h1.88a.85.85 0 0 1 .084-.388c.226-.467.926-.499 1.225-.055.171.253.101.843-.159 1.34-.162.31-.616.764-.93.929a2.48 2.48 0 0 1-2.252.031c-.579-.285-1.094-.936-1.21-1.529-.06-.311-.029-.965.064-1.328.078-.304.357-.916.535-1.176.608-.883 1.608-1.49 2.763-1.677.248-.04 1.02-.022 1.325.032"></path></symbol><symbol id="icon-snowflake" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M8.68 12.365c-.09.29-.284.546-.57.71L3.873 15.51a1.25 1.25 0 0 1-1.704-.453 1.24 1.24 0 0 1 .455-1.698L4.992 12l-2.368-1.362a1.235 1.235 0 0 1-.455-1.696 1.25 1.25 0 0 1 1.704-.455l4.237 2.435a1.236 1.236 0 0 1 .57 1.443m1.149 2.283a1.243 1.243 0 0 1 1.155 1.237v4.872c0 .687-.56 1.243-1.248 1.243-.69 0-1.248-.556-1.248-1.243v-2.725l-2.376 1.363a1.243 1.243 0 1 1-1.247-2.152l4.24-2.433a1.23 1.23 0 0 1 .724-.162m4.343-5.295a1.245 1.245 0 0 1-1.155-1.24V3.242c0-.685.556-1.241 1.247-1.241s1.249.556 1.249 1.241v2.727l2.374-1.366a1.25 1.25 0 0 1 1.703.454 1.24 1.24 0 0 1-.456 1.698l-4.24 2.436c-.228.13-.48.182-.722.163M4.865 6.754a1.24 1.24 0 0 1-.457-1.698 1.25 1.25 0 0 1 1.704-.454l2.376 1.366V3.24C8.488 2.556 9.046 2 9.736 2c.688 0 1.248.556 1.248 1.241v4.873c0 .653-.51 1.191-1.155 1.239a1.25 1.25 0 0 1-.724-.163zm7.615 7.475a.35.35 0 0 1-.222.093h-.518a.36.36 0 0 1-.221-.093l-1.762-1.752a.36.36 0 0 1-.09-.219v-.516c0-.072.04-.171.09-.221l1.762-1.752a.36.36 0 0 1 .22-.092h.519c.072 0 .171.04.222.092l1.762 1.752c.05.05.09.15.09.22v.518c0 .07-.04.168-.09.218zm.353-2.238a.37.37 0 0 0-.093-.222l-.51-.506a.36.36 0 0 0-.22-.091h-.021a.36.36 0 0 0-.22.091l-.51.506a.36.36 0 0 0-.09.222v.02c0 .07.04.167.09.218l.51.507c.05.05.149.091.22.091h.02c.071 0 .17-.041.22-.091l.51-.507a.36.36 0 0 0 .094-.218zm6.3 5.252a1.243 1.243 0 1 1-1.246 2.152l-2.374-1.363v2.725c0 .687-.558 1.243-1.249 1.243a1.244 1.244 0 0 1-1.247-1.243v-4.872c0-.654.508-1.191 1.155-1.237.242-.021.494.03.722.162zm-.126-5.242 2.368 1.36c.598.343.803 1.101.457 1.697a1.25 1.25 0 0 1-1.704.453l-4.24-2.436a1.23 1.23 0 0 1-.567-.71 1.2 1.2 0 0 1-.012-.697c.085-.303.284-.575.579-.746l4.24-2.435a1.25 1.25 0 0 1 1.704.455 1.236 1.236 0 0 1-.457 1.696z" clip-rule="evenodd"></path></symbol><symbol id="icon-sort-alpha-down" viewBox="0 0 24 24"><path fill="currentColor" d="M15.75 5.5h-1.5l-4.75 11h2.1l.9-2.2h5l.9 2.2h2.1zm-2.62 7L15 7.48l1.87 5.02zM6 20.5l3-3H7v-14H5v14H3z"></path></symbol><symbol id="icon-sort-alpha-up" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m6 20.5 3-3H7v-14H5v14H3zm13-5.14h-6.457L19 6.76V5.5h-8.958v1.6h6.204L10 15.66v1.29h9z" clip-rule="evenodd"></path></symbol><symbol id="icon-sort-caret-down" viewBox="0 0 24 24"><path fill="currentColor" d="m7 9 5-5 5 5z" opacity=".25"></path><path fill="currentColor" d="m7 15 5 5 5-5z"></path></symbol><symbol id="icon-sort-caret-up" viewBox="0 0 24 24"><path fill="currentColor" d="m7 9 5-5 5 5z"></path><path fill="currentColor" d="m7 15 5 5 5-5z" opacity=".25"></path></symbol><symbol id="icon-sort-default" viewBox="0 0 24 24"><g fill="currentColor" fill-opacity=".25" clip-path="url(#9161__a)"><path d="m7 9 5-5 5 5zM7 15l5 5 5-5z"></path></g><defs><clippath id="9161__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="icon-sort-num-down" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m8 21 3-3H9V3H7v15H5zM19 9V3h-2v6zm-5 6V3h-2v12z" clip-rule="evenodd"></path></symbol><symbol id="icon-sort-num-up" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m16 3-3 3h2v15h2V6h2zM5 15v6h2v-6zm7-6h-2v12h2z" clip-rule="evenodd"></path></symbol><symbol id="icon-sql" viewBox="0 0 24 24"><g clip-path="url(#c3e3__a)"><path fill="currentColor" d="M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6z"></path></g><defs><clippath id="c3e3__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="icon-stacked-area-chart" viewBox="0 0 24 24"><path fill="currentColor" d="M16 8.5 12.4 5l-4.8 5.688L4 8.037V19h16V8.5zm0 6.125-3.6-2.187-4.8 5.25L4 14.625v-3.062l3.6 3.062 4.8-5.687L16 12l4-.875v2.625z"></path></symbol><symbol id="icon-stacked-bar-chart" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M5 5h3v3.5H5zm0 5.375h3V19H5zm8.5-2.75h-3v3.5h3zM16 10.25h3v3.5h-3zm3 5.375h-3V19h3zM10.5 13h3v6h-3z" clip-rule="evenodd"></path></symbol><symbol id="icon-star-solid" viewBox="0 0 24 24"><path fill="currentColor" d="M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path></symbol><symbol id="icon-star" viewBox="0 0 24 24"><path fill="currentColor" d="m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28z"></path></symbol><symbol id="icon-state-active" viewBox="0 0 24 24"><path fill="currentColor" d="M15.733 4H8.267c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C4 6.026 4 6.773 4 8.266v7.467c0 1.494 0 2.24.29 2.811.256.502.664.91 1.166 1.165.57.291 1.317.291 2.81.291h7.467c1.494 0 2.24 0 2.811-.29.502-.256.91-.664 1.165-1.166.291-.57.291-1.317.291-2.81V8.266c0-1.494 0-2.24-.29-2.811a2.67 2.67 0 0 0-1.166-1.165C17.974 4 17.227 4 15.734 4"></path></symbol><symbol id="icon-state-default" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M8.235 3.25h7.53c.72 0 1.305 0 1.78.039.492.04.93.125 1.34.333.642.328 1.165.85 1.493 1.494.208.408.293.847.333 1.338.039.475.039 1.061.039 1.781v7.53c0 .72 0 1.305-.039 1.78-.04.492-.125.93-.333 1.34a3.4 3.4 0 0 1-1.494 1.493c-.408.208-.847.293-1.338.333-.476.039-1.061.039-1.781.039h-7.53c-.72 0-1.306 0-1.78-.039-.492-.04-.93-.125-1.34-.333a3.4 3.4 0 0 1-1.493-1.494c-.208-.408-.293-.847-.333-1.338-.039-.476-.039-1.061-.039-1.781v-7.53c0-.72 0-1.306.039-1.78.04-.492.125-.93.333-1.34a3.4 3.4 0 0 1 1.494-1.493c.408-.208.847-.293 1.338-.333.475-.039 1.061-.039 1.781-.039M6.576 4.784c-.398.032-.618.092-.78.175-.36.184-.653.477-.837.838-.083.161-.143.381-.175.78-.033.406-.034.93-.034 1.69v7.466c0 .76 0 1.284.034 1.69.032.399.092.619.175.78.184.361.477.654.838.838.161.083.381.143.78.175.406.033.93.034 1.69.034h7.466c.76 0 1.284 0 1.69-.034.399-.032.619-.092.78-.175.361-.184.654-.477.838-.838.083-.161.143-.381.175-.78.033-.406.034-.93.034-1.69V8.267c0-.76 0-1.284-.034-1.69-.032-.399-.092-.619-.175-.78a1.9 1.9 0 0 0-.838-.838c-.161-.083-.381-.143-.78-.175-.406-.033-.93-.034-1.69-.034H8.267c-.76 0-1.284 0-1.69.034" clip-rule="evenodd"></path></symbol><symbol id="icon-state-disabled" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M8.235 3.25h7.53c.72 0 1.305 0 1.78.039.492.04.93.125 1.34.333.642.328 1.165.85 1.493 1.494.208.408.293.847.333 1.338.039.475.039 1.061.039 1.781v7.53c0 .72 0 1.305-.039 1.78-.04.492-.125.93-.333 1.34a3.4 3.4 0 0 1-1.494 1.493c-.408.208-.847.293-1.338.333-.476.039-1.061.039-1.781.039h-7.53c-.72 0-1.306 0-1.78-.039-.492-.04-.93-.125-1.34-.333a3.4 3.4 0 0 1-1.493-1.494c-.208-.408-.293-.847-.333-1.338-.039-.476-.039-1.061-.039-1.781v-7.53c0-.72 0-1.306.039-1.78.04-.492.125-.93.333-1.34a3.4 3.4 0 0 1 1.494-1.493c.408-.208.847-.293 1.338-.333.475-.039 1.061-.039 1.781-.039M6.576 4.784c-.398.032-.618.092-.78.175-.36.184-.653.477-.837.838-.083.161-.143.381-.175.78-.033.406-.034.93-.034 1.69v7.466c0 .76 0 1.284.034 1.69.032.399.092.619.175.78.184.361.477.654.838.838.161.083.381.143.78.175.406.033.93.034 1.69.034h7.466c.76 0 1.284 0 1.69-.034.399-.032.619-.092.78-.175.361-.184.654-.477.838-.838.083-.161.143-.381.175-.78.033-.406.034-.93.034-1.69V8.267c0-.76 0-1.284-.034-1.69-.032-.399-.092-.619-.175-.78a1.9 1.9 0 0 0-.838-.838c-.161-.083-.381-.143-.78-.175-.406-.033-.93-.034-1.69-.034H8.267c-.76 0-1.284 0-1.69.034" clip-rule="evenodd" opacity=".25"></path></symbol><symbol id="icon-state-focus" viewBox="0 0 24 24"><path fill="currentColor" d="M7 8a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z" opacity=".18"></path><path fill="currentColor" fill-rule="evenodd" d="M8.235 3.25h7.53c.72 0 1.305 0 1.78.039.492.04.93.125 1.34.333.642.328 1.165.85 1.493 1.494.208.408.293.847.333 1.338.039.475.039 1.061.039 1.781v7.53c0 .72 0 1.305-.039 1.78-.04.492-.125.93-.333 1.34a3.4 3.4 0 0 1-1.494 1.493c-.408.208-.847.293-1.338.333-.476.039-1.061.039-1.781.039h-7.53c-.72 0-1.306 0-1.78-.039-.492-.04-.93-.125-1.34-.333a3.4 3.4 0 0 1-1.493-1.494c-.208-.408-.293-.847-.333-1.338-.039-.476-.039-1.061-.039-1.781v-7.53c0-.72 0-1.306.039-1.78.04-.492.125-.93.333-1.34a3.4 3.4 0 0 1 1.494-1.493c.408-.208.847-.293 1.338-.333.475-.039 1.061-.039 1.781-.039M6.576 4.784c-.398.032-.618.092-.78.175-.36.184-.653.477-.837.838-.083.161-.143.381-.175.78-.033.406-.034.93-.034 1.69v7.466c0 .76 0 1.284.034 1.69.032.399.092.619.175.78.184.361.477.654.838.838.161.083.381.143.78.175.406.033.93.034 1.69.034h7.466c.76 0 1.284 0 1.69-.034.399-.032.619-.092.78-.175.361-.184.654-.477.838-.838.083-.161.143-.381.175-.78.033-.406.034-.93.034-1.69V8.267c0-.76 0-1.284-.034-1.69-.032-.399-.092-.619-.175-.78a1.9 1.9 0 0 0-.838-.838c-.161-.083-.381-.143-.78-.175-.406-.033-.93-.034-1.69-.034H8.267c-.76 0-1.284 0-1.69.034" clip-rule="evenodd"></path></symbol><symbol id="icon-state-hover" viewBox="0 0 24 24"><path fill="currentColor" d="M4 8.267c0-1.494 0-2.24.29-2.811.256-.502.664-.91 1.166-1.165C6.026 4 6.773 4 8.266 4h7.467c1.494 0 2.24 0 2.811.29.502.256.91.664 1.165 1.166.291.57.291 1.317.291 2.81v7.467c0 1.494 0 2.24-.29 2.811-.256.502-.664.91-1.166 1.165-.57.291-1.317.291-2.81.291H8.266c-1.494 0-2.24 0-2.811-.29a2.67 2.67 0 0 1-1.165-1.166C4 17.974 4 17.227 4 15.734z" opacity=".18"></path><path fill="currentColor" fill-rule="evenodd" d="M8.235 3.25h7.53c.72 0 1.305 0 1.78.039.492.04.93.125 1.34.333.642.328 1.165.85 1.493 1.494.208.408.293.847.333 1.338.039.475.039 1.061.039 1.781v7.53c0 .72 0 1.305-.039 1.78-.04.492-.125.93-.333 1.34a3.4 3.4 0 0 1-1.494 1.493c-.408.208-.847.293-1.338.333-.476.039-1.061.039-1.781.039h-7.53c-.72 0-1.306 0-1.78-.039-.492-.04-.93-.125-1.34-.333a3.4 3.4 0 0 1-1.493-1.494c-.208-.408-.293-.847-.333-1.338-.039-.476-.039-1.061-.039-1.781v-7.53c0-.72 0-1.306.039-1.78.04-.492.125-.93.333-1.34a3.4 3.4 0 0 1 1.494-1.493c.408-.208.847-.293 1.338-.333.475-.039 1.061-.039 1.781-.039M6.576 4.784c-.398.032-.618.092-.78.175-.36.184-.653.477-.837.838-.083.161-.143.381-.175.78-.033.406-.034.93-.034 1.69v7.466c0 .76 0 1.284.034 1.69.032.399.092.619.175.78.184.361.477.654.838.838.161.083.381.143.78.175.406.033.93.034 1.69.034h7.466c.76 0 1.284 0 1.69-.034.399-.032.619-.092.78-.175.361-.184.654-.477.838-.838.083-.161.143-.381.175-.78.033-.406.034-.93.034-1.69V8.267c0-.76 0-1.284-.034-1.69-.032-.399-.092-.619-.175-.78a1.9 1.9 0 0 0-.838-.838c-.161-.083-.381-.143-.78-.175-.406-.033-.93-.034-1.69-.034H8.267c-.76 0-1.284 0-1.69.034" clip-rule="evenodd"></path></symbol><symbol id="icon-stickiness" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M21 19.5h-2.4A9.97 9.97 0 0 0 22 12c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.52-1.17 4.76-3 6.23V15.5h-2v6h6zM7 5.77C5.17 7.23 4 9.48 4 12c0 4.07 3.06 7.44 7 7.93v2.02c-5.05-.5-9-4.76-9-9.95 0-2.99 1.32-5.67 3.4-7.5H3v-2h6v6H7zm6.6 2.63v5l-4.25 2.52-.77-1.28 3.52-2.09V8.4z" clip-rule="evenodd"></path></symbol><symbol id="icon-subscription" viewBox="0 0 24 24"><path fill="currentColor" d="M4 21q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 19v-5q0-.825.587-1.412A1.93 1.93 0 0 1 4 12h5q0 1.25.875 2.125A2.9 2.9 0 0 0 12 15q1.25 0 2.125-.875A2.9 2.9 0 0 0 15 12h5q.824 0 1.413.588Q22 13.175 22 14v5q0 .824-.587 1.413A1.93 1.93 0 0 1 20 21zm0-2h16v-5h-3.4a5.07 5.07 0 0 1-1.863 2.188A4.9 4.9 0 0 1 12 17q-1.5 0-2.738-.812A5.07 5.07 0 0 1 7.4 14H4zm13.6-8.2-1.4-1.4 3.55-3.55 1.4 1.4zm-11.2 0L2.85 7.25l1.4-1.4L7.8 9.4zM11 8V3h2v5z"></path></symbol><symbol id="icon-success" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"></path></symbol><symbol id="icon-suggest" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m11 2-.936 2.064L8 5l2.064.936L11 8l.936-2.064L14 5l-2.064-.936zm4 20-2.18-4.82L8 15l4.82-2.18L15 8l2.18 4.82L22 15l-4.82 2.18zM4.752 8.752 6 6l1.248 2.752L10 10l-2.752 1.248L6 14l-1.248-2.752L2 10z" clip-rule="evenodd"></path></symbol><symbol id="icon-swap" viewBox="0 0 24 24"><path fill="currentColor" d="M6.99 11 3 15l3.99 4v-3H14v-2H6.99zM21 9l-3.99-4v3H10v2h7.01v3z"></path></symbol><symbol id="icon-sync" viewBox="0 0 24 24"><path fill="currentColor" d="M15.892 13.753V4h-2.738v16L20 13.753zm0 0V4h-2.738v16L20 13.753zM8.107 10.247V20h2.738V4L4 10.247zm0 0V20h2.738V4L4 10.247z"></path></symbol><symbol id="icon-tablet"><path fill="currentColor" d="M5 23q-.824 0-1.413-.587A1.93 1.93 0 0 1 3 21V3q0-.824.587-1.413A1.93 1.93 0 0 1 5 1h14q.824 0 1.413.587.586.589.587 1.413v18q0 .824-.587 1.413A1.93 1.93 0 0 1 19 23zm0-5v3h14v-3zm5 2h4v-1h-4zm-5-4h14V6H5zM5 4h14V3H5z"></path></symbol><symbol id="icon-tag" viewBox="0 0 20 20"><path fill="currentColor" d="m17 10-3.542 4.438q-.228.27-.534.416a1.5 1.5 0 0 1-.653.146H5.5q-.618 0-1.06-.44A1.45 1.45 0 0 1 4 13.5v-7q0-.619.44-1.06Q4.883 5 5.5 5h6.77q.35 0 .654.146.306.146.534.417zm-1.917 0-2.812-3.5H5.5v7h6.77zM5.5 10v3.5-7z"></path></symbol><symbol id="icon-tap" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 1c3.22 0 6.18 1.13 8.5 3.02L22 5.5 21.5 7l-1.59-1.5c-2.12-1.86-4.88-3-7.91-3s-5.8 1.14-7.91 3L2.5 7 2 5.5l1.5-1.48C5.82 2.13 8.78 1 12 1m3.09 11.1 3.8 1.67a2 2 0 0 1 1.08 2.12l-.92 5.44c-.16.97-.99 1.67-1.97 1.67h-6.55c-.53 0-1.04-.21-1.41-.59L4 17.22l1.4-1.41c.71-.71 1.54-.59 1.73-.56l1.87.4V7.5c0-1.45 1.25-2.62 2.73-2.49 1.31.12 2.27 1.3 2.27 2.62V12h.65c.16 0 .31.04.44.1m1.99 8.9.92-5.44-4.24-1.88H12V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v10.61l-4.17-.89 3.7 3.78z" clip-rule="evenodd"></path></symbol><symbol id="icon-task-complete" viewBox="0 0 24 24"><path fill="currentColor" d="M21.6 5.453 10.646 16.416l-4.07-4.07 1.354-1.354 2.717 2.717 9.6-9.6zm-2.122 4.838c.125.547.202 1.123.202 1.709A7.68 7.68 0 0 1 12 19.68 7.68 7.68 0 0 1 4.32 12 7.68 7.68 0 0 1 12 4.32c1.517 0 2.919.442 4.109 1.2l1.382-1.382a9.5 9.5 0 0 0-5.49-1.738c-5.3 0-9.6 4.3-9.6 9.6s4.3 9.6 9.6 9.6c5.298 0 9.6-4.3 9.6-9.6a9.6 9.6 0 0 0-.577-3.254z"></path></symbol><symbol id="icon-task-incomplete" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2.4c-5.3 0-9.6 4.3-9.6 9.6s4.301 9.6 9.6 9.6c5.3 0 9.6-4.3 9.6-9.6S17.3 2.4 12 2.4m0 17.28A7.68 7.68 0 0 1 4.32 12 7.68 7.68 0 0 1 12 4.32 7.68 7.68 0 0 1 19.68 12 7.68 7.68 0 0 1 12 19.68"></path></symbol><symbol id="icon-team-space" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8"></path><path fill="currentColor" d="M8 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4M12 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4M16 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4"></path></symbol><symbol id="icon-television" viewBox="0 0 24 24"><path fill="currentColor" d="M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m0 14H3V8h18z"></path></symbol><symbol id="icon-template" viewBox="0 0 24 24"><path fill="currentColor" d="M3 13h2v-2H3zm0 4h2v-2H3zm2 4v-2H3a2 2 0 0 0 2 2M3 9h2V7H3zm12 12h2v-2h-2zm4-18H9a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 12H9V5h10zm-8 6h2v-2h-2zm-4 0h2v-2H7z"></path></symbol><symbol id="icon-text-large" viewBox="0 0 24 24"><path fill="currentColor" d="M17.954 4c-.035 0-.067.008-.1.01-.033-.002-.065-.01-.098-.01H6.518c-.034 0-.067.008-.1.01-.034-.002-.066-.01-.1-.01C5.592 4 5 4.59 5 5.319V7.43a1.318 1.318 0 0 0 2.637 0v-.795h3.211v10.727h-1.33a1.318 1.318 0 1 0 0 2.637h5.298a1.32 1.32 0 0 0 0-2.637h-1.332V6.636h3.151v.796a1.318 1.318 0 0 0 2.637 0V5.319c0-.729-.59-1.319-1.319-1.319"></path></symbol><symbol id="icon-text-small" viewBox="0 0 24 24"><path fill="currentColor" d="M16.715 6c-.026 0-.05.006-.074.008-.025-.002-.05-.008-.074-.008H8.138c-.025 0-.05.006-.075.008C8.038 6.006 8.014 6 7.99 6A.99.99 0 0 0 7 6.989v1.584a.989.989 0 0 0 1.978 0v-.596h2.408v8.045h-.998a.988.988 0 1 0 0 1.978h3.974a.99.99 0 0 0 0-1.978h-.999V7.977h2.363v.597a.989.989 0 0 0 1.978 0V6.989A.99.99 0 0 0 16.715 6"></path></symbol><symbol id="icon-thumb-down" viewBox="0 0 24 24"><path fill="currentColor" d="M16 3H7c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L10.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2m0 12-4.34 4.34L13 14H4v-2l3-7h9zm4-12h2v12h-2z"></path></symbol><symbol id="icon-thumb-up" viewBox="0 0 24 24"><path fill="currentColor" d="M8 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L13.17 1 6.58 7.59C6.22 7.95 6 8.45 6 9v10c0 1.1.9 2 2 2M8 9l4.34-4.34L11 10h9v2l-3 7H8zM2 9h2v12H2z"></path></symbol><symbol id="icon-tools" viewBox="0 0 20 20"><path fill="currentColor" d="M15.117 17.8a.8.8 0 0 1-.281-.052.7.7 0 0 1-.24-.157l-3.958-3.958a.79.79 0 0 1-.23-.541q0-.147.063-.282a.8.8 0 0 1 .167-.24l1.938-1.937q.104-.105.24-.166a.7.7 0 0 1 .28-.063q.147 0 .292.063.145.062.25.166l3.958 3.959q.105.104.157.24.051.135.052.28a.9.9 0 0 1-.052.292.7.7 0 0 1-.157.25l-1.958 1.938a.7.7 0 0 1-.24.156.8.8 0 0 1-.28.052m0-1.813.875-.875-2.896-2.895-.875.874zM4.513 17.8a.7.7 0 0 1-.312-.073 1 1 0 0 1-.25-.177l-1.938-1.938a.7.7 0 0 1-.156-.24.8.8 0 0 1-.052-.28q0-.147.062-.282a.8.8 0 0 1 .167-.24l3.77-3.77h1.938l1-1-3-3H4.555l-2.75-2.73 2.25-2.27 2.75 2.75v1.187l3 3 2.333-2.333-.833-.854 1.25-1.25H10.47l-.666-.667L12.638.8l.667.666V3.55l.75-.75 3 3q.354.354.552.833.198.48.198.98t-.198.968a2.6 2.6 0 0 1-.552.823l-2.042-2.042-.958.938-.834-.834-4.416 4.396V13.8l-3.75 3.77a.8.8 0 0 1-.24.167.7.7 0 0 1-.302.063m-.02-1.813 2.812-2.812V12.3h-.896L3.638 15.09zm0 0-.855-.896.438.438z"></path></symbol><symbol id="icon-transform" viewBox="0 0 24 24"><path fill="currentColor" d="M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6z"></path></symbol><symbol id="icon-trash" viewBox="0 0 24 24"><path fill="currentColor" d="M16 4.056 14.857 3H9.143L8 4.056H4v2.11h16v-2.11zM5.143 19.889C5.143 21.05 6.17 22 7.429 22h9.142c1.258 0 2.286-.95 2.286-2.111V7.222H5.143zm2.286-5.278V9.333h9.142V19.89H7.43z"></path></symbol><symbol id="icon-troubleshoot" viewBox="0 0 24 24"><path fill="currentColor" d="m20.6 21-4.7-4.7a8.2 8.2 0 0 1-2.263 1.25Q12.4 18 11 18q-2.25 0-4.062-1.1A8.15 8.15 0 0 1 4.075 14h2.45a6.4 6.4 0 0 0 1.987 1.463A5.75 5.75 0 0 0 11 16q2.5 0 4.25-1.75T17 10t-1.75-4.25T11 4Q8.65 4 6.938 5.588 5.225 7.175 5.025 9.5h-2q.2-3.175 2.488-5.337T11 2q3.35 0 5.675 2.325T19 10q0 1.4-.45 2.637T17.3 14.9l4.7 4.7zM9.925 14 8.35 8.8l-1.3 3.7H2V11h4l1.65-4.75h1.5l1.525 5.1L11.75 8h1.5l1.5 3h.75v1.5h-1.675l-1.175-2.35L11.4 14z"></path></symbol><symbol id="icon-tune" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"></path><path d="M3 17v2h6v-2zM3 5v2h10V5zm10 16v-2h8v-2h-8v-2h-2v6zM7 9v2H3v2h4v2h2V9zm14 4v-2H11v2zm-6-4h2V7h4V5h-4V3h-2z"></path></symbol><symbol id="icon-undo" viewBox="0 0 24 24"><path fill="currentColor" d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8"></path></symbol><symbol id="icon-unlink" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M8.2 2.4h.2V6H7.2V2.4h1M12 19.071l2.4-2.271-1.414-1.414-2.4 2.27a3.01 3.01 0 0 1-4.243 0 3.01 3.01 0 0 1 0-4.242l2.271-2.4L7.2 9.6 4.929 12a5 5 0 0 0 0 7.071 5 5 0 0 0 7.071 0m-.986-10.457 2.4-2.27a3.01 3.01 0 0 1 4.243 0 3.01 3.01 0 0 1 0 4.242l-2.271 2.4L16.8 14.4l2.271-2.4a5 5 0 0 0 0-7.071 5 5 0 0 0-7.07 0L9.6 7.2zM16.8 18h-1.2v3.6h1.2V18M6 8.2v.2H2.4V7.2H6v1m15.6 8.6v-1.2H18v1.2h3.6" clip-rule="evenodd"></path></symbol><symbol id="icon-unmerge" viewBox="0 0 24 24"><path fill="currentColor" d="m20 14-2.29 2.29-2.88-2.88-1.42 1.42 2.88 2.88L14 20h6zm0-4V4h-6l2.29 2.29-4.7 4.71H4v2h8.41l5.3-5.29z"></path></symbol><symbol id="icon-upload" viewBox="0 0 24 24"><path fill="currentColor" d="M9 16h6v-6h4l-7-7-7 7h4zm3-10.17L14.17 8H13v6h-2V8H9.83zM5 18h14v2H5z"></path></symbol><symbol id="icon-user-composition" viewBox="0 0 24 24"><path fill="currentColor" d="M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95M12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0 1 12 19"></path></symbol><symbol id="icon-user-look-up" viewBox="0 0 24 24"><path fill="currentColor" d="M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M4 18c.22-.72 3.31-2 6-2 0-.7.13-1.37.35-1.99C7.62 13.91 2 15.27 2 18v2h9.54c-.52-.58-.93-1.25-1.19-2zM19.43 18.02c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59c-1.5-1.5-.79-.8-2.57-2.57M16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"></path></symbol><symbol id="icon-user-session" viewBox="0 0 24 24"><path fill="currentColor" d="M15.07 1.01h-6v2h6zm-4 13h2v-6h-2zm8.03-6.62 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42A8.96 8.96 0 0 0 12.07 4a9 9 0 0 0-9 9c0 4.97 4.02 9 9 9s9-4.03 9-9c0-2.11-.74-4.06-1.97-5.61m-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7"></path></symbol><symbol id="icon-users" viewBox="0 0 24 24"><path fill="currentColor" d="M1.2 20v-2.35q0-.874.45-1.587t1.25-1.062q1.825-.8 3.287-1.15A13 13 0 0 1 9.2 13.5q1.55 0 3 .35T15.475 15q.8.35 1.263 1.062t.462 1.588V20zm17.5 0v-2.35q0-1.575-.8-2.587t-2.1-1.637q1.725.2 3.25.587t2.475.888q.825.474 1.3 1.175.475.699.475 1.575V20zm-9.5-8.024q-1.65 0-2.7-1.05t-1.05-2.7 1.05-2.7 2.7-1.05 2.7 1.05 1.05 2.7-1.05 2.7-2.7 1.05m9-3.75q0 1.65-1.05 2.7t-2.7 1.05a6 6 0 0 1-.612-.038 2.6 2.6 0 0 1-.613-.137q.6-.626.912-1.538t.313-2.037q0-1.125-.312-1.988a5.3 5.3 0 0 0-.913-1.587 5.3 5.3 0 0 1 1.225-.175q1.65 0 2.7 1.05t1.05 2.7M2.7 18.5h13v-.85q0-.4-.237-.775a1.3 1.3 0 0 0-.588-.525q-1.8-.8-3.025-1.075T9.2 15t-2.663.275Q5.3 15.55 3.5 16.35a1.24 1.24 0 0 0-.575.525q-.225.375-.225.775zm6.5-8.025q.975 0 1.613-.638.637-.637.637-1.612t-.637-1.613T9.2 5.976t-1.613.637-.637 1.613.637 1.612 1.613.638"></path></symbol><symbol id="icon-video" viewBox="0 0 24 24"><path fill="currentColor" d="M15 8v8H5V8zm1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1"></path></symbol><symbol id="icon-visible-off" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6a9.77 9.77 0 0 1 8.82 5.5 9.65 9.65 0 0 1-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6m-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14M2.01 3.87l2.68 2.68A11.74 11.74 0 0 0 1 11.5C2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45zm7.5 7.5 2.61 2.61c-.04.01-.08.02-.12.02a2.5 2.5 0 0 1-2.5-2.5c0-.05.01-.08.01-.13m-3.4-3.4 1.75 1.75a4.6 4.6 0 0 0-.36 1.78 4.507 4.507 0 0 0 6.27 4.14l.98.98c-.88.24-1.8.38-2.75.38a9.77 9.77 0 0 1-8.82-5.5c.7-1.43 1.72-2.61 2.93-3.53"></path></symbol><symbol id="icon-visible" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6a9.77 9.77 0 0 1 8.82 5.5A9.77 9.77 0 0 1 12 17a9.77 9.77 0 0 1-8.82-5.5A9.77 9.77 0 0 1 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4m0 5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7"></path></symbol><symbol id="icon-visual-editor" viewBox="0 0 24 24"><path fill="currentColor" d="M5.667 18.333q-.688 0-1.177-.49A1.6 1.6 0 0 1 4 16.668v-10q0-.688.49-1.177Q4.979 5 5.667 5H19q.687 0 1.177.49.49.489.49 1.177v10q0 .687-.49 1.177t-1.177.49zm0-1.666H19V8.333H5.667z"></path><path fill="currentColor" d="M18.9 14.675 17.475 16.1 14.4 13.025V15.6h-2v-6h6v2h-2.6z"></path></symbol><symbol id="icon-warning" viewBox="0 0 24 24"><path fill="currentColor" d="M12 5.99 19.53 19H4.47zm.865-2.495a1 1 0 0 0-1.73 0L1.869 19.499A1 1 0 0 0 2.734 21h18.532a1 1 0 0 0 .865-1.501zM13 16h-2v2h2zm0-6h-2v4h2z"></path></symbol><symbol id="icon-web-analytics" viewBox="0 0 24 24"><path fill="currentColor" d="M8.35 21v-1.5h2.15V17h-7q-.6 0-1.05-.45T2 15.5v-11q0-.6.45-1.05T3.5 3h17q.6 0 1.05.45T22 4.5v11q0 .6-.45 1.05T20.5 17h-7v2.5h2.15V21zM3.5 15.5h17v-11h-17z"></path></symbol><symbol id="icon-web" viewBox="0 0 24 24"><path fill="currentColor" d="M12 21.6a9.4 9.4 0 0 1-3.729-.75 9.6 9.6 0 0 1-3.065-2.056 9.6 9.6 0 0 1-2.055-3.065A9.4 9.4 0 0 1 2.4 12q0-1.994.751-3.73a9.9 9.9 0 0 1 2.055-3.052A9.5 9.5 0 0 1 8.271 3.15 9.4 9.4 0 0 1 12 2.4q1.995 0 3.73.75a9.77 9.77 0 0 1 5.12 5.12q.75 1.736.75 3.73 0 1.97-.75 3.729a9.5 9.5 0 0 1-2.068 3.065 10.2 10.2 0 0 1-3.052 2.056q-1.736.75-3.73.75m0-1.822q.665-.91 1.145-1.895.48-.984.775-2.068h-3.815q.294 1.083.763 2.068.468.985 1.132 1.896m-2.412-.418a15.7 15.7 0 0 1-1.403-3.545H5.28a7.8 7.8 0 0 0 1.81 2.167 7.7 7.7 0 0 0 2.498 1.378m4.824 0a7.6 7.6 0 0 0 2.523-1.378 7.8 7.8 0 0 0 1.81-2.167h-2.93q-.22.936-.578 1.81a18 18 0 0 1-.825 1.735m-9.895-5.39h3.298a15 15 0 0 1-.11-.997q-.037-.48-.037-.973a13 13 0 0 1 .147-1.97H4.517a6 6 0 0 0-.209.974q-.062.48-.062.996 0 .517.062.985.06.467.209.984m5.17 0h4.652q.074-.518.11-.985.037-.468.037-.985a13 13 0 0 0-.148-1.97H9.686q-.097.493-.136.974a13 13 0 0 0 0 1.98q.037.468.136.985m6.498 0h3.323q.123-.518.184-.985.062-.468.062-.985 0-.518-.062-.996a8 8 0 0 0-.184-.973h-3.323q.074.492.11.973a13 13 0 0 1 0 1.969q-.036.48-.11.996m-.37-5.785h2.93a7.5 7.5 0 0 0-1.81-2.18 7.7 7.7 0 0 0-2.523-1.365q.468.837.825 1.723.356.885.578 1.822m-5.71 0h3.815a11.2 11.2 0 0 0-.775-2.08A13 13 0 0 0 12 4.221q-.664.91-1.132 1.882a12 12 0 0 0-.763 2.08m-4.825 0h2.905q.245-.936.59-1.822.344-.886.813-1.723A7.8 7.8 0 0 0 7.09 6.006a7.5 7.5 0 0 0-1.81 2.179"></path></symbol><symbol id="icon-x-circle" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z"></path></symbol><symbol id="icon-zoom-in" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"></path><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14"></path><path d="M12 10h-2v2H9v-2H7V9h2V7h1v2h2z"></path></symbol></svg><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" id="brand-icon-provider" style="width: 0px; height: 0px; position: absolute;"><symbol id="brand-icon-Amazon-s3" viewBox="0 0 24 24"><path fill="#E25444" fill-rule="evenodd" d="m19.242 5.254-3.566 6.789 3.566 6.789 1.461-.816V6.07z" clip-rule="evenodd"></path><path fill="#7B1D13" fill-rule="evenodd" d="m19.242 5.254-7.133.816-3.63 5.973 3.63 5.973 7.133.816z" clip-rule="evenodd"></path><path fill="#58150D" fill-rule="evenodd" d="m4.848 5.254-1.16.516v12.546l1.16.516 7.261-6.789z" clip-rule="evenodd"></path><path fill="#E25444" fill-rule="evenodd" d="m4.832 5.24 7.287 2.024v9.74l-7.287 1.833z" clip-rule="evenodd"></path><path fill="#58150D" fill-rule="evenodd" d="m12.123 8.333-3.094-.496 3.094-3.514 3.086 3.514z" clip-rule="evenodd"></path><path fill="#58150D" fill-rule="evenodd" d="m15.21 7.837-3.091.504-3.09-.504V4.323M12.123 15.705l-3.094.573 3.094 3.017 3.086-3.017z" clip-rule="evenodd"></path><path fill="#7B1D13" fill-rule="evenodd" d="M12.11 1.688 9.015 3.32v4.512l3.103-.874zM12.119 9.441l-3.09.336v4.505l3.09.353zM12.119 17.042l-3.09-.775v4.428l3.09 1.617z" clip-rule="evenodd"></path><path fill="#E25444" fill-rule="evenodd" d="m15.21 16.267-3.091.775v5.27l3.09-1.617zM12.119 9.441l3.09.336v4.505l-3.09.353zM12.11 1.688l3.093 1.632v4.512l-3.094-.86z" clip-rule="evenodd"></path></symbol><symbol id="brand-icon-amplitude" viewBox="0 0 24 24"><g clip-path="url(#c3dc__a)"><path fill="#1E61F0" fill-rule="evenodd" d="M10.907 6.943c.138.2.376.647.728 1.645.24.683.503 1.53.78 2.517-1.053-.015-2.12-.026-3.153-.037l-.523-.006c.591-2.156 1.312-3.791 1.839-4.178a.3.3 0 0 1 .143-.044q.104.001.186.103m8.284 5.239-.002.002-.033.024-.011.008-.024.014-.021.013h-.002a.5.5 0 0 1-.246.061h-4.737q.057.237.124.53c.26 1.12.95 4.098 1.682 4.098h.037c.572 0 .864-.828 1.504-2.64l.008-.022c.103-.291.219-.62.344-.967l.032-.09a.23.23 0 0 1 .435.148l-.027.089c-.067.216-.138.51-.22.85-.381 1.58-.958 3.97-2.436 3.97h-.011c-.956-.008-1.527-1.536-1.772-2.188-.456-1.22-.802-2.52-1.135-3.778H8.32l-.905 2.897-.013-.01a.46.46 0 0 1-.85-.245l.001-.016.055-.327c.125-.745.275-1.517.446-2.299H5.213l-.007-.007a.7.7 0 0 1-.591-.687.69.69 0 0 1 .567-.682c.03-.004.091-.009.216-.009h.089c.584.01 1.203.02 1.882.029.961-3.905 2.074-5.888 3.309-5.893 1.325 0 2.308 3.017 3.095 5.968l.003.012c1.616.032 3.34.08 5.014.199l.07.007q.04 0 .08.007l.01.001.008.002h.004a.529.529 0 0 1 .23.93M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2" clip-rule="evenodd"></path></g><defs><clippath id="c3dc__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="brand-icon-android" viewBox="0 0 24 24"><path fill="#32DE84" d="m17.367 8.717 1.825-3.161a.37.37 0 0 0-.134-.506.366.366 0 0 0-.503.135l-1.849 3.202A11.3 11.3 0 0 0 12 7.383c-1.708 0-3.295.36-4.706 1.004L5.445 5.184a.37.37 0 0 0-.505-.134.37.37 0 0 0-.134.506L6.63 8.717c-3.147 1.705-5.279 4.89-5.631 8.62h22c-.352-3.73-2.484-6.915-5.633-8.62M6.95 14.247a.923.923 0 1 1 0-1.845.923.923 0 0 1 0 1.845m10.1 0a.922.922 0 1 1 0-1.845.922.922 0 0 1 0 1.845"></path></symbol><symbol id="brand-icon-appcues" viewBox="0 0 24 25"><g clip-path="url(#2829__a)"><g fill="#5757F5" clip-path="url(#9cd0__b)"><path d="m10.775 13.78 5.962 9.36c.134.233.4.333.666.333h2.199c.4 0 .766-.333.766-.733V2.922a.754.754 0 0 0-.766-.766q-.35 0-.6.3l-8.227 10.425a.87.87 0 0 0 0 .9M4.08 23.472h3.93c.4 0 .767-.333.767-.733v-5.063a.775.775 0 0 0-.767-.766q-.35 0-.6.3l-3.963 5.03c-.266.332-.166.832.167 1.065.133.1.3.167.466.167"></path></g></g><defs><clippath id="2829__a"><path fill="#fff" d="M0 .97h23.685v23.686H0z"></path></clippath><clippath id="9cd0__b"><path fill="#fff" d="M1.184 2.154H22.5v21.317H1.184z"></path></clippath></defs></symbol><symbol id="brand-icon-apple-iOS" viewBox="0 0 24 24"><path fill="#333" d="M20.446 17.585c-.296.682-.66 1.332-1.087 1.94a9 9 0 0 1-1.388 1.672 2.7 2.7 0 0 1-1.773.786 4.4 4.4 0 0 1-1.672-.401 5 5 0 0 0-1.74-.385 5 5 0 0 0-1.822.385A4.9 4.9 0 0 1 9.392 22a2.52 2.52 0 0 1-1.822-.803 10.6 10.6 0 0 1-1.455-1.672 12 12 0 0 1-1.522-3.043 11 11 0 0 1-.585-3.646 6.7 6.7 0 0 1 .802-3.512 5.2 5.2 0 0 1 1.823-1.839 5 5 0 0 1 2.391-.702 5.7 5.7 0 0 1 1.907.451c.488.206.999.352 1.522.435a8.7 8.7 0 0 0 1.672-.518 5.7 5.7 0 0 1 2.274-.402 4.87 4.87 0 0 1 3.796 1.99 4.365 4.365 0 0 0-.853 7.007c.401.39.872.703 1.388.92l-.351.92zM16.583 2.401a4.2 4.2 0 0 1-1.104 2.793 3.73 3.73 0 0 1-3.11 1.538 4.566 4.566 0 0 1 2.575-4.28A4.5 4.5 0 0 1 16.616 2v.401z"></path></symbol><symbol id="brand-icon-apple" viewBox="0 0 24 24"><path fill="#333" d="M2 2h20v20H2z"></path><path fill="#fff" d="M16.83 14.84a6.5 6.5 0 0 1-.65 1.16 5.5 5.5 0 0 1-.83 1 1.62 1.62 0 0 1-1.06.47 2.6 2.6 0 0 1-1-.24 3 3 0 0 0-1.04-.23 3 3 0 0 0-1.09.23c-.297.135-.615.22-.94.25A1.5 1.5 0 0 1 9.13 17a6.4 6.4 0 0 1-.87-1 7.2 7.2 0 0 1-.91-1.82A6.6 6.6 0 0 1 7 12a4 4 0 0 1 .48-2.1 3.1 3.1 0 0 1 1.09-1.1A3 3 0 0 1 10 8.38a3.4 3.4 0 0 1 1.14.27 4 4 0 0 0 .91.26 5 5 0 0 0 1-.31 3.4 3.4 0 0 1 1.36-.24 2.91 2.91 0 0 1 2.27 1.19 2.61 2.61 0 0 0-.51 4.19c.24.233.521.42.83.55l-.21.55zm-2.31-9.08a2.5 2.5 0 0 1-.66 1.67 2.23 2.23 0 0 1-1.86.92 2.73 2.73 0 0 1 1.54-2.56 2.7 2.7 0 0 1 1-.27v.24z"></path></symbol><symbol id="brand-icon-appsflyer" viewBox="0 0 24 25"><g clip-path="url(#ec2a__a)"><g clip-path="url(#3d24__b)"><path fill="#7AD143" d="m1.563 8.647 3.543 6.691c.232.474.813.83 1.336.83h7.202c.465 0 .697-.356.465-.83l-3.543-6.69c-.232-.474-.813-.83-1.336-.83H1.912c-.407 0-.581.356-.349.83M15.213 16.402l2.15 3.967c.116.296.464.474.813.474l4.24-.06c.29 0 .406-.236.29-.473l-2.149-3.967c-.116-.296-.465-.474-.813-.474l-4.298.06c-.233 0-.407.236-.233.473"></path><path fill="#00C2FF" d="m15.214 1.364-4.24 5.447c-.29.356-.29 1.066-.058 1.48l3.543 6.632c.232.474.639.533.987.119l4.298-5.448c.29-.355.29-1.065.058-1.48l-3.6-6.573c-.117-.236-.35-.414-.582-.414-.116 0-.232.06-.406.237M14.225 16.465l-2.556 3.256a.82.82 0 0 0-.058.889l2.15 3.967c.115.296.406.296.58.06l2.556-3.258a.82.82 0 0 0 .058-.888l-2.091-3.967c-.058-.119-.233-.237-.29-.237-.175.06-.233.06-.35.178"></path></g></g><defs><clippath id="ec2a__a"><path fill="#fff" d="M.105.97H23.79v23.686H.105z"></path></clippath><clippath id="3d24__b"><path fill="#fff" d="M1.447 1.129h21.317v23.685H1.447z"></path></clippath></defs></symbol><symbol id="brand-icon-atlassian-confluence" viewBox="0 0 24 24"><path fill="url(#5fd2__a)" d="M3.68 16.741c-.194.316-.412.683-.597.975a.595.595 0 0 0 .2.81l3.882 2.385a.597.597 0 0 0 .827-.203c.155-.259.355-.596.573-.956 1.538-2.534 3.084-2.224 5.873-.894l3.849 1.827a.597.597 0 0 0 .803-.298l1.848-4.173a.595.595 0 0 0-.299-.781 467 467 0 0 1-3.881-1.842c-5.231-2.537-9.677-2.373-13.078 3.15"></path><path fill="url(#0505__b)" d="M20.32 7.272c.194-.316.412-.683.597-.975a.596.596 0 0 0-.2-.81l-3.882-2.385a.6.6 0 0 0-.85.196c-.156.26-.356.597-.574.957-1.538 2.534-3.084 2.224-5.873.894L5.701 3.331a.6.6 0 0 0-.803.298L3.05 7.802a.595.595 0 0 0 .299.781 469 469 0 0 1 3.881 1.842c5.243 2.534 9.689 2.364 13.09-3.153"></path><defs><lineargradient id="5fd2__a" x1="20.834" x2="9.101" y1="22.142" y2="15.389" gradientUnits="userSpaceOnUse"><stop offset=".18" stop-color="#0052CC"></stop><stop offset="1" stop-color="#2684FF"></stop></lineargradient><lineargradient id="0505__b" x1="3.166" x2="14.902" y1="1.868" y2="8.624" gradientUnits="userSpaceOnUse"><stop offset=".18" stop-color="#0052CC"></stop><stop offset="1" stop-color="#2684FF"></stop></lineargradient></defs></symbol><symbol id="brand-icon-atlassian-jira" viewBox="0 0 24 24"><path fill="#2684FF" d="m21.76 11.44-8.898-8.606L12 2l-9.76 9.44c-.32.31-.32.81 0 1.12l6.12 5.918L12 22l9.76-9.44a.774.774 0 0 0 0-1.12M12 14.956 8.943 12 12 9.043 15.057 12z"></path><path fill="url(#d2d9__a)" d="M12 9.043a4.864 4.864 0 0 1-.022-7.02l-6.69 6.469 3.641 3.521z"></path><path fill="url(#0f2e__b)" d="m15.065 11.992-3.066 2.965c.966.933 1.51 2.2 1.51 3.522A4.9 4.9 0 0 1 11.999 22l6.706-6.486z"></path><defs><lineargradient id="d2d9__a" x1="10.686" x2="7.302" y1="6.796" y2="10.293" gradientUnits="userSpaceOnUse"><stop stop-color="#0052CC"></stop><stop offset="1" stop-color="#2684FF"></stop></lineargradient><lineargradient id="0f2e__b" x1="13.351" x2="16.728" y1="17.172" y2="13.681" gradientUnits="userSpaceOnUse"><stop stop-color="#0052CC"></stop><stop offset="1" stop-color="#2684FF"></stop></lineargradient></defs></symbol><symbol id="brand-icon-atlassian-trello" viewBox="0 0 24 24"><path fill="url(#3871__a)" fill-rule="evenodd" d="M18.859 3H5.14A2.144 2.144 0 0 0 3 5.141V18.86A2.145 2.145 0 0 0 5.141 21H18.86A2.144 2.144 0 0 0 21 18.858V5.141A2.144 2.144 0 0 0 18.858 3m-8.106 12.964a.71.71 0 0 1-.711.712H7.035a.71.71 0 0 1-.712-.712v-8.93a.71.71 0 0 1 .712-.711h3.007a.71.71 0 0 1 .712.712zm6.924-4.1a.71.71 0 0 1-.712.727h-3.007a.71.71 0 0 1-.712-.712V7.035a.71.71 0 0 1 .712-.712h3.007a.71.71 0 0 1 .712.712z" clip-rule="evenodd"></path><defs><lineargradient id="3871__a" x1="12" x2="12" y1="21" y2="3" gradientUnits="userSpaceOnUse"><stop stop-color="#0052CC"></stop><stop offset="1" stop-color="#2684FF"></stop></lineargradient></defs></symbol><symbol id="brand-icon-aws-kinesis" viewBox="0 0 25 27"><path fill="#fbbf92" d="m2 14.84 9.95 4.39 9.945-4.39-9.95-.395z"></path><path fill="#9c4f25" d="M11.977 2 2.004 6.766v6.726h11.96V2.95z"></path><path fill="#fbbf92" d="M2.004 18.234 11.984 25l9.95-6.766-9.973-1.39z"></path><path fill="#9c4f25" d="M11.977 13.492h5.261V6.316l-1.535-.59-3.726 1.043z"></path><path fill="#9c4f25" d="M15.703 13.492h4.066V8.836l-1.164-.332-2.902.472z"></path><path fill="#9c4f25" d="M18.605 8.137v5.355h3.29l.038-5.379-1-.383z"></path><path fill="#f58534" d="M11.977 2v11.492h1.988V2.949zm5.261 4.316-1.535-.59v7.766h1.535zm2.531 2.52-1.164-.332v4.988h1.164zm1.165 4.656h1V8.113l-1-.383zm-8.985 2.3v3.438l9.946-2.379V14.84zm0 5.817V25l9.985-4.784v-1.98z"></path><path fill="#9c4f25" d="M2.004 20.234 11.949 25v-3.418l-9.945-3.348zM2 16.851l9.95 2.38v-3.438L2 14.839z"></path></symbol><symbol id="brand-icon-bigquery" viewBox="-1.633 7.033 131.266 114.634"><lineargradient id="5bc2__a" x1="64" x2="64" y1="7.034" y2="120.789" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#4387fd"></stop><stop offset="1" stop-color="#4683ea"></stop></lineargradient><path fill="url(#5bc2__a)" d="M27.79 115.217 1.54 69.749a11.5 11.5 0 0 1 0-11.499l26.25-45.467a11.5 11.5 0 0 1 9.96-5.75h52.5a11.5 11.5 0 0 1 9.959 5.75l26.25 45.467a11.5 11.5 0 0 1 0 11.5l-26.25 45.467a11.5 11.5 0 0 1-9.959 5.749h-52.5a11.5 11.5 0 0 1-9.96-5.75z"></path><path d="M119.229 86.48 80.625 47.874 64 43.425l-14.933 5.55L43.3 64l4.637 16.729 40.938 40.938 8.687-.386z" clip-path="url(#6479__b)" opacity=".07"></path><g fill="#fff"><path d="M64 40.804c-12.81 0-23.195 10.385-23.195 23.196 0 12.81 10.385 23.195 23.195 23.195S87.194 76.81 87.194 64 76.809 40.804 64 40.804m0 40.795c-9.72 0-17.6-7.88-17.6-17.6S54.28 46.4 64 46.4 81.6 54.28 81.6 64 73.72 81.6 64 81.6"></path><path d="M52.99 63.104v7.21a12.8 12.8 0 0 0 4.38 4.475V63.104zm8.685-6.078v19.411c.745.137 1.507.22 2.29.22.714 0 1.41-.075 2.093-.189V57.026zm9.091 9.074v8.562a12.8 12.8 0 0 0 4.382-4.7v-3.861zm9.925 12.187-2.403 2.405a1.09 1.09 0 0 0 0 1.537l9.115 9.112a1.09 1.09 0 0 0 1.537 0l2.403-2.402a1.09 1.09 0 0 0 0-1.536l-9.116-9.116a1.09 1.09 0 0 0-1.536 0"></path></g></symbol><symbol id="brand-icon-braze" viewBox="0 0 28 28"><path fill="#202023" d="M12.844 15.746c.195-1.879 1.375-3.402 2.75-3.402s2.117 1.523 1.918 3.402c-.195 1.875-1.328 3.426-2.617 3.426-1.29 0-2.336-1.18-2.051-3.426M14 24.254a10.24 10.24 0 0 1-7.898-3.707c1.703.543 3.601.062 5.082-1.399q.239-.235.437-.5c.676 1.461 1.985 2.203 3.297 2.203 2.223 0 4.102-2.293 4.32-5.128.215-2.836-1.375-5.082-3.492-5.082a4.1 4.1 0 0 0-2.183.59l.656-3.82a1.07 1.07 0 0 0-.195-.872c-.2-.305-.371-.437-.633-.437h-3.055a.37.37 0 0 0-.351.328 9 9 0 0 0-.172 1.09c-.024.242.152.328.347.328h2.227c-.352 2.18-1.047 6.414-1.246 7.484a5.36 5.36 0 0 1-1.418 2.684c-1.223 1.222-3.469 1.504-4.801.171-.457-.476-1.176-1.656-1.176-4.187C3.746 8.336 8.336 3.746 14 3.746S24.254 8.336 24.254 14 19.664 24.254 14 24.254M14 2C7.371 2 2 7.371 2 14s5.371 12 12 12 12-5.371 12-12A11.998 11.998 0 0 0 14 2"></path></symbol><symbol id="brand-icon-browser" viewBox="0 0 24 24"><path fill="#1E2024" d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2m6.93 6h-2.95a15.7 15.7 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.92 8M12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A8 8 0 0 1 5.08 16m2.95-8H5.08a8 8 0 0 1 4.33-3.56A15.7 15.7 0 0 0 8.03 8M12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96M14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2m.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56M16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2z"></path></symbol><symbol id="brand-icon-chrome-extension" viewBox="0 0 24 24"><g clip-path="url(#bda2__a)"><path fill="#F1F3F4" d="M22 3.3H2v16.005c0 .752.61 1.364 1.364 1.364h17.273c.753 0 1.364-.61 1.364-1.364z"></path><path fill="#F1F3F4" d="M22 3.3H2v16.005c0 .752.61 1.364 1.364 1.364h17.273c.753 0 1.364-.61 1.364-1.364z"></path><path fill="#E8EAED" d="M22 3.3H2v8.731h20z"></path><path fill="#fff" d="M14.272 7.03H9.728a.909.909 0 1 1 0-1.82h4.544a.909.909 0 1 1 0 1.82"></path><path fill="url(#a40f__b)" d="m4.52 14.981 1.19 3.633 2.55 2.846L12 14.982h7.478A8.63 8.63 0 0 0 12 10.663a8.63 8.63 0 0 0-7.48 4.317"></path><path fill="url(#e42e__c)" d="m11.997 27.938 2.55-2.847 1.19-3.632H8.259l-3.74-6.478a8.64 8.64 0 0 0 .002 8.638 8.63 8.63 0 0 0 7.476 4.32"></path><path fill="url(#88ba__d)" d="M19.477 14.984h-7.479l3.74 6.478-3.74 6.479a8.63 8.63 0 0 0 7.478-4.32 8.63 8.63 0 0 0 .001-8.637"></path><path fill="#F1F3F4" d="M11.999 23.621a4.318 4.318 0 1 0-.002-8.635A4.318 4.318 0 0 0 12 23.62"></path><path fill="#1A73E8" d="M11.998 22.811a3.509 3.509 0 1 0-.001-7.017 3.509 3.509 0 0 0 .001 7.017"></path><path fill="#BDC1C6" d="M22 12.031H2v.113h20zM22 11.918H2v.113h20z" opacity=".1"></path></g><defs><lineargradient id="a40f__b" x1="4.52" x2="19.477" y1="16.062" y2="16.062" gradientUnits="userSpaceOnUse"><stop stop-color="#D93025"></stop><stop offset="1" stop-color="#EA4335"></stop></lineargradient><lineargradient id="e42e__c" x1="12.934" x2="5.453" y1="27.398" y2="14.441" gradientUnits="userSpaceOnUse"><stop stop-color="#1E8E3E"></stop><stop offset="1" stop-color="#34A853"></stop></lineargradient><lineargradient id="88ba__d" x1="18.24" x2="10.76" y1="14.967" y2="27.923" gradientUnits="userSpaceOnUse"><stop stop-color="#FBBC04"></stop><stop offset="1" stop-color="#FCC934"></stop></lineargradient><clippath id="bda2__a"><path fill="#fff" d="M2 3.3h20V20.67H2z"></path></clippath></defs></symbol><symbol id="brand-icon-csv" viewBox="0 0 24 24"><path fill="#1E2024" fill-rule="evenodd" d="M6 2h8l6 6v12c0 1.1-.9 2-2 2H5.99C4.89 22 4 21.1 4 20l.01-16c0-1.1.89-2 1.99-2m0 18h12V9h-5V4H6zm1-9h10v2H7zm0 4h10v2H7z" clip-rule="evenodd"></path></symbol><symbol id="brand-icon-databricks" viewBox="0 0 24 24"><g clip-path="url(#7586__a)"><g clip-path="url(#3c9e__b)"><path fill="#FF3621" d="M21 17.069v-3.348l-.38-.226-9.096 4.75L2.9 13.721v-1.945l8.624 4.479 9.523-4.931V8.02l-.379-.226-9.144 4.796-8.292-4.343 8.292-4.343 6.68 3.483.522-.271v-.362L11.524 3 2 7.931v.498l9.524 4.976 8.623-4.524v1.99l-8.623 4.524L2.379 10.6 2 10.826v3.348l9.524 4.93 8.623-4.478v1.945l-8.623 4.524-9.145-4.75-.379.226v.498L11.524 22z"></path></g></g><defs><clippath id="7586__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath><clippath id="3c9e__b"><path fill="#fff" d="M2 3h19v19H2z"></path></clippath></defs></symbol><symbol id="brand-icon-drupal" viewBox="0 0 21 24"><path fill="#000" d="M15.723 4.463C14.497 3.7 13.341 3.4 12.184 2.637 11.47 2.15 10.474.994 9.643 0 9.48 1.596 8.994 2.243 8.44 2.705c-1.18.926-1.92 1.203-2.936 1.758C4.648 4.903 0 7.677 0 13.643 0 19.606 5.017 24 10.59 24s10.404-4.046 10.404-10.173-4.53-8.901-5.27-9.364M1.66 9.015c-.185-.323.07-1.04.926-1.988.078-.088.175-.18.281-.273 1.175-1.31 2.797-2.202 3.303-2.456.23-.116 1.249-.6 2.288-1.387.624-.486 1.087-.948 1.296-2.474q.024.09.05.176c.268.848.227 1.293.227 1.488 0 .209-.117.764-.486 1.042-.162.115-.21.207-.21.23 0 .093.21.163.21.37 0 .255-.115.763-1.341 1.99C6.977 6.956 5.22 8.043 3.856 8.713s-2.01.625-2.197.3m14.198 12.81c-.117.116-1.18.855-2.428.97-1.249.116-2.938.186-3.955-.739-.162-.162-.115-.393 0-.486.117-.092.21-.161.347-.161.139 0 .116 0 .186.046.462.37 1.157.67 2.635.67 1.48 0 2.52-.416 2.983-.763.209-.162.301-.023.324.07.022.092.07.23-.092.393m-4.048-2.105c.255-.23.67-.6 1.064-.762s.601-.139.972-.139c.37 0 .763.023 1.04.207.277.186.44.602.533.834.092.23 0 .37-.187.462-.162.092-.184.046-.346-.254-.162-.302-.3-.602-1.11-.602s-1.064.278-1.457.602c-.392.324-.531.438-.67.254-.138-.186-.093-.37.161-.602m6.129.186c-.833-.07-2.498-2.66-3.562-2.706-1.34-.046-4.254 2.798-6.542 2.798-1.388 0-1.804-.208-2.268-.509-.693-.486-1.04-1.226-1.016-2.242.022-1.804 1.711-3.492 3.838-3.515 2.706-.023 4.578 2.682 5.941 2.659 1.156-.023 3.377-2.29 4.464-2.29 1.156 0 1.48 1.203 1.48 1.92s-.232 2.012-.785 2.82c-.556.81-.903 1.11-1.55 1.065"></path></symbol><symbol id="brand-icon-facebook" viewBox="0 0 24 24"><g clip-path="url(#37b4__a)"><g clip-path="url(#cce9__b)"><path fill="#1877F2" d="M21 12a9 9 0 1 0-10.406 8.89v-6.289H8.309V12h2.285v-1.983c0-2.255 1.343-3.501 3.4-3.501.984 0 2.014.175 2.014.175v2.215h-1.135c-1.118 0-1.467.694-1.467 1.406V12h2.496l-.399 2.601h-2.097v6.29C17.71 20.215 21 16.492 21 12"></path><path fill="#fff" d="m15.503 14.602.4-2.602h-2.497v-1.688c0-.712.349-1.406 1.467-1.406h1.135V6.691s-1.03-.175-2.015-.175c-2.056 0-3.4 1.246-3.4 3.501V12H8.31v2.602h2.285v6.289a9 9 0 0 0 2.812 0V14.6z"></path></g></g><defs><clippath id="37b4__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath><clippath id="cce9__b"><path fill="#fff" d="M3 3h18v18H3z"></path></clippath></defs></symbol><symbol id="brand-icon-flutter" viewBox="0 0 24 24"><path fill="#47C5FB" d="m13.872 2-9.947 9.947 3.079 3.08L20.03 2zM13.803 11.172l-5.326 5.326 3.09 3.137 3.073-3.074 5.39-5.39z"></path><path fill="#00569E" d="m11.567 19.636 2.34 2.34h6.123l-5.39-5.413z"></path><path fill="#00B5F8" d="m8.442 16.532 3.08-3.079 3.119 3.108-3.073 3.073z"></path><path fill="url(#deec__a)" fill-opacity=".8" d="m11.567 19.638 2.56-.85.254-1.964z"></path><defs><lineargradient id="deec__a" x1="22.684" x2="225.081" y1="92.763" y2="165.697" gradientUnits="userSpaceOnUse"><stop></stop><stop offset="1" stop-opacity="0"></stop></lineargradient></defs></symbol><symbol id="brand-icon-go-daddy" viewBox="0 0 24 24"><path fill="#000" d="M20.703 1.977C18.208.418 14.925.79 11.996 2.63 9.076.79 5.791.418 3.3 1.977c-3.94 2.462-4.42 8.805-1.069 14.166 2.47 3.953 6.332 6.27 9.77 6.227 3.439.043 7.3-2.274 9.77-6.227 3.347-5.361 2.872-11.704-1.068-14.166M4.043 15.01a12.8 12.8 0 0 1-1.546-3.54 10.1 10.1 0 0 1-.336-3.337c.15-1.982.956-3.525 2.27-4.346 1.314-.82 3.052-.87 4.902-.136.278.11.553.24.825.38a15.1 15.1 0 0 0-2.657 3.194c-2.034 3.256-2.655 6.878-1.945 9.766a13 13 0 0 1-1.513-1.98m17.464-3.54a12.9 12.9 0 0 1-1.546 3.54 13.3 13.3 0 0 1-1.514 1.984c.635-2.589.204-5.76-1.352-8.735a.392.392 0 0 0-.563-.153L11.68 11.14a.39.39 0 0 0-.181.402q.012.077.055.145l.712 1.138a.394.394 0 0 0 .546.126l3.145-1.965c.102.305.204.61.28.916.297 1.084.41 2.21.337 3.333-.15 1.98-.957 3.524-2.27 4.346a4.44 4.44 0 0 1-2.25.65h-.1a4.43 4.43 0 0 1-2.25-.65c-1.315-.822-2.122-2.365-2.271-4.346-.074-1.123.04-2.251.336-3.338a13.2 13.2 0 0 1 4.05-6.482 10.1 10.1 0 0 1 2.848-1.764c1.846-.734 3.586-.686 4.901.136 1.316.822 2.121 2.364 2.27 4.346a10.2 10.2 0 0 1-.33 3.338"></path></symbol><symbol id="brand-icon-go" viewBox="0 0 24 24"><path fill="#00ACD7" d="M3.509 10.759c-.04 0-.049-.02-.03-.049l.205-.263c.02-.03.068-.049.107-.049h3.476c.04 0 .05.03.03.059l-.166.253c-.02.03-.068.058-.097.058zM2.039 11.653c-.039 0-.049-.02-.03-.048l.205-.263c.02-.03.068-.049.107-.049h4.44c.04 0 .06.03.05.058l-.078.234c-.01.039-.05.058-.088.058zM4.395 12.548c-.039 0-.048-.03-.029-.059l.137-.243c.019-.03.058-.059.097-.059h1.947c.04 0 .059.03.059.069l-.02.233c0 .04-.039.068-.068.068zM14.504 10.587c-.613.156-1.032.273-1.636.428-.146.04-.155.05-.282-.097-.146-.165-.253-.272-.458-.37-.613-.302-1.207-.214-1.762.146-.662.429-1.003 1.061-.993 1.85.01.78.545 1.422 1.314 1.529.662.088 1.217-.146 1.656-.643.087-.107.165-.224.262-.36h-1.879c-.204 0-.253-.127-.185-.292.127-.302.36-.808.497-1.062a.26.26 0 0 1 .243-.155h3.545c-.02.263-.02.526-.059.789a4.15 4.15 0 0 1-.798 1.908c-.701.925-1.617 1.5-2.775 1.655-.955.127-1.841-.058-2.62-.643q-1.078-.817-1.237-2.161c-.126-1.061.185-2.016.828-2.853.691-.906 1.607-1.48 2.727-1.684.915-.166 1.791-.059 2.58.477.516.34.886.808 1.13 1.373.058.087.02.136-.098.165"></path><path fill="#00ACD7" d="M17.727 15.967c-.886-.02-1.695-.272-2.376-.857a3.05 3.05 0 0 1-1.052-1.879c-.175-1.1.127-2.074.789-2.94.71-.935 1.568-1.422 2.726-1.626.994-.176 1.928-.078 2.776.496.769.526 1.246 1.237 1.373 2.172.165 1.314-.215 2.385-1.12 3.3-.643.653-1.432 1.062-2.337 1.247-.263.048-.526.058-.78.087m2.317-3.933c-.01-.127-.01-.224-.029-.322-.175-.964-1.061-1.509-1.986-1.295-.906.205-1.49.78-1.704 1.694-.176.76.194 1.53.895 1.84.536.234 1.072.205 1.588-.058.769-.399 1.188-1.022 1.236-1.86"></path></symbol><symbol id="brand-icon-google-ads" viewBox="0 0 24 24"><path fill="#4285F4" d="M8.806 5.301c.193-.507.46-.975.854-1.353 1.579-1.539 4.188-1.152 5.26.781.805 1.466 1.659 2.9 2.488 4.35 1.386 2.408 2.787 4.816 4.156 7.233 1.152 2.021-.096 4.575-2.384 4.92-1.401.21-2.714-.434-3.439-1.69-1.216-2.119-2.44-4.237-3.657-6.348-.024-.048-.056-.088-.088-.128-.13-.105-.186-.258-.266-.395-.54-.95-1.096-1.893-1.635-2.835-.347-.612-.71-1.217-1.055-1.829a3.34 3.34 0 0 1-.443-1.772c.024-.322.064-.644.209-.934"></path><path fill="#FABC04" d="M8.806 5.301c-.073.29-.137.58-.153.886a3.5 3.5 0 0 0 .483 1.893 851 851 0 0 1 2.65 4.583c.08.137.145.274.226.403-.484.837-.967 1.667-1.458 2.505-.677 1.167-1.353 2.344-2.038 3.511-.032 0-.04-.016-.048-.04-.008-.064.016-.12.032-.185.33-1.208.056-2.28-.773-3.198-.508-.556-1.152-.87-1.893-.974-.967-.137-1.82.112-2.586.716-.137.105-.225.258-.386.339-.033 0-.049-.016-.057-.04.387-.67.765-1.338 1.152-2.006 1.595-2.77 3.19-5.542 4.793-8.304.016-.033.04-.057.056-.089"></path><path fill="#34A852" d="M2.838 15.724c.153-.137.298-.282.459-.411 1.957-1.547 4.897-.427 5.324 2.021a3.54 3.54 0 0 1-.13 1.716 1 1 0 0 1-.031.137c-.073.129-.137.266-.218.395-.717 1.184-1.772 1.772-3.157 1.683-1.587-.113-2.835-1.305-3.053-2.883a3.22 3.22 0 0 1 .443-2.143c.08-.145.177-.274.266-.419.04-.032.024-.096.096-.096"></path><path fill="#FABC04" d="M2.838 15.724c-.033.032-.033.088-.09.096-.007-.056.025-.088.057-.129z"></path><path fill="#E1C025" d="M8.46 19.187c-.033-.056 0-.097.032-.137l.032.032z"></path></symbol><symbol id="brand-icon-google-analytics" viewBox="0 0 28 28"><g fill-rule="evenodd"><path fill="#f9ab00" d="M24.68 22.996a2.986 2.986 0 0 1-2.965 3q-.186 0-.367-.023a3.057 3.057 0 0 1-2.613-3.098V5.12a3.064 3.064 0 0 1 2.617-3.102A2.982 2.982 0 0 1 24.68 5z"></path><path fill="#e37300" d="M5.973 20.055A2.974 2.974 0 1 1 3 23.028a2.974 2.974 0 0 1 2.973-2.973m7.82-9.008a3.06 3.06 0 0 0-2.89 3.125v7.985c0 2.168.953 3.48 2.351 3.761a2.978 2.978 0 0 0 3.57-2.925v-8.961a2.99 2.99 0 0 0-2.98-2.989q-.023-.001-.051.004"></path></g></symbol><symbol id="brand-icon-google-cloud-storage" viewBox="0 0 24 24"><path fill="#EA4335" fill-rule="evenodd" d="m14.727 8.422.641.01 1.74-1.73.085-.734A7.82 7.82 0 0 0 11.998 4a7.83 7.83 0 0 0-7.551 5.746c.19-.132.596-.033.596-.033l3.478-.569s.179-.294.27-.28a4.35 4.35 0 0 1 5.936-.445z" clip-rule="evenodd"></path><path fill="#4285F4" fill-rule="evenodd" d="M19.553 9.75a7.8 7.8 0 0 0-2.36-3.785l-2.465 2.451a4.3 4.3 0 0 1 1.62 3.363v.433a2.17 2.17 0 0 1 2.174 2.16 2.17 2.17 0 0 1-2.173 2.162h-4.347l-.435.435v2.594l.435.43h4.347c3.119-.004 5.647-2.517 5.651-5.62a5.62 5.62 0 0 0-2.447-4.623" clip-rule="evenodd"></path><path fill="#34A853" fill-rule="evenodd" d="M7.651 20h4.344v-3.462H7.651c-.308 0-.613-.066-.894-.193l-.627.19-1.74 1.732-.153.584a5.64 5.64 0 0 0 3.414 1.147z" clip-rule="evenodd"></path><path fill="#FBBC05" fill-rule="evenodd" d="M7.652 8.755c-3.12.007-5.648 2.521-5.652 5.624 0 1.825.88 3.448 2.24 4.476l2.52-2.506a2.16 2.16 0 0 1-1.282-1.97 2.17 2.17 0 0 1 2.174-2.162c.88 0 1.638.529 1.98 1.274l2.52-2.506a5.65 5.65 0 0 0-4.5-2.227z" clip-rule="evenodd"></path></symbol><symbol id="brand-icon-google-doc" viewBox="0 0 24 24"><g clip-path="url(#d0f0__clip0_1925_2019)"><path fill="#4285F4" d="M13.66 2H5.447C4.677 2 4 2.636 4 3.364v17.273C4 21.364 4.676 22 5.45 22h12.556c.773 0 1.45-.636 1.45-1.364V7.454l-3.381-2.272z"></path><path fill="#F1F1F1" d="M7.863 16.546h7.728v-.91H7.864zm0 1.818h5.796v-.909H7.863zm0-6.364v.909h7.728V12zm0 2.727h7.728v-.909H7.864z"></path><path fill="#A1C2FA" d="M13.66 2v4.091c0 .727.675 1.363 1.448 1.363h4.346z"></path></g></symbol><symbol id="brand-icon-google-drive" viewBox="0 0 24 24"><g clip-path="url(#2f45__clip0_1925_2000)"><path fill="#0066DA" d="m3.486 18.047.866 1.497c.18.315.44.563.743.743L8.19 14.93H2c0 .349.09.697.27 1.013z"></path><path fill="#00AC47" d="M11.825 8.627 8.73 3.27c-.304.18-.563.427-.743.742L2.27 13.916A2.04 2.04 0 0 0 2 14.93h6.19z"></path><path fill="#EA4335" d="M18.555 20.287c.304-.18.563-.428.743-.743l.36-.619 1.722-2.982c.18-.316.27-.664.27-1.013h-6.19l1.317 2.588z"></path><path fill="#00832D" d="m11.826 8.627 3.095-5.357A2 2 0 0 0 13.91 3H9.744c-.36 0-.709.101-1.013.27z"></path><path fill="#2684FC" d="M15.461 14.93h-7.27l-3.095 5.357c.304.18.652.27 1.013.27h11.434c.36 0 .71-.101 1.013-.27z"></path><path fill="#FFBA00" d="m18.522 8.964-2.859-4.952a2.04 2.04 0 0 0-.743-.742l-3.095 5.357 3.635 6.302h6.18c0-.349-.09-.698-.271-1.013z"></path></g></symbol><symbol id="brand-icon-google-form" viewBox="0 0 24 24"><g clip-path="url(#0d59__clip0_1925_2008)"><path fill="#673AB7" d="M13.688 2H5.453C4.678 2 4 2.666 4 3.429v17.143c0 .762.678 1.429 1.453 1.429h12.594c.774 0 1.453-.667 1.453-1.429V7.714l-3.39-2.38z"></path><path fill="#F1F1F1" d="M9.812 16.761h5.813v-.952H9.812zm0-6.19v.952h5.813v-.952zm-.872.477c0 .38-.29.761-.775.761-.484 0-.774-.285-.774-.761s.29-.762.774-.762.775.38.775.762m0 2.666c0 .38-.29.762-.775.762-.484 0-.774-.286-.774-.762s.29-.761.774-.761.775.38.775.761m0 2.571c0 .381-.29.762-.775.762-.484 0-.774-.286-.774-.762s.29-.761.774-.761.775.38.775.761m.872-1.905h5.813v-.952H9.812z"></path><path fill="url(#6e26__a)" d="m14.075 7.334 5.425 5.238V7.715z"></path><path fill="#B39DDB" d="M13.688 2v4.286c0 .761.677 1.428 1.453 1.428H19.5z"></path><path fill="#fff" fill-opacity=".2" d="M5.453 2C4.678 2 4 2.666 4 3.429v.095c0-.762.678-1.429 1.453-1.429h8.234V2z"></path><path fill="#311B92" fill-opacity=".2" d="M18.047 21.904H5.453c-.775 0-1.453-.666-1.453-1.428v.095C4 21.332 4.678 22 5.453 22h12.594c.774 0 1.453-.667 1.453-1.43v-.094c0 .762-.679 1.428-1.453 1.428"></path><path fill="#311B92" fill-opacity=".1" d="M15.14 7.714c-.775 0-1.453-.666-1.453-1.429v.095c0 .762.677 1.43 1.453 1.43h4.359v-.096z"></path><path fill="url(#49a5__b)" d="M13.688 2H5.453C4.678 2 4 2.666 4 3.429v17.143c0 .762.678 1.429 1.453 1.429h12.594c.774 0 1.453-.667 1.453-1.429V7.714z"></path></g><defs><radialgradient id="49a5__b" cx="0" cy="0" r="1" gradientTransform="matrix(199.931 0 0 196.555 4.49 2.534)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" stop-opacity=".1"></stop><stop offset="1" stop-color="#fff" stop-opacity="0"></stop></radialgradient><lineargradient id="6e26__a" x1="16.787" x2="16.787" y1="7.751" y2="12.592" gradientUnits="userSpaceOnUse"><stop stop-color="#311B92" stop-opacity=".2"></stop><stop offset="1" stop-color="#311B92" stop-opacity=".02"></stop></lineargradient></defs></symbol><symbol id="brand-icon-google-play" viewBox="0 0 24 24"><path fill="#EB3131" d="m11.355 11.552-8.278 8.786.001.005a2.235 2.235 0 0 0 3.294 1.349l.027-.015 9.318-5.378z"></path><path fill="#FABC04" d="m19.73 10.056-.007-.006L15.7 7.718l-4.533 4.033 4.548 4.548 4.002-2.31a2.237 2.237 0 0 0 .014-3.933"></path><path fill="#4285F4" d="M3.076 3.661Q3 3.937 3 4.237v15.526q0 .3.076.575l8.564-8.562z"></path><path fill="#34A852" d="m11.416 12 4.285-4.284L6.393 2.32a2.24 2.24 0 0 0-3.316 1.34v.001z"></path></symbol><symbol id="brand-icon-google-sheets" viewBox="0 0 24 24"><path fill="#0F9C57" d="M13.656 2.009h-8.2c-.796 0-1.447.613-1.447 1.362v17.257c0 .75.651 1.363 1.447 1.363h12.541c.796 0 1.447-.613 1.447-1.363V7.458l-3.376-2.27z"></path><path fill="#F0F0F0" d="M7.87 11.773v6.585h7.717v-6.585zm3.376 5.676H8.834v-1.135h2.412zm0-1.816H8.834v-1.136h2.412zm0-1.817H8.834V12.68h2.412zm3.376 3.633H12.21v-1.135h2.412zm0-1.816H12.21v-1.136h2.412zm0-1.817H12.21V12.68h2.412z"></path><mask id="69ce__b" width="6" height="6" x="14" y="7" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="url(#4c18__a)" d="M14.07 7.05h5.383v5.94H14.07z"></path></mask><g mask="url(#69ce__b)"><path fill="url(#4823__c)" d="m14.08 7.06 5.365 5.05V7.458z"></path></g><path fill="#87CDAC" d="M13.656 2.009v4.087c0 .753.648 1.363 1.447 1.363h4.342z"></path><path fill="#fff" fill-opacity=".2" d="M5.456 2.009c-.796 0-1.447.613-1.447 1.362v.114c0-.75.651-1.363 1.447-1.363h8.2V2.01z"></path><path fill="#263138" fill-opacity=".2" d="M17.997 21.878H5.456c-.796 0-1.447-.613-1.447-1.362v.113c0 .75.651 1.362 1.447 1.362h12.541c.796 0 1.447-.613 1.447-1.362v-.113c0 .749-.65 1.362-1.447 1.362"></path><path fill="#263138" fill-opacity=".102" d="M15.103 7.46c-.799 0-1.447-.61-1.447-1.363v.113c0 .753.648 1.363 1.447 1.363h4.342v-.114z"></path><mask id="b845__e" width="16" height="20" x="4" y="2" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="url(#f791__d)" d="M4 2h15.455v20H4z"></path></mask><g mask="url(#b845__e)"><path fill="url(#393c__f)" d="M13.656 2.009h-8.2c-.796 0-1.447.613-1.447 1.362v17.257c0 .75.651 1.363 1.447 1.363h12.541c.796 0 1.447-.613 1.447-1.363V7.458z"></path></g><defs><radialgradient id="f791__d" cx="0" cy="0" r="1" gradientTransform="matrix(0 0 0 0 4.01 2.009)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" stop-opacity="0"></stop><stop offset="1" stop-color="#fff" stop-opacity=".098"></stop></radialgradient><radialgradient id="393c__f" cx="0" cy="0" r="1" gradientTransform="matrix(10.6119 0 0 9.99104 4.626 2.608)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"></stop><stop offset="1" stop-color="#fff"></stop></radialgradient><lineargradient id="4c18__a" x1="16.761" x2="16.761" y1="7.474" y2="12.566" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" stop-opacity=".02"></stop><stop offset="1" stop-color="#fff" stop-opacity=".2"></stop></lineargradient><lineargradient id="4823__c" x1="16.762" x2="16.762" y1="7.711" y2="12.329" gradientUnits="userSpaceOnUse"><stop stop-color="#263138"></stop><stop offset="1" stop-color="#263138"></stop></lineargradient></defs></symbol><symbol id="brand-icon-google-slides" viewBox="0 0 24 24"><g clip-path="url(#ee7d__clip0_1925_2025)"><path fill="#F4B300" d="M13.66 2H5.448C4.652 2 4 2.614 4 3.364v17.272C4 21.386 4.652 22 5.449 22h12.557c.796 0 1.449-.614 1.449-1.364V7.455l-3.381-2.273z"></path><path fill="#F0F0F0" d="M14.866 11.09H8.588c-.399 0-.725.308-.725.683v5.909c0 .375.326.681.725.681h6.278c.399 0 .724-.306.724-.681v-5.91c0-.374-.325-.681-.724-.681m-.242 5.228H8.83v-3.182h5.795z"></path><mask id="09b9__b" width="6" height="6" x="14" y="7" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="url(#5eb0__a)" d="M14.072 7.048h5.392v5.943h-5.392z"></path></mask><g mask="url(#09b9__b)"><path fill="url(#cdfb__c)" d="m14.082 7.057 5.372 5.054V7.456z"></path></g><path fill="#F9DA80" d="M13.66 2v4.09c0 .754.647 1.365 1.448 1.365h4.347z"></path><path fill="#fff" fill-opacity=".102" d="M13.66 2v.114l5.673 5.34h.122z"></path><path fill="#fff" fill-opacity=".2" d="M5.449 2C4.652 2 4 2.614 4 3.364v.113c0-.75.652-1.363 1.449-1.363h8.21V2z"></path><path fill="#BF360C" fill-opacity=".2" d="M18.006 21.885H5.449c-.797 0-1.449-.613-1.449-1.364v.114C4 21.386 4.652 22 5.449 22h12.557c.796 0 1.449-.614 1.449-1.363v-.114c0 .75-.653 1.363-1.45 1.363"></path><path fill="#BF360C" fill-opacity=".102" d="M15.108 7.455c-.8 0-1.449-.61-1.449-1.364v.113c0 .754.648 1.364 1.449 1.364h4.347v-.113z"></path></g><defs><lineargradient id="5eb0__a" x1="16.768" x2="16.768" y1="7.472" y2="12.568" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" stop-opacity=".02"></stop><stop offset="1" stop-color="#fff" stop-opacity=".2"></stop></lineargradient><lineargradient id="cdfb__c" x1="16.768" x2="16.768" y1="7.649" y2="12.39" gradientUnits="userSpaceOnUse"><stop stop-color="#BF360C"></stop><stop offset="1" stop-color="#BF360C"></stop></lineargradient></defs></symbol><symbol id="brand-icon-google-tag-manager" viewBox="0 0 24 24"><path fill="#8AB4F8" d="m13.74 21.24-3.472-3.476 7.459-7.535 3.536 3.536z"></path><path fill="#4285F4" d="M13.765 6.269 10.23 2.732 2.733 10.23a2.5 2.5 0 0 0-.002 3.534l.002.002 7.497 7.497 3.468-3.485-5.665-5.775z"></path><path fill="#8AB4F8" d="m21.262 10.23-7.497-7.498a2.5 2.5 0 0 0-3.536 3.536l7.501 7.497a2.5 2.5 0 1 0 3.535-3.536z"></path><path fill="#246FDB" d="M11.97 22.001a2.478 2.478 0 1 0 0-4.956 2.478 2.478 0 0 0 0 4.956"></path></symbol><symbol id="brand-icon-http" viewBox="0 0 24 24"><path fill="#1E2024" d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10"></path><path fill="#fff" d="M7 11.333H5.667V10h-1v4h1v-1.667H7V14h1v-4H7zM8.667 11h1v3h1v-3h1v-1h-3zm3.666 0h1v3h1v-3h1v-1h-3zm6-1H16v4h1v-1.333h1.333c.534 0 1-.467 1-1V11c0-.533-.466-1-1-1m0 1.667H17V11h1.333z"></path></symbol><symbol id="brand-icon-hubspot" viewBox="0 0 24 24"><path fill="#FF7A59" fill-rule="evenodd" d="M16.073 16.414c-1.586 0-2.872-1.265-2.872-2.825s1.286-2.826 2.872-2.826 2.871 1.265 2.871 2.826c0 1.56-1.285 2.825-2.871 2.825m.86-8.265V5.635a1.93 1.93 0 0 0 1.133-1.744v-.058c0-1.063-.884-1.932-1.964-1.932h-.059c-1.08 0-1.964.87-1.964 1.932v.058c0 .77.467 1.435 1.134 1.745v2.513c-.993.15-1.9.554-2.648 1.147L5.552 3.927c.046-.175.079-.355.08-.544 0-1.204-.99-2.181-2.214-2.183S1.202 2.174 1.2 3.378 2.19 5.559 3.413 5.56c.398.001.768-.11 1.091-.292l6.899 5.282a5.42 5.42 0 0 0 .085 6.198L9.39 18.813a1.8 1.8 0 0 0-.52-.083c-1.005 0-1.82.802-1.82 1.791 0 .99.815 1.792 1.82 1.792s1.82-.802 1.82-1.792a1.7 1.7 0 0 0-.084-.512l2.075-2.042a5.63 5.63 0 0 0 3.392 1.133c3.093 0 5.6-2.468 5.6-5.511 0-2.756-2.057-5.032-4.74-5.44" clip-rule="evenodd"></path></symbol><symbol id="brand-icon-intercom" viewBox="-3.5 0 263 263" preserveAspectRatio="xMidYMid"><path d="M221.66 144.561c0 2.342-.897 4.588-2.493 6.244-1.597 1.656-3.763 2.586-6.021 2.586s-4.424-.93-6.021-2.586-2.494-3.902-2.494-6.244V65.677c0-2.342.897-4.588 2.494-6.243s3.763-2.587 6.02-2.587c2.259 0 4.425.93 6.022 2.587 1.596 1.655 2.493 3.901 2.493 6.243zm-2.955 54.657c-1.126 1.168-32.792 28.533-90.846 28.533s-89.508-27.22-90.845-28.387a8.6 8.6 0 0 1-2.043-2.654 8.99 8.99 0 0 1-.533-6.637 8.8 8.8 0 0 1 1.59-2.969c1.47-1.763 3.552-2.852 5.793-3.03a8.32 8.32 0 0 1 6.17 2.082c.493.365 28.78 24.154 79.798 24.154s79.516-23.935 79.798-24.154a8.45 8.45 0 0 1 6.202-2.059c2.247.177 4.339 1.256 5.83 3.007a8.9 8.9 0 0 1 1.995 6.274c-.158 2.282-1.178 4.407-2.839 5.913zM33.988 65.678c.127-2.35 1.146-4.551 2.834-6.124s3.907-2.388 6.173-2.269a8.38 8.38 0 0 1 5.564 2.6 9 9 0 0 1 2.458 5.792v78.738c0 2.342-.897 4.588-2.494 6.244-1.596 1.656-3.762 2.586-6.02 2.586-2.259 0-4.424-.93-6.021-2.586s-2.494-3.902-2.494-6.244zM76.7 48.163c.128-2.35 1.146-4.551 2.834-6.124s3.908-2.388 6.174-2.268a8.38 8.38 0 0 1 5.564 2.599 9 9 0 0 1 2.458 5.793V164.92c0 2.341-.898 4.587-2.494 6.243s-3.763 2.586-6.02 2.586c-2.26 0-4.425-.93-6.022-2.586s-2.494-3.902-2.494-6.243zm42.925-4.379c0-2.342.897-4.587 2.494-6.243s3.763-2.587 6.02-2.587c2.259 0 4.425.93 6.021 2.587 1.597 1.656 2.494 3.901 2.494 6.243v126.973c0 2.342-.897 4.588-2.494 6.244-1.596 1.656-3.762 2.586-6.02 2.586s-4.424-.93-6.021-2.586-2.494-3.902-2.494-6.244zm42.221 4.379c0-2.342.897-4.588 2.494-6.244s3.763-2.586 6.02-2.586c2.259 0 4.425.93 6.021 2.586s2.494 3.902 2.494 6.244V164.92c0 2.341-.897 4.587-2.494 6.243-1.596 1.656-3.762 2.586-6.02 2.586s-4.424-.93-6.021-2.586-2.494-3.902-2.494-6.243zM223.982 0H32.018a30.8 30.8 0 0 0-12.205 2.434A31.7 31.7 0 0 0 9.44 9.533 33.1 33.1 0 0 0 2.482 20.21 34 34 0 0 0 0 32.839v197.028a34 34 0 0 0 2.482 12.628 33.1 33.1 0 0 0 6.958 10.678 31.7 31.7 0 0 0 10.373 7.098 30.8 30.8 0 0 0 12.205 2.434h191.964a30.8 30.8 0 0 0 12.188-2.427 31.7 31.7 0 0 0 10.365-7.08 33.1 33.1 0 0 0 6.963-10.652A34 34 0 0 0 256 229.94V32.84a34 34 0 0 0-2.475-12.612 33.1 33.1 0 0 0-6.94-10.67 31.75 31.75 0 0 0-10.35-7.102A30.8 30.8 0 0 0 224.053.001"></path></symbol><symbol id="brand-icon-iterable" viewBox="106.9 31.1 78.2 78.4"><path d="M140.4 74.4h40.4v20.3h-40.4z" transform="rotate(-45.001 160.638 84.603)" style="opacity: 0.25; fill: rgb(89, 193, 167);"></path><path d="M150.3 35.6h20.3V76h-20.3z" transform="rotate(-45.001 160.47 55.83)" style="opacity: 0.25; fill: rgb(54, 195, 242);"></path><path d="M121.3 64.4h20.3v40.4h-20.3z" transform="rotate(-45.001 131.465 84.638)" style="opacity: 0.15; fill: rgb(239, 61, 85);"></path><path d="M111.9 45h40.4v20.4h-40.4z" transform="rotate(-45.001 132.137 55.151)" style="opacity: 0.15; fill: rgb(106, 38, 109);"></path><circle cx="146" cy="41.3" r="10.2" style="fill: rgb(106, 38, 109);"></circle><circle cx="174.9" cy="70.4" r="10.2" style="fill: rgb(54, 195, 242);"></circle><circle cx="146" cy="99.3" r="10.2" style="fill: rgb(89, 193, 167);"></circle><circle cx="117.1" cy="70.3" r="10.2" style="fill: rgb(239, 61, 85);"></circle></symbol><symbol id="brand-icon-javascript" viewBox="0 0 24 24"><g clip-path="url(#9119__a)"><path fill="#F7DF1E" d="M17 3H7a4 4 0 0 0-4 4v10a4 4 0 0 0 4 4h10a4 4 0 0 0 4-4V7a4 4 0 0 0-4-4"></path><path fill="#000" d="M15.091 17.063c.363.592.835 1.027 1.669 1.027.7 0 1.149-.35 1.149-.835 0-.58-.46-.785-1.232-1.122l-.423-.182c-1.22-.52-2.031-1.171-2.031-2.548 0-1.269.966-2.235 2.477-2.235 1.075 0 1.849.375 2.406 1.355l-1.317.845c-.29-.52-.603-.725-1.089-.725-.495 0-.81.315-.81.725 0 .508.315.713 1.04 1.027l.423.182c1.438.616 2.249 1.244 2.249 2.657 0 1.523-1.196 2.357-2.803 2.357-1.57 0-2.586-.749-3.082-1.73zm-5.975.146c.266.472.508.87 1.089.87.556 0 .906-.217.906-1.063v-5.751h1.692v5.774c0 1.752-1.027 2.549-2.526 2.549-1.354 0-2.139-.701-2.538-1.545z"></path></g><defs><clippath id="9119__a"><path fill="#fff" d="M3 3h18v18H3z"></path></clippath></defs></symbol><symbol id="brand-icon-jre" viewBox="0 0 24 24"><path fill="#DB380E" d="M11.9 5.706c-.923.65-1.97 1.386-2.532 2.605-.975 2.127 1.995 4.446 2.121 4.544a.164.164 0 0 0 .246-.206c-.01-.02-1.077-2.09-1.037-3.576.014-.517.738-1.104 1.504-1.725.702-.57 1.498-1.214 1.964-1.969 1.022-1.66-.114-3.294-.126-3.31a.164.164 0 0 0-.294.13c.002.01.223 1.09-.391 2.203-.254.46-.81.85-1.454 1.304"></path><path fill="#DB380E" d="M15.794 6.44a.164.164 0 0 0-.157-.285c-.157.06-3.844 1.481-3.844 3.199 0 1.184.506 1.809.875 2.266.145.179.27.334.311.466.116.38-.159 1.068-.274 1.301a.164.164 0 0 0 .24.208c.063-.045 1.55-1.095 1.283-2.361-.1-.481-.336-.833-.544-1.143-.324-.48-.557-.828-.203-1.47.415-.747 2.294-2.167 2.313-2.182"></path><path fill="#73A1FB" d="M6.195 13.65a.58.58 0 0 0 .087.544c.4.554 1.815.86 3.987.86.294 0 .605-.006.923-.017 3.472-.124 4.76-1.206 4.812-1.252a.164.164 0 0 0-.15-.282c-1.223.334-3.506.452-5.09.452-1.771 0-2.674-.127-2.895-.222.114-.155.813-.433 1.68-.604a.164.164 0 0 0-.032-.324c-.508 0-3.055.04-3.322.845M17.812 12.535c-.716 0-1.395.36-1.423.374a.164.164 0 0 0 .077.309c.015 0 1.527.012 1.664.876.122.746-1.43 1.953-2.039 2.356a.164.164 0 0 0 .125.297c.144-.031 3.531-.777 3.173-2.75-.218-1.208-.978-1.462-1.577-1.462M15.49 16.21a.16.16 0 0 0-.068-.165l-.812-.569a.17.17 0 0 0-.136-.024c-.008.002-.858.226-2.09.363-.49.055-1.038.084-1.586.084-1.233 0-2.039-.145-2.156-.252-.016-.03-.01-.043-.008-.05.021-.06.136-.13.21-.158a.164.164 0 0 0-.096-.313c-.815.196-1.213.471-1.184.817.051.612 1.47.927 2.67 1.01q.261.018.555.018c1.995 0 4.553-.626 4.579-.632a.16.16 0 0 0 .121-.13M9.366 17.524a.164.164 0 0 0-.093-.301c-.11.003-1.069.046-1.136.657q-.03.275.156.495c.344.408 1.274.65 2.841.742q.28.016.56.016c1.993 0 3.335-.624 3.391-.65a.164.164 0 0 0 .015-.288l-1.026-.627a.17.17 0 0 0-.119-.02c-.006 0-.658.136-1.642.27q-.28.038-.692.038c-.982 0-2.075-.16-2.285-.266-.003-.02.001-.044.03-.066"></path><path fill="#73A1FB" d="M10.765 21.018c4.565-.004 7.015-.816 7.487-1.327.167-.18.185-.351.17-.463-.034-.275-.285-.444-.313-.462a.166.166 0 0 0-.214.03.16.16 0 0 0-.001.213c.029.037.045.099-.039.183-.189.176-2.092.711-5.26.872-.434.022-.89.034-1.353.034-2.837 0-4.913-.389-5.186-.615.106-.151.84-.392 1.62-.529a.164.164 0 0 0-.05-.324c-.021.003-.096.008-.183.013-1.288.079-2.777.254-2.855.918a.68.68 0 0 0 .179.546c.348.39 1.348.91 5.998.91"></path><path fill="#73A1FB" d="M19.149 19.836a.16.16 0 0 0-.19.037c-.006.007-.692.724-2.756 1.146-.79.158-2.272.239-4.407.239-2.138 0-4.173-.085-4.194-.085a.164.164 0 0 0-.045.323c.022.005 2.154.504 5.07.504 1.399 0 2.76-.113 4.045-.337 2.397-.42 2.565-1.609 2.57-1.66a.16.16 0 0 0-.093-.168"></path></symbol><symbol id="brand-icon-miro" viewBox="0 0 24 24"><g clip-path="url(#da90__a)"><path fill="#FD3" d="M2.4 7.2a4.8 4.8 0 0 1 4.8-4.8h9.6a4.8 4.8 0 0 1 4.8 4.8v9.6a4.8 4.8 0 0 1-4.8 4.8H7.2a4.8 4.8 0 0 1-4.8-4.8z"></path><path fill="#1C1C1E" fill-rule="evenodd" d="M15.165 6.06h-1.743l1.452 2.552L11.68 6.06H9.936l1.598 3.119-3.34-3.12H6.45l1.743 3.97-1.743 7.94h1.743l3.34-8.506-1.597 8.507h1.743l3.195-9.075-1.452 9.075h1.743l3.195-9.926z" clip-rule="evenodd"></path></g><defs><clippath id="da90__a"><path fill="#fff" d="M2.4 2.4h19.2v19.2H2.4z"></path></clippath></defs></symbol><symbol id="brand-icon-node" viewBox="0 0 24 24"><path fill="#53914F" d="M11.998 21.9c-.272 0-.542-.07-.78-.204l-2.483-1.433c-.371-.203-.19-.274-.068-.316.495-.168.595-.206 1.123-.498.055-.03.128-.019.185.014l1.907 1.105c.07.037.167.037.231 0l7.438-4.188a.23.23 0 0 0 .114-.197V7.81a.23.23 0 0 0-.115-.2l-7.436-4.184a.24.24 0 0 0-.23 0L4.453 7.61a.23.23 0 0 0-.118.199v8.373c0 .08.045.156.117.195l2.038 1.148c1.105.539 1.783-.096 1.783-.734V8.524c0-.116.096-.209.215-.209h.944c.118 0 .215.093.215.21v8.267c0 1.439-.803 2.264-2.202 2.264-.43 0-.769 0-1.714-.454l-1.95-1.095A1.53 1.53 0 0 1 3 16.183V7.81c0-.544.298-1.052.78-1.323l7.438-4.193c.47-.259 1.096-.259 1.563 0l7.438 4.193c.482.272.781.779.781 1.323v8.373c0 .544-.3 1.05-.781 1.324l-7.438 4.19a1.6 1.6 0 0 1-.783.203m2.529-6.209c-3.256 0-3.937-1.457-3.937-2.68 0-.116.096-.209.215-.209h.962c.107 0 .196.076.213.178.145.954.579 1.437 2.547 1.437 1.566 0 2.234-.346 2.234-1.157 0-.467-.19-.815-2.624-1.047-2.036-.197-3.294-.635-3.294-2.223 0-1.464 1.265-2.337 3.385-2.337 2.383 0 3.562.806 3.711 2.537a.21.21 0 0 1-.213.228h-.966c-.1 0-.189-.069-.209-.163-.231-1.005-.795-1.327-2.323-1.327-1.71 0-1.91.582-1.91 1.018 0 .527.235.681 2.545.98 2.286.294 3.372.711 3.372 2.279 0 1.58-1.352 2.486-3.708 2.486"></path></symbol><symbol id="brand-icon-notion" viewBox="0 0 24 24"><g clip-path="url(#8f70__clip0_1925_2098)"><path fill="#fff" d="m3.203 2.863 11.067-.818c1.36-.116 1.709-.038 2.563.584l3.533 2.488c.583.428.777.545.777 1.011v13.649c0 .855-.311 1.361-1.398 1.438l-12.852.779c-.816.038-1.204-.078-1.632-.623L2.66 17.988C2.193 17.366 2 16.9 2 16.355V4.223c0-.7.31-1.283 1.203-1.36"></path><path fill="#000" fill-rule="evenodd" d="m14.27 2.046-11.067.817C2.311 2.94 2 3.523 2 4.223v12.132c0 .544.193 1.01.66 1.633l2.601 3.383c.428.544.816.661 1.632.622l12.852-.778c1.086-.077 1.398-.583 1.398-1.438V6.128c0-.442-.175-.57-.689-.946l-3.62-2.553c-.855-.622-1.205-.7-2.564-.584M7.184 5.905c-1.05.07-1.287.086-1.883-.398L3.785 4.302c-.154-.156-.076-.351.312-.39l10.638-.777c.894-.078 1.359.233 1.708.505l1.825 1.322c.078.04.272.272.039.272L7.32 5.896zM5.961 19.66V8.074c0-.506.155-.74.62-.779L19.2 6.556c.428-.038.621.234.621.739v11.51c0 .505-.078.933-.776.972l-12.076.7c-.698.038-1.008-.194-1.008-.817M17.88 8.695c.077.35 0 .7-.35.74l-.582.115v8.555c-.506.272-.971.427-1.36.427-.621 0-.776-.194-1.242-.777l-3.806-5.988v5.793l1.204.273s0 .7-.971.7l-2.678.155c-.078-.156 0-.544.271-.622l.7-.194v-7.66l-.971-.078c-.078-.35.116-.856.66-.895l2.873-.193 3.96 6.065V9.745l-1.009-.116c-.078-.429.233-.74.62-.778z" clip-rule="evenodd"></path></g></symbol><symbol id="brand-icon-onesignal" viewBox="0 0 25 25"><g clip-path="url(#800d__a)"><path fill="#E44A49" d="M13.021 3.375c-5.5 0-9.974 4.391-9.974 9.788 0 3.439 1.833 6.454 4.529 8.2l.485-.317c.108-.053.27-.16.377-.212.162-.053.324-.159.432-.212.161-.052.323-.105.485-.211.108-.053.27-.106.377-.159.162-.053.378-.106.54-.159.161-.053.269-.053.43-.105.162-.053.27-.053.432-.106s.323-.053.485-.053.378-.053.54-.053v-5.82h-.54v-1.058h2.696v6.984c1.51.211 2.857.74 4.097 1.481 2.75-1.746 4.53-4.761 4.53-8.2.053-5.397-4.422-9.788-9.921-9.788m2.965 9.788c0-1.588-1.348-2.91-2.965-2.91-1.618 0-2.965 1.322-2.965 2.91 0 1.11.647 2.116 1.617 2.592v.582c-1.24-.53-2.156-1.746-2.156-3.174 0-1.905 1.563-3.44 3.504-3.44 1.94 0 3.504 1.535 3.504 3.44 0 1.216-.647 2.275-1.617 2.91v-.635c.647-.582 1.078-1.376 1.078-2.275m-1.078 5.766v-.582a5.51 5.51 0 0 0 3.774-5.237c0-3.016-2.534-5.503-5.661-5.503S7.36 10.094 7.36 13.163c0 2.592 1.833 4.814 4.313 5.396v.53c-2.75-.583-4.852-3.017-4.852-5.926 0-3.386 2.75-6.085 6.2-6.085s6.2 2.699 6.2 6.084c0 2.699-1.833 5.027-4.313 5.767"></path></g><defs><clippath id="800d__a"><path fill="#fff" d="M3.047 3.373h19.895v18H3.047z"></path></clippath></defs></symbol><symbol id="brand-icon-optimizely" viewBox="0 0 25 25"><g clip-path="url(#e4e4__a)"><path fill="url(#7bc4__b)" d="M2.988 4.414h19.2v18h-19.2z"></path></g><defs><clippath id="e4e4__a"><path fill="#fff" d="M.588.813h24v24h-24z"></path></clippath><pattern id="7bc4__b" width="1" height="1" patternContentUnits="objectBoundingBox"><use xlink:href="#eb76__c" transform="matrix(.00629 0 0 .0067 0 -.003)"></use></pattern><image xlink:href="data:image/png;base64,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" id="eb76__c" width="159" height="150"></image></defs></symbol><symbol id="brand-icon-productboard" viewBox="0 0 25 25"><g clip-path="url(#dfa5__a)"><path fill="url(#aebd__b)" d="M1.895 5.813h21.6v14.149h-21.6z"></path></g><defs><clippath id="dfa5__a"><path fill="#fff" d="M.695.813h24v24h-24z"></path></clippath><pattern id="aebd__b" width="1" height="1" patternContentUnits="objectBoundingBox"><use xlink:href="#f797__c" transform="scale(.00437 .00667)"></use></pattern><image xlink:href="data:image/png;base64,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" id="f797__c" width="229" height="150"></image></defs></symbol><symbol id="brand-icon-python" viewBox="0 0 24 24"><path fill="#3B88BC" d="M2 2h20v20H2z"></path><path fill="#fff" d="M10 4a2 2 0 0 0-2 2v1h4.5a.5.5 0 0 1 0 1H7a3 3 0 0 0-3 3v1a3 3 0 0 0 3 3v-2a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1V6a2 2 0 0 0-2-2zm0 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1"></path><path fill="#fff" d="M14 20a2 2 0 0 0 2-2v-1h-4.5a.5.5 0 0 1 0-1H17a3 3 0 0 0 3-3v-1a3 3 0 0 0-3-3v2a2 2 0 0 1-2 2h-5a1 1 0 0 0-1 1v4a2 2 0 0 0 2 2zm0-2a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1"></path></symbol><symbol id="brand-icon-react-native" viewBox="0 0 24 24"><path fill="#00D8FF" d="M12 13.653a1.783 1.783 0 1 0 0-3.567 1.783 1.783 0 0 0 0 3.566"></path><path fill="#00D8FF" d="M12 15.951c-2.505 0-4.693-.295-6.33-.856-1.063-.362-1.965-.845-2.608-1.396-.682-.582-1.044-1.218-1.044-1.833 0-1.18 1.293-2.334 3.463-3.087 1.776-.618 4.093-.963 6.515-.963 2.38 0 4.665.334 6.43.945 1.034.356 1.904.817 2.522 1.329.672.561 1.027 1.176 1.027 1.776 0 1.226-1.446 2.466-3.776 3.236-1.649.547-3.851.85-6.2.85m0-7.282c-2.299 0-4.572.334-6.235.913-1.996.696-2.891 1.648-2.891 2.284 0 .66.962 1.702 3.073 2.423 1.548.53 3.644.81 6.053.81 2.26 0 4.366-.284 5.932-.807 2.192-.728 3.194-1.769 3.194-2.426 0-.337-.256-.735-.721-1.122-.537-.448-1.318-.857-2.252-1.18-1.68-.575-3.865-.895-6.153-.895"></path><path fill="#00D8FF" d="M7.954 20.76c-.362 0-.682-.08-.952-.235-1.02-.59-1.375-2.288-.945-4.544.352-1.85 1.211-4.025 2.423-6.124 1.19-2.06 2.618-3.872 4.028-5.098.824-.718 1.66-1.243 2.412-1.52.82-.302 1.531-.302 2.05-.004 1.062.611 1.414 2.487.917 4.888-.352 1.705-1.19 3.762-2.363 5.798-1.25 2.167-2.6 3.914-3.904 5.055-.845.739-1.716 1.279-2.511 1.56-.416.148-.807.223-1.155.223m.892-10.69.37.213c-1.148 1.99-1.997 4.124-2.324 5.858-.395 2.078-.014 3.329.533 3.645q.203.119.529.12c.707 0 1.819-.447 3.105-1.57 1.233-1.076 2.522-2.753 3.726-4.838 1.13-1.957 1.933-3.925 2.267-5.542.465-2.263.064-3.648-.508-3.978-.292-.167-.764-.146-1.333.063-.657.242-1.4.714-2.145 1.365-1.34 1.165-2.707 2.898-3.85 4.88z"></path><path fill="#00D8FF" d="M16.047 20.768c-.966 0-2.192-.582-3.47-1.684-1.429-1.229-2.882-3.058-4.097-5.158-1.193-2.06-2.046-4.202-2.405-6.039-.21-1.073-.248-2.057-.113-2.849.149-.863.5-1.478 1.023-1.78 1.058-.614 2.86.018 4.692 1.649 1.3 1.154 2.665 2.91 3.84 4.941 1.255 2.167 2.096 4.21 2.43 5.908.217 1.101.253 2.124.1 2.955-.164.885-.533 1.514-1.066 1.823a1.8 1.8 0 0 1-.934.234M9.219 13.5c1.151 1.99 2.58 3.79 3.915 4.938 1.602 1.378 2.874 1.677 3.424 1.357.572-.33.991-1.684.558-3.872-.32-1.606-1.126-3.56-2.334-5.645-1.133-1.957-2.437-3.638-3.67-4.732-1.726-1.535-3.126-1.88-3.698-1.549-.29.167-.508.59-.61 1.187-.118.689-.082 1.57.11 2.54.34 1.744 1.158 3.794 2.305 5.776"></path></symbol><symbol id="brand-icon-revenuecat" viewBox="0 0 25 25"><g clip-path="url(#4ef6__a)"><g clip-path="url(#58c1__b)"><path fill="#F0555C" d="M17.157 23.135H2.869V2.87h20.266v20.266zM10.07 18.33c-.435.049-.869.121-1.305.138-.305.011-.585-.114-.61-.474-.024-.367.241-.498.552-.53.335-.034.677-.08 1.01-.05 1.293.122 2.583.274 3.875.411 1.121.12 2.242.312 3.365.326.826.01 1.568-.38 1.83-1.26.242-.81.13-1.63-.081-2.357-.697 0-1.336.027-1.972-.006-1.076-.056-1.83-.707-1.983-1.755a5 5 0 0 1 .015-1.509c.158-.987.798-1.619 1.8-1.704.686-.058 1.386.06 2.09.1.1-.655-.084-1.166-.534-1.35-1.27-.522-3.119-.147-4.035.877-1.178 1.315-1.237 2.877-.804 4.479.338 1.256 1.216 1.999 2.502 2.214.396.066.81.016 1.208.067.208.027.403.158.603.241-.111.196-.18.449-.344.572a1.5 1.5 0 0 1-.741.276 5.8 5.8 0 0 1-1.211-.033c-1.273-.16-2.538-.392-3.814-.502a21 21 0 0 0-3.126-.034c-.762.05-1.173.538-1.244 1.185-.086.771.21 1.328.907 1.638.868.386 1.78.387 2.679.172.195-.047.447-.419.43-.621-.016-.202-.317-.408-.533-.553-.099-.067-.293.01-.53.043m2.783-2.557c-.037-.165-.038-.35-.118-.492-.454-.805-.927-1.6-1.42-2.444.096-.067.168-.111.233-.165.93-.764 1.047-1.778.8-2.852-.229-1-.995-1.497-1.945-1.588-.932-.089-1.88-.008-2.821-.014-.41-.002-.492.207-.49.576.013 2.11.006 4.221.006 6.332 0 .715.012.726.731.736.068 0 .136-.005.203-.002.445.026.633-.152.605-.626-.038-.667-.01-1.338-.01-1.992.782-.147 1.357-.05 1.64.738.123.344.4.634.524.979.299.827.906 1.007 1.684.896.1-.014.2-.028.378-.082"></path><path fill="#FDF8F9" d="M10.212 18.422c.194-.023.388-.099.487-.032.216.145.517.351.534.553.016.202-.237.574-.431.62-.898.216-1.811.215-2.68-.17-.695-.31-.992-.868-.906-1.64.071-.646.482-1.134 1.244-1.184a21 21 0 0 1 3.126.034c1.276.11 2.541.343 3.814.502.4.05.81.068 1.21.033.257-.023.537-.124.742-.276.165-.123.233-.376.344-.572-.2-.083-.395-.214-.603-.24-.399-.052-.812-.002-1.208-.068-1.286-.215-2.164-.958-2.503-2.214-.432-1.602-.373-3.164.804-4.479.917-1.024 2.766-1.399 4.036-.877.45.184.635.695.533 1.35-.703-.04-1.404-.157-2.089-.1-1.002.085-1.642.717-1.8 1.704a5 5 0 0 0-.015 1.51c.152 1.048.907 1.699 1.983 1.754.636.033 1.275.006 1.972.006.21.728.323 1.547.081 2.357-.262.88-1.005 1.27-1.83 1.26-1.123-.014-2.244-.207-3.365-.326-1.292-.137-2.583-.289-3.876-.41-.332-.031-.674.016-1.01.05-.31.032-.575.162-.55.53.023.359.304.484.61.473.435-.017.869-.089 1.346-.148"></path><path fill="#FDF9FA" d="M12.916 15.894c-.14.034-.24.047-.34.062-.778.11-1.385-.07-1.684-.896-.124-.345-.4-.635-.524-.98-.283-.788-.858-.885-1.64-.737 0 .653-.028 1.324.01 1.992.028.474-.16.651-.605.626-.067-.004-.135.002-.202.001-.72-.009-.732-.02-.732-.736 0-2.11.008-4.22-.006-6.331-.002-.369.081-.578.49-.576.941.006 1.89-.075 2.822.014.95.091 1.716.587 1.945 1.587.246 1.075.13 2.09-.8 2.853-.066.053-.138.098-.233.165.493.844.965 1.639 1.42 2.444.079.142.08.327.079.512M8.96 9.624c-.084.12-.227.234-.24.362-.034.333-.013.672-.013 1.009 0 .967.088 1.048 1.055.961.084-.008.166-.024.25-.04.675-.122.974-.47.976-1.133.001-.637-.325-1.028-.987-1.13-.312-.048-.635-.03-1.041-.029"></path><path fill="#EC5A61" d="M9.003 9.615c.362.005.684-.011.997.036.662.102.988.494.986 1.13-.001.663-.3 1.011-.976 1.134-.083.015-.166.032-.25.04-.967.086-1.055.006-1.054-.962 0-.337-.022-.676.013-1.01.013-.126.156-.24.284-.368"></path></g></g><defs><clippath id="4ef6__a"><path fill="#fff" d="M.842.842h24v24h-24z"></path></clippath><clippath id="58c1__b"><path fill="#fff" d="M2.87 2.87h20.265v20.265H2.87z"></path></clippath></defs></symbol><symbol id="brand-icon-ruby" viewBox="0 0 24 24"><path fill="#CC342D" d="M2 2h20v20H2z"></path><path fill="#fff" d="M16.5 7h-9l-3 4.5L12 19l7.5-7.5zM12 8l1.78 3h-3.63zm1 0h2.51l-.94 2.31zm.89 4L12 16.8 10 12zm-4.54-1.67L8.41 8H11zm-.81.67H6l1.6-2.34zM9 12l1.71 4.24L6.41 12zm6 0h2.62l-4.42 4.38zm.4-1 1-2.42L18 11z"></path></symbol><symbol id="brand-icon-rudderstack" viewBox="0 0 24 24"><path fill="navy" fill-rule="evenodd" d="M8.912.322c.085 2.27 1.449 4.332 3.517 5.32a6.1 6.1 0 0 0 2.038.566l.285.029c.029.004-2.666.007-5.991.009l-6.044.002.01.221c.064 1.308.474 2.464 1.234 3.477a6.16 6.16 0 0 0 4.685 2.468l.261.009.002-2.913c.001-1.602.005-2.889.008-2.859l.022.233c.074.796.357 1.68.77 2.411.122.215.383.597.556.814.214.268.683.737.952.951a6.16 6.16 0 0 0 3.717 1.358l.143.001.003-2.95c.001-1.622.005-2.925.008-2.895l.029.284a6.17 6.17 0 0 0 5.894 5.556l.252.009V.062H8.902zm6.171 2.965.002 2.953 2.946.002 2.945.002-.279-.029a6.1 6.1 0 0 1-2.24-.65 6.18 6.18 0 0 1-3.277-4.428 8 8 0 0 1-.086-.672c-.007-.072-.012 1.197-.011 2.822M2.721 19.241v4.698l4.848-.005c5.319-.006 4.969 0 5.645-.098a9.38 9.38 0 0 0 5.997-3.441 9.37 9.37 0 0 0 1.997-4.86 12 12 0 0 0 .055-.88v-.112H2.721z"></path></symbol><symbol id="brand-icon-salesforce" viewBox="0 0 25 25"><g clip-path="url(#7e4d__a)"><g clip-path="url(#6d57__b)"><mask id="4969__c" width="24" height="17" x="1" y="5" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="#fff" d="M1.209 5h23.068v16.122H1.209z"></path></mask><g mask="url(#4969__c)"><path fill="#00A1E0" fill-rule="evenodd" d="M10.791 6.77a4.04 4.04 0 0 1 2.926-1.256c1.527 0 2.85.849 3.562 2.113a4.9 4.9 0 0 1 2.01-.428c2.748 0 4.978 2.248 4.978 5.023s-2.23 5.023-4.978 5.023q-.503 0-.984-.097a3.64 3.64 0 0 1-3.171 1.867 3.6 3.6 0 0 1-1.595-.367 4.145 4.145 0 0 1-7.71-.187q-.391.083-.791.083c-2.129 0-3.85-1.748-3.85-3.895 0-1.442.775-2.698 1.925-3.377A4.482 4.482 0 0 1 7.23 5.01c1.45 0 2.748.691 3.562 1.765" clip-rule="evenodd"></path></g><path fill="#FFFFFE" fill-rule="evenodd" d="M4.431 13.383c-.014.038.005.046.01.052.043.032.087.054.131.08.236.125.458.161.69.161.474 0 .768-.252.768-.658v-.008c0-.375-.332-.511-.643-.609l-.04-.013c-.235-.076-.438-.143-.438-.297v-.008c0-.132.119-.23.302-.23.204 0 .446.068.601.154 0 0 .046.03.063-.015l.097-.26c.009-.024-.007-.043-.023-.053a1.34 1.34 0 0 0-.679-.182h-.047c-.433 0-.736.262-.736.637v.008c0 .396.334.525.646.614l.05.015c.228.07.424.131.424.29v.008c0 .147-.128.257-.333.257-.08 0-.334-.002-.61-.176l-.078-.049c-.013-.008-.047-.023-.062.021zm6.929 0c-.015.038.005.046.01.053q.065.043.131.08c.236.124.458.16.69.16.474 0 .768-.252.768-.657v-.008c0-.375-.332-.512-.643-.61l-.04-.013c-.236-.076-.438-.142-.438-.297v-.008c0-.132.119-.23.302-.23.203 0 .445.068.601.154 0 0 .046.03.063-.014l.096-.26c.009-.025-.007-.044-.023-.053a1.34 1.34 0 0 0-.679-.183h-.047c-.433 0-.736.262-.736.637v.009c0 .395.334.524.646.613l.05.016c.228.07.424.13.424.29v.008c0 .147-.128.256-.333.256-.08 0-.335-.001-.61-.175l-.078-.05c-.009-.005-.048-.02-.062.022l-.093.26m4.732-.795q0 .346-.127.538-.123.19-.385.188-.26.001-.383-.187c-.083-.127-.124-.309-.124-.538q0-.346.124-.535c.082-.126.207-.186.383-.186s.302.06.385.186q.127.19.127.535m.395-.425a1 1 0 0 0-.18-.344.9.9 0 0 0-.303-.23 1 1 0 0 0-.424-.085 1 1 0 0 0-.424.084.87.87 0 0 0-.484.575q-.057.196-.058.425 0 .228.058.425.06.198.18.344.121.146.304.229.181.083.424.083.24 0 .423-.083a.85.85 0 0 0 .303-.23 1 1 0 0 0 .18-.343q.058-.196.058-.425 0-.227-.058-.425m3.248 1.086c-.012-.038-.05-.024-.05-.024a1 1 0 0 1-.184.053q-.1.015-.216.015-.288 0-.452-.17c-.11-.112-.17-.294-.17-.54 0-.224.055-.392.152-.521q.145-.192.438-.194c.163 0 .288.02.418.06 0 0 .031.014.046-.027l.098-.27c.01-.03-.015-.043-.025-.046a1.5 1.5 0 0 0-.56-.087q-.25 0-.44.085a.91.91 0 0 0-.511.574q-.065.197-.065.426 0 .494.263.788c.175.195.438.293.78.293a1.6 1.6 0 0 0 .56-.1s.029-.014.016-.047zm.691-.883a.8.8 0 0 1 .108-.315.43.43 0 0 1 .383-.194c.176 0 .292.069.375.194.055.083.08.192.088.316h-.958zm1.331-.28a.8.8 0 0 0-.17-.313.8.8 0 0 0-.255-.193 1 1 0 0 0-.384-.078c-.167 0-.319.028-.441.086a.9.9 0 0 0-.308.235 1 1 0 0 0-.182.348 1.5 1.5 0 0 0-.058.427q0 .232.06.427a.9.9 0 0 0 .194.34q.133.144.337.224.204.079.486.078c.387-.001.59-.087.673-.134.015-.008.03-.022.012-.064l-.088-.245c-.013-.037-.05-.023-.05-.023-.096.035-.232.1-.55.099-.207 0-.36-.062-.457-.158-.099-.098-.148-.242-.156-.445h1.34s.035 0 .04-.034c0-.014.045-.275-.04-.576zm-12.042.28a.8.8 0 0 1 .108-.315.43.43 0 0 1 .383-.194c.175 0 .291.069.374.194.055.083.08.192.089.316h-.959zm1.331-.28a.8.8 0 0 0-.171-.313.8.8 0 0 0-.255-.193 1 1 0 0 0-.383-.078c-.167 0-.319.028-.442.086a.9.9 0 0 0-.308.235 1 1 0 0 0-.181.348 1.5 1.5 0 0 0-.059.427q0 .232.061.427.061.196.193.34.133.144.337.224.203.079.486.078c.387-.001.59-.087.673-.134.015-.008.03-.022.012-.064l-.088-.245c-.013-.037-.05-.023-.05-.023-.096.035-.232.1-.55.099-.207 0-.361-.062-.458-.158-.098-.098-.147-.242-.155-.445h1.34s.035 0 .04-.034c0-.014.045-.275-.041-.576m-4.223 1.155a.3.3 0 0 1-.078-.08.3.3 0 0 1-.04-.174q0-.175.12-.259s.115-.1.388-.096q.183.003.363.03v.609s-.17.036-.36.048c-.273.016-.393-.078-.393-.078m.532-.942a3 3 0 0 0-.208-.006q-.173 0-.33.042a.9.9 0 0 0-.278.13.65.65 0 0 0-.195.22.65.65 0 0 0-.071.31q0 .177.061.305.061.126.175.21a.7.7 0 0 0 .272.117q.158.036.354.036.207 0 .407-.033.169-.03.336-.066c.045-.01.095-.024.095-.024.033-.008.03-.043.03-.043v-1.222c0-.268-.072-.468-.214-.591q-.211-.185-.614-.185c-.1 0-.262.014-.358.033 0 0-.292.057-.412.151 0 0-.027.016-.013.053l.095.255c.012.033.044.022.044.022l.022-.011c.257-.14.583-.136.583-.136q.217.001.33.086c.074.056.111.141.111.32v.056c-.114-.017-.22-.026-.22-.026zm10.771-.69a.036.036 0 0 0-.02-.048 1 1 0 0 0-.224-.038.66.66 0 0 0-.345.055.6.6 0 0 0-.226.167v-.163c0-.022-.016-.04-.038-.04h-.343c-.022 0-.038.018-.038.04v1.994q0 .017.012.029a.04.04 0 0 0 .028.012h.351a.04.04 0 0 0 .04-.04v-1.002c0-.134.016-.267.045-.351a.5.5 0 0 1 .117-.197.4.4 0 0 1 .165-.1.7.7 0 0 1 .18-.025c.07 0 .147.018.147.018.026.003.04-.013.049-.036.023-.061.088-.244.1-.28" clip-rule="evenodd"></path><path fill="#FFFFFE" fill-rule="evenodd" d="M14.846 10.692a1.045 1.045 0 0 0-.314-.046q-.364 0-.567.204-.2.202-.269.607l-.016.09h-.304s-.037 0-.045.04l-.05.278c-.003.027.008.043.044.043h.296l-.3 1.675q-.036.203-.08.33a.7.7 0 0 1-.094.19.25.25 0 0 1-.122.095.5.5 0 0 1-.265.011c-.032-.006-.048-.013-.072-.023 0 0-.035-.014-.048.021l-.1.272c-.009.027.004.048.021.054a.81.81 0 0 0 .318.054 1 1 0 0 0 .329-.05.6.6 0 0 0 .247-.174.9.9 0 0 0 .174-.299q.07-.184.117-.45l.302-1.706h.44s.037.002.045-.039l.05-.278c.004-.027-.008-.043-.044-.043h-.427c.002-.01.021-.16.07-.302.021-.06.06-.11.094-.143a.3.3 0 0 1 .112-.07.557.557 0 0 1 .322.007c.044.014.05 0 .058-.02l.102-.281c.01-.03-.015-.043-.024-.047m-5.977 2.895c0 .022-.016.04-.038.04h-.355c-.023 0-.039-.018-.039-.04V10.73c0-.022.016-.04.039-.04h.355c.022 0 .038.018.038.04z" clip-rule="evenodd"></path></g></g><defs><clippath id="7e4d__a"><path fill="#fff" d="M.912.813h24v24h-24z"></path></clippath><clippath id="6d57__b"><path fill="#fff" d="M.912.813h24v24h-24z"></path></clippath></defs></symbol><symbol id="brand-icon-sanity" viewBox="0 0 24 24"><path fill="#F04939" d="M4.93 3.082c0 3.216 1.997 5.145 5.991 6.16l4.231.982c3.792.88 6.093 3.047 6.093 6.567.034 1.524-.474 3.013-1.387 4.232 0-3.52-1.828-5.416-6.195-6.567l-4.164-.948c-3.35-.745-5.924-2.539-5.924-6.364 0-1.455.474-2.911 1.354-4.062"></path><path fill="#F37368" d="M17.251 15.91c1.794 1.15 2.607 2.776 2.607 5.111-1.524 1.93-4.13 2.979-7.21 2.979-5.18 0-8.87-2.573-9.648-7.007h4.976c.643 2.031 2.336 2.979 4.638 2.979 2.741.034 4.603-1.456 4.637-4.062M4.93 3.047C6.385 1.15 8.89 0 11.937 0c5.314 0 8.36 2.81 9.14 6.736h-4.808c-.541-1.557-1.861-2.775-4.265-2.775-2.606.033-4.366 1.523-4.468 3.892-1.744-.962-2.674-2.843-2.607-4.806"></path></symbol><symbol id="brand-icon-segment" viewBox="0 0 24 24"><g clip-path="url(#2ca9__a)"><path fill="#25C365" fill-rule="evenodd" d="M3.84 10.493A.986.986 0 0 1 2.9 9.22 9.46 9.46 0 0 1 11.992 2.5c.96 0 1.908.143 2.818.425a.984.984 0 1 1-.583 1.879 7.6 7.6 0 0 0-2.235-.335A7.5 7.5 0 0 0 4.78 9.8a.98.98 0 0 1-.94.696zm5.625 0H21.25a.983.983 0 1 0 0-1.968H9.465a.983.983 0 1 0 0 1.967m2.527 11.022c-.96 0-1.908-.143-2.818-.425a.984.984 0 0 1 .582-1.88 7.5 7.5 0 0 0 2.236.337 7.5 7.5 0 0 0 7.211-5.33.982.982 0 1 1 1.88.575 9.46 9.46 0 0 1-9.091 6.723m2.526-6.025H2.734a.983.983 0 1 1 0-1.967h11.785a.983.983 0 1 1 0 1.967m3.312-8.746a.983.983 0 1 0 0-1.966.983.983 0 0 0 0 1.966M6.153 19.24a.983.983 0 1 0 0-1.966.983.983 0 0 0 0 1.966" clip-rule="evenodd"></path></g><defs><clippath id="2ca9__a"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol id="brand-icon-shopify" viewBox="0 0 24 24"><path fill="#95BF47" d="M19.515 5.066a.21.21 0 0 0-.2-.183c-.092 0-1.7-.036-1.7-.036s-1.35-1.315-1.479-1.443c-.128-.128-.401-.092-.493-.055 0 0-.256.073-.676.2a5.4 5.4 0 0 0-.328-.803c-.475-.913-1.188-1.406-2.028-1.406-.055 0-.11 0-.183.018-.018-.037-.054-.055-.073-.091C11.99.865 11.516.682 10.95.7c-1.096.037-2.192.822-3.068 2.229-.621.986-1.096 2.228-1.242 3.196-1.26.384-2.137.658-2.156.676-.639.2-.657.22-.73.822-.055.456-1.735 13.333-1.735 13.333l13.954 2.411 6.046-1.498c-.019-.018-2.484-16.694-2.503-16.803m-5.242-1.297c-.328.091-.694.22-1.077.329 0-.548-.073-1.334-.33-1.991.823.164 1.225 1.096 1.407 1.662m-1.826.566c-.73.22-1.534.475-2.338.712.22-.858.657-1.716 1.169-2.283.2-.2.475-.438.785-.584.329.64.402 1.534.384 2.155m-1.48-2.904q.384 0 .658.164a3.6 3.6 0 0 0-.859.676c-.694.75-1.223 1.918-1.442 3.032l-1.918.585c.383-1.754 1.863-4.402 3.561-4.457"></path><path fill="#5E8E3E" d="M19.314 4.883c-.091 0-1.699-.036-1.699-.036s-1.351-1.315-1.48-1.443a.35.35 0 0 0-.182-.091v20.036L22 21.851 19.515 5.048a.214.214 0 0 0-.201-.165"></path><path fill="#fff" d="m12.593 7.99-.694 2.63s-.786-.365-1.717-.292c-1.37.091-1.37.95-1.37 1.169.073 1.169 3.16 1.424 3.343 4.182.127 2.174-1.151 3.653-2.996 3.763-2.228.146-3.452-1.169-3.452-1.169l.475-2.01s1.224.932 2.21.86c.64-.037.877-.567.858-.932-.09-1.534-2.611-1.443-2.776-3.964-.128-2.118 1.26-4.274 4.329-4.456 1.187-.092 1.79.219 1.79.219"></path></symbol><symbol id="brand-icon-slack" viewBox="0 0 24 24"><g clip-path="url(#0ccb__a)"><path fill="#E01E5A" d="M6.283 14.598c0 1.15-.929 2.079-2.078 2.079-1.15 0-2.079-.93-2.079-2.079s.93-2.078 2.079-2.078h2.078zm1.04 0c0-1.15.929-2.078 2.079-2.078s2.078.929 2.078 2.078v5.197c0 1.15-.929 2.079-2.078 2.079-1.15 0-2.08-.93-2.08-2.079z"></path><path fill="#36C5F0" d="M9.402 6.252c-1.15 0-2.079-.929-2.079-2.079s.93-2.078 2.079-2.078 2.078.929 2.078 2.078v2.08zm0 1.055c1.15 0 2.078.93 2.078 2.08s-.929 2.078-2.078 2.078H4.189c-1.15 0-2.079-.93-2.079-2.079s.93-2.079 2.08-2.079z"></path><path fill="#2EB67D" d="M17.732 9.386c0-1.15.93-2.079 2.079-2.079s2.079.93 2.079 2.08-.93 2.078-2.08 2.078h-2.078zm-1.04 0c0 1.15-.928 2.079-2.078 2.079s-2.079-.93-2.079-2.079V4.173c0-1.15.93-2.078 2.079-2.078s2.079.929 2.079 2.078z"></path><path fill="#ECB22E" d="M14.614 17.716c1.15 0 2.079.93 2.079 2.08s-.93 2.078-2.08 2.078-2.078-.93-2.078-2.079v-2.079zm0-1.039c-1.15 0-2.079-.93-2.079-2.079s.93-2.078 2.079-2.078h5.212c1.15 0 2.08.929 2.08 2.078 0 1.15-.93 2.079-2.08 2.079z"></path></g><defs><clippath id="0ccb__a"><path fill="#fff" d="M2 2h20v20H2z"></path></clippath></defs></symbol><symbol id="brand-icon-snowflake" viewBox="0 0 24 24"><path fill="#29B5E8" fill-rule="evenodd" d="M8.68 12.365c-.09.29-.284.546-.57.71L3.873 15.51a1.25 1.25 0 0 1-1.704-.453 1.24 1.24 0 0 1 .455-1.698L4.992 12l-2.368-1.362a1.235 1.235 0 0 1-.455-1.696 1.25 1.25 0 0 1 1.704-.455l4.237 2.435a1.236 1.236 0 0 1 .57 1.443m1.149 2.283a1.243 1.243 0 0 1 1.155 1.237v4.872c0 .687-.56 1.243-1.248 1.243-.69 0-1.248-.556-1.248-1.243v-2.725l-2.376 1.363a1.243 1.243 0 1 1-1.247-2.152l4.24-2.433a1.23 1.23 0 0 1 .724-.162m4.343-5.295a1.245 1.245 0 0 1-1.155-1.24V3.242c0-.685.556-1.241 1.247-1.241s1.249.556 1.249 1.241v2.727l2.374-1.366a1.25 1.25 0 0 1 1.703.454 1.24 1.24 0 0 1-.456 1.698l-4.24 2.436c-.228.13-.48.182-.722.163M4.865 6.754a1.24 1.24 0 0 1-.457-1.698 1.25 1.25 0 0 1 1.704-.454l2.376 1.366V3.24C8.488 2.556 9.046 2 9.736 2c.688 0 1.248.556 1.248 1.241v4.873c0 .653-.51 1.191-1.155 1.239a1.25 1.25 0 0 1-.724-.163zm7.615 7.475a.35.35 0 0 1-.222.093h-.518a.36.36 0 0 1-.221-.093l-1.762-1.752a.36.36 0 0 1-.09-.219v-.516c0-.072.04-.171.09-.221l1.762-1.752a.36.36 0 0 1 .22-.092h.519c.072 0 .171.04.222.092l1.762 1.752c.05.05.09.15.09.22v.518c0 .07-.04.168-.09.218zm.353-2.238a.37.37 0 0 0-.093-.222l-.51-.506a.36.36 0 0 0-.22-.091h-.021a.36.36 0 0 0-.22.091l-.51.506a.36.36 0 0 0-.09.222v.02c0 .07.04.167.09.218l.51.507c.05.05.149.091.22.091h.02c.071 0 .17-.041.22-.091l.51-.507a.36.36 0 0 0 .094-.218zm6.3 5.252a1.243 1.243 0 1 1-1.246 2.152l-2.374-1.363v2.725c0 .687-.558 1.243-1.249 1.243a1.244 1.244 0 0 1-1.247-1.243v-4.872c0-.654.508-1.191 1.155-1.237.242-.021.494.03.722.162zm-.126-5.242 2.368 1.36c.598.343.803 1.101.457 1.697a1.25 1.25 0 0 1-1.704.453l-4.24-2.436a1.23 1.23 0 0 1-.567-.71 1.2 1.2 0 0 1-.012-.697c.085-.303.284-.575.579-.746l4.24-2.435a1.25 1.25 0 0 1 1.704.455 1.236 1.236 0 0 1-.457 1.696z" clip-rule="evenodd"></path></symbol><symbol id="brand-icon-sprig" viewBox="0 0 24 24"><g clip-path="url(#2313__a)"><path fill="#FAC700" d="M13.666 22.041H2.041v-20h20v20zm2.868-8.764q.505.486 1.205.472c.465-.008.848-.204 1.17-.558.044.502-.195.898-.624 1.068-.454.18-1.045.036-1.33-.32-.044-.055-.103-.129-.161-.135-.175-.018-.353-.006-.551-.006.03.079.046.13.069.18.322.708 1.138 1.07 1.983.879.742-.168 1.233-.745 1.246-1.512.016-.937.006-1.874.006-2.81 0-.033-.013-.064-.018-.09h-.592l-.021.478a1.624 1.624 0 0 0-2.223-.24c-.782.604-.866 1.774-.16 2.594m-4.323.168.449-2.352.924.157c-.083.194-.169.36-.227.537a3 3 0 0 0-.13.544c-.099.688.273 1.273.92 1.354.463.058.938.011 1.414.011V10.44h-.608v2.697h-.419q-.072 0-.146-.002c-.26-.017-.452-.16-.507-.413a1.4 1.4 0 0 1-.021-.452c.055-.452.282-.835.513-1.216.048-.08.069-.177.108-.283l-1.75-.252q-.015-.034-.024-.06c-.073-.232-.214-.36-.425-.364a.435.435 0 0 0-.429.273c-.083.184-.022.367.15.54.041.041.065.13.055.19-.062.361-.138.721-.208 1.082l-.297 1.531h.602c.018-.083.035-.157.056-.266m-4.254-1.55v2.995h.619v-1.642c.74.709 1.62.765 2.312.169.634-.546.754-1.668.252-2.377a1.56 1.56 0 0 0-.98-.652c-.615-.128-1.143.044-1.6.571v-.515h-.59c-.006.03-.011.043-.011.057zm-1.325-.552c-.167-.046-.337-.083-.5-.14-.189-.064-.38-.13-.555-.224-.2-.107-.328-.282-.307-.525.02-.244.165-.403.383-.502.556-.254 1.075.007 1.25.626h.603a1.06 1.06 0 0 0-.294-.805c-.494-.544-1.43-.636-2.06-.208-.722.49-.709 1.485.04 1.934.221.132.481.202.726.295.225.086.461.148.679.25.218.104.365.286.35.544-.015.27-.18.441-.416.55-.6.277-1.158.003-1.366-.668h-.617c-.009.383.156.74.446.976.578.471 1.521.485 2.113.03.438-.337.599-.909.388-1.416-.156-.374-.477-.562-.863-.717m8.738-1.267c.197-.06.323-.185.343-.396.016-.17-.038-.318-.19-.41-.178-.105-.36-.105-.525.023-.158.123-.203.294-.147.485.062.208.216.3.518.298"></path><path fill="#0F272F" d="M16.526 13.265c-.696-.809-.612-1.979.17-2.583a1.624 1.624 0 0 1 2.222.24l.022-.478h.592c.005.026.018.058.018.09 0 .936.01 1.874-.006 2.81-.013.767-.504 1.344-1.246 1.512-.845.19-1.662-.17-1.984-.88-.022-.048-.038-.1-.068-.179.198 0 .376-.011.55.006.059.006.118.08.162.135.285.356.876.5 1.33.32.429-.17.668-.566.624-1.068-.322.354-.705.55-1.17.558a1.64 1.64 0 0 1-1.216-.483m.43-.45c.055.051.107.108.168.153.356.268.905.288 1.292.051.385-.235.58-.706.492-1.192a1.08 1.08 0 0 0-.844-.894 1.14 1.14 0 0 0-1.215.482c-.268.414-.235.947.106 1.4"></path><path fill="#0F282F" d="m12.21 13.464-.054.248h-.601l.296-1.532c.07-.36.146-.72.208-1.082a.25.25 0 0 0-.055-.19c-.172-.173-.233-.355-.15-.54a.435.435 0 0 1 .43-.272c.21.004.351.131.424.363.006.02.015.037.024.061l1.75.252c-.04.106-.06.203-.108.283-.231.38-.458.764-.513 1.216-.018.148-.01.306.021.451.056.254.247.396.508.413q.072.004.146.003h.419V10.44h.608v3.257c-.477 0-.952.047-1.415-.011-.647-.081-1.018-.666-.92-1.354.026-.184.072-.368.13-.545.059-.176.144-.343.227-.537l-.924-.156z"></path><path fill="#0F272F" d="M7.959 11.877c0-.472 0-.923.002-1.374 0-.013.005-.027.011-.057h.59v.515c.457-.527.985-.699 1.6-.571.41.085.737.31.98.652.502.709.382 1.831-.252 2.377-.692.596-1.572.54-2.313-.17v1.643H7.96zm.849.918c.037.041.071.085.111.123.32.305.855.387 1.261.194.42-.198.678-.64.645-1.098-.037-.512-.337-.9-.796-1.033-.462-.133-.959.024-1.23.389-.303.407-.306.948.009 1.425"></path><path fill="#0E272F" d="M6.648 11.348c.37.15.691.337.847.711.212.507.05 1.08-.387 1.416-.592.455-1.535.441-2.113-.03a1.21 1.21 0 0 1-.446-.976h.616c.209.671.766.945 1.367.668.236-.109.4-.28.416-.55.015-.258-.132-.44-.35-.543s-.454-.165-.68-.25c-.244-.094-.504-.164-.725-.296-.749-.449-.762-1.443-.04-1.934.63-.428 1.565-.336 2.06.208.202.224.311.485.293.805h-.603c-.174-.62-.693-.88-1.25-.626-.218.1-.361.258-.382.502-.021.243.107.418.306.525.175.094.367.16.556.225.163.056.333.093.515.145"></path><path fill="#0F272F" d="M15.353 10.08c-.285 0-.44-.092-.502-.3-.056-.192-.01-.362.147-.485.165-.129.348-.129.525-.023.152.091.206.239.19.41-.02.21-.145.336-.36.398"></path><path fill="#F8C600" d="M16.941 12.805c-.33-.44-.364-.975-.096-1.389a1.14 1.14 0 0 1 1.215-.481c.44.095.762.436.844.894.087.486-.107.957-.492 1.192-.387.237-.936.217-1.293-.05-.06-.046-.112-.103-.178-.166M8.799 12.784c-.306-.465-.303-1.006 0-1.413.271-.365.768-.522 1.23-.389.459.133.758.522.796 1.033.033.458-.226.9-.645 1.098-.406.193-.942.111-1.26-.193-.04-.038-.075-.082-.121-.136"></path></g><defs><clippath id="2313__a"><path fill="#fff" d="M2 2h20v20H2z"></path></clippath></defs></symbol><symbol id="brand-icon-squarespace" viewBox="0 0 24 24"><path fill="#1A1918" d="M15.275 5.813a1.16 1.16 0 0 0-1.638 0L6.27 13.18a2.316 2.316 0 0 1-3.275-3.275l7.227-7.226a2.315 2.315 0 0 0-3.275 0l-5.59 5.589a4.632 4.632 0 0 0 6.55 6.55l7.369-7.369a1.16 1.16 0 0 0 0-1.637m2.456-2.456a4.63 4.63 0 0 0-6.55 0l-7.368 7.368a1.158 1.158 0 0 0 1.637 1.638l7.369-7.369a2.315 2.315 0 0 1 3.274 0 1.159 1.159 0 0 0 1.638-1.637m2.456 7.368a1.16 1.16 0 0 0-1.637 0l-7.369 7.368a2.316 2.316 0 0 1-3.275 0 1.158 1.158 0 0 0-1.637 1.638 4.63 4.63 0 0 0 6.55 0l7.368-7.369a1.16 1.16 0 0 0 0-1.637m2.457-2.456a4.63 4.63 0 0 0-6.55 0l-7.369 7.369a1.158 1.158 0 1 0 1.638 1.637l7.368-7.368a2.315 2.315 0 1 1 3.275 3.274l-7.227 7.227c.904.904 2.37.904 3.275 0l5.59-5.59a4.63 4.63 0 0 0 0-6.549"></path></symbol><symbol id="brand-icon-survicate" viewBox="0 0 25 25"><g fill="#171D1A" clip-path="url(#55f7__a)"><path d="M7.432 7.52V3.058a4.88 4.88 0 0 0-3.377 1.392c-.917.912-1.448 2.112-1.448 3.408a4.83 4.83 0 0 0 1.4 3.36 4.76 4.76 0 0 0 3.376 1.392 4.88 4.88 0 0 0 3.377-1.392 4.7 4.7 0 0 0 1.4-3.36v-4.8c-1.207 0-2.413.48-3.281 1.296-.82.816-1.4 1.968-1.447 3.168M16.983 12.657h4.824c0-1.2-.482-2.4-1.302-3.264-.82-.912-1.978-1.44-3.184-1.536h4.486c0-1.296-.482-2.496-1.399-3.408-.917-.864-2.123-1.392-3.377-1.392a4.88 4.88 0 0 0-3.377 1.392c-.916.912-1.447 2.112-1.447 3.408 0 1.248.53 2.496 1.399 3.408.917.864 2.123 1.392 3.377 1.392M7.432 12.656H2.607c0 1.2.483 2.4 1.303 3.264.82.912 1.978 1.44 3.184 1.536H2.607c0 1.296.483 2.496 1.4 3.408a4.76 4.76 0 0 0 3.376 1.392 4.88 4.88 0 0 0 3.377-1.392 4.86 4.86 0 0 0 1.4-3.408c0-1.248-.531-2.496-1.4-3.408a4.76 4.76 0 0 0-3.328-1.392"></path><path d="M17.032 12.656a4.8 4.8 0 0 0-3.377 1.392 4.86 4.86 0 0 0-1.4 3.408v4.8c1.207 0 2.413-.48 3.281-1.296s1.447-1.968 1.496-3.168v4.464a4.88 4.88 0 0 0 3.377-1.392c.916-.912 1.399-2.112 1.399-3.408 0-1.248-.531-2.496-1.4-3.408-.916-.864-2.122-1.392-3.376-1.392"></path></g><defs><clippath id="55f7__a"><path fill="#fff" d="M2.607 3.057h19.2v19.2h-19.2z"></path></clippath></defs></symbol><symbol id="brand-icon-unity" viewBox="0 0 24 24"><g clip-path="url(#c8c6__a)"><path fill="#4C4C4C" d="M20.841 16V6.667L12.758 2v3.583l3.167 1.834c.124.083.124.25 0 .291l-3.75 2.167c-.126.083-.25.042-.334 0l-3.75-2.167c-.125-.041-.125-.25 0-.291l3.167-1.834V2L3.133 6.667V16l3.083-1.792v-3.666c0-.125.167-.209.25-.167l3.75 2.167c.125.083.167.166.167.291v4.334c0 .125-.167.208-.25.166L6.966 15.5l-3.083 1.792L11.966 22l8.083-4.667-3.083-1.791-3.167 1.833c-.124.083-.25 0-.25-.167v-4.333a.35.35 0 0 1 .167-.292l3.75-2.166c.125-.084.25 0 .25.166v3.667z"></path><path fill="#000" d="m11.966 22.001 8.083-4.666-3.083-1.792-3.167 1.833c-.125.084-.25 0-.25-.166v-4.334a.35.35 0 0 1 .167-.291l3.75-2.167c.125-.083.25 0 .25.167v3.666l3.083 1.792V6.668l-8.833 5.125z"></path><path fill="gray" d="M12.758 2v3.583l3.167 1.834c.124.083.124.25 0 .291l-3.75 2.167c-.126.083-.25.042-.334 0l-3.75-2.167c-.125-.041-.125-.25 0-.291l3.167-1.834V2L3.133 6.667l8.833 5.125L20.8 6.667z"></path><path fill="#4C4C4C" d="m10.175 17.376-3.167-1.833-3.084 1.792L12.008 22V11.793L3.133 6.668v9.333l3.083-1.791v-3.667c0-.125.167-.208.25-.167l3.75 2.167c.125.083.167.167.167.292v4.333c.042.167-.083.292-.208.208"></path></g><defs><clippath id="c8c6__a"><path fill="#fff" d="M2 2h20v20H2z"></path></clippath></defs></symbol><symbol id="brand-icon-unreal" viewBox="0 0 24 24"><path fill="#000" d="M12 2C6.52 2 2.084 6.476 2.084 12S6.521 22 12 22c5.475 0 9.915-4.476 9.915-10s-4.44-10-9.918-10zm0 .44a9.4 9.4 0 0 1 6.702 2.799A9.55 9.55 0 0 1 21.48 12a9.55 9.55 0 0 1-2.777 6.761 9.4 9.4 0 0 1-6.702 2.8 9.4 9.4 0 0 1-6.703-2.8A9.56 9.56 0 0 1 2.517 12a9.56 9.56 0 0 1 2.777-6.761A9.37 9.37 0 0 1 12 2.439m-.498 3.518c-1.615.433-3.11 1.263-5.101 3.548S4.786 13.68 4.786 13.68s.55-1.298 1.872-2.666c.628-.647 1.094-.865 1.417-.865a.5.5 0 0 1 .527.5v4.64c0 .458-.296.56-.57.553-.23-.003-.446-.085-.446-.085 1.358 1.973 4.607 2.25 4.607 2.25l1.425-1.524.033.03 1.306 1.112c2.389-1.419 3.541-4.049 3.541-4.049-1.067 1.126-1.745 1.39-2.148 1.39-.359-.003-.499-.212-.499-.212-.019-.097-.051-1.51-.065-2.923-.013-1.462 0-2.926.072-2.93.413-.775 1.73-2.338 1.73-2.338-2.458.486-3.797 2.097-3.797 2.097-.396-.313-1.204-.26-1.204-.26.378.207.755.813.755 1.314v4.935s-.824.726-1.458.726a.9.9 0 0 1-.736-.375 1 1 0 0 1-.123-.215V8.691a.55.55 0 0 1-.303.104c-.137 0-.277-.068-.371-.267-.072-.15-.118-.374-.118-.703 0-1.123 1.27-1.869 1.27-1.869z"></path></symbol><symbol id="brand-icon-userflow" viewBox="0 0 25 25"><g clip-path="url(#913b__a)"><path fill="url(#a8bd__b)" d="M2.715 3.057h19.2v19.2h-19.2z"></path></g><defs><clippath id="913b__a"><path fill="#fff" d="M2.715 3.057h19.2v19.2h-19.2z"></path></clippath><pattern id="a8bd__b" width="1" height="1" patternContentUnits="objectBoundingBox"><use xlink:href="#413d__c" transform="scale(.00667)"></use></pattern><image xlink:href="data:image/png;base64,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" id="413d__c" width="150" height="150"></image></defs></symbol><symbol id="brand-icon-web-bookmarklet" viewBox="0 0 24 24"><mask id="f508__a" width="20" height="20" x="2" y="2" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="#fff" d="M20 2H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"></path></mask><g mask="url(#f508__a)"><path fill="#0D1F91" d="M20 2H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"></path><mask id="d76f__b" width="11" height="11" x="2" y="11" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="#fff" d="M12.813 11.188h-10v10h10z"></path></mask><g mask="url(#d76f__b)"><path fill="#fff" fill-rule="evenodd" d="M7.403 14.302c.051.075.14.244.272.62q.137.389.293.95l-1.182-.015-.196-.002c.221-.813.492-1.43.69-1.575a.1.1 0 0 1 .053-.017q.04 0 .07.039m3.106 1.975v.001l-.013.01-.004.002-.017.01a.2.2 0 0 1-.093.024H8.606l.046.2c.098.422.356 1.545.631 1.545h.014c.214 0 .324-.312.564-.996l.003-.008.129-.365.012-.033a.086.086 0 0 1 .163.055l-.01.034a6 6 0 0 0-.083.32c-.143.597-.359 1.497-.913 1.497h-.004c-.359-.002-.573-.579-.665-.825-.17-.46-.3-.95-.425-1.424H6.432l-.339 1.092-.005-.004a.173.173 0 0 1-.318-.092v-.006l.02-.124c.047-.28.104-.572.168-.866h-.69l-.003-.003a.262.262 0 0 1-.01-.516 1 1 0 0 1 .115-.003l.706.01c.36-1.473.778-2.22 1.24-2.222.498 0 .866 1.137 1.161 2.25l.001.005c.607.012 1.253.03 1.88.075l.027.002.03.003h.003l.004.001h.001a.2.2 0 0 1 .086.35m-2.696-3.84c-2.072 0-3.75 1.689-3.75 3.772s1.678 3.771 3.75 3.771c2.07 0 3.75-1.688 3.75-3.771s-1.68-3.771-3.75-3.771" clip-rule="evenodd"></path></g><mask id="bbee__c" width="16" height="15" x="8" y="-1" maskUnits="userSpaceOnUse" style="mask-type: luminance;"><path fill="#fff" d="M23.001-1h-15v15h15z"></path></mask><g mask="url(#bbee__c)"><path fill="#91D9E3" d="M17.982 2.625h-4.464c-.491 0-.893.5-.893 1.111v8.889l3.125-1.667 3.125 1.667V3.736c0-.611-.402-1.111-.893-1.111"></path><path fill="#0D1F91" d="M20.125 2h-7.5v1.875h7.5z"></path></g></g></symbol><symbol id="brand-icon-webflow" viewBox="0 0 24 24"><path fill="#146EF5" fill-rule="evenodd" d="m24 5-7.658 14.971H9.149l3.205-6.204h-.144C9.566 17.199 5.62 19.458 0 19.97v-6.119s3.596-.212 5.71-2.435H0V5h6.417v5.278h.144L9.183 5h4.854v5.245h.143L16.901 5z" clip-rule="evenodd"></path></symbol><symbol id="brand-icon-wix" viewBox="0 0 24 24"><path fill="#000" d="M3.434 13.4q.111-.42.222-.841c.284-1.084.565-2.171.855-3.255.105-.443.259-.832.459-1.19l-.012.023a1.43 1.43 0 0 1 1.016-.7h.008a1.61 1.61 0 0 1 1.52.48h.002c.136.156.243.341.31.544l.003.011c.185.492.377 1.126.535 1.773l.025.124q.39 1.482.786 2.967c.006.023 0 .05.033.07.056-.222.116-.442.172-.661l1.21-4.715q.074-.276.222-.491l-.004.006a.98.98 0 0 1 .649-.422l.006-.001a5.3 5.3 0 0 1 1.044-.104h.001c.073 0 .086.017.07.086q-.465 1.78-.928 3.559-.684 2.632-1.371 5.26l-.135.519c-.01.033-.014.062-.06.066q-.107.01-.233.01a2.6 2.6 0 0 1-.757-.11l.018.005a.8.8 0 0 1-.31-.195 4 4 0 0 1-.335-.351l-.005-.007a2.7 2.7 0 0 1-.287-.569l-.006-.019a13.4 13.4 0 0 1-.68-2.192l-.016-.094c-.281-1.12-.568-2.241-.852-3.361a.5.5 0 0 0-.087-.186.25.25 0 0 0-.218-.128H6.3a.28.28 0 0 0-.239.189v.002c-.097.304-.166.614-.249.922-.334 1.288-.658 2.58-1.001 3.866-.102.383-.271.743-.4 1.12-.138.361-.37.66-.665.877l-.005.004a.97.97 0 0 1-.481.195h-.005a4 4 0 0 1-.676.029h.008c-.059 0-.08-.023-.099-.08q-.48-1.823-.968-3.644-.63-2.385-1.27-4.779L.01 7.11c-.006-.03-.032-.073.03-.08a2.626 2.626 0 0 1 1.466.225l-.016-.006c.234.122.41.33.487.581l.002.007c.172.56.301 1.126.446 1.692a1345 1345 0 0 1 .999 3.875l-.001-.001zM15.342 16.537l.278-.416 2.881-4.289a.1.1 0 0 0 .018-.051.08.08 0 0 0-.025-.058l-2.386-3.55-.72-1.082c-.01-.017-.033-.033-.026-.066l.49.03q.453.031.902.056c.244.03.46.129.636.276l-.002-.002q.238.181.396.426l.004.007c.518.786 1.03 1.576 1.57 2.347.24.34.343.307.598.056q.19-.227.342-.494l.008-.016c.446-.664.886-1.334 1.341-1.992a1.57 1.57 0 0 1 1.09-.65l.007-.001a8.4 8.4 0 0 1 1.227-.043h-.015c.08 0 .03.043.014.066q-.331.495-.667.99-1.221 1.824-2.439 3.635a.1.1 0 0 0-.023.064.1.1 0 0 0 .029.071q1.546 2.3 3.09 4.6c.014.022.046.045.036.07-.01.023-.056.013-.08.013a9 9 0 0 1-1.168-.035l.038.003a1.75 1.75 0 0 1-1.067-.54v-.002a3.6 3.6 0 0 1-.365-.527l-.01-.018c-.433-.647-.862-1.295-1.295-1.946a.9.9 0 0 0-.254-.263l-.003-.002a.2.2 0 0 0-.126-.048.18.18 0 0 0-.126.05.7.7 0 0 0-.183.186l-.002.003c-.546.779-1.05 1.586-1.58 2.378a1.66 1.66 0 0 1-1.09.71h-.01a4.3 4.3 0 0 1-.926.052h.01zM14.638 8.553v.129q0 3.291.006 6.582v.039a1.2 1.2 0 0 1-.614 1.048l-.006.003a1 1 0 0 1-.445.155h-.005a5 5 0 0 1-.506.026h-.03.001c-.109 0-.109 0-.109-.106q.002-1.779-.006-3.559c0-.998-.01-1.992 0-2.99a.53.53 0 0 1 .27-.439l.002-.001c.146-.096.308-.16.46-.245a5.5 5.5 0 0 0 .807-.474l-.017.012c.056-.053.115-.112.194-.182zM12.91 8.976v-.04q.002-.424.105-.815l-.005.022c.09-.326.276-.6.526-.798l.003-.002c.23-.161.51-.27.811-.303l.008-.001c.089-.017.178-.023.267-.036.073-.014.093.026.096.089l.001.049q0 .179-.032.35l.002-.012c-.066.403-.25.755-.516 1.028a1.5 1.5 0 0 1-.538.324l-.01.003a2.5 2.5 0 0 0-.615.325l.007-.005c-.026.02-.056.06-.093.04s-.017-.066-.02-.099.003-.082.003-.118"></path></symbol><symbol id="brand-icon-wordpress" viewBox="0 0 24 24"><g clip-path="url(#3cfd__a)"><path fill="#00749A" d="M3.413 12a8.54 8.54 0 0 0 4.812 7.718L4.174 8.522c-.47 1.087-.762 2.247-.762 3.478m14.384-.435c0-1.05-.399-1.812-.725-2.355-.435-.725-.833-1.304-.833-2.029 0-.797.616-1.522 1.45-1.522h.108C16.276 4.246 14.247 3.413 12 3.413a8.72 8.72 0 0 0-7.174 3.876h.544c.906 0 2.282-.108 2.282-.108.472-.037.508.651.073.725 0 0-.471.072-.978.072l3.116 9.275 1.884-5.616-1.34-3.66-.907-.07c-.471-.037-.399-.726.036-.726 0 0 1.413.109 2.247.109.906 0 2.282-.109 2.282-.109.471-.036.508.652.072.725 0 0-.47.073-.978.073l3.116 9.24.875-2.863c.363-1.195.652-2.028.652-2.79zm-5.652 1.196-2.572 7.464a9 9 0 0 0 2.427.362c1.014 0 1.956-.187 2.863-.47-.037-.037-.037-.073-.073-.11zm7.391-4.855.073.875c0 .875-.145 1.848-.652 3.08l-2.609 7.573c2.536-1.486 4.275-4.24 4.275-7.428a9.2 9.2 0 0 0-1.087-4.094zM12 2C6.493 2 2 6.493 2 12c0 5.508 4.493 10 10 10 5.508 0 10-4.492 10-10 0-5.507-4.492-10-10-10m0 19.565c-5.254 0-9.529-4.275-9.529-9.565A9.544 9.544 0 0 1 12 2.471 9.544 9.544 0 0 1 21.529 12c0 5.29-4.275 9.565-9.529 9.565"></path></g><defs><clippath id="3cfd__a"><path fill="#fff" d="M2 2h20v20H2z"></path></clippath></defs></symbol></svg><div class="ocontainerHEEmBg16" id="top-nav" style="top: 0px;"><div class="w-full min-w-[420px]"><div data-testid="create-recents-favorites-spaces-toolbar" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="oamp-logo-containerppC0Cw3" id="top-nav-amp-logo"><button aria-label="Open Side Navigation" data-testid="top-hamburger-button" class="focus:shadow-focus border-transparent bg-transparent fill-monochrome-plus5 text-monochrome-plus5 hover:border-primary-minus2 hover:bg-primary-minus5 hover:fill-primary-base hover:text-primary-base active:border-primary-plus2 active:bg-primary-plus2 active:fill-monochrome-minus5 active:text-monochrome-minus5 [&.isExpanded]:border-primary-minus3 [&.isExpanded]:bg-primary-minus3 [&.isExpanded]:fill-primary-base [&.isExpanded]:text-primary-base [&.isSelected]:border-primary-minus1 [&.isSelected]:bg-primary-minus4 [&.isSelected]:fill-primary-plus1 [&.isSelected]:text-primary-plus1 core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-auto max-w-initial cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-hamburger" xlink:href="#icon-hamburger"></use></svg></span></span></span></button></div><div id="top-nav-gems" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="ocreate-new-button-wrapperddmMRQ1" id="top-nav-create-button"><div class="" data-testid="select-dropdown create-new-menu-button"><div class="ccontainerPHKsMA1" id="popout_c90f08a5-4660-4a23-a5ad-bd6f6122f154"><button placeholder="Create" aria-expanded="false" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase PRIMARY flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Create" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Create</span></span></div></span></button></div></div></div><div class="shrbutton9vm7_w13" tabindex="-1"><div><div class=""><div class="ccontainerPHKsMA1" id="popout_8eb103eb-70f7-4f94-84a8-d10639c96da2"><button aria-expanded="false" data-testid="recents-dropdown" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]" id="top-nav-recents-gem"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Recent" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Recent</span></span></div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></button></div></div></div></div><div class="shrbutton9vm7_w13" tabindex="-1"><div><div id="favorites-dropdown"><div class=""><div class="ccontainerPHKsMA1" id="popout_f48d11bd-b472-437d-ba69-47f37eb3cdb7"><button aria-expanded="false" data-testid="favorites-dropdown" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Favorites" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Favorites</span></span></div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></button></div></div></div></div></div><div class="shrbutton9vm7_w13" tabindex="-1"><div><div class=""><div class="ccontainerPHKsMA1" id="popout_58e9a392-a8fd-468a-8c95-9086e5912fcf"><button aria-expanded="false" data-testid="spaces-dropdown" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]" id="top-nav-spaces-gem"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Spaces" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Spaces</span></span></div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></button></div></div></div></div></div></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div><div class="oglobalSearchFieldContainerOyYezQ1"><div class="react-aria-SearchField" data-rac="" data-empty="true" style="margin: 0px auto;"><div data-testid="global-search-input" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-monochrome-minus4 flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-5 relative pt-1 pr-1 pb-1 pl-1 shadow-base w-45 max-w-full border-t-base border-t-monochrome-minus4 border-r-base border-r-monochrome-minus4 border-b-base border-b-monochrome-minus4 border-l-base border-solid border-l-monochrome-minus4 rounded-br-plus2 rounded-bl-plus2 rounded-tl-plus2 rounded-tr-plus2"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-search" xlink:href="#icon-search"></use></svg><input aria-label="Search or ask a question" type="text" placeholder="Search or ask a question" id="react-aria4986107938-:r3b:" class="oglobalSearchFieldInputOyYezQ16" data-rac="" value="" title=""><div class="self-auto flex-grow-0 flex-shrink-0"><span class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal">Ctrl + K</span></div></div></div></div></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-end h-auto relative pt-0 pr-2 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><button class="rounded-max border-accent02-minus1 bg-accent02-minus1 px-1 text-accent02-plus2 text-base oexpandedInviteUsersButton97uPGA13 cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-4 relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-person-add" xlink:href="#icon-person-add"></use></svg><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="whitespace-nowrap">Invite Members</span></span><span class="ocloseIcon97uPGA16 cursor hover:text-accent02-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-close" xlink:href="#icon-close"></use></svg></span></span></span></button></div><a class="shrbutton9vm7_w13" tabindex="-1" href="https://app.amplitude.com/analytics/calm-limit-415616/notifications?source=universal%20toolbar"><div class="shrbutton9vm7_w13" tabindex="-1"><div><div style="position: relative;"><button aria-label="Notifications" data-testid="notifications-link" class="ease user-select-none relative max-w-[300px] cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-4 max-w-initial"><span class="flex h-full w-full flex-nowrap items-center gap-0.5 pb-0 pt-0"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-bell" xlink:href="#icon-bell"></use></svg></div></span></span></button></div></div></div></a><button aria-label="Help" data-state="closed" class="ease user-select-none relative max-w-[300px] cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-4 max-w-initial"><span class="flex h-full w-full flex-nowrap items-center gap-0.5 pb-0 pt-0"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-question-mark-circle" xlink:href="#icon-question-mark-circle"></use></svg></div></span></span></button><div class="shrbutton9vm7_w13" tabindex="-1"><div><div class="shrbutton9vm7_w13" tabindex="-1"><div><button aria-label="Settings" data-testid="universal-toolbar-user-button" aria-expanded="false" aria-haspopup="true" text="undefined" type="button" class="ease user-select-none relative max-w-[300px] cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-4 max-w-initial" id="dropdown-1"><span class="flex h-full w-full flex-nowrap items-center gap-0.5 pb-0 pt-0"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-settings" xlink:href="#icon-settings"></use></svg></div></span></span></button></div></div></div></div><a class="shrbutton9vm7_w13" tabindex="-1" href="https://app.amplitude.com/analytics/calm-limit-415616/settings/plans-and-billing/pricing?source=universal-toolbar"><div class="shrbutton9vm7_w13" tabindex="-1" data-testid="universal-toolbar-pricing-icon-link"><div><button aria-label="Upgrade" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Upgrade" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Upgrade</span></span><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-monetization-key" xlink:href="#icon-monetization-key"></use></svg></div></div></span></button></div></div></a></div></div><div id="onenav-scroll-container" class="owrapper-childrenHEEmBg34"><div class="navigationsidebar6zDuIg15 navigationsidebar--variant-default6zDuIg26 navigationnavigation-sidebariwPDog3" data-testid="primary-sidebar-navigation"><div class="navigationinner-sidebar6zDuIg49"><div data-testid="inner-sidebar-content" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-1 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-2 pr-2 pb-2 pl-2 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Onboarding" id="nav-button-0" data-testid="quick-start-nav-items" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/quick-start"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-rocket" xlink:href="#icon-rocket"></use></svg><span title="Onboarding" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Onboarding</span></span></span></span></span></span></a></div><hr class="bg-monochrome-minus3 border-none text-monochrome-minus3 h-[1px] m-0 w-full"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Home" id="nav-button-2" data-testid="home-view-nav-items" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/home"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-home" xlink:href="#icon-home"></use></svg><span title="Home" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Home</span></span></span></span></span></span></a></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="All Content" id="nav-button-4" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/content?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-category" xlink:href="#icon-category"></use></svg><span title="All Content" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">All Content</span></span></span></span></span></span></a></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Live Events" id="nav-button-5" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/live-events?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-live-events" xlink:href="#icon-live-events"></use></svg><span title="Live Events" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Live Events</span></span></span></span></span></span></a></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Ask Amplitude" id="nav-button-6" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/ask?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-suggest" xlink:href="#icon-suggest"></use></svg><span title="Ask Amplitude" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Ask Amplitude</span></span></span></span></span></span></a></div><hr class="bg-monochrome-minus3 border-none text-monochrome-minus3 h-[1px] m-0 w-full"><div data-testid="product-analytics-view-nav-items" style="width: 100%;"><button aria-label="Product Analytics" id="nav-button-8" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chart" xlink:href="#icon-chart"></use></svg><span title="Product Analytics" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Product Analytics</span></span></span><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></span></span></button></div><div data-testid="space-objects-view-nav-items" style="width: 100%;"><button aria-label="Marketing Analytics" id="nav-button-9" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-web-analytics" xlink:href="#icon-web-analytics"></use></svg><span title="Marketing Analytics" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Marketing Analytics</span></span></span><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></span></span></button></div><div data-testid="users-view-nav-items" style="width: 100%;"><button aria-label="Users" id="nav-button-10" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-users" xlink:href="#icon-users"></use></svg><span title="Users" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Users</span></span></span><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></span></span></button></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Session Replay" id="nav-button-11" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/session-replay?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-session-replay" xlink:href="#icon-session-replay"></use></svg><span title="Session Replay" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Session Replay</span></span></span></span></span></span></a></div><div data-testid="experiment-nav-items" style="width: 100%;"><button aria-label="Experiment" id="nav-button-12" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-experiment" xlink:href="#icon-experiment"></use></svg><span title="Experiment" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Experiment</span></span></span><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></span></span></button></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Guides and Surveys" id="nav-button-13" data-testid="assistance-nav-items" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/guides-surveys/calm-limit-415616/upgrade?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-assistance-compass" xlink:href="#icon-assistance-compass"></use></svg><span title="Guides and Surveys" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Guides and Surveys</span></span></span></span></span></span></a></div><hr class="bg-monochrome-minus3 border-none text-monochrome-minus3 h-[1px] m-0 w-full"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Data" id="nav-button-15" data-testid="data-view-nav-items" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/data/calm-limit-415616/?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-database" xlink:href="#icon-database"></use></svg><span title="Data" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Data</span></span></span></span></span></span></a></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a aria-label="Releases" id="nav-button-16" data-testid="releases-view-nav-items" class="bg-monochrome-minus4 border-monochrome-minus4 text-monochrome-plus3 fill-monochrome-plus4 rounded-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:bg-monochrome-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:border-primary-minus4 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:text-monochrome-plus3 focus:[&:not(:active)]:[&:not(:hover)]:[&:not(.isSelected)]:fill-monochrome-plus3 hover:bg-primary-minus3 hover:border-primary-minus3 hover:text-primary-base hover:fill-primary-base active:bg-primary-minus3 active:border-primary-minus3 active:text-primary-base active:fill-primary-base [&.isSelected]:bg-primary-minus3 [&.isSelected]:border-primary-minus3 [&.isSelected]:text-primary-base [&.isSelected]:fill-primary-base core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-full max-w-initial cerulean-base-buttonbase" href="https://app.amplitude.com/analytics/calm-limit-415616/releases?source=left%20nav"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-release" xlink:href="#icon-release"></use></svg><span title="Releases" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Releases</span></span></span></span></span></span></a></div></div></div><div data-testid="usage-in-left-nav" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-start justify-between h-auto relative pt-1 pr-1 pb-1 pl-1 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-none bg-primary-minus3 flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-plus3 rounded-bl-plus3 rounded-tl-plus3 rounded-tr-plus3"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-0.5 bg-monochrome-minus5 flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-2 pr-2 pb-1 pl-2 shadow-base w-full max-w-full border-t-base border-t-monochrome-minus3 border-r-base border-r-monochrome-minus3 border-b-base border-b-monochrome-minus3 border-l-base border-solid border-l-monochrome-minus3 rounded-br-plus3 rounded-bl-plus3 rounded-tl-plus3 rounded-tr-plus3"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-1 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto w-full flex-grow-0 flex-shrink"><div data-testid="usage-in-left-nav-foundation-entitlement"><div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-start justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><p title="MTUs" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus5 text-monochrome-plus5 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">MTUs</span></p><p class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus5 text-monochrome-plus5 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="whitespace-nowrap">834 / 50k</span></p></div><div class="shrprogressBarEntityContainernifmxQ70"><div class="shrprogressBarEntitynifmxQ70 shrprogressBarUniquenifmxQ83" style="width: 1.668%;"></div><div class="shrprogressBarEntitynifmxQ70 shrprogressBarUnusednifmxQ95" style="width: 98.332%;"></div></div></div></div></div><div class="self-auto w-full flex-grow-0 flex-shrink"><div data-testid="usage-in-left-nav-saved-charts"><div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-start justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><p title="Saved Charts" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus5 text-monochrome-plus5 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Saved Charts</span></p><p class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus5 text-monochrome-plus5 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="whitespace-nowrap">10 / 10</span></p></div><div class="shrprogressBarEntityContainernifmxQ70"><div class="shrprogressBarEntitynifmxQ70 shrprogressBarUniqueWarningnifmxQ87" style="width: 100%;"></div></div></div></div></div></div><button data-testid="usage-in-left-nav-cta" class="focus:shadow-focus border-primary-base bg-primary-base fill-monochrome-minus5 text-monochrome-minus5 hover:border-primary-minus1 hover:bg-primary-minus1 hover:fill-monochrome-minus5 hover:text-monochrome-minus5 active:border-primary-plus2 active:bg-primary-plus2 active:fill-monochrome-minus5 active:text-monochrome-minus5 [&.isExpanded]:border-primary-minus1 [&.isExpanded]:bg-primary-minus1 [&.isExpanded]:fill-monochrome-minus5 [&.isExpanded]:text-monochrome-minus5 [&.isSelected]:border-primary-minus1 [&.isSelected]:bg-primary-minus4 [&.isSelected]:fill-primary-plus1 [&.isSelected]:text-primary-plus1 core-button-base-styles gap-0.25 px-1 font-base h-3 w-full max-w-none cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Upgrade for More" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Upgrade for More</span></span></span></span></span></span></button></div></div></div></div><div class="onenav-analytics-app"><div data-testid="session-replay-enabled"></div><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-col lcontainercwdyTg3" style="flex-grow: 1; min-height: 100%; min-width: 0px;"><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-row" style="flex-grow: 1; min-width: 0px;"><div class="lcontainer42jvoA25 llight42jvoA97" style="width: 0px;"><div class="lfixed-container42jvoA31 lcollapsed42jvoA54 llight42jvoA97" style="flex-grow: 1; top: 60px; width: 0px;"><div title="" class="rounded-base items-stretch justify-start overflow-hidden flex flex-row" style="flex-grow: 1; min-width: 0px;"></div></div></div><div title="" class="rounded-base items-stretch justify-center overflow-visible flex flex-row lprimarycwdyTg19" style="flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-col" data-testid="dashboard-view" style="flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-stretch justify-center overflow-visible flex flex-row lrelative-containeryLdK9w3" style="flex-grow: 1; min-width: 0px;"><div class="lcontentsyLdK9w7 lis-responsiveyLdK9w17 lis-full-bleedyLdK9w20 lhas-bottom-paddingyLdK9w23"><div><div><div class="ltoolbarPug70w16" style="top: 0px; position: sticky;"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-full relative pt-0 pr-2 pb-0 pl-2 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="lbreadcrumbs-pathkOSe2w36"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-0.5 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div><div class="lcontent-location-fieldudoJCQ15"><div data-testid="content-field-dashboard-hwdbf37k" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-plus3 rounded-bl-plus3 rounded-tl-plus3 rounded-tr-plus3"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base" data-testid="dashboard-view content-location-breadcrumb"><div data-testid="breadcrumb-element-0" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/space/personal/all" style="text-decoration: none;"><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-row ltitlezXfudQ13 lprimaryzXfudQ23" style="max-width: 250px; min-width: 0px;"><div title="MUSKKAN IYER's Space" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">MUSKKAN IYER's Space</span></div></div></a></div></div><div data-state="closed" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class=""><div class="ccontainerPHKsMA1" id="popout_9e76989c-a9e7-4cf1-a283-99fb331653c2"><button aria-label="Move" aria-expanded="false" class="ease user-select-none relative max-w-[300px] cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-3 w-3 max-w-initial"><span class="flex h-full w-full flex-nowrap items-center gap-0.5 pb-0 pt-0"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-2 w-2 mx-[-1px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></div></span></span></button></div></div></div></div></div></div><span class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus5 text-monochrome-plus5 no-underline normal-case block font-primary text-base leading-base capsize font-base overflow-wrap-normal"><span class="ltoolbar-db-titlekOSe2w16">Feature Engagement & Adoption Dashboard</span></span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class=""><div class="ccontainerPHKsMA1" id="popout_fb449a7d-f8bd-4783-8795-dcc4afb27b71"><div data-testid="star-button" data-state="closed"><span class="absolute h-[1px] w-[1px] overflow-hidden whitespace-nowrap [clip-path:inset(50%)] [clip:rect(0,0,0,0)]" role="status"><label for="star-button">Add to favorites</label></span><div class="relative flex w-min"><input id="star-button" class="cursor-pointer appearance-none rounded-bl-plus2 rounded-br-plus2 rounded-tl-plus2 rounded-tr-plus2 border-none border-transparent shadow-base outline-none transition-all focus:shadow-focus [&.isChecked]:border-transparent [&.isChecked]:bg-transparent hover:border-transparent hover:bg-monochrome-minus4 disabled:cursor-not-allowed disabled:border-transparent disabled:bg-transparent [&.isChecked]:text-primary-base h-4 w-4" type="checkbox"><div class="pointer-events-none absolute left-1/2 top-1/2 flex -translate-x-1/2 -translate-y-1/2 transform cursor-pointer bg-transparent text-monochrome-plus2 [&.isChecked.isDisabled]:text-monochrome-minus2 disabled:cursor-not-allowed disabled:text-monochrome-minus1 [&.isChecked]:text-accent01-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-star" xlink:href="#icon-star"></use></svg></div></div></div></div></div><div class=""><div class="ccontainerPHKsMA1" id="popout_12fcb3f3-955c-4e6e-b823-8d25d145dd6a"><button class="chas-texteKxoig417 cnormaleKxoig221 cbuttoneKxoig383 csecondaryeKxoig484" tabindex="0" aria-expanded="false" aria-labelledby="_more-button" data-testid="dashboard-view more-actions-button"><div class="ctexteKxoig25">More</div><span><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></button></div></div><div id="userflow-9b037ec4-eed6-438e-94fd-f35b01837438" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><button class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase SECONDARY flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Add Filter" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Add Filter</span></span><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-monetization-key" xlink:href="#icon-monetization-key"></use></svg></div></div></span></button></div><button class="focus:shadow-focus border-monochrome-minus3 bg-monochrome-minus5 fill-monochrome-plus5 text-monochrome-plus5 hover:border-primary-minus2 hover:bg-primary-minus5 hover:fill-primary-base hover:text-primary-base active:border-primary-plus2 active:bg-primary-plus2 active:fill-monochrome-minus5 active:text-monochrome-minus5 [&.isExpanded]:border-primary-minus3 [&.isExpanded]:bg-primary-minus3 [&.isExpanded]:fill-primary-base [&.isExpanded]:text-primary-base [&.isSelected]:border-primary-minus1 [&.isSelected]:bg-primary-minus4 [&.isSelected]:fill-primary-plus1 [&.isSelected]:text-primary-plus1 core-button-base-styles gap-0.5 px-1 font-minus1 h-4 w-auto max-w-40 cerulean-base-buttonbase"><span class="cerulean-base-buttonbase-contentstyle"><span class=""><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-start h-full relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-subscription" xlink:href="#icon-subscription"></use></svg><span title="Subscribe" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Subscribe</span></span></span></span></span></span></button><div data-userflow-id="13d419bb-6477-4ed0-b4ea-f54438e9454c" data-testid="dashboard-toolbar-add-content-button"><button aria-expanded="false" aria-haspopup="true" type="button" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase SECONDARY flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px]" id="dropdown-377"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-add" xlink:href="#icon-add"></use></svg></div><span title="Add Content" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Add Content</span></span></div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-chevron-down" xlink:href="#icon-chevron-down"></use></svg></span></button></div><div><div><div role="group" class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><button aria-label="Copy URL" data-state="closed" aria-disabled="false" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase PRIMARY_BUTTON_GROUP flex rounded-l-plus2 rounded-r-base [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px] firstInGroup" id="share-content-type-hwdbf37k"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-link" xlink:href="#icon-link"></use></svg></div></span></span></button><button data-testid="share-button" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase PRIMARY_BUTTON_GROUP flex rounded-l-base rounded-r-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-auto max-w-[300px] lastInGroup"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 gap-0.5 pl-1 pr-1 text-base font-minus1 leading-button_base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Share" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-base leading-base capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Share</span></span></div></span></button></div></div></div></div></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-start justify-between h-auto relative pt-0 pr-2 pb-2 pl-2 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-2 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-9/12 max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto w-full flex-grow-0 flex-shrink"><div class="lcontainerjDhueg413 lname-redesignjDhueg115" data-testid="dashboard-view dashboard-title-input"><div class="lcontainerjDhueg413"><div class="linactivejDhueg466"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 lcontentjDhueg424 cursor-default lnon-markdownjDhueg420" style="min-width: 0px;"><div class="">Feature Engagement & Adoption Dashboard</div></div></div></div></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-1 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-start justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div style="width: 100%;"><div><div class="lcontainerjDhueg413 ldescriptionjDhueg240" data-testid="dashboard-view editable-description-field"><div class="lcontainerjDhueg413"><div class="linactivejDhueg466"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 lcontentjDhueg424 cursor-default lnon-markdownjDhueg420" style="min-width: 0px;"><div class=""><span class="Linkify">This dashboard provides insights into how users discover, engage with, and return to the added feature over time.</span></div></div></div></div></div></div></div></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-1 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-end justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-3/12 max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-y-1 bg-transparent flex flex-col flex-grow-0 flex-shrink flex-nowrap items-end justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><p class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="inline-block max-w-32 truncate align-top">Owned by MUSKKAN IYER</span> • <span style="white-space: nowrap;">0 Views</span></p><p class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span style="white-space: nowrap;">Last edited 1 minute ago</span></p></div></div></div><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-col [&>*:last-child]:mb-0 [&>*]:mb-2" style="min-width: 0px;"><div><div></div><div class="lcontainerc-cvHg1"><div class="lGridLine-horizontal--container3Tqi8g38"><div draggable="false" class="lGridLine-horizontal--outer3Tqi8g42"><div class="lGridline-horizontal--innerline3Tqi8g55"></div></div></div><div id="row-uUSTJLEh" class="lGridRowENHQLg1" style="height: 500px;"><div draggable="false" class="lGridLine-vertical--outer3Tqi8g16"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-_z8R_HTq" class="lGridCellPJIyfQ15" style="width: 265px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="h-full w-full" data-testid="dashboard-item dashboard-item-rich_text dashboard-item-rich_text-v7q0c70r"><div class="ldashboard-text-element9aZX6w15 lhover9aZX6w29"><div class="lrich-text-containerbe1YMg10" spellcheck="false"><div class="leditor-contentbe1YMg15"><div contenteditable="false" translate="no" class="tiptap ProseMirror lrich-text-editorbe1YMg19 lcontainerkiU67g61" tabindex="0"><h3><strong>Feature Engagement & Adoption Dashboard</strong></h3><h4><strong>Key Metrics</strong></h4><p>📌 <strong>How many users find my feature every day?</strong><br>→ Track daily active users interacting with the feature.</p><p>📌 <strong>How often do users get value from your feature?</strong><br>→ Measure repeat usage to see if users find the feature beneficial.</p><p>📌 <strong>Which platforms do users experience my feature on?</strong><br>→ Understand feature adoption across different devices and platforms.</p><p>📌 <strong>What percentage of users find your feature for the first time each week?</strong><br>→ Identify new user adoption trends weekly.</p><p><br class="ProseMirror-trailingBreak"></p><hr contenteditable="false"></div></div></div><div class="lremove-button9aZX6w26" data-testid="remove-dashboard-item-rich_text"><button aria-label="Remove" class="ease user-select-none relative max-w-[300px] cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase DANGER_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-4 max-w-initial"><span class="flex h-full w-full flex-nowrap items-center gap-0.5 pb-0 pt-0"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-trash" xlink:href="#icon-trash"></use></svg></div></span></span></button></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable--disabled3Tqi8g26"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-suHu-EtJ" class="lGridCellPJIyfQ15" style="width: 265px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-oygctt6u"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/oygctt6u?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">How many users find my feature each day?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 30 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 30 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-segmentation" xlink:href="#icon-segmentation"></use></svg><span>Uniques</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-start justify-start h-auto relative pt-2 pr-1 pb-1 pl-1 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="" class="rounded-base items-stretch justify-around overflow-visible flex flex-row" style="min-width: 0px; width: 100%;"><div title="" class="rounded-base items-center justify-center overflow-visible flex flex-row" style="flex-basis: 1px; flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-center justify-center overflow-hidden flex flex-col [&>*:last-child]:mb-0 [&>*]:mb-0.5" style="flex-basis: 1px; flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-center justify-center overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1" style="min-width: 0px; width: 100%;"><div class="cbodyDFXCQg221 ctruncatedDFXCQg37"><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-col lmetric-labelsIwJyQ21" style="min-width: 0px;">Overall Uniques</div></div></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-col [&>*:last-child]:mb-0 [&>*]:mb-1" style="min-width: 0px;"><div title="296" class="rounded-base items-stretch justify-start overflow-visible flex flex-col lvaluecqmbhg22" style="min-width: 0px;">296</div><div class="csubtleDFXCQg221 csize-smallDFXCQg272" title="Feb 25 - Mar 27"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="Feb 25 - Mar 27"><div class="shrleadingiPwySw22"><span class="">Feb 25 - Mar 27</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div><div title="" class="rounded-base items-stretch justify-start overflow-hidden flex flex-row" style="flex-basis: 1px; flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-center justify-center overflow-hidden flex flex-col [&>*:last-child]:mb-0 [&>*]:mb-0.5" style="flex-basis: 1px; flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-center justify-center overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1" style="min-width: 0px; width: 100%;"><div class="cbodyDFXCQg221 ctruncatedDFXCQg37"><span class="lmetric-labelsIwJyQ21">Current Value</span></div></div><div title="" class="rounded-base items-stretch justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1" style="min-width: 0px; width: 100%;"><div title="" class="rounded-base items-stretch justify-start overflow-visible flex flex-col" style="flex-basis: 1px; flex-grow: 1; min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-col [&>*:last-child]:mb-0 [&>*]:mb-1" style="min-width: 0px;"><div title="0" class="rounded-base items-stretch justify-start overflow-visible flex flex-col lvaluecqmbhg22" style="min-width: 0px;">0</div><div class="csubtleDFXCQg221 csize-smallDFXCQg272" title="Mar 26"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="Mar 26"><div class="shrleadingiPwySw22"><span class="">Mar 26</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div></div></div><div class="lcontainerfcUPGA3 lgrid-layout-headline-containerfcUPGA8"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 274px;"><div style="height: 274px; overflow: auto hidden;" data-highcharts-chart="162"><div id="highcharts-1xiz30s-3760" dir="ltr" style="position: relative; overflow: hidden; width: 231px; height: 274px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="231" height="274" viewBox="0 0 231 274" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-162"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-3761-"><rect x="0" y="0" width="192" height="208" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3793-"><rect x="0" y="0" width="192" height="208" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3794-"><rect x="0" y="0" width="184" height="208" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3795-"><rect x="184" y="0" width="8" height="208" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="231" height="274" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="31" y="20" width="192" height="208" filter="none"></rect><g class="highcharts-pane-group" data-z-index="0"></g><g class="highcharts-grid highcharts-yaxis-grid" data-z-index="1"><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 31 228.5 L 223 228.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 31 176.5 L 223 176.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 31 124.5 L 223 124.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 31 72.5 L 223 72.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 31 19.5 L 223 19.5" opacity="1"></path></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="31" y="20" width="192" height="208"></rect><g class="highcharts-grid highcharts-xaxis-grid" data-z-index="1"><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 113.5 20 L 113.5 228" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 201.5 20 L 201.5 228" opacity="1"></path></g><g class="highcharts-axis highcharts-yaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 31 20 L 31 228"></path></g><g class="highcharts-axis highcharts-xaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 31 228 L 223 228"></path></g><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-line-series" data-z-index="0.1" opacity="1" transform="translate(31,20) scale(1 1)" clip-path="url(#highcharts-1xiz30s-3793-)"><path fill="none" d="M 1.8823529411765 52 L 8.156862745098 41.599999999999994 L 14.43137254902 83.2 L 20.705882352941 72.80000000000001 L 26.980392156863 124.8 L 33.254901960784 83.2 L 39.529411764706 83.2 L 45.803921568627 41.599999999999994 L 52.078431372549 62.400000000000006 L 58.352941176471 62.400000000000006 L 64.627450980392 72.80000000000001 L 70.901960784314 83.2 L 77.176470588235 62.400000000000006 L 83.450980392157 83.2 L 89.725490196078 145.6 L 96 93.6 L 102.27450980392 124.8 L 108.54901960784 72.80000000000001 L 114.82352941176 52 L 121.09803921569 104 L 127.37254901961 52 L 133.64705882353 72.80000000000001 L 139.92156862745 62.400000000000006 L 146.19607843137 135.2 L 152.47058823529 62.400000000000006 L 158.74509803922 104 L 165.01960784314 145.6 L 171.29411764706 104 L 177.56862745098 31.19999999999999 L 183.8431372549 208 L 190.11764705882 208" class="highcharts-graph" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" visibility="hidden"></path><path fill="none" d="M 1.8823529411765 52 L 8.156862745098 41.599999999999994 L 14.43137254902 83.2 L 20.705882352941 72.80000000000001 L 26.980392156863 124.8 L 33.254901960784 83.2 L 39.529411764706 83.2 L 45.803921568627 41.599999999999994 L 52.078431372549 62.400000000000006 L 58.352941176471 62.400000000000006 L 64.627450980392 72.80000000000001 L 70.901960784314 83.2 L 77.176470588235 62.400000000000006 L 83.450980392157 83.2 L 89.725490196078 145.6 L 96 93.6 L 102.27450980392 124.8 L 108.54901960784 72.80000000000001 L 114.82352941176 52 L 121.09803921569 104 L 127.37254901961 52 L 133.64705882353 72.80000000000001 L 139.92156862745 62.400000000000006 L 146.19607843137 135.2 L 152.47058823529 62.400000000000006 L 158.74509803922 104 L 165.01960784314 145.6 L 171.29411764706 104 L 177.56862745098 31.19999999999999 L 183.8431372549 208 L 190.11764705882 208" class="highcharts-graph highcharts-zone-graph-0" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" clip-path="url(#highcharts-1xiz30s-3794-)"></path><path fill="none" d="M 1.8823529411765 52 L 8.156862745098 41.599999999999994 L 14.43137254902 83.2 L 20.705882352941 72.80000000000001 L 26.980392156863 124.8 L 33.254901960784 83.2 L 39.529411764706 83.2 L 45.803921568627 41.599999999999994 L 52.078431372549 62.400000000000006 L 58.352941176471 62.400000000000006 L 64.627450980392 72.80000000000001 L 70.901960784314 83.2 L 77.176470588235 62.400000000000006 L 83.450980392157 83.2 L 89.725490196078 145.6 L 96 93.6 L 102.27450980392 124.8 L 108.54901960784 72.80000000000001 L 114.82352941176 52 L 121.09803921569 104 L 127.37254901961 52 L 133.64705882353 72.80000000000001 L 139.92156862745 62.400000000000006 L 146.19607843137 135.2 L 152.47058823529 62.400000000000006 L 158.74509803922 104 L 165.01960784314 145.6 L 171.29411764706 104 L 177.56862745098 31.19999999999999 L 183.8431372549 208 L 190.11764705882 208" class="highcharts-graph highcharts-zone-graph-1" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-dasharray="2,6" filter="none" clip-path="url(#highcharts-1xiz30s-3795-)"></path><path fill="none" d="M 1.8823529411765 52 L 8.156862745098 41.599999999999994 L 14.43137254902 83.2 L 20.705882352941 72.80000000000001 L 26.980392156863 124.8 L 33.254901960784 83.2 L 39.529411764706 83.2 L 45.803921568627 41.599999999999994 L 52.078431372549 62.400000000000006 L 58.352941176471 62.400000000000006 L 64.627450980392 72.80000000000001 L 70.901960784314 83.2 L 77.176470588235 62.400000000000006 L 83.450980392157 83.2 L 89.725490196078 145.6 L 96 93.6 L 102.27450980392 124.8 L 108.54901960784 72.80000000000001 L 114.82352941176 52 L 121.09803921569 104 L 127.37254901961 52 L 133.64705882353 72.80000000000001 L 139.92156862745 62.400000000000006 L 146.19607843137 135.2 L 152.47058823529 62.400000000000006 L 158.74509803922 104 L 165.01960784314 145.6 L 171.29411764706 104 L 177.56862745098 31.19999999999999 L 183.8431372549 208 L 190.11764705882 208" data-z-index="2" class="highcharts-tracker-line" stroke-linecap="round" stroke-linejoin="round" stroke="rgba(192,192,192,0.0001)" stroke-width="22"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-line-series highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(31,20) scale(1 1)" clip-path="none"></g></g><text x="113" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="113" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="269"></text><g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"><text x="16" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="231" opacity="1">0</text><text x="16" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="179" opacity="1">5</text><text x="16" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="127" opacity="1">10</text><text x="16" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="75" opacity="1">15</text><text x="16" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="23" opacity="1">20</text></g><g class="highcharts-axis-labels highcharts-xaxis-labels" data-z-index="7"><text x="114.45098039216" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="255" opacity="1">Mar 10</text><text x="202.29411764706" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="255" opacity="1">Mar 24</text></g></svg></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="All Users" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-All-Users"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="All Users"><div class="shrleadingiPwySw22"><span class="">All Users</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable--disabled3Tqi8g26"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-rASlrWfs" class="lGridCellPJIyfQ15" style="width: 265px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-gzzssudb"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/gzzssudb?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">How often do users get value from your feature?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 30 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 30 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-segmentation" xlink:href="#icon-segmentation"></use></svg><span>Frequency</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 354px;"><div style="height: 354px; overflow: auto hidden;" data-highcharts-chart="163"><div id="highcharts-1xiz30s-3797" dir="ltr" style="position: relative; overflow: hidden; width: 231px; height: 354px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="231" height="354" viewBox="0 0 231 354" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-163"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-3798-"><rect x="0" y="0" width="187" height="245" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3803-"><rect x="0" y="0" width="187" height="245" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="231" height="354" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="36" y="20" width="187" height="245" filter="none"></rect><g class="highcharts-pane-group" data-z-index="0"></g><g class="highcharts-grid highcharts-xaxis-grid" data-z-index="1"><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 82.5 20 L 82.5 265" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 129.5 20 L 129.5 265" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 175.5 20 L 175.5 265" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 222.5 20 L 222.5 265" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 35.5 20 L 35.5 265" opacity="1"></path></g><g class="highcharts-grid highcharts-yaxis-grid" data-z-index="1"><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 36 265.5 L 223 265.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 36 204.5 L 223 204.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 36 143.5 L 223 143.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 36 81.5 L 223 81.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 36 19.5 L 223 19.5" opacity="1"></path></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="36" y="20" width="187" height="245"></rect><g class="highcharts-axis highcharts-xaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 36 265 L 223 265"></path></g><g class="highcharts-axis highcharts-yaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 36 20 L 36 265"></path></g><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-column-series highcharts-color-0 highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(36,20) scale(1 1)" clip-path="url(#highcharts-1xiz30s-3803-)"><path fill="#1e61f0" d="M 6.5 37.5 L 38.5 37.5 A 3 3 0 0 1 41.5 40.5 L 41.5 245.5 A 0 0 0 0 1 41.5 245.5 L 3.5 245.5 A 0 0 0 0 1 3.5 245.5 L 3.5 40.5 A 3 3 0 0 1 6.5 37.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point highcharts-color-0" data-testid="chart-series-0-point-0"></path><path fill="#93BD31" d="M 53.5 122.5 L 85.5 122.5 A 3 3 0 0 1 88.5 125.5 L 88.5 245.5 A 0 0 0 0 1 88.5 245.5 L 50.5 245.5 A 0 0 0 0 1 50.5 245.5 L 50.5 125.5 A 3 3 0 0 1 53.5 122.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point highcharts-color-0" data-testid="chart-series-0-point-1"></path><path fill="#7E21AD" d="M 100.5 164.5 L 132.5 164.5 A 3 3 0 0 1 135.5 167.5 L 135.5 245.5 A 0 0 0 0 1 135.5 245.5 L 97.5 245.5 A 0 0 0 0 1 97.5 245.5 L 97.5 167.5 A 3 3 0 0 1 100.5 164.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point highcharts-color-0" data-testid="chart-series-0-point-2"></path><path fill="#67D1D5" d="M 147.5 242.5 L 179.5 242.5 A 3 3 0 0 1 182.5 245.5 L 182.5 245.5 A 0 0 0 0 1 182.5 245.5 L 144.5 245.5 A 0 0 0 0 1 144.5 245.5 L 144.5 245.5 A 3 3 0 0 1 147.5 242.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point highcharts-color-0" data-testid="chart-series-0-point-3"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-column-series highcharts-color-0" data-z-index="0.1" opacity="1" transform="translate(36,20) scale(1 1)" clip-path="none"></g></g><text x="113" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="113" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="349"></text><g class="highcharts-data-labels highcharts-series-0 highcharts-column-series highcharts-color-0 highcharts-tracker" data-z-index="6" opacity="1" transform="translate(36,20) scale(1 1)"></g><g class="highcharts-axis-labels highcharts-xaxis-labels" data-z-index="7"></g><g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"><text x="21" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="268" opacity="1">0</text><text x="21" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="207" opacity="1">100</text><text x="21" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="146" opacity="1">200</text><text x="21" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="85" opacity="1">300</text><text x="21" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="23" opacity="1">400</text></g><g class="highcharts-label highcharts-tooltip highcharts-color-0" data-z-index="8" filter="none" style="cursor: default; padding: 10px; pointer-events: none;" transform="translate(51,35)" opacity="0" visibility="hidden"><path fill="transparent" class="highcharts-label-box highcharts-tooltip-box" d="M 8 0 L 8 0 A 8 8 0 0 1 16 8 L 16 8 A 8 8 0 0 1 8 16 L 8 16 A 8 8 0 0 1 0 8 L 0 8 A 8 8 0 0 1 8 0 Z" stroke-width="0" stroke="transparent"></path><text x="8" data-z-index="1" y="21" style="color: rgb(148, 163, 180); font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif; font-size: 13px; font-weight: 400; fill: rgb(148, 163, 180);"></text></g></svg><div class="highcharts-axis-labels highcharts-xaxis-labels" style="position: absolute; left: 0px; top: 0px; opacity: 1;"><span style="position: absolute; font-family: "IBM Plex Sans", sans-serif; font-size: 12px; white-space: nowrap; margin-left: 0px; margin-top: 0px; left: 22.2034px; top: 276px; color: rgb(51, 51, 51); cursor: default; transform: rotate(-45deg); transform-origin: 100% 12px; opacity: 1; visibility: inherit;" opacity="1"><div title="4 times">4 times</div></span><span style="position: absolute; font-family: "IBM Plex Sans", sans-serif; font-size: 12px; white-space: nowrap; margin-left: 0px; margin-top: 0px; left: 49.9534px; top: 276px; color: rgb(51, 51, 51); cursor: default; transform: rotate(-45deg); transform-origin: 100% 12px; opacity: 1; visibility: inherit;" opacity="1"><div title="6-10 times">6-10 times</div></span><span style="position: absolute; font-family: "IBM Plex Sans", sans-serif; font-size: 12px; white-space: nowrap; margin-left: 0px; margin-top: 0px; left: 88.7034px; top: 276px; color: rgb(51, 51, 51); cursor: default; transform: rotate(-45deg); transform-origin: 100% 12px; opacity: 1; visibility: inherit;" opacity="1"><div title="11-20 times">11-20 times</div></span><span style="position: absolute; font-family: "IBM Plex Sans", sans-serif; font-size: 12px; white-space: nowrap; margin-left: 0px; margin-top: 0px; left: 135.453px; top: 276px; color: rgb(51, 51, 51); cursor: default; transform: rotate(-45deg); transform-origin: 100% 12px; opacity: 1; visibility: inherit;" opacity="1"><div title="21-50 times">21-50 times</div></span></div></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="4 times" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-4-times"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="4 times"><div class="shrleadingiPwySw22"><span class="">4 times</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(147, 189, 49);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="6-10 times" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-6-10-times"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="6-10 times"><div class="shrleadingiPwySw22"><span class="">6-10 times</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div><div class="lcontaineriWvEYA16 lkebobREziPQ37"><div class="ldropdowniWvEYA22"><div class="ccontainerPHKsMA1" id="popout_1f3950c6-459a-4414-88fb-9809795215b7"><button aria-expanded="false" class="ease user-select-none relative cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase TERTIARY_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-3 w-auto max-w-[300px]"><span class="flex h-full w-full flex-nowrap items-center pb-0 pt-0 text-minus1 font-base gap-0.25 leading-button_base pl-1 pr-1"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><span title="Next 2" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-inherit text-inherit no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Next 2</span></span></div></span></button></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable--disabled3Tqi8g26"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell--AtKz_Ck" class="lGridCellPJIyfQ15" style="width: 265px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-e9us60q0"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/e9us60q0?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">Which platforms do users experience my feature on? </h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 30 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 30 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-user-composition" xlink:href="#icon-user-composition"></use></svg><span>User Composition</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 354px;"><div style="height: 354px; overflow: auto hidden;" data-highcharts-chart="170"><div id="highcharts-1xiz30s-3929" dir="ltr" style="position: relative; overflow: hidden; width: 231px; height: 354px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="231" height="354" viewBox="0 0 231 354" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-170"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-3930-"><rect x="0" y="0" width="219" height="299" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="231" height="354" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="4" y="40" width="219" height="299" filter="none"></rect><g class="highcharts-label" transform="translate(97,179)"><text x="3" data-z-index="1" y="15" style="color: rgb(51, 51, 51); fill: rgb(51, 51, 51);"><tspan style="font-weight: bold;">296</tspan></text></g><g class="highcharts-pane-group" data-z-index="0"></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="4" y="40" width="219" height="299"></rect><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-pie-series highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(4,40) scale(1 1)" filter="none" clip-path="none" style="cursor: pointer;"><path fill="#1e61f0" d="M 106.48117013969127 57.04866336587469 A 3 3 0 0 1 109.57785667457415 54.049610800737014 A 95.5 95.5 0 1 1 73.86402672672946 239.2504498512758 A 3 3 0 0 1 72.10458805908439 235.3149499645296 L 84.09388927848742 205.40220212420365 A 3 3 0 0 1 87.85473371816381 203.68158400489435 A 57.3 57.3 0 1 0 109.33909018720423 92.27037858845368 A 3 3 0 0 1 106.48773371472704 89.27467435091575 Z" transform="translate(0,0)" stroke="#ffffff" stroke-width="1" opacity="1" stroke-linejoin="round" class="highcharts-point highcharts-color-0" data-testid="chart-series-0-point-0"></path><path fill="#93BD31" d="M 72.01879032112691 235.28051165084986 A 3 3 0 0 1 68.02666902623477 236.9073955897504 A 95.5 95.5 0 0 1 13.805035418291325 126.52406604301417 A 3 3 0 0 1 17.532735987025504 124.3588796183286 L 48.544294410864296 133.12238754685458 A 3 3 0 0 1 50.65243388724927 136.68050861843824 A 57.3 57.3 0 0 0 82.51046015754488 201.53644855432833 A 3 3 0 0 1 84.0379982887347 205.37976806611778 Z" transform="translate(0,0)" stroke="#ffffff" stroke-width="1" opacity="1" stroke-linejoin="round" class="highcharts-point highcharts-color-1" data-testid="chart-series-0-point-1"></path><path fill="#7E21AD" d="M 17.557921586845282 124.26992493970266 A 3 3 0 0 1 15.51856958072365 120.47192188824107 A 95.5 95.5 0 0 1 103.27012788824868 54.05463381524626 A 3 3 0 0 1 106.37158694550384 57.04875062992693 L 106.41634822917455 89.27473119710268 A 3 3 0 0 1 103.56976649008509 92.27497285647327 A 57.3 57.3 0 0 0 52.221225074866304 131.13959170860636 A 3 3 0 0 1 48.560700998438215 133.0644400397303 Z" transform="translate(0,0)" stroke="#ffffff" stroke-width="1" opacity="1" stroke-linejoin="round" class="highcharts-point highcharts-color-2" data-testid="chart-series-0-point-2"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-pie-series" data-z-index="0.1" opacity="1" transform="translate(4,40) scale(1 1)" clip-path="none"></g></g><text x="113" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="113" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="349"></text><g class="highcharts-data-labels highcharts-series-0 highcharts-pie-series highcharts-tracker" data-z-index="6" opacity="1" transform="translate(4,40) scale(1 1)" style="cursor: pointer;"><g class="highcharts-label highcharts-data-label highcharts-data-label-color-0" data-z-index="1" filter="none" transform="translate(171,154)" style="cursor: pointer;"><text x="5" data-z-index="1" y="15.909090995788574" style="color: rgb(255, 255, 255); font-size: 0.7em; font-weight: bold; fill: rgb(255, 255, 255);"><tspan class="highcharts-text-outline" fill="#000000" stroke="#000000" stroke-width="2px" stroke-linejoin="round">56%<tspan x="5" dy="0"></tspan></tspan>56%</text></g><g class="highcharts-label highcharts-data-label highcharts-data-label-color-1" data-z-index="1" filter="none" transform="translate(20,175)" style="cursor: pointer;"><text x="5" data-z-index="1" y="15.909090995788574" style="color: rgb(0, 0, 0); font-size: 0.7em; font-weight: bold; fill: rgb(0, 0, 0);"><tspan class="highcharts-text-outline" fill="#FFFFFF" stroke="#FFFFFF" stroke-width="2px" stroke-linejoin="round">23%<tspan x="5" dy="0"></tspan></tspan>23%</text></g><g class="highcharts-label highcharts-data-label highcharts-data-label-color-2" data-z-index="1" filter="none" transform="translate(44,75)" style="cursor: pointer;"><text x="5" data-z-index="1" y="15.909090995788574" style="color: rgb(255, 255, 255); font-size: 0.7em; font-weight: bold; fill: rgb(255, 255, 255);"><tspan class="highcharts-text-outline" fill="#000000" stroke="#000000" stroke-width="2px" stroke-linejoin="round">21%<tspan x="5" dy="0"></tspan></tspan>21%</text></g></g></svg></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 lrender-for-measureREziPQ33 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="false" class="lGridLine-vertical--outer3Tqi8g16"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div></div><div class="lGridLine-horizontal--container3Tqi8g38"><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: -117px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 8px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 133px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 258px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: -117px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 8px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 133px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 258px;"></div><div draggable="true" class="lGridLine-horizontal--outer3Tqi8g42 lGridLine-horizontal--outer--draggable3Tqi8g47"><div class="lGridline-horizontal--innerline3Tqi8g55"></div></div></div><div id="row-YfXzbxQv" class="lGridRowENHQLg1" style="height: 500px;"><div draggable="false" class="lGridLine-vertical--outer3Tqi8g16"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-5GIyPbT3" class="lGridCellPJIyfQ15" style="width: 455px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-kb5thcn7"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/kb5thcn7?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">What percentage of users find your feature for the first time each week?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 12 Weeks" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 12 Weeks</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-segmentation" xlink:href="#icon-segmentation"></use></svg><span>Custom Formula</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 354px;"><div style="height: 354px; overflow: auto hidden;" data-highcharts-chart="167"><div id="highcharts-1xiz30s-3900" dir="ltr" style="position: relative; overflow: hidden; width: 421px; height: 354px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="421" height="354" viewBox="0 0 421 354" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-167"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-3901-"><rect x="0" y="0" width="359" height="288" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3915-"><rect x="0" y="0" width="359" height="288" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3916-"><rect x="0" y="0" width="326" height="359" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3917-"><rect x="326" y="0" width="33" height="359" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="421" height="354" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="54" y="20" width="359" height="288" filter="none"></rect><g class="highcharts-pane-group" data-z-index="0"></g><g class="highcharts-grid highcharts-yaxis-grid" data-z-index="1"><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 54 308.5 L 413 308.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 54 250.5 L 413 250.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 54 193.5 L 413 193.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 54 135.5 L 413 135.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 54 78.5 L 413 78.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 54 19.5 L 413 19.5" opacity="1"></path></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="54" y="20" width="359" height="288"></rect><g class="highcharts-grid highcharts-xaxis-grid" data-z-index="1"><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 65.5 20 L 65.5 308" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 195.5 20 L 195.5 308" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 312.5 20 L 312.5 308" opacity="1"></path></g><g class="highcharts-axis highcharts-yaxis" data-z-index="2"><text x="17.33090877532959" data-z-index="7" text-anchor="middle" transform="translate(0,0) rotate(270 17.33090877532959 164)" class="highcharts-axis-title" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="164">% of Users</text><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 54 20 L 54 308"></path></g><g class="highcharts-axis highcharts-xaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 54 308 L 413 308"></path></g><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-line-series" data-z-index="0.1" opacity="1" transform="translate(54,20) scale(1 1)" clip-path="url(#highcharts-1xiz30s-3915-)"><path fill="none" d="M 3.5196078431373 288 L 32.849673202614 288 L 62.179738562092 288 L 91.509803921569 288 L 120.83986928105 288 L 150.16993464052 288 L 179.5 288 L 208.83006535948 288 L 238.16013071895 48.73846153846 L 267.49019607843 29.26203208556001 L 296.82026143791 98.04255319148999 L 326.15032679739 112.82474226804001 L 355.48039215686 136.64233576642" class="highcharts-graph" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" visibility="hidden"></path><path fill="none" d="M 3.5196078431373 288 L 32.849673202614 288 L 62.179738562092 288 L 91.509803921569 288 L 120.83986928105 288 L 150.16993464052 288 L 179.5 288 L 208.83006535948 288 L 238.16013071895 48.73846153846 L 267.49019607843 29.26203208556001 L 296.82026143791 98.04255319148999 L 326.15032679739 112.82474226804001 L 355.48039215686 136.64233576642" class="highcharts-graph highcharts-zone-graph-0" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" clip-path="url(#highcharts-1xiz30s-3916-)"></path><path fill="none" d="M 3.5196078431373 288 L 32.849673202614 288 L 62.179738562092 288 L 91.509803921569 288 L 120.83986928105 288 L 150.16993464052 288 L 179.5 288 L 208.83006535948 288 L 238.16013071895 48.73846153846 L 267.49019607843 29.26203208556001 L 296.82026143791 98.04255319148999 L 326.15032679739 112.82474226804001 L 355.48039215686 136.64233576642" class="highcharts-graph highcharts-zone-graph-1" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-dasharray="2,6" filter="none" clip-path="url(#highcharts-1xiz30s-3917-)"></path><path fill="none" d="M 3.5196078431373 288 L 32.849673202614 288 L 62.179738562092 288 L 91.509803921569 288 L 120.83986928105 288 L 150.16993464052 288 L 179.5 288 L 208.83006535948 288 L 238.16013071895 48.73846153846 L 267.49019607843 29.26203208556001 L 296.82026143791 98.04255319148999 L 326.15032679739 112.82474226804001 L 355.48039215686 136.64233576642" data-z-index="2" class="highcharts-tracker-line" stroke-linecap="round" stroke-linejoin="round" stroke="rgba(192,192,192,0.0001)" stroke-width="22"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-line-series highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(54,20) scale(1 1)" clip-path="none"></g></g><text x="208" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="208" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="349"></text><g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"><text x="39" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="311" opacity="1">0</text><text x="39" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="254" opacity="1">5</text><text x="39" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="196" opacity="1">10</text><text x="39" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="139" opacity="1">15</text><text x="39" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="81" opacity="1">20</text><text x="39" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="23" opacity="1">25</text></g><g class="highcharts-axis-labels highcharts-xaxis-labels" data-z-index="7"><text x="65.899626517274" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Jan '25</text><text x="195.78991596639" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Feb '25</text><text x="313.1101774043" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Mar '25</text></g></svg></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="All Users" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-All-Users"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="All Users"><div class="shrleadingiPwySw22"><span class="">All Users</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable3Tqi8g22"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-QY0iLoq9" class="lGridCellPJIyfQ15" style="width: 265px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-vv6ufn8y"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/vv6ufn8y?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">After users discover your feature, how many get value from it?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 30 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 30 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-funnel" xlink:href="#icon-funnel"></use></svg><span>Funnel Conversion</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="h-full"><div class="flex h-full flex-col bg-monochrome-minus5 overflow-auto"><div class="space-y-1 py-1" data-testid="kpi-summary"><div class="space-y-1 text-monochrome-plus2 text-minus1 px-2 py-1"><div class="text-monochrome-plus5">Total Conversion within the last 30 days</div><div>From <strong>feature_used</strong> to <strong>feature_viewed</strong></div></div></div><div class="grow"><div><div class="relative w-full"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="flex h-full justify-center overflow-y-auto"><div class="group/cell grid size-full grid-cols-1 content-center space-y-1 border-monochrome-minus3 px-[12px] pb-3 pt-2 hover:bg-primary-minus4 justify-items-center" data-testid="kpi-cell"><div class="w-full flex justify-center"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 group-hover/cell:bg-primary-minus4" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="All Users" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-All-Users"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="All Users"><div class="shrleadingiPwySw22"><span class="">All Users</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div><div class="px-1 pb-0.5"><div class="font-base text-monochrome-plus5 font-secondary" style="font-size: 80px; line-height: 1;">6.42%</div></div><div class="lmeasure-rowxvOCfw1"><span class="lmeasure-metricxvOCfw12">19</span></div></div></div></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable3Tqi8g22"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-eiC-1gcv" class="lGridCellPJIyfQ15" style="width: 360px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-sm61o29c"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/sm61o29c?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">How long does it take users to find value in your feature?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 30 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 30 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-funnel" xlink:href="#icon-funnel"></use></svg><span>Time to Convert</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 354px;"><div style="height: 354px; overflow: auto hidden;" data-highcharts-chart="165"><div id="highcharts-1xiz30s-3843" dir="ltr" style="position: relative; overflow: hidden; width: 326px; height: 354px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="326" height="354" viewBox="0 0 326 354" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-165"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-3844-"><rect x="0" y="0" width="279" height="228" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-3879-"><rect x="0" y="0" width="279" height="228" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="326" height="354" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="39" y="20" width="279" height="228" filter="none"></rect><g class="highcharts-pane-group" data-z-index="0"></g><g class="highcharts-plot-lines-0" data-z-index="0"><path fill="none" class="highcharts-plot-line " stroke="#1e61f0" stroke-width="2" stroke-dasharray="6,2" d="M 310 20 L 310 248"></path></g><text x="301" text-anchor="end" class="highcharts-plot-line-label " data-z-index="0" transform="translate(0,0)" style="font-size: 0.8em; display: none;" y="30">Median: ~8m 26s 0ms</text><g class="highcharts-grid highcharts-xaxis-grid" data-z-index="1"><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 42.5 20 L 42.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 59.5 20 L 59.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 75.5 20 L 75.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 91.5 20 L 91.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 108.5 20 L 108.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 124.5 20 L 124.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 141.5 20 L 141.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 157.5 20 L 157.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 173.5 20 L 173.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 190.5 20 L 190.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 206.5 20 L 206.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 223.5 20 L 223.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 239.5 20 L 239.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 255.5 20 L 255.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 272.5 20 L 272.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 288.5 20 L 288.5 248" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 305.5 20 L 305.5 248" opacity="1"></path></g><g class="highcharts-grid highcharts-yaxis-grid" data-z-index="1"><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 39 248.5 L 318 248.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 39 188.5 L 318 188.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 39 129.5 L 318 129.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 39 69.5 L 318 69.5" opacity="1"></path></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="39" y="20" width="279" height="228"></rect><g class="highcharts-axis highcharts-xaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 39 248 L 318 248"></path></g><g class="highcharts-axis highcharts-yaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 39 20 L 39 248"></path></g><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-column-series highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(39,20) scale(1 1)" clip-path="url(#highcharts-1xiz30s-3879-)"><path fill="#1e61f0" d="M 3.5 174.5 L 3.5 174.5 A 3 3 0 0 1 6.5 177.5 L 6.5 228.5 A 0 0 0 0 1 6.5 228.5 L 0.5 228.5 A 0 0 0 0 1 0.5 228.5 L 0.5 177.5 A 3 3 0 0 1 3.5 174.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-0"></path><path fill="#1e61f0" d="M 11.5 11.5 L 11.5 11.5 A 3 3 0 0 1 14.5 14.5 L 14.5 228.5 A 0 0 0 0 1 14.5 228.5 L 8.5 228.5 A 0 0 0 0 1 8.5 228.5 L 8.5 14.5 A 3 3 0 0 1 11.5 11.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-1"></path><path fill="#1e61f0" d="M 20.5 228.5 L 20.5 228.5 A 3 3 0 0 1 20.5 228.5 L 20.5 228.5 A 0 0 0 0 1 20.5 228.5 L 20.5 228.5 A 0 0 0 0 1 20.5 228.5 L 20.5 228.5 A 3 3 0 0 1 20.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-2"></path><path fill="#1e61f0" d="M 28.5 228.5 L 28.5 228.5 A 3 3 0 0 1 28.5 228.5 L 28.5 228.5 A 0 0 0 0 1 28.5 228.5 L 28.5 228.5 A 0 0 0 0 1 28.5 228.5 L 28.5 228.5 A 3 3 0 0 1 28.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-3"></path><path fill="#1e61f0" d="M 36.5 228.5 L 36.5 228.5 A 3 3 0 0 1 36.5 228.5 L 36.5 228.5 A 0 0 0 0 1 36.5 228.5 L 36.5 228.5 A 0 0 0 0 1 36.5 228.5 L 36.5 228.5 A 3 3 0 0 1 36.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-4"></path><path fill="#1e61f0" d="M 44.5 228.5 L 44.5 228.5 A 3 3 0 0 1 44.5 228.5 L 44.5 228.5 A 0 0 0 0 1 44.5 228.5 L 44.5 228.5 A 0 0 0 0 1 44.5 228.5 L 44.5 228.5 A 3 3 0 0 1 44.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-5"></path><path fill="#1e61f0" d="M 52.5 228.5 L 52.5 228.5 A 3 3 0 0 1 52.5 228.5 L 52.5 228.5 A 0 0 0 0 1 52.5 228.5 L 52.5 228.5 A 0 0 0 0 1 52.5 228.5 L 52.5 228.5 A 3 3 0 0 1 52.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-6"></path><path fill="#1e61f0" d="M 61.5 228.5 L 61.5 228.5 A 3 3 0 0 1 61.5 228.5 L 61.5 228.5 A 0 0 0 0 1 61.5 228.5 L 61.5 228.5 A 0 0 0 0 1 61.5 228.5 L 61.5 228.5 A 3 3 0 0 1 61.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-7"></path><path fill="#1e61f0" d="M 69.5 228.5 L 69.5 228.5 A 3 3 0 0 1 69.5 228.5 L 69.5 228.5 A 0 0 0 0 1 69.5 228.5 L 69.5 228.5 A 0 0 0 0 1 69.5 228.5 L 69.5 228.5 A 3 3 0 0 1 69.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-8"></path><path fill="#1e61f0" d="M 77.5 228.5 L 77.5 228.5 A 3 3 0 0 1 77.5 228.5 L 77.5 228.5 A 0 0 0 0 1 77.5 228.5 L 77.5 228.5 A 0 0 0 0 1 77.5 228.5 L 77.5 228.5 A 3 3 0 0 1 77.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-9"></path><path fill="#1e61f0" d="M 85.5 228.5 L 85.5 228.5 A 3 3 0 0 1 85.5 228.5 L 85.5 228.5 A 0 0 0 0 1 85.5 228.5 L 85.5 228.5 A 0 0 0 0 1 85.5 228.5 L 85.5 228.5 A 3 3 0 0 1 85.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-10"></path><path fill="#1e61f0" d="M 93.5 228.5 L 93.5 228.5 A 3 3 0 0 1 93.5 228.5 L 93.5 228.5 A 0 0 0 0 1 93.5 228.5 L 93.5 228.5 A 0 0 0 0 1 93.5 228.5 L 93.5 228.5 A 3 3 0 0 1 93.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-11"></path><path fill="#1e61f0" d="M 102.5 228.5 L 102.5 228.5 A 3 3 0 0 1 102.5 228.5 L 102.5 228.5 A 0 0 0 0 1 102.5 228.5 L 102.5 228.5 A 0 0 0 0 1 102.5 228.5 L 102.5 228.5 A 3 3 0 0 1 102.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-12"></path><path fill="#1e61f0" d="M 110.5 228.5 L 110.5 228.5 A 3 3 0 0 1 110.5 228.5 L 110.5 228.5 A 0 0 0 0 1 110.5 228.5 L 110.5 228.5 A 0 0 0 0 1 110.5 228.5 L 110.5 228.5 A 3 3 0 0 1 110.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-13"></path><path fill="#1e61f0" d="M 118.5 228.5 L 118.5 228.5 A 3 3 0 0 1 118.5 228.5 L 118.5 228.5 A 0 0 0 0 1 118.5 228.5 L 118.5 228.5 A 0 0 0 0 1 118.5 228.5 L 118.5 228.5 A 3 3 0 0 1 118.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-14"></path><path fill="#1e61f0" d="M 126.5 228.5 L 126.5 228.5 A 3 3 0 0 1 126.5 228.5 L 126.5 228.5 A 0 0 0 0 1 126.5 228.5 L 126.5 228.5 A 0 0 0 0 1 126.5 228.5 L 126.5 228.5 A 3 3 0 0 1 126.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-15"></path><path fill="#1e61f0" d="M 134.5 119.5 L 134.5 119.5 A 3 3 0 0 1 137.5 122.5 L 137.5 228.5 A 0 0 0 0 1 137.5 228.5 L 131.5 228.5 A 0 0 0 0 1 131.5 228.5 L 131.5 122.5 A 3 3 0 0 1 134.5 119.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-16"></path><path fill="#1e61f0" d="M 143.5 228.5 L 143.5 228.5 A 3 3 0 0 1 143.5 228.5 L 143.5 228.5 A 0 0 0 0 1 143.5 228.5 L 143.5 228.5 A 0 0 0 0 1 143.5 228.5 L 143.5 228.5 A 3 3 0 0 1 143.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-17"></path><path fill="#1e61f0" d="M 151.5 228.5 L 151.5 228.5 A 3 3 0 0 1 151.5 228.5 L 151.5 228.5 A 0 0 0 0 1 151.5 228.5 L 151.5 228.5 A 0 0 0 0 1 151.5 228.5 L 151.5 228.5 A 3 3 0 0 1 151.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-18"></path><path fill="#1e61f0" d="M 159.5 174.5 L 159.5 174.5 A 3 3 0 0 1 162.5 177.5 L 162.5 228.5 A 0 0 0 0 1 162.5 228.5 L 156.5 228.5 A 0 0 0 0 1 156.5 228.5 L 156.5 177.5 A 3 3 0 0 1 159.5 174.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-19"></path><path fill="#1e61f0" d="M 167.5 228.5 L 167.5 228.5 A 3 3 0 0 1 167.5 228.5 L 167.5 228.5 A 0 0 0 0 1 167.5 228.5 L 167.5 228.5 A 0 0 0 0 1 167.5 228.5 L 167.5 228.5 A 3 3 0 0 1 167.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-20"></path><path fill="#1e61f0" d="M 175.5 228.5 L 175.5 228.5 A 3 3 0 0 1 175.5 228.5 L 175.5 228.5 A 0 0 0 0 1 175.5 228.5 L 175.5 228.5 A 0 0 0 0 1 175.5 228.5 L 175.5 228.5 A 3 3 0 0 1 175.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-21"></path><path fill="#1e61f0" d="M 184.5 228.5 L 184.5 228.5 A 3 3 0 0 1 184.5 228.5 L 184.5 228.5 A 0 0 0 0 1 184.5 228.5 L 184.5 228.5 A 0 0 0 0 1 184.5 228.5 L 184.5 228.5 A 3 3 0 0 1 184.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-22"></path><path fill="#1e61f0" d="M 192.5 228.5 L 192.5 228.5 A 3 3 0 0 1 192.5 228.5 L 192.5 228.5 A 0 0 0 0 1 192.5 228.5 L 192.5 228.5 A 0 0 0 0 1 192.5 228.5 L 192.5 228.5 A 3 3 0 0 1 192.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-23"></path><path fill="#1e61f0" d="M 200.5 228.5 L 200.5 228.5 A 3 3 0 0 1 200.5 228.5 L 200.5 228.5 A 0 0 0 0 1 200.5 228.5 L 200.5 228.5 A 0 0 0 0 1 200.5 228.5 L 200.5 228.5 A 3 3 0 0 1 200.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-24"></path><path fill="#1e61f0" d="M 208.5 228.5 L 208.5 228.5 A 3 3 0 0 1 208.5 228.5 L 208.5 228.5 A 0 0 0 0 1 208.5 228.5 L 208.5 228.5 A 0 0 0 0 1 208.5 228.5 L 208.5 228.5 A 3 3 0 0 1 208.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-25"></path><path fill="#1e61f0" d="M 217.5 228.5 L 217.5 228.5 A 3 3 0 0 1 217.5 228.5 L 217.5 228.5 A 0 0 0 0 1 217.5 228.5 L 217.5 228.5 A 0 0 0 0 1 217.5 228.5 L 217.5 228.5 A 3 3 0 0 1 217.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-26"></path><path fill="#1e61f0" d="M 225.5 228.5 L 225.5 228.5 A 3 3 0 0 1 225.5 228.5 L 225.5 228.5 A 0 0 0 0 1 225.5 228.5 L 225.5 228.5 A 0 0 0 0 1 225.5 228.5 L 225.5 228.5 A 3 3 0 0 1 225.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-27"></path><path fill="#1e61f0" d="M 233.5 228.5 L 233.5 228.5 A 3 3 0 0 1 233.5 228.5 L 233.5 228.5 A 0 0 0 0 1 233.5 228.5 L 233.5 228.5 A 0 0 0 0 1 233.5 228.5 L 233.5 228.5 A 3 3 0 0 1 233.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-28"></path><path fill="#1e61f0" d="M 241.5 228.5 L 241.5 228.5 A 3 3 0 0 1 241.5 228.5 L 241.5 228.5 A 0 0 0 0 1 241.5 228.5 L 241.5 228.5 A 0 0 0 0 1 241.5 228.5 L 241.5 228.5 A 3 3 0 0 1 241.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-29"></path><path fill="#1e61f0" d="M 249.5 228.5 L 249.5 228.5 A 3 3 0 0 1 249.5 228.5 L 249.5 228.5 A 0 0 0 0 1 249.5 228.5 L 249.5 228.5 A 0 0 0 0 1 249.5 228.5 L 249.5 228.5 A 3 3 0 0 1 249.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-30"></path><path fill="#1e61f0" d="M 258.5 228.5 L 258.5 228.5 A 3 3 0 0 1 258.5 228.5 L 258.5 228.5 A 0 0 0 0 1 258.5 228.5 L 258.5 228.5 A 0 0 0 0 1 258.5 228.5 L 258.5 228.5 A 3 3 0 0 1 258.5 228.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-31"></path><path fill="#1e61f0" d="M 266.5 174.5 L 266.5 174.5 A 3 3 0 0 1 269.5 177.5 L 269.5 228.5 A 0 0 0 0 1 269.5 228.5 L 263.5 228.5 A 0 0 0 0 1 263.5 228.5 L 263.5 177.5 A 3 3 0 0 1 266.5 174.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-32"></path><path fill="#1e61f0" d="M 274.5 119.5 L 274.5 119.5 A 3 3 0 0 1 277.5 122.5 L 277.5 228.5 A 0 0 0 0 1 277.5 228.5 L 271.5 228.5 A 0 0 0 0 1 271.5 228.5 L 271.5 122.5 A 3 3 0 0 1 274.5 119.5 Z" stroke="#ffffff" stroke-width="1" opacity="1" filter="none" class="highcharts-point" data-testid="chart-series-0-point-33"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-column-series" data-z-index="0.1" opacity="1" transform="translate(39,20) scale(1 1)" clip-path="none"></g></g><text x="160" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="160" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="349"></text><g class="highcharts-axis-labels highcharts-xaxis-labels" data-z-index="7"><text x="45.93136830121719" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 45.93136830121719 271)" y="271" opacity="1"><title>0ms - 2m 40s</title>0ms - 2…</text><text x="62.34313300709919" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 62.34313300709919 271)" y="271" opacity="1"><title>2m 50s - 3m 0s</title>2m 50s - 3m …</text><text x="78.75489771298218" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 78.75489771298218 271)" y="271" opacity="1">3m 10s - 3m 20s</text><text x="95.16666241886418" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 95.16666241886418 271)" y="271" opacity="1">3m 30s - 3m 40s</text><text x="111.57842712474618" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 111.57842712474618 271)" y="271" opacity="1">3m 50s - 4m 0s</text><text x="127.99019183062619" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 127.99019183062619 271)" y="271" opacity="1">4m 10s - 4m 20s</text><text x="144.4019565365062" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 144.4019565365062 271)" y="271" opacity="1">4m 30s - 4m 40s</text><text x="160.81372124239618" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 160.81372124239618 271)" y="271" opacity="1">4m 50s - 5m 0s</text><text x="177.22548594827617" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 177.22548594827617 271)" y="271" opacity="1">5m 10s - 5m 20s</text><text x="193.6372506541562" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 193.6372506541562 271)" y="271" opacity="1">5m 30s - 5m 40s</text><text x="210.04901536003618" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 210.04901536003618 271)" y="271" opacity="1">5m 50s - 6m 0s</text><text x="226.46078006592617" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 226.46078006592617 271)" y="271" opacity="1">6m 10s - 6m 20s</text><text x="242.8725447718062" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 242.8725447718062 271)" y="271" opacity="1">6m 30s - 6m 40s</text><text x="259.28430947768624" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 259.28430947768624 271)" y="271" opacity="1">6m 50s - 7m 0s</text><text x="275.6960741835662" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 275.6960741835662 271)" y="271" opacity="1">7m 10s - 7m 20s</text><text x="292.1078388894562" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 292.1078388894562 271)" y="271" opacity="1">7m 30s - 7m 40s</text><text x="308.5196035953362" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 308.5196035953362 271)" y="271" opacity="1">7m 50s - 8m 0s</text></g><g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"><text x="24" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="251" opacity="1">0%</text><text x="24" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="192" opacity="1">10%</text><text x="24" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="132" opacity="1">20%</text><text x="24" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="72" opacity="1">30%</text></g></svg></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="All Users" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-All-Users"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="All Users"><div class="shrleadingiPwySw22"><span class="">All Users</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="false" class="lGridLine-vertical--outer3Tqi8g16"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div></div><div class="lGridLine-horizontal--container3Tqi8g38"><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: -117px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 8px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 133px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 258px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: -117px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 8px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 133px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 258px;"></div><div draggable="true" class="lGridLine-horizontal--outer3Tqi8g42 lGridLine-horizontal--outer--draggable3Tqi8g47"><div class="lGridline-horizontal--innerline3Tqi8g55"></div></div></div><div id="row-qbnBH6L2" class="lGridRowENHQLg1" style="height: 500px;"><div draggable="false" class="lGridLine-vertical--outer3Tqi8g16"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-tzxkbWpN" class="lGridCellPJIyfQ15" style="width: 265px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="h-full w-full" data-testid="dashboard-item dashboard-item-rich_text dashboard-item-rich_text-a6v5xkqt"><div class="ldashboard-text-element9aZX6w15 lhover9aZX6w29"><div class="lrich-text-containerbe1YMg10" spellcheck="false"><div class="leditor-contentbe1YMg15"><div contenteditable="false" translate="no" class="tiptap ProseMirror lrich-text-editorbe1YMg19 lcontainerkiU67g61" tabindex="0"><p>📌 <strong>After users discover your feature, how many get value from it?</strong><br>→ Track conversion rates from discovery to meaningful engagement.</p><p>📌 <strong>How long does it take users to find value in your feature?</strong><br>→ Analyze the average time between first interaction and successful usage.</p><p>📌 <strong>How many users return after getting value from my feature?</strong><br>→ Measure retention to understand long-term engagement.</p><p>📌 <strong>How many times does a user explore my feature on average?</strong><br>→ Calculate average usage frequency per user.</p></div></div></div><div class="lremove-button9aZX6w26" data-testid="remove-dashboard-item-rich_text"><button aria-label="Remove" class="ease user-select-none relative max-w-[300px] cursor-pointer whitespace-nowrap border-base border-solid border-monochrome-plus5 bg-monochrome-minus5 fill-monochrome-plus5 p-0 text-monochrome-plus5 shadow-base outline-none transition-all delay-0 duration-100 active:border-base active:border-monochrome-plus5 active:bg-monochrome-minus1 active:fill-monochrome-plus5 active:text-monochrome-plus5 active:shadow-base [&.isActive_svg]:text-inherit [&_svg]:active:text-inherit hover:bg-monochrome-minus-3 hover:border-base hover:border-monochrome-plus5 hover:fill-monochrome-plus5 hover:text-monochrome-plus5 hover:shadow-base [&.isHovered_svg]:text-inherit [&_svg]:hover:text-inherit disabled:cursor-not-allowed [&.isLoading]:cursor-not-allowed [&.isParentHovered]:border-base [&.isParentHovered]:bg-monochrome-minus5 [&.isParentHovered]:shadow-base cerulean_buttonbase DANGER_ALT flex rounded-plus2 [&.isFocused]:shadow-focus [&.isFocused]:border-base [&.js-focus-visible]:shadow-focus [&.js-focus-visible]:border-base [&:focus[data-focus-visible-added]]:shadow-focus [&:focus[data-focus-visible-added]]:border-base h-4 w-4 max-w-initial"><span class="flex h-full w-full flex-nowrap items-center gap-0.5 pb-0 pt-0"><span class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink-0 flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="self-auto flex-grow-0 flex-shrink-0"><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px] mx-[-2px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-trash" xlink:href="#icon-trash"></use></svg></div></span></span></button></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable3Tqi8g22"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-9k-HLIFJ" class="lGridCellPJIyfQ15" style="width: 455px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-br73qaas"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/br73qaas?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">How many users return after getting value from my feature?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 45 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 45 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-retention" xlink:href="#icon-retention"></use></svg><span>Retention</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 354px;"><div style="height: 354px; overflow: auto hidden;" data-highcharts-chart="174"><div id="highcharts-1xiz30s-4045" dir="ltr" style="position: relative; overflow: hidden; width: 421px; height: 354px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="421" height="354" viewBox="0 0 421 354" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-174"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-4046-"><rect x="0" y="0" width="368" height="266" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-4078-"><rect x="0" y="0" width="368" height="266" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-4079-"><rect x="0" y="0" width="362" height="368" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-4080-"><rect x="362" y="0" width="0" height="368" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="421" height="354" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="45" y="20" width="368" height="266" filter="none"></rect><g class="highcharts-pane-group" data-z-index="0"></g><g class="highcharts-grid highcharts-xaxis-grid" data-z-index="1"><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 50.5 20 L 50.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 74.5 20 L 74.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 97.5 20 L 97.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 121.5 20 L 121.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 145.5 20 L 145.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 169.5 20 L 169.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 192.5 20 L 192.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 216.5 20 L 216.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 240.5 20 L 240.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 264.5 20 L 264.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 287.5 20 L 287.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 311.5 20 L 311.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 335.5 20 L 335.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 359.5 20 L 359.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 382.5 20 L 382.5 286" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 406.5 20 L 406.5 286" opacity="1"></path></g><g class="highcharts-grid highcharts-yaxis-grid" data-z-index="1"><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 45 286.5 L 413 286.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 45 220.5 L 413 220.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 45 153.5 L 413 153.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 45 87.5 L 413 87.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 45 19.5 L 413 19.5" opacity="1"></path></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="45" y="20" width="368" height="266"></rect><g class="highcharts-axis highcharts-xaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 45 286 L 413 286"></path></g><g class="highcharts-axis highcharts-yaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 45 20 L 45 286"></path></g><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-line-series" data-z-index="0.1" opacity="1" transform="translate(45,20) scale(1 1)" clip-path="url(#highcharts-1xiz30s-4078-)"><path fill="none" d="M 5.9354838709677 0 L 17.806451612903 233.189427312775 L 29.677419354839 242.364457831325 L 41.548387096774 237.033742331288 L 53.41935483871 239.482866043614 L 65.290322580645 233.6544 L 77.161290322581 236.926590538336 L 89.032258064516 239.843333333333 L 100.90322580645 232.692173913043 L 112.77419354839 238.074733096085 L 124.64516129032 240.573529411765 L 136.51612903226 239.349716446125 L 148.3870967742 244.13698630137 L 160.25806451613 238.169014084507 L 172.12903225807 243.326403326403 L 184 240.202586206897 L 195.87096774194 245.767337807606 L 207.74193548387 242.896713615023 L 219.61290322581 236.94660194174799 L 231.48387096774 243.045685279188 L 243.35483870968 243.59239130434798 L 255.22580645162 240.029585798817 L 267.09677419355 244.113924050633 L 278.96774193549 241.3 L 290.83870967742 241.528 L 302.70967741936 240.837837837838 L 314.58064516129 247 L 326.45161290323 246.362416107383 L 338.32258064516 256.8275862068966 L 350.1935483871 259.6666666666667 L 362.06451612903 266" class="highcharts-graph" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" visibility="hidden"></path><path fill="none" d="M 5.9354838709677 0 L 17.806451612903 233.189427312775 L 29.677419354839 242.364457831325 L 41.548387096774 237.033742331288 L 53.41935483871 239.482866043614 L 65.290322580645 233.6544 L 77.161290322581 236.926590538336 L 89.032258064516 239.843333333333 L 100.90322580645 232.692173913043 L 112.77419354839 238.074733096085 L 124.64516129032 240.573529411765 L 136.51612903226 239.349716446125 L 148.3870967742 244.13698630137 L 160.25806451613 238.169014084507 L 172.12903225807 243.326403326403 L 184 240.202586206897 L 195.87096774194 245.767337807606 L 207.74193548387 242.896713615023 L 219.61290322581 236.94660194174799 L 231.48387096774 243.045685279188 L 243.35483870968 243.59239130434798 L 255.22580645162 240.029585798817 L 267.09677419355 244.113924050633 L 278.96774193549 241.3 L 290.83870967742 241.528 L 302.70967741936 240.837837837838 L 314.58064516129 247 L 326.45161290323 246.362416107383 L 338.32258064516 256.8275862068966 L 350.1935483871 259.6666666666667 L 362.06451612903 266" class="highcharts-graph highcharts-zone-graph-0" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" clip-path="url(#highcharts-1xiz30s-4079-)"></path><path fill="none" d="M 5.9354838709677 0 L 17.806451612903 233.189427312775 L 29.677419354839 242.364457831325 L 41.548387096774 237.033742331288 L 53.41935483871 239.482866043614 L 65.290322580645 233.6544 L 77.161290322581 236.926590538336 L 89.032258064516 239.843333333333 L 100.90322580645 232.692173913043 L 112.77419354839 238.074733096085 L 124.64516129032 240.573529411765 L 136.51612903226 239.349716446125 L 148.3870967742 244.13698630137 L 160.25806451613 238.169014084507 L 172.12903225807 243.326403326403 L 184 240.202586206897 L 195.87096774194 245.767337807606 L 207.74193548387 242.896713615023 L 219.61290322581 236.94660194174799 L 231.48387096774 243.045685279188 L 243.35483870968 243.59239130434798 L 255.22580645162 240.029585798817 L 267.09677419355 244.113924050633 L 278.96774193549 241.3 L 290.83870967742 241.528 L 302.70967741936 240.837837837838 L 314.58064516129 247 L 326.45161290323 246.362416107383 L 338.32258064516 256.8275862068966 L 350.1935483871 259.6666666666667 L 362.06451612903 266" class="highcharts-graph highcharts-zone-graph-1" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-dasharray="2,6" filter="none" clip-path="url(#highcharts-1xiz30s-4080-)"></path><path fill="none" d="M 5.9354838709677 0 L 17.806451612903 233.189427312775 L 29.677419354839 242.364457831325 L 41.548387096774 237.033742331288 L 53.41935483871 239.482866043614 L 65.290322580645 233.6544 L 77.161290322581 236.926590538336 L 89.032258064516 239.843333333333 L 100.90322580645 232.692173913043 L 112.77419354839 238.074733096085 L 124.64516129032 240.573529411765 L 136.51612903226 239.349716446125 L 148.3870967742 244.13698630137 L 160.25806451613 238.169014084507 L 172.12903225807 243.326403326403 L 184 240.202586206897 L 195.87096774194 245.767337807606 L 207.74193548387 242.896713615023 L 219.61290322581 236.94660194174799 L 231.48387096774 243.045685279188 L 243.35483870968 243.59239130434798 L 255.22580645162 240.029585798817 L 267.09677419355 244.113924050633 L 278.96774193549 241.3 L 290.83870967742 241.528 L 302.70967741936 240.837837837838 L 314.58064516129 247 L 326.45161290323 246.362416107383 L 338.32258064516 256.8275862068966 L 350.1935483871 259.6666666666667 L 362.06451612903 266" data-z-index="2" class="highcharts-tracker-line" stroke-linecap="round" stroke-linejoin="round" stroke="rgba(192,192,192,0.0001)" stroke-width="22"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-line-series highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(45,20) scale(1 1)" clip-path="none"></g></g><text x="208" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="208" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="349"></text><g class="highcharts-axis-labels highcharts-xaxis-labels" data-z-index="7"><text x="53.76391099571419" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 53.76391099571419 309)" y="309" opacity="1">Day 0</text><text x="77.50584647958519" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 77.50584647958519 309)" y="309" opacity="1">Day 2</text><text x="101.24778196345619" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 101.24778196345619 309)" y="309" opacity="1">Day 4</text><text x="124.98971744732619" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 124.98971744732619 309)" y="309" opacity="1">Day 6</text><text x="148.73165293119618" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 148.73165293119618 309)" y="309" opacity="1">Day 8</text><text x="172.4735884150662" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 172.4735884150662 309)" y="309" opacity="1">Day 10</text><text x="196.21552389894617" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 196.21552389894617 309)" y="309" opacity="1">Day 12</text><text x="219.95745938281618" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 219.95745938281618 309)" y="309" opacity="1">Day 14</text><text x="243.6993948666862" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 243.6993948666862 309)" y="309" opacity="1">Day 16</text><text x="267.4413303505562" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 267.4413303505562 309)" y="309" opacity="1">Day 18</text><text x="291.1832658344262" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 291.1832658344262 309)" y="309" opacity="1">Day 20</text><text x="314.9252013182962" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 314.9252013182962 309)" y="309" opacity="1">Day 22</text><text x="338.6671368021662" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 338.6671368021662 309)" y="309" opacity="1">Day 24</text><text x="362.40907228603623" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 362.40907228603623 309)" y="309" opacity="1">Day 26</text><text x="386.1510077699062" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 386.1510077699062 309)" y="309" opacity="1">Day 28</text><text x="409.8929432537762" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0) rotate(-45 409.8929432537762 309)" y="309" opacity="1">Day 30</text></g><g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"><text x="30" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="289" opacity="1">0%</text><text x="30" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="223" opacity="1">25%</text><text x="30" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="156" opacity="1">50%</text><text x="30" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="90" opacity="1">75%</text><text x="30" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="23" opacity="1">100%</text></g></svg></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="All Users" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-All-Users"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="All Users"><div class="shrleadingiPwySw22"><span class="">All Users</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="true" class="lGridLine-vertical--outer3Tqi8g16 lGridLine-vertical--outer--draggable3Tqi8g22"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div><div id="cell-xiYxoiqf" class="lGridCellPJIyfQ15" style="width: 360px;"><div class="lGridCell--drag-handlePJIyfQ29 lGridCell--drag-handle--hiddenPJIyfQ43" draggable="true"><div><svg aria-hidden="true" class="block shrink-0 h-[20px] w-[20px]" focusable="false" viewBox="0 0 24 24"><use href="#icon-drag-indicator-vertical" xlink:href="#icon-drag-indicator-vertical"></use></svg></div></div><div class="lchart-grid-item-containerF8lMUg16"><div class="linner-containerF8lMUg31" data-testid="dashboard-item dashboard-item-chart dashboard-item-chart-razkkvzp"><div class="lcontainergojGbg15"><div class="lchart-name-and-infogojGbg20"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-between h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-full max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><a class="" target="_self" rel="" href="https://app.amplitude.com/analytics/calm-limit-415616/chart/razkkvzp?linkingDashboardId=hwdbf37k&source=dashboard" style="text-decoration: none;"><h3 class="lbodyvaZElQ228 ltitle-enabledgojGbg26" data-state="closed">How many times does a user explore my feature on average?</h3></a><div class="linner-container3BDQoQ10"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-12 border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Feature Adoption Analysis (682732)" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Feature Adoption Analysis</span></div></div></div></div></div><div class="lcontaineravXfTQ11"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow flex-shrink flex-wrap items-center justify-start h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div title="Last 30 Days" class="min-w-0 transform-none overflow-x-visible overflow-y-visible text-clip whitespace-pre-wrap not-italic mbe-0 mbs-0 text-left fill-monochrome-plus2 text-monochrome-plus2 no-underline normal-case block font-primary text-minus1 leading-minus1 capsize font-minus1 overflow-wrap-normal"><span class="block overflow-x-hidden overflow-y-visible text-ellipsis whitespace-nowrap">Last 30 Days</span></div></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-none bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-end h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-1 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-nowrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"></div><div class="flexbase max-h-auto min-h-0 box-border inset-none m-0 min-w-0 gap-0.5 bg-transparent flex flex-row flex-grow-0 flex-shrink flex-wrap items-center justify-center h-auto relative pt-0 pr-0 pb-0 pl-0 shadow-base w-auto max-w-full border-t-none border-r-none border-b-none border-l-none rounded-br-base rounded-bl-base rounded-tl-base rounded-tr-base"><svg aria-hidden="true" class="block shrink-0 h-2 w-2" focusable="false" viewBox="0 0 24 24"><use href="#icon-segmentation" xlink:href="#icon-segmentation"></use></svg><span>Average</span></div></div></div></div><div class="lscheduled-action-chart-warninggojGbg46"></div><div class="lcontainerfcUPGA3"><div class=""><div class="lcontainerr0C7TQ3 lcontainer-paddingr0C7TQ7"><div class="lcontainerJfjZhg4"><div style="position: relative; z-index: 1; overflow: auto hidden;"><div class="" data-testid="dashboard-view chart" style="position: relative; height: 354px;"><div style="height: 354px; overflow: auto hidden;" data-highcharts-chart="172"><div id="highcharts-1xiz30s-3971" dir="ltr" style="position: relative; overflow: hidden; width: 326px; height: 354px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: "IBM Plex Sans", sans-serif;" class="highcharts-container "><svg version="1.1" class="highcharts-root" style="font-family: "IBM Plex Sans", sans-serif; font-size: 1rem;" xmlns="http://www.w3.org/2000/svg" width="326" height="354" viewBox="0 0 326 354" role="img" aria-label=""><desc>Created with Highcharts 11.1.0</desc><defs><filter id="highcharts-drop-shadow-172"><fedropshadow dx="1" dy="1" flood-color="#000000" flood-opacity="0.75" stdDeviation="2.5"></fedropshadow></filter><clippath id="highcharts-1xiz30s-3972-"><rect x="0" y="0" width="293" height="288" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-4004-"><rect x="0" y="0" width="293" height="288" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-4005-"><rect x="0" y="0" width="281" height="293" fill="none"></rect></clippath><clippath id="highcharts-1xiz30s-4006-"><rect x="281" y="0" width="12" height="293" fill="none"></rect></clippath></defs><rect fill="transparent" class="highcharts-background" filter="none" x="0" y="0" width="326" height="354" rx="0" ry="0"></rect><rect fill="none" class="highcharts-plot-background" x="25" y="20" width="293" height="288" filter="none"></rect><g class="highcharts-pane-group" data-z-index="0"></g><g class="highcharts-grid highcharts-yaxis-grid" data-z-index="1"><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 25 308.5 L 318 308.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 25 250.5 L 318 250.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 25 193.5 L 318 193.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 25 135.5 L 318 135.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 25 78.5 L 318 78.5" opacity="1"></path><path fill="none" stroke="#c6d0d9" stroke-width="1" stroke-dasharray="1,1" data-z-index="1" class="highcharts-grid-line" d="M 25 19.5 L 318 19.5" opacity="1"></path></g><rect fill="none" class="highcharts-plot-border" data-z-index="1" stroke="#cccccc" stroke-width="0" x="25" y="20" width="293" height="288"></rect><g class="highcharts-grid highcharts-xaxis-grid" data-z-index="1"><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 84.5 20 L 84.5 308" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 151.5 20 L 151.5 308" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 218.5 20 L 218.5 308" opacity="1"></path><path fill="none" stroke="#e6e6e6" stroke-width="0" stroke-dasharray="none" data-z-index="1" class="highcharts-grid-line" d="M 285.5 20 L 285.5 308" opacity="1"></path></g><g class="highcharts-axis highcharts-yaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 25 20 L 25 308"></path></g><g class="highcharts-axis highcharts-xaxis" data-z-index="2"><path fill="none" class="highcharts-axis-line" stroke="#333333" stroke-width="0" data-z-index="7" d="M 25 308 L 318 308"></path></g><g class="highcharts-series-group" data-z-index="3" filter="none"><g class="highcharts-series highcharts-series-0 highcharts-line-series" data-z-index="0.1" opacity="1" transform="translate(25,20) scale(1 1)" clip-path="url(#highcharts-1xiz30s-4004-)"><path fill="none" d="M 2.8725490196078 57.599999999999994 L 12.447712418301 57.599999999999994 L 22.022875816993 57.599999999999994 L 31.598039215686 57.599999999999994 L 41.173202614379 57.599999999999994 L 50.748366013072 57.599999999999994 L 60.323529411765 57.599999999999994 L 69.898692810458 57.599999999999994 L 79.47385620915 57.599999999999994 L 89.049019607843 57.599999999999994 L 98.624183006536 57.599999999999994 L 108.19934640523 57.599999999999994 L 117.77450980392 57.599999999999994 L 127.34967320261 38.400000000000006 L 136.92483660131 57.599999999999994 L 146.5 57.599999999999994 L 156.07516339869 57.599999999999994 L 165.65032679739 57.599999999999994 L 175.22549019608 57.599999999999994 L 184.80065359477 34.56 L 194.37581699346 57.599999999999994 L 203.95098039216 57.599999999999994 L 213.52614379085 57.599999999999994 L 223.10130718954 57.599999999999994 L 232.67647058824 57.599999999999994 L 242.25163398693 57.599999999999994 L 251.82679738562 57.599999999999994 L 261.40196078431 57.599999999999994 L 270.97712418301 57.599999999999994 L 280.5522875817 288 L 290.12745098039 288" class="highcharts-graph" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" visibility="hidden"></path><path fill="none" d="M 2.8725490196078 57.599999999999994 L 12.447712418301 57.599999999999994 L 22.022875816993 57.599999999999994 L 31.598039215686 57.599999999999994 L 41.173202614379 57.599999999999994 L 50.748366013072 57.599999999999994 L 60.323529411765 57.599999999999994 L 69.898692810458 57.599999999999994 L 79.47385620915 57.599999999999994 L 89.049019607843 57.599999999999994 L 98.624183006536 57.599999999999994 L 108.19934640523 57.599999999999994 L 117.77450980392 57.599999999999994 L 127.34967320261 38.400000000000006 L 136.92483660131 57.599999999999994 L 146.5 57.599999999999994 L 156.07516339869 57.599999999999994 L 165.65032679739 57.599999999999994 L 175.22549019608 57.599999999999994 L 184.80065359477 34.56 L 194.37581699346 57.599999999999994 L 203.95098039216 57.599999999999994 L 213.52614379085 57.599999999999994 L 223.10130718954 57.599999999999994 L 232.67647058824 57.599999999999994 L 242.25163398693 57.599999999999994 L 251.82679738562 57.599999999999994 L 261.40196078431 57.599999999999994 L 270.97712418301 57.599999999999994 L 280.5522875817 288 L 290.12745098039 288" class="highcharts-graph highcharts-zone-graph-0" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round" filter="none" clip-path="url(#highcharts-1xiz30s-4005-)"></path><path fill="none" d="M 2.8725490196078 57.599999999999994 L 12.447712418301 57.599999999999994 L 22.022875816993 57.599999999999994 L 31.598039215686 57.599999999999994 L 41.173202614379 57.599999999999994 L 50.748366013072 57.599999999999994 L 60.323529411765 57.599999999999994 L 69.898692810458 57.599999999999994 L 79.47385620915 57.599999999999994 L 89.049019607843 57.599999999999994 L 98.624183006536 57.599999999999994 L 108.19934640523 57.599999999999994 L 117.77450980392 57.599999999999994 L 127.34967320261 38.400000000000006 L 136.92483660131 57.599999999999994 L 146.5 57.599999999999994 L 156.07516339869 57.599999999999994 L 165.65032679739 57.599999999999994 L 175.22549019608 57.599999999999994 L 184.80065359477 34.56 L 194.37581699346 57.599999999999994 L 203.95098039216 57.599999999999994 L 213.52614379085 57.599999999999994 L 223.10130718954 57.599999999999994 L 232.67647058824 57.599999999999994 L 242.25163398693 57.599999999999994 L 251.82679738562 57.599999999999994 L 261.40196078431 57.599999999999994 L 270.97712418301 57.599999999999994 L 280.5522875817 288 L 290.12745098039 288" class="highcharts-graph highcharts-zone-graph-1" data-z-index="1" stroke="#1e61f0" stroke-width="2" stroke-dasharray="2,6" filter="none" clip-path="url(#highcharts-1xiz30s-4006-)"></path><path fill="none" d="M 2.8725490196078 57.599999999999994 L 12.447712418301 57.599999999999994 L 22.022875816993 57.599999999999994 L 31.598039215686 57.599999999999994 L 41.173202614379 57.599999999999994 L 50.748366013072 57.599999999999994 L 60.323529411765 57.599999999999994 L 69.898692810458 57.599999999999994 L 79.47385620915 57.599999999999994 L 89.049019607843 57.599999999999994 L 98.624183006536 57.599999999999994 L 108.19934640523 57.599999999999994 L 117.77450980392 57.599999999999994 L 127.34967320261 38.400000000000006 L 136.92483660131 57.599999999999994 L 146.5 57.599999999999994 L 156.07516339869 57.599999999999994 L 165.65032679739 57.599999999999994 L 175.22549019608 57.599999999999994 L 184.80065359477 34.56 L 194.37581699346 57.599999999999994 L 203.95098039216 57.599999999999994 L 213.52614379085 57.599999999999994 L 223.10130718954 57.599999999999994 L 232.67647058824 57.599999999999994 L 242.25163398693 57.599999999999994 L 251.82679738562 57.599999999999994 L 261.40196078431 57.599999999999994 L 270.97712418301 57.599999999999994 L 280.5522875817 288 L 290.12745098039 288" data-z-index="2" class="highcharts-tracker-line" stroke-linecap="round" stroke-linejoin="round" stroke="rgba(192,192,192,0.0001)" stroke-width="22"></path></g><g class="highcharts-markers highcharts-series-0 highcharts-line-series highcharts-tracker" data-z-index="0.1" opacity="1" transform="translate(25,20) scale(1 1)" clip-path="none"></g></g><text x="160" text-anchor="middle" class="highcharts-title" data-z-index="4" style="font-size: 1.2em; color: rgb(51, 51, 51); font-weight: bold; fill: rgb(51, 51, 51);" y="21"></text><text x="160" text-anchor="middle" class="highcharts-subtitle" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="22"></text><text x="4" text-anchor="start" class="highcharts-caption" data-z-index="4" style="color: rgb(102, 102, 102); font-size: 0.8em; fill: rgb(102, 102, 102);" y="349"></text><g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"><text x="10" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="311" opacity="1">0</text><text x="10" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="254" opacity="1">1</text><text x="10" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="196" opacity="1">2</text><text x="10" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="139" opacity="1">3</text><text x="10" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="81" opacity="1">4</text><text x="10" style="color: rgb(51, 51, 51); cursor: default; font-size: 0.8em; fill: rgb(51, 51, 51);" text-anchor="end" transform="translate(0,0)" y="23" opacity="1">5</text></g><g class="highcharts-axis-labels highcharts-xaxis-labels" data-z-index="7"><text x="85.323529411765" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Mar 3</text><text x="152.34967320261" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Mar 10</text><text x="219.37581699346" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Mar 17</text><text x="286.40196078431" style="color: rgb(51, 51, 51); cursor: default; font-size: 12px; fill: rgb(51, 51, 51);" text-anchor="middle" transform="translate(0,0)" y="335" opacity="1">Mar 24</text></g></svg></div></div></div></div></div><div class="llegend-containerBM0GsA3 flex-row justify-center" style="position: absolute; margin-top: 0px;"><div class="lcontainerREziPQ15 justify-center"><div class="flex items-center gap-0.5"></div><div class="llegendREziPQ22"><div class="llegend-item-wrapperREziPQ29"><div title="" class="rounded-base items-center justify-between overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrcontainer7dZ46A26 shrwith-background7dZ46A42 shrmini7dZ46A38" style="min-width: 0px;"><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row [&>*:last-child]:mr-0 [&>*]:mr-1 shrleft-content7dZ46A46" style="min-width: 0px;"><div class="shrcontainerh4YbLA59 shrcircularh4YbLA89" data-testid="series-badge" style="height: 12px; line-height: 12px; font-size: 6px; width: 12px; background-color: rgb(30, 97, 240);"></div><div title="" class="rounded-base items-center justify-start overflow-visible flex flex-row shrlabel-container7dZ46A50" style="min-width: 0px;"><div title="All Users" class="shrlabel7dZ46A50 shrcontainer4oxe2g59" data-testid="legend-All-Users"><div class="shrcontaineriPwySw15 MiddleTruncatedText__container" data-testid="All Users"><div class="shrleadingiPwySw22"><span class="">All Users</span></div><div class="shrtrailingiPwySw32"><span class=""></span></div></div></div></div></div></div></div></div></div></div></div><div class="loverlayADed3g15"></div></div></div></div></div></div><div draggable="false" class="lGridLine-vertical--outer3Tqi8g16"><div class="lGridLine-vertical--innerline3Tqi8g30" data-state="closed"></div></div></div><div class="lGridLine-horizontal--container3Tqi8g38"><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: -117px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 8px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 133px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--left-preview-container3Tqi8g81" style="top: 258px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: -117px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 8px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 133px;"></div><div class="lGridLine--drag--preview-dot3Tqi8g91 lGridLine-horizontal--drag--preview-dot--hidden3Tqi8g98 lGridLine-vertical--drag--right-preview-container3Tqi8g86" style="top: 258px;"></div><div draggable="true" class="lGridLine-horizontal--outer3Tqi8g42 lGridLine-horizontal--outer--draggable3Tqi8g47"><div class="lGridline-horizontal--innerline3Tqi8g55"></div></div></div></div></div></div></div></div></div></div></div></div></div><div class="lcontainer_I3n2g3"></div></div></div></div></div></div>
<script type="text/javascript">
"use strict";
window.console &&
console.log(
'%c\
## \n\
##### \n\
### ### \n\
### ### Built with React, Redux, GraphQL, and TypeScript.\n\
## ### \n\
### ### \n\
### ### Yes, we are hiring!\n\
### ### https://amplitude.com/engineering\n\
##############################\n\
## ### \n\
### ### # \n\
## ### # \n\
## ### ## \n\
### ## \n\
### ## \n\
###### \n\
### \n\
',
'font-family: monospace; color: #007fd2;',
);
</script>
<script type="text/javascript">
"use strict";
window.onerror = function onerror(err) {
if (!window.__APP_RENDERED__) {
const node = document.createElement('div');
node.style.padding = '128px 32px';
node.style.width = '780px';
node.style.marginLeft = 'auto';
node.style.marginRight = 'auto';
node.style.textAlign = 'left';
const titleNode = document.createElement('div');
titleNode.style.marginBottom = '16px';
titleNode.style.fontSize = '24px';
titleNode.style.fontWeight = '600';
titleNode.style.fontFamily = 'Helvetica, Arial, sans-serif';
titleNode.style.color = '#60758B';
titleNode.innerText = 'Sorry about that! Something went wrong.';
const subtitleNode = document.createElement('div');
subtitleNode.style.fontSize = '14px';
subtitleNode.style.lineHeight = '1.5';
subtitleNode.style.fontWeight = '500';
subtitleNode.style.fontFamily = 'Helvetica, Arial, sans-serif';
subtitleNode.style.color = '#60758B';
subtitleNode.innerHTML =
'It\'s possible that you are using an unsupported web browser. Please try a recent version of Chrome, Firefox, Safari, or any other modern browser.<br><br>If you believe you\'re seeing this in error, please submit a ticket on <a href="https://support.amplitude.com">our support forum</a>.';
node.appendChild(titleNode);
node.appendChild(subtitleNode);
const root = document.getElementById('root');
root.appendChild(node);
root.style.visibility = 'visible';
console.error && console.error(err);
}
};
</script>
<script src="./Feature Engagement & Adoption Dashboard - Amplitude_files/dynamic-favicon.js.download" async="" defer=""></script>
<div><div class="obutter-bar-groupoY1Ixw17 ofixedTsb-kA10"></div></div><div id="engagement-wrapper" data-engagement="1"><div data-engagement-toplevel-styles="" hidden=""></div><div id="engagement-container" data-engagement="1"><div class="engagement-widget-ce80a7eb65-0" style="display: contents;"><div class="engagement-widget-ce80a7eb65-0" id="engagement-theme-root"><div><div id="engagement-nudges-rc-tooltip-container"></div></div><div id="engagement-nudge-container" style="position: relative;"><div id="engagement-toast-container" class="css-ey5axd" style="position: fixed; pointer-events: none; z-index: 2147483644;"></div></div><div id="engagement-nudges-banner-sticky-container" style="width: 100%; top: 0px; left: 0px; position: fixed; pointer-events: none; z-index: 2147483644; height: 100%;"></div><div id="engagement-nudges-banner-inline-container-top" style="width: 100%; position: absolute; top: 0px; left: 0px; pointer-events: none; z-index: 2147483644;"></div><div id="engagement-nudges-banner-inline-container-bottom" style="width: 100%; position: relative; pointer-events: none; z-index: 2147483644;"></div></div></div></div></div><div><div class="lbutter-bar-groupcwdyTg8 lfixedTsb-kA10" style=""></div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><iframe id="intercom-frame" style="position: absolute !important; opacity: 0 !important; width: 1px !important; height: 1px !important; top: 0 !important; left: 0 !important; border: none !important; display: block !important; z-index: -1 !important; pointer-events: none;" aria-hidden="true" tabindex="-1" title="Intercom" src="./Feature Engagement & Adoption Dashboard - Amplitude_files/saved_resource(1).html"></iframe><div class="intercom-lightweight-app"><style id="intercom-lightweight-app-style" type="text/css">
@keyframes intercom-lightweight-app-launcher {
from {
opacity: 0;
transform: scale(0.5);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes intercom-lightweight-app-gradient {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes intercom-lightweight-app-messenger {
0% {
opacity: 0;
transform: scale(0);
}
40% {
opacity: 1;
}
100% {
transform: scale(1);
}
}
.intercom-lightweight-app {
position: fixed;
z-index: 2147483001;
width: 0;
height: 0;
font-family: intercom-font, "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial, sans-serif;
}
.intercom-lightweight-app-gradient {
position: fixed;
z-index: 2147483002;
width: 500px;
height: 500px;
bottom: 0;
right: 0;
pointer-events: none;
background: radial-gradient(
ellipse at bottom right,
rgba(29, 39, 54, 0.16) 0%,
rgba(29, 39, 54, 0) 72%);
animation: intercom-lightweight-app-gradient 200ms ease-out;
}
.intercom-lightweight-app-launcher {
position: fixed;
z-index: 2147483003;
padding: 0 !important;
margin: 0 !important;
border: none;
bottom: 20px;
right: 20px;
max-width: 48px;
width: 48px;
max-height: 48px;
height: 48px;
border-radius: 50%;
background: #1E61F0;
cursor: pointer;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
transition: transform 167ms cubic-bezier(0.33, 0.00, 0.00, 1.00);
box-sizing: content-box;
}
.intercom-lightweight-app-launcher:hover {
transition: transform 250ms cubic-bezier(0.33, 0.00, 0.00, 1.00);
transform: scale(1.1)
}
.intercom-lightweight-app-launcher:active {
transform: scale(0.85);
transition: transform 134ms cubic-bezier(0.45, 0, 0.2, 1);
}
.intercom-lightweight-app-launcher:focus {
outline: none;
}
.intercom-lightweight-app-launcher-icon {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
width: 48px;
height: 48px;
transition: transform 100ms linear, opacity 80ms linear;
}
.intercom-lightweight-app-launcher-icon-open {
opacity: 1;
transform: rotate(0deg) scale(1);
}
.intercom-lightweight-app-launcher-icon-open svg {
width: 24px;
height: 24px;
}
.intercom-lightweight-app-launcher-icon-open svg path {
fill: rgb(255, 255, 255);
}
.intercom-lightweight-app-launcher-icon-self-serve {
opacity: 1;
transform: rotate(0deg) scale(1);
}
.intercom-lightweight-app-launcher-icon-self-serve svg {
height: 44px;
}
.intercom-lightweight-app-launcher-icon-self-serve svg path {
fill: rgb(255, 255, 255);
}
.intercom-lightweight-app-launcher-custom-icon-open {
max-height: 24px;
max-width: 24px;
opacity: 1;
transform: rotate(0deg) scale(1);
}
.intercom-lightweight-app-launcher-icon-minimize {
opacity: 0;
transform: rotate(-60deg) scale(0);
}
.intercom-lightweight-app-launcher-icon-minimize svg path {
fill: rgb(255, 255, 255);