forked from grafana/pyroscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.json
999 lines (999 loc) · 49.2 KB
/
example.json
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
{
"flamebearer": {
"names": [
"total",
"runtime/pprof.profileWriter",
"runtime/pprof.(*profileBuilder).addCPUData",
"runtime/pprof.(*profMap).lookup",
"runtime.makeslice",
"runtime.mallocgc",
"runtime.(*mcache).nextFree",
"runtime.(*mcache).refill",
"runtime.(*mcentral).cacheSpan",
"runtime.(*mcentral).grow",
"runtime.(*mheap).alloc",
"runtime.systemstack",
"runtime.(*mheap).alloc.func1",
"runtime.(*mheap).allocSpan",
"runtime.nanotime",
"runtime.mcall",
"runtime.park_m",
"runtime.unlockWithRank",
"runtime.unlock2",
"runtime.selparkcommit",
"runtime.schedule",
"runtime.runqempty",
"runtime.resetspinning",
"runtime.wakep",
"runtime.startm",
"runtime.pidleget",
"runtime.pMask.set",
"runtime.notewakeup",
"runtime.futexwakeup",
"runtime.futex",
"runtime.releasem",
"runtime.mget",
"runtime.lockWithRank",
"runtime.lock2",
"runtime.pMask.read",
"runtime.nobarrierWakeTime",
"runtime.netpollinited",
"runtime.nanotime1",
"runtime.procyield",
"runtime.gcMarkWorkAvailable",
"runtime.findrunnable",
"runtime.stopm",
"runtime.mput",
"runtime.checkdead",
"runtime.mPark",
"runtime.notesleep",
"runtime.futexsleep",
"runtime.mDoFixup",
"runtime.acquirep",
"runtime.wirep",
"runtime.(*mcache).prepareForSweep",
"runtime.(*mcache).releaseAll",
"runtime.(*mcentral).uncacheSpan",
"runtime.(*mspan).sweep",
"runtime.(*spanSet).push",
"runtime.runqsteal",
"runtime.runqgrab",
"runtime.usleep",
"runtime.runqget",
"runtime.releasep",
"runtime.pidleput",
"runtime.updateTimerPMask",
"runtime.netpoll",
"runtime.epollwait",
"runtime.checkTimers",
"runtime.runtimer",
"runtime.runOneTimer",
"time.sendTime",
"time.Now",
"time.now",
"runtime.walltime",
"runtime.walltime1",
"runtime.selectnbsend",
"runtime.chansend",
"runtime.send",
"runtime.goready",
"runtime.goready.func1",
"runtime.ready",
"runtime.runqput",
"runtime.casgstatus",
"runtime.(*guintptr).cas",
"runtime.acquirem",
"runtime.(*waitq).dequeue",
"runtime.siftdownTimer",
"runtime.adjusttimers",
"runtime.fastrand",
"runtime.execute",
"runtime.(*randomOrder).start",
"runtime.(*randomEnum).position",
"runtime.(*randomEnum).next",
"runtime.(*randomEnum).done",
"runtime.gcBgMarkWorker.func1",
"runtime.(*lfstack).push",
"runtime.gosched_m",
"runtime.goschedImpl",
"runtime.globrunqget",
"runtime.(*gQueue).pop",
"runtime.(*gQueue).pushBack",
"runtime.goexit0",
"runtime.gcBgMarkWorker",
"runtime.gcBgMarkWorker.func2",
"runtime.gcDrain",
"runtime.spanOfUnchecked",
"runtime.scanobject",
"runtime.spanOf",
"runtime.spanClass.noscan",
"runtime.pageIndexOf",
"runtime.markBits.isMarked",
"runtime.greyobject",
"runtime.findObject",
"runtime.arenaIndex",
"runtime.(*gcWork).putFast",
"runtime.(*gcBits).bytep",
"runtime.(*gcBits).bitp",
"runtime.heapBitsForAddr",
"runtime.heapBits.next",
"runtime.heapBits.bits",
"runtime.gcFlushBgCredit",
"runtime.add1",
"runtime.(*gcWork).tryGetFast",
"runtime.(*gcWork).tryGet",
"runtime.putempty",
"runtime.(*lfstack).pop",
"runtime.(*gcWork).balance",
"runtime.handoff",
"runtime.putfull",
"runtime.memmove",
"runtime.getempty",
"runtime.(*workbuf).checkempty",
"runtime.(*gcControllerState).enlistWorker",
"runtime.gcMarkDone",
"runtime.stopTheWorldWithSema",
"runtime.preemptall",
"runtime.gcMarkDone.func1",
"runtime.forEachP",
"runtime.gcMarkDone.func1.1",
"runtime.gcMarkTermination",
"runtime.gcMarkTermination.func4",
"runtime.gcMarkTermination.func4.1",
"runtime.bgsweep",
"runtime.sweepone",
"runtime.spanClass.sizeclass",
"runtime.(*headTailIndex).incTail",
"runtime.(*mspan).refillAllocCache",
"runtime.(*mheap).freeSpan",
"runtime.(*mheap).freeSpan.func1",
"runtime.(*mheap).freeSpanLocked",
"runtime.(*gcBitsArena).tryAlloc",
"runtime.(*mheap).nextSpanForSweep",
"runtime.(*spanSet).pop",
"runtime.(*headTailIndex).cas",
"runtime._System",
"runtime.gogo",
"net/http.(*persistConn).addTLS.func2",
"crypto/tls.(*Conn).Handshake",
"crypto/tls.(*Conn).clientHandshake",
"crypto/tls.(*clientHandshakeStateTLS13).handshake",
"crypto/tls.(*clientHandshakeStateTLS13).readServerCertificate",
"crypto/tls.(*Conn).verifyServerCertificate",
"sync.(*Once).Do",
"sync.(*Once).doSlow",
"crypto/x509.initSystemRoots",
"crypto/x509.loadSystemRoots",
"crypto/x509.(*CertPool).AppendCertsFromPEM",
"encoding/asn1.Unmarshal",
"encoding/asn1.UnmarshalWithParams",
"encoding/asn1.parseField",
"encoding/asn1.parseSequenceOf",
"reflect.StructTag.Get",
"reflect.StructTag.Lookup",
"crypto/x509.ParseCertificate",
"reflect.(*rtype).Field",
"runtime.duffcopy",
"crypto/x509.parseCertificate",
"crypto/tls.(*clientHandshakeState).handshake",
"crypto/tls.(*clientHandshakeState).doFullHandshake",
"crypto/tls.(*ecdheKeyAgreement).processServerKeyExchange",
"crypto/tls.generateECDHEParameters",
"crypto/elliptic.GenerateKey",
"crypto/elliptic.p256Curve.ScalarBaseMult",
"crypto/elliptic.initTable",
"crypto/elliptic.p256Inverse",
"crypto/elliptic.p256Sqr",
"net/http.(*conn).serve",
"net/http.serverHandler.ServeHTTP",
"net/http.HandlerFunc.ServeHTTP",
"github.com/klauspost/compress/gzhttp.NewWrapper.func1.1",
"net/http.(*ServeMux).ServeHTTP",
"github.com/slok/go-http-metrics/middleware/std.Handler.func1",
"github.com/slok/go-http-metrics/middleware.Middleware.Measure",
"github.com/slok/go-http-metrics/middleware/std.Handler.func1.1",
"github.com/pyroscope-io/pyroscope/pkg/server.(*Controller).renderHandler",
"github.com/pyroscope-io/pyroscope/pkg/storage.(*Storage).Get",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*Segment).Get",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*streeNode).get",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*Segment).Get.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage.(*Storage).Get.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).Lookup",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).get",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache/lfu.(*Cache).GetOrSet",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).get.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage.treeCodec.Deserialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.Deserialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/dict.(*Dict).GetValue",
"github.com/pyroscope-io/pyroscope/pkg/util/varint.Read",
"encoding/binary.ReadUvarint",
"bytes.(*Reader).ReadByte",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).Merge",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*treeNode).insert",
"github.com/pyroscope-io/pyroscope/pkg/server.(*Controller).indexHandler.func1",
"github.com/pyroscope-io/pyroscope/pkg/server.(*Controller).renderIndexPage",
"github.com/pyroscope-io/pyroscope/pkg/storage.(*Storage).GetAppNames",
"github.com/pyroscope-io/pyroscope/pkg/storage.(*Storage).GetValues",
"github.com/pyroscope-io/pyroscope/pkg/storage/labels.(*Labels).GetValues",
"github.com/dgraph-io/badger/v2.(*DB).View",
"github.com/pyroscope-io/pyroscope/pkg/storage/labels.(*Labels).GetValues.func1",
"github.com/dgraph-io/badger/v2.(*Iterator).Next",
"github.com/dgraph-io/badger/v2.(*Iterator).parseItem",
"github.com/dgraph-io/badger/v2/table.(*MergeIterator).Next",
"github.com/dgraph-io/badger/v2/table.(*node).next",
"github.com/dgraph-io/badger/v2/table.(*node).setKey",
"github.com/dgraph-io/badger/v2/skl.(*Iterator).Key",
"net/http.(*response).finishRequest",
"bufio.(*Writer).Flush",
"net/http.(*chunkWriter).Write",
"net/http.(*chunkWriter).writeHeader",
"net/http.(*conn).readRequest",
"runtime.newobject",
"runtime.profilealloc",
"runtime.mProf_Malloc",
"runtime.callers",
"runtime.callers.func1",
"runtime.gentraceback",
"runtime.funcspdelta",
"runtime.pcvalue",
"net/http.readRequest",
"net/url.ParseRequestURI",
"net/url.parse",
"net/url.(*URL).setPath",
"net/url.unescape",
"golang.org/x/sync/errgroup.(*Group).Go.func1",
"github.com/pyroscope-io/pyroscope/pkg/cli.(*serverService).Start.func1",
"github.com/pyroscope-io/pyroscope/pkg/server.(*Controller).Start",
"net/http.(*Server).ListenAndServe",
"net/http.(*Server).Serve",
"net.(*TCPListener).Accept",
"github.com/sirupsen/logrus.(*Entry).Debug",
"github.com/sirupsen/logrus.(*Entry).Log",
"github.com/sirupsen/logrus.Entry.log",
"github.com/sirupsen/logrus.(*Entry).write",
"github.com/sirupsen/logrus.(*TextFormatter).Format",
"github.com/sirupsen/logrus.(*TextFormatter).printColored",
"fmt.Sprintf",
"fmt.(*pp).doPrintf",
"fmt.(*pp).printArg",
"fmt.(*pp).fmtString",
"runtime.newstack",
"runtime.copystack",
"runtime.adjustframe",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.New.func2",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).saveToDisk",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).Put",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache/lfu.(*Cache).Set",
"runtime.mapaccess2_faststr",
"github.com/pyroscope-io/pyroscope/pkg/storage.treeCodec.Serialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).SerializeTruncate",
"runtime.growslice",
"runtime.heapBitsSetType",
"runtime.(*mspan).init",
"runtime.memclrNoHeapPointers",
"github.com/valyala/bytebufferpool.(*ByteBuffer).Write",
"github.com/pyroscope-io/pyroscope/pkg/structs/cappedarr.New",
"runtime.(*pageAlloc).alloc",
"runtime.(*pageAlloc).allocRange",
"runtime.(*pallocBits).allocRange",
"runtime.(*pageBits).setRange",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).minValue",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).iterateWithTotal",
"runtime.typedslicecopy",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).minValue.func1",
"github.com/pyroscope-io/pyroscope/pkg/structs/cappedarr.(*CappedArray).Push",
"sort.Search",
"github.com/pyroscope-io/pyroscope/pkg/structs/cappedarr.(*CappedArray).Push.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage/dict.(*Dict).Put",
"github.com/pyroscope-io/pyroscope/pkg/storage/dict.(*trieNode).findNodeAt",
"runtime.nextFreeFast",
"github.com/pyroscope-io/pyroscope/pkg/util/varint.Writer.Write",
"bytes.(*Buffer).tryGrowByReslice",
"bytes.(*Buffer).Write",
"bytes.(*Buffer).grow",
"encoding/binary.PutUvarint",
"bytes.Equal",
"runtime.memequal",
"github.com/pyroscope-io/pyroscope/pkg/storage.segmentCodec.Serialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*Segment).Serialize",
"runtime.roundupsize",
"runtime.pcdatavalue",
"runtime.heapBits.initSpan",
"runtime.(*pageCache).alloc",
"runtime.(*pageAlloc).allocToCache",
"runtime.(*pageAlloc).update",
"runtime.(*pallocBits).summarize",
"runtime.getMCache",
"runtime.(*mcache).allocLarge",
"runtime.(*mheap).allocMSpanLocked",
"runtime.(*fixalloc).alloc",
"github.com/pyroscope-io/pyroscope/pkg/util/serialization.WriteMetadata",
"encoding/json.Marshal",
"encoding/json.(*encodeState).marshal",
"encoding/json.(*encodeState).reflectValue",
"encoding/json.mapEncoder.encode",
"reflect.Value.MapIndex",
"reflect.mapaccess",
"github.com/pyroscope-io/pyroscope/pkg/storage.dictionaryCodec.Serialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/dict.(*Dict).Serialize",
"runtime.(*consistentHeapStats).acquire",
"github.com/pyroscope-io/pyroscope/pkg/util/varint.Write",
"github.com/pyroscope-io/pyroscope/pkg/agent/upstream/direct.(*Direct).uploadLoop",
"github.com/pyroscope-io/pyroscope/pkg/agent/upstream/direct.(*Direct).safeUpload",
"github.com/pyroscope-io/pyroscope/pkg/agent/upstream/direct.(*Direct).uploadProfile",
"fmt.Fprintf",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*Trie).Iterate",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).Insert",
"bytes.Split",
"bytes.genSplit",
"bytes.IndexByte",
"indexbytebody",
"bytes.Count",
"countbody",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.ParseKey",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*parser).nameParserCase",
"runtime.concatstring2",
"runtime.concatstrings",
"github.com/pyroscope-io/pyroscope/pkg/storage.(*Storage).Put",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.NewRetentionPolicy",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*Segment).Put",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*streeNode).put",
"math/big.(*Rat).Float64",
"math/big.nat.make",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*Segment).Put.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage.(*Storage).Put.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.prependTreeNode",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.newNode",
"bytes.Compare",
"cmpbody",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Tree).Clone",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*treeNode).clone",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*Key).TreeKey",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.TreeKey",
"strconv.FormatInt",
"strconv.formatBits",
"runtime.slicebytetostring",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).GetOrCreate",
"bufio.(*Reader).ReadByte",
"github.com/pyroscope-io/pyroscope/pkg/storage.dictionaryCodec.Deserialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/dict.Deserialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache.(*Cache).get.func1.1",
"runtime.rawstringtmp",
"runtime.rawstring",
"github.com/dgraph-io/badger/v2.(*Txn).Get",
"github.com/dgraph-io/badger/v2.(*DB).get",
"github.com/dgraph-io/badger/v2/skl.(*Skiplist).Get",
"github.com/dgraph-io/badger/v2.(*levelsController).get",
"github.com/dgraph-io/badger/v2.(*levelHandler).get",
"github.com/dgraph-io/badger/v2/table.(*Table).DoesNotHave",
"github.com/dgraph-io/ristretto/z.(*Bloom).IsSet",
"expvar.(*Map).Add",
"sync.(*Map).Load",
"runtime.mapaccess2",
"runtime.nilinterequal",
"github.com/dgraph-io/badger/v2.(*DB).getMemTables",
"github.com/pyroscope-io/pyroscope/pkg/storage/labels.(*Labels).Put",
"github.com/dgraph-io/badger/v2.(*DB).Update",
"github.com/dgraph-io/badger/v2.(*Txn).Commit",
"github.com/dgraph-io/badger/v2.(*Txn).commitAndSend",
"github.com/dgraph-io/badger/v2.(*DB).sendToWriteCh",
"sync.(*WaitGroup).state",
"github.com/pyroscope-io/pyroscope/pkg/storage/cache/lfu.(*Cache).remEntry",
"runtime.mapdelete_fast64",
"github.com/pyroscope-io/pyroscope/pkg/storage.segmentCodec.Deserialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.newNode",
"runtime.step",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.Deserialize",
"github.com/pyroscope-io/pyroscope/pkg/storage/segment.(*streeNode).replace",
"container/list.(*List).insertValue",
"github.com/pyroscope-io/pyroscope/pkg/agent.(*ProfileSession).takeSnapshots",
"runtime.selectgo",
"runtime.selunlock",
"runtime.sellock",
"runtime.releaseSudog",
"runtime.gopark",
"runtime.acquireSudog",
"runtime.mapiternext",
"runtime.mapiterinit",
"runtime.makemap_small",
"runtime.(*mspan).nextFreeIndex",
"runtime.heapBits.forwardOrBoundary",
"runtime.heapBits.forward",
"runtime.duffzero",
"runtime.(*waitq).enqueue",
"runtime.(*waitq).dequeueSudoG",
"github.com/pyroscope-io/pyroscope/pkg/agent/gospy.numGC",
"runtime.ReadMemStats",
"runtime.ReadMemStats.func1",
"runtime.readmemstats_m",
"runtime.updatememstats",
"runtime.flushallmcaches",
"runtime.flushmcache",
"github.com/pyroscope-io/pyroscope/pkg/agent/gospy.(*GoSpy).Snapshot",
"sync.(*Mutex).Unlock",
"runtime/pprof.writeHeap",
"runtime/pprof.writeHeapInternal",
"strings.HasPrefix",
"runtime/pprof.writeHeapProto",
"runtime/pprof.newProfileBuilder",
"runtime/pprof.(*profileBuilder).readMapping",
"runtime/pprof.parseProcSelfMaps",
"runtime/pprof.parseProcSelfMaps.func1",
"runtime/pprof.elfBuildID",
"os.(*File).pread",
"internal/poll.(*FD).Pread",
"syscall.Pread",
"syscall.Syscall6",
"os.(*File).Close",
"os.(*file).close",
"runtime.SetFinalizer",
"os.ReadFile",
"os.(*File).read",
"syscall.Read",
"syscall.read",
"syscall.Syscall",
"runtime/pprof.(*profileBuilder).pbValueType",
"runtime/pprof.(*protobuf).varint",
"runtime/pprof.(*profileBuilder).pbSample",
"runtime/pprof.writeHeapProto.func1",
"runtime/pprof.(*profileBuilder).pbLabel",
"runtime/pprof.(*protobuf).int64Opt",
"runtime/pprof.(*protobuf).uint64s",
"runtime/pprof.(*protobuf).endMessage",
"runtime/pprof.(*profileBuilder).build",
"runtime/pprof.(*protobuf).string",
"compress/flate.(*Writer).Write",
"compress/flate.(*compressor).write",
"compress/flate.(*compressor).fillStore",
"compress/flate.(*Writer).Close",
"compress/flate.(*compressor).close",
"compress/flate.(*compressor).encSpeed",
"compress/flate.hash",
"compress/flate.(*huffmanBitWriter).writeBlockDynamic",
"compress/flate.token.length",
"compress/flate.lengthCode",
"compress/flate.(*huffmanBitWriter).writeTokens",
"compress/flate.(*huffmanBitWriter).writeCode",
"compress/flate.(*huffmanBitWriter).indexTokens",
"compress/flate.(*huffmanEncoder).generate",
"compress/flate.(*byLiteral).sort",
"sort.Sort",
"sort.quickSort",
"sort.doPivot",
"sort.insertionSort",
"compress/flate.byLiteral.Swap",
"compress/flate.(*byFreq).sort",
"compress/flate.(*deflateFast).encode",
"compress/flate.emitLiteral",
"compress/flate.(*deflateFast).matchLen",
"runtime/pprof.(*profileBuilder).appendLocsForStack",
"runtime/pprof.runtime_expandFinalInlineFrame",
"runtime/pprof.allFrames",
"runtime.divRoundUp",
"runtime.(*Frames).Next",
"runtime.pcdatavalue1",
"runtime.readvarint",
"runtime.gostringnocopy",
"runtime.findnull",
"runtime.funcline1",
"runtime/pprof.(*profileBuilder).stringIndex",
"runtime.mapassign_faststr",
"runtime.hashGrow",
"runtime.makeBucketArray",
"runtime.newarray",
"runtime/pprof.(*profileBuilder).emitLocation",
"runtime/pprof.(*profileBuilder).pbLine",
"runtime/pprof.(*profileBuilder).flush",
"compress/gzip.(*Writer).Write",
"compress/flate.NewWriter",
"compress/flate.newDeflateFast",
"runtime.(*pageAlloc).find",
"aeshashbody",
"runtime.mapassign_fast64",
"runtime.growWork_fast64",
"runtime.evacuate_fast64",
"runtime.mapaccess1_faststr",
"runtime.add",
"runtime.mapaccess2_fast64",
"runtime.CallersFrames",
"runtime.funcline",
"runtime.FuncForPC",
"runtime.funcdata",
"runtime.MemProfile",
"runtime.record",
"runtime.(*bucket).mp",
"runtime.GC",
"runtime.offAddr.lessThan",
"runtime.(*fixalloc).free",
"runtime.(*mspan).countAlloc",
"github.com/valyala/bytebufferpool.(*ByteBuffer).WriteString",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Profile).Get",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*cache).pprofLabelsToSpyLabels",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.getCacheKey",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Profile).findFunctionName",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Profile).findLocation",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Profile).findLocation.func1",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Profile).findFunction",
"github.com/pyroscope-io/pyroscope/pkg/storage/tree.(*Profile).findFunction.func1",
"github.com/pyroscope-io/pyroscope/pkg/agent/gospy.(*GoSpy).Snapshot.func3",
"github.com/pyroscope-io/pyroscope/pkg/agent.(*ProfileSession).takeSnapshots.func1",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*Trie).Insert",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.newTrieNode",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*trieNode).findNodeAt",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*trieNode).insert",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*Trie).Insert.func1",
"github.com/pyroscope-io/pyroscope/pkg/agent/gospy.getHeapProfile",
"io/ioutil.ReadAll",
"io.ReadAll",
"compress/gzip.(*Reader).Read",
"compress/flate.(*decompressor).Read",
"compress/flate.(*dictDecoder).writeByte",
"compress/flate.(*decompressor).nextBlock",
"compress/flate.(*decompressor).readHuffman",
"compress/flate.(*huffmanDecoder).init",
"compress/flate.(*decompressor).huffSym",
"compress/flate.(*decompressor).huffmanBlock",
"compress/flate.noEOF",
"github.com/pyroscope-io/pyroscope/pkg/convert.ParsePprof",
"google.golang.org/protobuf/proto.Unmarshal",
"google.golang.org/protobuf/proto.UnmarshalOptions.unmarshal",
"google.golang.org/protobuf/internal/impl.(*MessageInfo).unmarshal",
"google.golang.org/protobuf/internal/impl.(*MessageInfo).unmarshalPointer",
"google.golang.org/protobuf/internal/impl.consumeMessageSliceInfo",
"reflect.New",
"reflect.unsafe_New",
"reflect.(*rtype).ptrTo",
"google.golang.org/protobuf/internal/impl.consumeUint64Slice",
"google.golang.org/protobuf/internal/impl.consumeUint64",
"reflect.(*rtype).typeOff",
"runtime.(*_type).typeOff",
"reflect.resolveTypeOff",
"google.golang.org/protobuf/encoding/protowire.ConsumeBytes",
"google.golang.org/protobuf/internal/impl.consumeInt64Slice",
"github.com/pyroscope-io/pyroscope/pkg/agent.(*ProfileSession).reset",
"github.com/pyroscope-io/pyroscope/pkg/agent.(*ProfileSession).uploadTries",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*Trie).Diff",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*Trie).Diff.func1",
"github.com/pyroscope-io/pyroscope/pkg/structs/transporttrie.(*trieNode).clone",
"github.com/pyroscope-io/pyroscope/pkg/agent.addSuffix",
"runtime.intstring",
"github.com/pyroscope-io/pyroscope/pkg/agent.(*ProfileSession).isDueForReset",
"time.Time.Truncate",
"time.div",
"time.Time.Add",
"time.(*Time).addSec",
"time.(*Time).nsec",
"github.com/dgraph-io/badger/v2/y.(*WaterMark).process",
"runtime.typedmemmove",
"github.com/dgraph-io/badger/v2/y.(*WaterMark).process.func1",
"runtime.convT64",
"container/heap.Push",
"github.com/dgraph-io/badger/v2/y.(*uint64Heap).Push",
"github.com/dgraph-io/badger/v2.(*levelsController).runCompactor",
"github.com/dgraph-io/badger/v2.(*levelsController).pickCompactLevels",
"sync.(*RWMutex).RLock",
"sort.Slice",
"sort.quickSort_func",
"internal/reflectlite.escapes",
"internal/reflectlite.ValueOf",
"internal/reflectlite.Swapper",
"internal/reflectlite.Value.Len",
"github.com/dgraph-io/badger/v2.(*compactStatus).overlapsWith",
"github.com/dgraph-io/badger/v2.(*levelCompactStatus).overlapsWith",
"github.com/dgraph-io/badger/v2.(*compactStatus).delSize",
"sync.(*RWMutex).RUnlock",
"github.com/dgraph-io/badger/v2.(*levelsController).isLevel0Compactable",
"github.com/dgraph-io/badger/v2.(*levelHandler).numTables",
"github.com/dgraph-io/badger/v2.(*levelsController).doCompact",
"github.com/dgraph-io/badger/v2.(*levelsController).runCompactDef",
"github.com/dgraph-io/badger/v2.(*levelsController).compactBuildTables",
"github.com/dgraph-io/badger/v2/table.(*MergeIterator).Value",
"github.com/dgraph-io/badger/v2/table.(*Iterator).Next",
"github.com/dgraph-io/badger/v2/table.(*Iterator).next",
"github.com/dgraph-io/badger/v2/table.(*Table).block",
"github.com/dgraph-io/badger/v2/y.ZSTDDecompress",
"github.com/DataDog/zstd.Decompress",
"github.com/DataDog/zstd.Decompress.func1",
"github.com/DataDog/zstd._Cfunc_ZSTD_decompress_wrapper",
"runtime.cgocall",
"github.com/dgraph-io/badger/v2/table.(*MergeIterator).Key",
"github.com/dgraph-io/badger/v2.(*levelHandler).isCompactable",
"github.com/dgraph-io/badger/v2.(*levelHandler).getTotalSize",
"github.com/dgraph-io/badger/v2.(*DB).updateSize",
"github.com/dgraph-io/badger/v2.(*DB).calculateSize",
"expvar.(*Map).Set",
"sync.(*Map).Store",
"sync.(*entry).tryStore",
"github.com/dgraph-io/badger/v2.(*DB).doWrites.func1",
"github.com/dgraph-io/badger/v2.(*DB).writeRequests",
"sync.(*WaitGroup).Done",
"sync.(*WaitGroup).Add",
"sync.runtime_Semrelease",
"runtime.semrelease1",
"runtime.readyWithTime",
"github.com/dgraph-io/badger/v2.(*valueLog).write",
"github.com/dgraph-io/badger/v2/y.Check2",
"github.com/dgraph-io/badger/v2/y.Check",
"github.com/dgraph-io/badger/v2.(*valueLog).write.func2",
"github.com/dgraph-io/badger/v2.(*valueLog).write.func1",
"os.(*File).write",
"syscall.Write",
"syscall.write",
"github.com/dgraph-io/badger/v2.(*logFile).encodeEntry",
"hash/crc32.New",
"runtime.stackalloc",
"runtime.stackcacherefill",
"runtime.stackpoolalloc",
"runtime.getStackMap",
"runtime.adjustdefers",
"hash/crc32.(*digest).Write",
"hash/crc32.archUpdateCastagnoli",
"hash/crc32.castagnoliSSE42Triple",
"bytes.makeSlice",
"github.com/dgraph-io/badger/v2.(*DB).writeToLSM",
"github.com/dgraph-io/badger/v2/skl.(*Skiplist).Put",
"github.com/dgraph-io/badger/v2.(*DB).doWrites",
"runtime.newproc",
"runtime.newproc.func1",
"runtime.newproc1",
"runtime.gfget",
"runtime.gfget.func1",
"runtime.(*mSpanList).remove"
],
"levels": [
[0, 3797, 0, 0],
[
0, 3, 0, 631, 0, 23, 0, 603, 0, 1, 0, 598, 0, 111, 8, 568, 0, 8, 0, 562,
0, 572, 16, 385, 0, 68, 0, 317, 0, 296, 0, 259, 0, 1, 0, 246, 0, 1, 0,
240, 0, 6, 0, 183, 0, 4, 0, 153, 0, 9, 0, 151, 0, 34, 1, 139, 0, 1036,
1, 99, 0, 1620, 0, 15, 0, 3, 3, 14, 0, 1, 0, 1
],
[
0, 1, 0, 632, 0, 2, 0, 386, 0, 23, 0, 604, 0, 1, 0, 599, 8, 9, 0, 596,
0, 5, 0, 583, 0, 6, 3, 581, 0, 43, 11, 569, 0, 1, 1, 400, 0, 39, 13,
386, 0, 5, 2, 564, 0, 3, 0, 386, 16, 19, 7, 556, 0, 12, 0, 549, 0, 355,
13, 408, 0, 2, 0, 401, 0, 1, 1, 400, 0, 1, 1, 399, 0, 2, 2, 398, 0, 31,
0, 394, 0, 13, 9, 393, 0, 2, 2, 392, 0, 71, 6, 227, 0, 47, 16, 386, 0,
68, 0, 318, 0, 296, 0, 260, 0, 1, 0, 247, 0, 1, 0, 241, 0, 2, 0, 226, 0,
1, 0, 222, 0, 3, 0, 184, 0, 4, 0, 154, 0, 4, 4, 152, 0, 2, 2, 15, 0, 3,
3, 11, 1, 33, 6, 140, 1, 4, 0, 130, 0, 1031, 0, 11, 0, 1, 0, 98, 0, 35,
0, 93, 0, 1584, 5, 16, 3, 1, 0, 2
],
[
0, 1, 0, 11, 0, 2, 0, 17, 0, 1, 0, 629, 0, 20, 0, 610, 0, 2, 0, 605, 0,
1, 0, 600, 8, 7, 5, 597, 0, 2, 2, 570, 0, 5, 0, 584, 3, 1, 1, 582, 0, 2,
2, 570, 11, 2, 1, 579, 0, 10, 5, 577, 0, 18, 2, 571, 0, 2, 2, 570, 14,
2, 2, 391, 0, 10, 10, 390, 0, 1, 0, 32, 0, 5, 5, 389, 0, 1, 1, 30, 0, 7,
7, 388, 2, 2, 0, 566, 0, 1, 0, 565, 0, 1, 1, 390, 0, 2, 0, 563, 23, 2,
0, 68, 0, 10, 2, 557, 0, 12, 0, 550, 13, 56, 0, 521, 0, 137, 3, 506, 0,
5, 1, 505, 0, 38, 0, 501, 0, 104, 0, 410, 0, 2, 2, 409, 0, 2, 0, 402, 4,
31, 2, 227, 9, 4, 4, 392, 8, 3, 3, 81, 0, 54, 21, 5, 0, 8, 8, 285, 16,
1, 1, 391, 0, 9, 9, 390, 0, 7, 0, 32, 0, 3, 3, 389, 0, 7, 7, 388, 0, 2,
2, 387, 0, 2, 0, 17, 0, 68, 0, 319, 0, 5, 0, 313, 0, 200, 0, 293, 0, 90,
0, 264, 0, 1, 0, 261, 0, 1, 0, 248, 0, 1, 0, 242, 0, 1, 0, 235, 0, 1, 0,
227, 0, 1, 0, 223, 0, 3, 0, 185, 0, 4, 0, 155, 16, 7, 1, 148, 0, 19, 4,
53, 0, 1, 1, 141, 1, 2, 0, 136, 0, 2, 0, 11, 0, 1031, 0, 100, 0, 1, 0,
20, 0, 1, 1, 97, 0, 20, 0, 94, 0, 12, 0, 32, 0, 2, 0, 17, 5, 1, 1, 79,
0, 2, 1, 91, 0, 1567, 14, 20, 0, 1, 1, 19, 0, 8, 0, 17, 3, 1, 0, 3
],
[
0, 1, 0, 633, 0, 2, 2, 18, 0, 1, 1, 630, 0, 9, 0, 618, 0, 10, 0, 613, 0,
1, 0, 611, 0, 2, 0, 606, 0, 1, 0, 601, 13, 2, 2, 580, 2, 5, 0, 585, 18,
1, 1, 580, 5, 5, 5, 578, 2, 10, 8, 575, 0, 1, 1, 574, 0, 3, 3, 573, 0,
2, 2, 572, 28, 1, 1, 33, 15, 2, 2, 567, 0, 1, 1, 285, 1, 2, 2, 126, 23,
1, 1, 14, 0, 1, 1, 69, 2, 1, 1, 561, 0, 5, 2, 559, 0, 2, 2, 558, 0, 1,
0, 554, 0, 11, 1, 551, 13, 30, 0, 533, 0, 26, 0, 522, 3, 63, 0, 514, 0,
68, 10, 509, 0, 3, 1, 507, 1, 4, 4, 126, 0, 38, 10, 140, 0, 104, 1, 411,
2, 2, 0, 11, 6, 20, 6, 5, 0, 9, 9, 285, 45, 4, 0, 6, 0, 1, 1, 110, 0,
12, 12, 114, 0, 12, 12, 267, 0, 4, 4, 269, 34, 7, 7, 33, 12, 2, 2, 18,
0, 43, 0, 333, 0, 1, 0, 329, 0, 22, 3, 321, 0, 2, 0, 246, 0, 5, 0, 314,
0, 200, 17, 294, 0, 90, 3, 265, 0, 1, 0, 262, 0, 1, 0, 249, 0, 1, 0,
243, 0, 1, 0, 236, 0, 1, 0, 5, 0, 1, 0, 224, 0, 3, 0, 186, 0, 1, 0, 174,
0, 3, 0, 156, 17, 1, 1, 150, 0, 5, 5, 149, 4, 3, 3, 147, 0, 5, 0, 144,
0, 1, 1, 143, 0, 6, 3, 54, 2, 2, 0, 11, 0, 1, 0, 133, 0, 1, 0, 131, 0,
16, 16, 119, 0, 1015, 224, 101, 0, 1, 0, 40, 1, 20, 0, 20, 0, 12, 10,
33, 0, 2, 2, 18, 7, 1, 1, 92, 14, 3, 3, 90, 0, 27, 27, 89, 0, 2, 2, 88,
0, 14, 14, 87, 0, 4, 3, 86, 0, 6, 6, 85, 0, 1195, 168, 40, 0, 1, 1, 39,
0, 11, 1, 32, 0, 37, 22, 14, 0, 1, 1, 36, 0, 14, 14, 35, 0, 20, 20, 34,
0, 208, 2, 22, 0, 1, 1, 21, 0, 9, 2, 17, 1, 8, 8, 18, 3, 1, 0, 4
],
[
0, 1, 0, 634, 3, 2, 0, 288, 0, 1, 0, 625, 0, 6, 0, 619, 0, 10, 0, 614,
0, 1, 1, 612, 0, 2, 0, 607, 0, 1, 1, 602, 17, 1, 1, 595, 0, 2, 0, 218,
0, 2, 0, 586, 39, 2, 2, 576, 86, 3, 3, 560, 2, 1, 0, 329, 1, 2, 0, 553,
0, 8, 2, 518, 13, 30, 0, 534, 0, 26, 0, 523, 3, 63, 2, 515, 10, 25, 1,
512, 0, 33, 2, 510, 1, 1, 1, 508, 0, 1, 0, 227, 15, 13, 0, 148, 0, 2, 2,
504, 0, 13, 0, 53, 1, 3, 0, 498, 0, 2, 0, 4, 0, 96, 0, 413, 0, 2, 2,
412, 2, 2, 0, 403, 12, 4, 0, 6, 0, 1, 1, 114, 0, 8, 8, 267, 0, 1, 1,
269, 54, 4, 0, 7, 84, 10, 0, 352, 0, 1, 0, 371, 0, 31, 0, 335, 0, 1, 0,
334, 0, 1, 0, 330, 3, 2, 0, 323, 0, 2, 0, 322, 0, 11, 4, 266, 0, 1, 0,
227, 0, 3, 1, 278, 0, 2, 0, 247, 0, 1, 0, 316, 0, 1, 0, 270, 0, 3, 0,
266, 17, 8, 8, 290, 0, 1, 0, 306, 0, 55, 13, 286, 0, 108, 10, 266, 0, 2,
2, 295, 0, 9, 3, 278, 3, 1, 1, 290, 0, 50, 0, 283, 0, 20, 0, 276, 0, 3,
0, 271, 0, 3, 0, 270, 0, 10, 1, 266, 0, 1, 1, 263, 0, 1, 0, 250, 0, 1,
0, 244, 0, 1, 0, 237, 0, 1, 0, 228, 0, 1, 1, 225, 0, 3, 0, 187, 0, 1, 0,
175, 0, 3, 0, 157, 30, 5, 0, 11, 4, 3, 3, 142, 2, 2, 0, 137, 0, 1, 0,
134, 0, 1, 1, 132, 240, 120, 1, 123, 0, 49, 0, 120, 0, 1, 1, 119, 0, 1,
1, 118, 0, 1, 1, 110, 0, 2, 2, 117, 0, 6, 6, 116, 0, 13, 13, 115, 0, 25,
25, 114, 0, 565, 325, 103, 0, 8, 8, 102, 0, 1, 0, 41, 1, 1, 1, 64, 0, 2,
0, 86, 0, 10, 2, 40, 0, 3, 0, 32, 0, 2, 2, 14, 0, 2, 0, 17, 10, 2, 2,
38, 73, 1, 1, 79, 174, 1, 1, 80, 0, 11, 5, 48, 0, 165, 46, 64, 0, 23,
20, 14, 0, 438, 56, 62, 0, 9, 9, 26, 0, 18, 18, 25, 0, 23, 12, 60, 0, 2,
2, 59, 0, 9, 9, 58, 0, 10, 1, 55, 0, 317, 4, 41, 0, 1, 0, 17, 2, 10, 9,
33, 22, 15, 15, 37, 37, 206, 1, 23, 3, 7, 7, 18, 12, 1, 0, 5
],
[
0, 1, 0, 635, 3, 1, 0, 289, 0, 1, 1, 126, 0, 1, 0, 626, 0, 6, 0, 227, 0,
10, 0, 615, 1, 2, 0, 608, 19, 2, 0, 219, 0, 2, 1, 586, 132, 1, 0, 330,
1, 2, 0, 553, 2, 6, 0, 552, 13, 30, 0, 535, 0, 25, 0, 524, 0, 1, 0, 266,
5, 59, 0, 516, 0, 1, 1, 491, 0, 1, 0, 227, 11, 24, 15, 281, 2, 31, 21,
281, 2, 1, 0, 5, 15, 1, 1, 150, 0, 12, 12, 149, 2, 2, 2, 147, 0, 6, 0,
144, 0, 4, 4, 54, 0, 1, 0, 32, 1, 1, 1, 500, 0, 2, 1, 499, 0, 2, 0, 5,
0, 3, 0, 496, 0, 6, 0, 495, 0, 37, 0, 465, 0, 36, 0, 439, 0, 4, 0, 433,
0, 1, 0, 431, 0, 9, 0, 414, 4, 2, 1, 404, 12, 2, 0, 7, 0, 2, 0, 395, 64,
4, 0, 8, 84, 10, 0, 198, 0, 1, 0, 372, 0, 31, 0, 336, 0, 1, 0, 68, 0, 1,
0, 331, 3, 2, 0, 324, 0, 1, 0, 208, 0, 1, 0, 5, 4, 6, 1, 5, 0, 1, 1,
126, 0, 1, 0, 5, 1, 2, 2, 126, 0, 2, 0, 248, 0, 1, 0, 270, 0, 1, 1, 126,
0, 3, 1, 5, 25, 1, 0, 307, 13, 42, 17, 270, 10, 1, 1, 81, 0, 1, 1, 302,
0, 83, 26, 5, 0, 1, 1, 126, 0, 11, 11, 285, 0, 1, 1, 30, 5, 6, 6, 126,
4, 1, 0, 291, 0, 47, 23, 284, 0, 2, 0, 227, 0, 20, 0, 277, 0, 3, 0, 4,
0, 1, 0, 266, 0, 2, 2, 126, 1, 9, 1, 5, 1, 1, 0, 251, 0, 1, 1, 245, 0,
1, 0, 238, 0, 1, 0, 229, 1, 3, 0, 185, 0, 1, 0, 176, 0, 3, 0, 158, 30,
2, 0, 145, 0, 1, 0, 32, 0, 2, 0, 17, 9, 2, 0, 134, 0, 1, 0, 135, 242, 2,
2, 129, 0, 117, 5, 124, 0, 32, 32, 122, 0, 17, 0, 121, 374, 7, 7, 113,
0, 2, 2, 112, 0, 11, 11, 111, 0, 1, 1, 110, 0, 72, 72, 109, 0, 38, 38,
108, 0, 36, 36, 107, 0, 30, 30, 106, 0, 1, 1, 105, 0, 42, 42, 104, 8, 1,
0, 44, 2, 2, 2, 79, 2, 1, 1, 96, 0, 2, 2, 64, 0, 1, 1, 95, 0, 3, 3, 14,
0, 1, 1, 58, 0, 3, 1, 33, 2, 2, 1, 18, 266, 5, 5, 50, 0, 1, 1, 49, 46,
6, 6, 84, 0, 113, 17, 65, 20, 3, 3, 37, 56, 382, 382, 63, 39, 1, 0, 32,
0, 10, 10, 61, 12, 9, 5, 56, 4, 20, 6, 48, 0, 287, 5, 44, 0, 6, 5, 42,
0, 1, 1, 18, 11, 1, 1, 38, 75, 1, 0, 32, 0, 2, 2, 31, 0, 2, 2, 30, 0,
200, 2, 24, 22, 1, 0, 6
],
[
0, 1, 0, 636, 3, 1, 0, 628, 1, 1, 1, 627, 0, 6, 0, 5, 0, 10, 0, 616, 1,
2, 0, 609, 19, 2, 1, 218, 1, 1, 1, 586, 132, 1, 0, 555, 1, 2, 0, 553, 2,
3, 0, 266, 0, 2, 0, 227, 0, 1, 0, 278, 13, 30, 0, 536, 0, 25, 0, 525, 0,
1, 1, 126, 5, 2, 1, 291, 0, 56, 44, 518, 0, 1, 0, 517, 1, 1, 1, 81, 26,
9, 9, 513, 23, 10, 10, 511, 2, 1, 0, 6, 32, 6, 0, 11, 4, 1, 0, 33, 3, 1,
1, 492, 0, 2, 0, 303, 0, 2, 2, 497, 0, 1, 0, 470, 0, 6, 0, 474, 0, 4, 0,
494, 0, 3, 3, 493, 0, 12, 1, 480, 0, 3, 0, 475, 0, 1, 1, 432, 0, 13, 1,
467, 0, 1, 1, 466, 0, 34, 0, 444, 0, 1, 0, 441, 0, 1, 0, 440, 0, 1, 1,
438, 0, 2, 2, 437, 0, 1, 0, 434, 0, 1, 0, 432, 0, 1, 1, 227, 0, 8, 0,
415, 5, 1, 0, 405, 12, 2, 0, 8, 0, 2, 2, 143, 64, 3, 0, 9, 0, 1, 1, 149,
84, 10, 0, 199, 0, 1, 0, 373, 0, 30, 0, 339, 0, 1, 0, 337, 0, 1, 1, 70,
0, 1, 1, 332, 3, 1, 0, 327, 0, 1, 0, 325, 0, 1, 1, 5, 0, 1, 0, 6, 5, 3,
0, 6, 0, 2, 2, 267, 1, 1, 1, 114, 3, 2, 0, 249, 0, 1, 1, 126, 2, 1, 0,
6, 0, 1, 1, 267, 25, 1, 0, 308, 30, 1, 0, 266, 0, 24, 24, 126, 38, 19,
0, 6, 0, 5, 5, 114, 0, 32, 32, 267, 0, 1, 0, 228, 28, 1, 1, 292, 23, 1,
1, 290, 0, 19, 4, 286, 0, 3, 3, 126, 0, 1, 1, 285, 0, 2, 0, 5, 0, 11, 0,
279, 0, 6, 0, 266, 0, 3, 1, 278, 0, 3, 0, 5, 0, 1, 1, 126, 4, 3, 0, 6,
0, 1, 1, 114, 0, 4, 4, 267, 1, 1, 0, 252, 1, 1, 1, 239, 0, 1, 0, 230, 1,
3, 0, 185, 0, 1, 0, 177, 0, 3, 0, 159, 30, 2, 2, 146, 0, 1, 1, 33, 0, 2,
2, 18, 9, 2, 0, 138, 0, 1, 1, 107, 249, 76, 76, 122, 0, 6, 4, 127, 0, 2,
2, 126, 0, 28, 0, 125, 32, 17, 17, 92, 622, 1, 1, 45, 15, 2, 2, 38, 3,
1, 0, 28, 341, 96, 2, 66, 500, 1, 1, 33, 27, 4, 4, 57, 10, 11, 10, 50,
0, 3, 3, 49, 5, 8, 8, 47, 0, 274, 22, 45, 5, 1, 1, 43, 88, 1, 1, 33, 6,
195, 3, 27, 0, 2, 2, 26, 0, 1, 1, 25, 22, 1, 0, 7
],
[
0, 1, 0, 620, 3, 1, 0, 4, 2, 6, 0, 267, 0, 10, 0, 617, 1, 2, 0, 75, 20,
1, 0, 219, 134, 1, 0, 358, 1, 2, 0, 553, 2, 2, 0, 5, 0, 1, 1, 126, 0, 2,
1, 5, 0, 1, 1, 126, 13, 30, 1, 537, 0, 6, 3, 531, 0, 17, 0, 527, 0, 2,
2, 526, 7, 1, 1, 292, 44, 1, 1, 520, 0, 7, 0, 519, 0, 1, 0, 5, 0, 2, 2,
126, 0, 1, 1, 285, 0, 1, 0, 227, 72, 1, 0, 7, 32, 3, 0, 145, 0, 2, 0,
32, 0, 1, 0, 17, 4, 1, 1, 38, 4, 2, 0, 10, 2, 1, 1, 234, 0, 6, 0, 234,
0, 4, 0, 227, 4, 1, 1, 492, 0, 1, 0, 266, 0, 1, 1, 491, 0, 3, 0, 488, 0,
1, 0, 476, 0, 1, 0, 482, 0, 1, 1, 481, 0, 2, 2, 432, 0, 2, 2, 263, 0, 1,
0, 476, 2, 10, 0, 469, 0, 2, 0, 227, 1, 34, 0, 445, 0, 1, 0, 442, 0, 1,
0, 266, 3, 1, 0, 435, 0, 1, 0, 266, 1, 4, 0, 426, 0, 4, 0, 416, 5, 1, 0,
406, 12, 1, 0, 9, 0, 1, 1, 143, 66, 3, 1, 10, 85, 1, 0, 384, 0, 7, 0,
200, 0, 1, 0, 377, 0, 1, 1, 263, 0, 1, 0, 374, 0, 30, 0, 340, 0, 1, 0,
338, 5, 1, 1, 328, 0, 1, 1, 326, 1, 1, 0, 7, 5, 3, 0, 7, 7, 2, 0, 250,
3, 1, 0, 7, 26, 1, 0, 309, 30, 1, 0, 5, 62, 19, 0, 7, 37, 1, 0, 229, 57,
14, 8, 288, 0, 1, 1, 287, 4, 1, 1, 6, 0, 1, 1, 267, 0, 11, 0, 280, 0, 6,
1, 5, 1, 2, 2, 126, 0, 3, 0, 6, 5, 3, 0, 7, 6, 1, 0, 253, 2, 1, 0, 11,
1, 3, 0, 188, 0, 1, 0, 178, 0, 3, 0, 160, 44, 2, 0, 50, 330, 2, 2, 128,
2, 28, 28, 92, 692, 1, 1, 29, 343, 7, 7, 83, 0, 87, 8, 67, 552, 1, 0,
51, 38, 252, 10, 46, 104, 192, 3, 28, 25, 1, 0, 8
],
[
0, 1, 0, 621, 3, 1, 0, 5, 2, 6, 0, 256, 0, 10, 10, 430, 1, 2, 0, 11, 20,
1, 0, 218, 134, 1, 1, 302, 1, 2, 0, 553, 2, 1, 1, 114, 0, 1, 1, 267, 2,
1, 1, 269, 15, 29, 1, 538, 3, 3, 3, 530, 0, 14, 6, 531, 0, 3, 0, 528,
55, 5, 0, 266, 0, 2, 0, 227, 0, 1, 0, 6, 3, 1, 1, 5, 72, 1, 1, 8, 32, 1,
1, 503, 0, 2, 1, 146, 0, 2, 2, 33, 0, 1, 1, 18, 9, 1, 1, 269, 0, 1, 0,
11, 3, 6, 6, 381, 0, 3, 1, 5, 0, 1, 1, 285, 5, 1, 1, 5, 1, 1, 0, 489, 0,
2, 0, 477, 0, 1, 1, 487, 0, 1, 0, 483, 5, 1, 0, 477, 2, 5, 1, 474, 0, 2,
0, 472, 0, 3, 0, 470, 0, 1, 1, 468, 0, 1, 1, 5, 1, 34, 0, 446, 0, 1, 0,
443, 0, 1, 0, 5, 3, 1, 1, 436, 0, 1, 1, 285, 1, 4, 0, 427, 0, 1, 0, 325,
0, 2, 0, 418, 0, 1, 1, 417, 5, 1, 0, 407, 12, 1, 0, 297, 68, 1, 1, 269,
0, 1, 0, 11, 85, 1, 1, 227, 0, 7, 0, 379, 0, 1, 1, 378, 1, 1, 0, 375, 0,
7, 0, 352, 0, 1, 0, 347, 0, 13, 0, 345, 0, 7, 1, 207, 0, 2, 0, 341, 0,
1, 0, 4, 8, 1, 0, 52, 5, 2, 0, 8, 0, 1, 0, 52, 7, 2, 0, 251, 3, 1, 0, 8,
26, 1, 0, 310, 30, 1, 0, 303, 62, 16, 0, 8, 0, 3, 0, 52, 37, 1, 0, 230,
65, 3, 1, 289, 0, 3, 3, 126, 7, 3, 3, 126, 0, 8, 5, 281, 1, 1, 1, 6, 0,
3, 3, 267, 0, 1, 1, 269, 3, 3, 0, 7, 5, 3, 0, 8, 6, 1, 0, 254, 2, 1, 0,
231, 1, 3, 0, 189, 0, 1, 0, 179, 0, 3, 0, 161, 44, 2, 1, 51, 1413, 68,
6, 72, 0, 11, 2, 68, 552, 1, 0, 52, 48, 242, 242, 29, 107, 189, 189, 29,
25, 1, 0, 9
],
[
0, 1, 0, 622, 3, 1, 0, 303, 2, 6, 0, 257, 11, 2, 0, 76, 20, 1, 0, 219,
136, 2, 0, 553, 23, 24, 5, 537, 0, 4, 0, 539, 12, 7, 6, 530, 0, 1, 1,
532, 0, 1, 1, 530, 0, 2, 0, 529, 55, 4, 2, 5, 0, 1, 1, 285, 0, 1, 0, 5,
0, 1, 1, 285, 0, 1, 0, 7, 111, 1, 1, 502, 13, 1, 0, 12, 10, 1, 0, 6, 0,
1, 1, 114, 8, 1, 1, 490, 0, 2, 0, 478, 1, 1, 0, 484, 5, 1, 0, 478, 3, 4,
1, 234, 0, 2, 0, 473, 0, 3, 0, 234, 3, 16, 8, 462, 0, 17, 0, 448, 0, 1,
1, 447, 0, 1, 1, 126, 0, 1, 0, 6, 6, 4, 0, 428, 0, 1, 1, 326, 0, 1, 0,
423, 0, 1, 0, 419, 6, 1, 0, 51, 12, 1, 0, 396, 69, 1, 1, 12, 86, 1, 1,
383, 0, 3, 1, 382, 0, 2, 1, 380, 0, 1, 0, 204, 2, 1, 1, 376, 0, 7, 0,
198, 0, 1, 0, 348, 0, 13, 0, 346, 1, 3, 0, 208, 0, 3, 0, 342, 0, 2, 1,
278, 0, 1, 1, 5, 8, 1, 1, 54, 5, 2, 0, 9, 0, 1, 0, 54, 7, 2, 0, 320, 3,
1, 0, 9, 26, 1, 0, 311, 30, 1, 0, 10, 62, 16, 0, 9, 0, 3, 3, 54, 37, 1,
0, 11, 66, 2, 0, 4, 18, 3, 3, 282, 9, 3, 0, 8, 5, 3, 0, 9, 6, 1, 0, 255,
2, 1, 0, 232, 1, 3, 0, 190, 0, 1, 0, 159, 0, 3, 0, 162, 45, 1, 0, 52,
1419, 13, 13, 82, 0, 48, 17, 73, 0, 1, 0, 32, 2, 6, 4, 70, 0, 3, 3, 69,
552, 1, 0, 53, 611, 1, 0, 10
],
[
0, 1, 1, 637, 3, 1, 0, 297, 2, 1, 1, 624, 0, 4, 1, 232, 0, 1, 0, 620,
11, 2, 0, 77, 20, 1, 0, 587, 136, 2, 0, 553, 28, 2, 1, 548, 0, 8, 0,
538, 0, 1, 1, 543, 0, 8, 3, 542, 0, 1, 1, 541, 0, 3, 0, 540, 18, 1, 1,
206, 2, 2, 0, 4, 57, 1, 0, 6, 0, 1, 1, 267, 1, 1, 1, 267, 1, 1, 0, 8,
125, 1, 0, 13, 10, 1, 0, 7, 10, 2, 0, 479, 1, 1, 0, 485, 5, 1, 0, 479,
4, 3, 3, 381, 0, 2, 2, 326, 0, 1, 1, 471, 0, 2, 2, 381, 11, 6, 6, 464,
0, 1, 1, 463, 0, 1, 1, 126, 0, 9, 2, 453, 0, 5, 4, 451, 0, 2, 2, 450, 0,
1, 1, 449, 2, 1, 0, 7, 6, 4, 0, 429, 1, 1, 0, 424, 0, 1, 0, 420, 6, 1,
1, 315, 12, 1, 1, 397, 158, 2, 0, 278, 1, 1, 0, 227, 0, 1, 0, 205, 3, 7,
0, 199, 0, 1, 0, 349, 0, 13, 0, 346, 1, 3, 0, 281, 0, 3, 0, 227, 1, 1,
1, 126, 15, 2, 0, 10, 0, 1, 1, 142, 7, 2, 2, 253, 3, 1, 0, 10, 26, 1, 1,
312, 30, 1, 0, 11, 62, 15, 0, 10, 0, 1, 0, 297, 40, 1, 0, 231, 66, 2, 2,
5, 30, 3, 0, 9, 5, 3, 0, 10, 6, 1, 0, 256, 2, 1, 0, 233, 1, 3, 0, 185,
0, 1, 0, 160, 0, 3, 0, 163, 45, 1, 0, 53, 1449, 31, 1, 74, 0, 1, 1, 33,
6, 2, 2, 71, 555, 1, 1, 54, 611, 1, 0, 11
],
[
4, 1, 1, 269, 4, 1, 0, 258, 0, 2, 0, 233, 0, 1, 0, 621, 11, 2, 0, 23,
20, 1, 0, 588, 136, 2, 0, 553, 29, 1, 0, 266, 0, 1, 1, 547, 0, 1, 1,
537, 0, 6, 1, 539, 4, 5, 1, 266, 1, 2, 1, 5, 0, 1, 1, 30, 21, 2, 0, 5,
57, 1, 0, 395, 4, 1, 1, 149, 125, 1, 0, 272, 10, 1, 0, 8, 10, 2, 0, 5,
1, 1, 0, 227, 5, 1, 0, 5, 33, 2, 0, 461, 0, 5, 0, 454, 4, 1, 1, 452, 5,
1, 0, 8, 6, 4, 4, 430, 1, 1, 0, 425, 0, 1, 0, 421, 178, 2, 2, 126, 1, 1,
0, 5, 0, 1, 1, 353, 3, 7, 0, 200, 0, 1, 0, 350, 0, 12, 1, 346, 0, 1, 0,
4, 1, 3, 0, 343, 0, 3, 1, 5, 17, 2, 2, 269, 13, 1, 0, 11, 57, 1, 0, 12,
62, 10, 10, 269, 0, 5, 0, 11, 0, 1, 1, 269, 40, 1, 0, 232, 98, 3, 0, 10,
5, 1, 1, 269, 0, 2, 0, 11, 6, 1, 0, 257, 2, 1, 1, 234, 1, 3, 0, 185, 0,
1, 0, 180, 0, 2, 0, 170, 0, 1, 0, 164, 45, 1, 0, 54, 1450, 30, 0, 75,
1176, 1, 0, 12
],
[
9, 1, 0, 623, 0, 2, 1, 234, 0, 1, 1, 622, 11, 2, 0, 24, 20, 1, 0, 588,
136, 2, 0, 553, 29, 1, 1, 5, 3, 2, 0, 544, 0, 3, 0, 540, 5, 1, 0, 5, 0,
1, 1, 269, 0, 2, 2, 285, 2, 1, 1, 267, 22, 2, 0, 6, 57, 1, 1, 143, 130,
1, 0, 273, 10, 1, 0, 9, 10, 1, 0, 6, 0, 1, 1, 269, 1, 1, 0, 5, 5, 1, 1,
267, 33, 2, 0, 456, 0, 4, 0, 455, 0, 1, 0, 4, 10, 1, 0, 9, 11, 1, 1,
109, 0, 1, 1, 422, 181, 1, 0, 228, 4, 5, 0, 214, 0, 2, 0, 201, 0, 1, 1,
351, 1, 10, 0, 346, 0, 1, 0, 227, 0, 1, 1, 5, 1, 3, 3, 344, 1, 2, 2,
267, 32, 1, 0, 12, 57, 1, 0, 13, 72, 5, 0, 12, 41, 1, 0, 296, 98, 1, 1,
269, 0, 2, 0, 11, 6, 2, 0, 12, 6, 1, 0, 232, 4, 3, 0, 185, 0, 1, 0, 181,
0, 1, 0, 173, 0, 1, 0, 164, 0, 1, 0, 165, 45, 1, 1, 122, 1450, 30, 5,
76, 1176, 1, 1, 13
],
[
9, 1, 0, 296, 1, 1, 1, 381, 12, 2, 0, 27, 20, 1, 0, 589, 136, 2, 0, 553,
33, 1, 1, 546, 0, 1, 1, 545, 0, 2, 0, 5, 0, 1, 1, 285, 5, 1, 0, 6, 28,
2, 0, 7, 188, 1, 0, 300, 10, 1, 0, 10, 10, 1, 0, 7, 2, 1, 0, 303, 39, 2,
0, 457, 0, 4, 0, 456, 0, 1, 0, 5, 10, 1, 0, 10, 194, 1, 0, 229, 4, 5, 0,
356, 0, 1, 0, 352, 0, 1, 0, 204, 2, 8, 0, 346, 0, 2, 0, 4, 0, 1, 0, 5,
40, 1, 0, 13, 57, 1, 0, 304, 72, 5, 3, 13, 41, 1, 1, 234, 99, 2, 0, 12,
6, 1, 1, 13, 0, 1, 1, 268, 6, 1, 1, 258, 4, 1, 0, 209, 0, 2, 0, 191, 0,
1, 1, 182, 0, 1, 0, 164, 0, 1, 0, 165, 0, 1, 0, 166, 1501, 1, 1, 81, 0,
24, 9, 77
],
[
9, 1, 0, 234, 14, 2, 0, 28, 20, 1, 0, 590, 136, 1, 0, 553, 0, 1, 1, 4,
35, 1, 1, 118, 0, 1, 1, 267, 6, 1, 1, 7, 28, 2, 1, 8, 188, 1, 1, 301,
10, 1, 0, 11, 10, 1, 0, 8, 2, 1, 0, 10, 39, 1, 1, 458, 0, 1, 0, 457, 0,
4, 0, 457, 0, 1, 1, 269, 10, 1, 1, 269, 194, 1, 0, 230, 4, 4, 0, 359, 0,
1, 0, 331, 0, 1, 0, 198, 0, 1, 0, 205, 2, 8, 1, 346, 0, 2, 2, 5, 0, 1,
0, 6, 40, 1, 1, 315, 57, 1, 1, 305, 75, 1, 0, 299, 0, 1, 1, 298, 141, 2,
1, 13, 19, 1, 0, 210, 0, 2, 0, 192, 1, 1, 0, 165, 0, 1, 0, 166, 0, 1, 0,
166, 1511, 1, 1, 80, 0, 6, 6, 79, 0, 3, 3, 78, 0, 5, 2, 23
],
[
9, 1, 1, 381, 14, 2, 2, 29, 20, 1, 0, 591, 136, 1, 0, 553, 74, 1, 1,
149, 199, 1, 0, 12, 10, 1, 0, 9, 2, 1, 0, 11, 40, 1, 0, 457, 0, 4, 0,
457, 206, 1, 0, 11, 4, 4, 0, 360, 0, 1, 0, 332, 0, 1, 0, 199, 0, 1, 1,
353, 3, 5, 0, 346, 0, 2, 0, 227, 2, 1, 0, 7, 174, 1, 0, 300, 143, 1, 0,
272, 19, 1, 0, 211, 0, 2, 0, 193, 1, 1, 1, 166, 0, 1, 0, 167, 0, 1, 0,
166, 1523, 3, 0, 24
],
[
46, 1, 0, 592, 136, 1, 0, 553, 274, 1, 1, 13, 10, 1, 0, 10, 2, 1, 0, 12,
40, 1, 1, 458, 0, 1, 1, 458, 0, 2, 1, 459, 0, 1, 0, 457, 206, 1, 0, 231,
4, 1, 0, 370, 0, 2, 0, 362, 0, 1, 1, 361, 0, 1, 0, 357, 0, 1, 0, 200, 4,
4, 0, 346, 0, 1, 0, 4, 0, 1, 0, 5, 0, 1, 1, 285, 2, 1, 1, 8, 174, 1, 1,
301, 143, 1, 0, 273, 19, 1, 0, 212, 0, 2, 0, 194, 2, 1, 0, 166, 0, 1, 0,
167, 1523, 3, 0, 27
],
[
46, 1, 0, 593, 136, 1, 0, 227, 285, 1, 0, 11, 2, 1, 0, 13, 43, 1, 1,
460, 0, 1, 1, 458, 206, 1, 0, 232, 4, 1, 1, 227, 0, 2, 0, 363, 1, 1, 0,
358, 0, 1, 0, 354, 4, 4, 0, 346, 0, 1, 1, 5, 0, 1, 1, 114, 322, 1, 0,
274, 19, 1, 0, 213, 0, 2, 0, 194, 2, 1, 0, 167, 0, 1, 0, 168, 1523, 3,
0, 28
],
[
46, 1, 1, 594, 136, 1, 0, 5, 285, 1, 0, 12, 2, 1, 0, 272, 251, 1, 0,
296, 5, 1, 0, 366, 0, 1, 0, 364, 1, 1, 1, 285, 0, 1, 0, 355, 4, 4, 1,
346, 324, 1, 1, 275, 19, 1, 0, 214, 0, 2, 0, 194, 2, 1, 0, 166, 0, 1, 1,
169, 1523, 3, 3, 29
],
[
183, 1, 1, 267, 285, 1, 1, 13, 2, 1, 1, 486, 251, 1, 0, 234, 5, 1, 0,
367, 0, 1, 1, 365, 2, 1, 0, 278, 5, 3, 0, 346, 344, 1, 0, 215, 0, 2, 0,
194, 2, 1, 0, 171
],
[
724, 1, 1, 381, 5, 1, 0, 368, 3, 1, 1, 126, 5, 3, 0, 346, 344, 1, 0,
216, 0, 1, 0, 195, 0, 1, 0, 194, 2, 1, 1, 172
],
[
730, 1, 1, 369, 9, 2, 0, 346, 0, 1, 0, 227, 344, 1, 0, 217, 0, 1, 0,
196, 0, 1, 0, 195
],
[740, 2, 0, 346, 0, 1, 1, 5, 344, 1, 0, 218, 0, 1, 0, 207, 0, 1, 0, 196],
[
740, 1, 0, 346, 0, 1, 0, 227, 345, 1, 0, 219, 0, 1, 1, 208, 0, 1, 0, 197
],
[740, 1, 1, 346, 0, 1, 1, 5, 345, 1, 0, 220, 1, 1, 0, 198],
[1087, 1, 1, 221, 1, 1, 0, 199],
[1089, 1, 0, 200],
[1089, 1, 0, 201],
[1089, 1, 0, 202],
[1089, 1, 0, 203],
[1089, 1, 0, 204],
[1089, 1, 0, 205],
[1089, 1, 1, 206]
],
"numTicks": 3797,
"maxSelf": 382,
"spyName": "gospy",
"sampleRate": 100,
"units": "samples",
"format": "single"
},
"metadata": {
"format": "single",
"sampleRate": 100,
"spyName": "gospy",
"units": "samples"
},
"timeline": {
"startTime": 1637177610,
"samples": [
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 15, 15,
16, 14, 16, 22, 14, 14, 13, 13, 10, 22, 13, 15, 13, 13, 17, 24, 13, 15,
15, 13, 14, 21, 16, 17, 13, 15, 14, 25, 13, 15, 16, 16, 19, 24, 14, 18,
13, 18, 19, 26, 16, 13, 15, 15, 14, 20, 16, 15, 13, 15, 13, 26, 12, 16,
16, 15, 16, 22, 18, 13, 15, 16, 15, 23, 15, 15, 17, 15, 12, 25, 16, 14,
16, 13, 16, 23, 14, 15, 11, 14, 11, 19, 16, 16, 13, 17, 15, 25, 17, 13,
16, 14, 15, 24, 17, 16, 13, 15, 14, 25, 10, 13, 13, 14, 16, 23, 16, 14,
13, 13, 16, 26, 15, 17, 16, 16, 14, 22, 17, 16, 17, 15, 18, 24, 17, 12,
14, 15, 17, 25, 13, 16, 19, 16, 13, 22, 15, 12, 16, 17, 12, 21, 14, 13,
13, 14, 13, 22, 18, 15, 16, 15, 16, 23, 17, 17, 14, 16, 15, 24, 16, 17,
16, 14, 14, 23, 16, 15, 15, 17, 15, 24, 18, 14, 15, 16, 16, 26, 19, 17,
17, 15, 17, 24, 16, 16, 15, 17, 16, 27, 18, 15, 14, 16, 16, 27, 17, 18,
16, 17, 16, 26, 16, 16, 16, 17, 17, 27, 18, 19, 19, 17, 18, 27, 18, 17,
16, 17, 20, 23, 19, 17, 18, 17, 19, 27, 16, 21, 14, 16, 16, 30, 15, 18,
20, 15, 18, 0
],
"durationDelta": 10,
"watermarks": {}
}
}