-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_standard.html
6270 lines (6268 loc) · 835 KB
/
example_standard.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Otcpl-dell-9360-kbl Suspend (S3) 5.3.0-rc7+</title>
<style type='text/css'>
body {overflow-y:scroll;}
.stamp {width:100%;text-align:center;background:gray;line-height:30px;color:white;font:25px Arial;}
.stamp.sysinfo {font:10px Arial;}
.callgraph {margin-top:30px;box-shadow:5px 5px 20px black;}
.callgraph article * {padding-left:28px;}
h1 {color:black;font:bold 30px Times;}
t0 {color:black;font:bold 30px Times;}
t1 {color:black;font:30px Times;}
t2 {color:black;font:25px Times;}
t3 {color:black;font:20px Times;white-space:nowrap;}
t4 {color:black;font:bold 30px Times;line-height:60px;white-space:nowrap;}
cS {font:bold 13px Times;}
table {width:100%;}
.gray {background:rgba(80,80,80,0.1);}
.green {background:rgba(204,255,204,0.4);}
.purple {background:rgba(128,0,128,0.2);}
.yellow {background:rgba(255,255,204,0.4);}
.blue {background:rgba(169,208,245,0.4);}
.time1 {font:22px Arial;border:1px solid;}
.time2 {font:15px Arial;border-bottom:1px solid;border-left:1px solid;border-right:1px solid;}
.testfail {font:bold 22px Arial;color:red;border:1px dashed;}
td {text-align:center;}
r {color:#500000;font:15px Tahoma;}
n {color:#505050;font:15px Tahoma;}
.tdhl {color:red;}
.hide {display:none;}
.pf {display:none;}
.pf:checked + label {background:url('data:image/svg+xml;utf,<?xml version="1.0" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" height="18" width="18" version="1.1"><circle cx="9" cy="9" r="8" stroke="black" stroke-width="1" fill="white"/><rect x="4" y="8" width="10" height="2" style="fill:black;stroke-width:0"/><rect x="8" y="4" width="2" height="10" style="fill:black;stroke-width:0"/></svg>') no-repeat left center;}
.pf:not(:checked) ~ label {background:url('data:image/svg+xml;utf,<?xml version="1.0" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" height="18" width="18" version="1.1"><circle cx="9" cy="9" r="8" stroke="black" stroke-width="1" fill="white"/><rect x="4" y="8" width="10" height="2" style="fill:black;stroke-width:0"/></svg>') no-repeat left center;}
.pf:checked ~ *:not(:nth-child(2)) {display:none;}
.zoombox {position:relative;width:100%;overflow-x:scroll;-webkit-user-select:none;-moz-user-select:none;user-select:none;}
.timeline {position:relative;font-size:14px;cursor:pointer;width:100%; overflow:hidden;background:linear-gradient(#cccccc, white);}
.thread {position:absolute;height:0%;overflow:hidden;z-index:7;line-height:30px;font-size:14px;border:1px solid;text-align:center;white-space:nowrap;}
.thread.ps {border-radius:3px;background:linear-gradient(to top, #ccc, #eee);}
.thread:hover {background:white;border:1px solid red;z-index:8;}
.thread.sec,.thread.sec:hover {background:black;border:0;color:white;line-height:15px;font-size:10px;}
.hover {background:white;border:1px solid red;z-index:8;}
.hover.sync {background:white;}
.hover.bg,.hover.kth,.hover.sync,.hover.ps {background:white;}
.jiffie {position:absolute;pointer-events: none;z-index:8;}
.traceevent {position:absolute;font-size:10px;z-index:7;overflow:hidden;color:black;text-align:center;white-space:nowrap;border-radius:5px;border:1px solid black;background:linear-gradient(to bottom right,#CCC,#969696);}
.traceevent:hover {color:white;font-weight:bold;border:1px solid white;}
.phase {position:absolute;overflow:hidden;border:0px;text-align:center;}
.phaselet {float:left;overflow:hidden;border:0px;text-align:center;min-height:100px;font-size:24px;}
.t {position:absolute;line-height:60px;pointer-events:none;top:0;height:100%;border-right:1px solid black;z-index:6;}
.err {position:absolute;top:0%;height:100%;border-right:3px solid red;color:red;font:bold 14px Times;line-height:18px;}
.legend {position:relative; width:100%; height:40px; text-align:center;margin-bottom:20px}
.legend .square {position:absolute;cursor:pointer;top:10px; width:0px;height:20px;border:1px solid;padding-left:20px;}
button {height:40px;width:200px;margin-bottom:20px;margin-top:20px;font-size:24px;}
.btnfmt {position:relative;float:right;height:25px;width:auto;margin-top:3px;margin-bottom:0;font-size:10px;text-align:center;}
.devlist {position:absolute;width:190px;}
a:link {color:white;text-decoration:none;}
a:visited {color:white;}
a:hover {color:white;}
a:active {color:white;}
.version {position:relative;float:left;color:white;font-size:10px;line-height:30px;margin-left:10px;}
#devicedetail {min-height:100px;box-shadow:5px 5px 20px black;}
.tblock {position:absolute;height:100%;background:#ddd;}
.tback {position:absolute;width:100%;background:linear-gradient(#ccc, #ddd);}
.bg {z-index:1;}
</style>
</head>
<body>
<div class="version"><a href="https://01.org/suspendresume">SleepGraph v5.5</a></div><button id="showtest" class="logbtn btnfmt">log</button><button id="showdmesg" class="logbtn btnfmt">dmesg</button><button id="showftrace" class="logbtn btnfmt">ftrace</button><div class="stamp">otcpl-dell-9360-kbl 5.3.0-rc7+ mem September 06 2019, 06:13:14 PM</div>
<div class="stamp sysinfo">Dell Inc. XPS 13 9360 <i>with</i> Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz</div>
<table class="time1">
<tr><td class="green" title="time from kernel enter_state(mem) to low-power mode [kernel & firmware time]">Total Suspend Time: <b>1366 ms</b></td><td class="yellow" title="time from low-power mode to return from kernel enter_state(mem) [firmware & kernel time]">Total Resume Time: <b>769 ms</b></td></tr>
</table>
<table class="time2">
<tr><td class="green" title="time from kernel enter_state(mem) to firmware mode [kernel time only]">Kernel Suspend: 1365.593 ms</td><td class="purple">Firmware Suspend: 0.000 ms</td><td class="purple">Firmware Resume: 0.961 ms</td><td class="yellow" title="time from firmware mode to return from kernel enter_state(mem) [kernel time only]">Kernel Resume: 768.192 ms</td></tr>
</table>
<button id="devlist1" class="devlist" style="float:left;">Device Detail</button><center><button id="zoomin">ZOOM IN +</button><button id="zoomout">ZOOM OUT -</button><button id="zoomdef">ZOOM 1:1</button></center>
<div id="dmesgzoombox" class="zoombox">
<div id="dmesg" class="timeline" style="height:400px">
<div id="blocks0" class="tblock" style="left:0.000000%;width:65.222532%;"><div class="tback" style="height:40px"></div>
<div class="phase" style="left:0.000000%;width:5.852356%;top:40.000px;height:360.000px;background:#CCFFCC"></div>
<div class="phase" style="left:5.852356%;width:88.968741%;top:40.000px;height:360.000px;background:#88FF88"></div>
<div class="phase" style="left:94.821097%;width:1.234929%;top:40.000px;height:360.000px;background:#00AA00"></div>
<div class="phase" style="left:96.056026%;width:3.005503%;top:40.000px;height:360.000px;background:#008888"></div>
<div class="phase" style="left:99.061529%;width:0.938471%;top:40.000px;height:360.000px;background:#0000FF"></div>
<div id="a387" title="0000:00 {pci_bus} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.796263%;top:40.000px;height:360.000px;width:0.000069%;">0000:00 {pci_bus}</div>
<div id="a388" title="0000:00:00.0 {skl_uncore} async_device (0.002 ms) suspend_prepare" class="thread" style="left:5.796402%;top:40.000px;height:360.000px;width:0.000138%;">0000:00:00.0 {skl_uncore}</div>
<div id="a389" title="0000:00:02.0 {i915} async_device (0.004 ms) suspend_prepare" class="thread" style="left:5.796610%;top:40.000px;height:360.000px;width:0.000277%;">0000:00:02.0 {i915}</div>
<div id="a390" title="0000:00:04.0 {proc_thermal} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.796956%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:04.0 {proc_thermal}</div>
<div id="a391" title="0000:00:14.0 {xhci_hcd} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.797094%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:14.0 {xhci_hcd}</div>
<div id="a392" title="0000:00:14.2 {intel_pch_thermal} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.797233%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a393" title="0000:00:15.0 {intel-lpss} async_device (0.013 ms) suspend_prepare" class="thread" style="left:5.797371%;top:40.000px;height:360.000px;width:0.000900%;">0000:00:15.0 {intel-lpss}</div>
<div id="a394" title="0000:00:15.1 {intel-lpss} async_device (0.006 ms) suspend_prepare" class="thread" style="left:5.798341%;top:40.000px;height:360.000px;width:0.000415%;">0000:00:15.1 {intel-lpss}</div>
<div id="a395" title="0000:00:16.0 {mei_me} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.798826%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:16.0 {mei_me}</div>
<div id="a396" title="0000:00:1c.0 {pcieport} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.798964%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1c.0 {pcieport}</div>
<div id="a554" title="0000:00:1c.0:pcie002 {aer} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.814338%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1c.0:pcie002 {aer}</div>
<div id="a555" title="0000:00:1c.0:pcie010 {pci_express} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.814476%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1c.0:pcie010 {pci_express}</div>
<div id="a557" title="0000:00:1c.4:pcie010 {pci_express} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.814684%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1c.4:pcie010 {pci_express}</div>
<div id="a398" title="0000:00:1d.0 {pcieport} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.799172%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1d.0 {pcieport}</div>
<div id="a558" title="0000:00:1d.0:pcie002 {aer} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.814753%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1d.0:pcie002 {aer}</div>
<div id="a399" title="0000:00:1f.0 {pci} async_device (0.002 ms) suspend_prepare" class="thread" style="left:5.799241%;top:40.000px;height:360.000px;width:0.000138%;">0000:00:1f.0 {pci}</div>
<div id="a400" title="0000:00:1f.2 {pci} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.799380%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1f.2 {pci}</div>
<div id="a823" title="0000:00:1f.3 {snd_hda_intel} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.842522%;top:40.000px;height:360.000px;width:0.000069%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a402" title="0000:01 {pci_bus} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.799587%;top:40.000px;height:360.000px;width:0.000069%;">0000:01 {pci_bus}</div>
<div id="a404" title="0000:3a:00.0 {ath10k_pci} async_device (0.002 ms) suspend_prepare" class="thread" style="left:5.799795%;top:40.000px;height:360.000px;width:0.000138%;">0000:3a:00.0 {ath10k_pci}</div>
<div id="a406" title="0000:3b:00.0 {nvme} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.800072%;top:40.000px;height:360.000px;width:0.000069%;">0000:3b:00.0 {nvme}</div>
<div id="a793" title="0018:06CB:76AF.0001 {hid-multitouch} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.838990%;top:40.000px;height:360.000px;width:0.000069%;">0018:06CB:76AF.0001 {hid-multitouch}</div>
<div id="a437" title="PNP0c02 [00:00] {system} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.803604%;top:40.000px;height:360.000px;width:0.000069%;">00:00 {system}</div>
<div id="a438" title="PNP0b00 [00:01] {rtc_cmos} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.803742%;top:40.000px;height:360.000px;width:0.000069%;">00:01 {rtc_cmos}</div>
<div id="a439" title="INT3f0d PNP0c02 [00:02] {system} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.803812%;top:40.000px;height:360.000px;width:0.000069%;">00:02 {system}</div>
<div id="a440" title="PNP0303 [00:03] {i8042 kbd} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.803950%;top:40.000px;height:360.000px;width:0.000069%;">00:03 {i8042 kbd}</div>
<div id="a441" title="DLL075b PNP0f13 [00:04] {i8042 aux} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.804089%;top:40.000px;height:360.000px;width:0.000069%;">00:04 {i8042 aux}</div>
<div id="a442" title="PNP0c02 [00:05] {system} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.804158%;top:40.000px;height:360.000px;width:0.000069%;">00:05 {system}</div>
<div id="a443" title="PNP0c02 [00:06] {system} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.804227%;top:40.000px;height:360.000px;width:0.000069%;">00:06 {system}</div>
<div id="a445" title="PNP0c02 [00:08] {system} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.804435%;top:40.000px;height:360.000px;width:0.000069%;">00:08 {system}</div>
<div id="a736" title="05901221-D566-11D1-B2F0-00A0C9062910 {wmi-bmof} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.832827%;top:40.000px;height:360.000px;width:0.000069%;">05901221-D566-11D1-B2F0-00A0C9062910 {wmi-bmof}</div>
<div id="a775" title="1-2:1.0 {r8152} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.836844%;top:40.000px;height:360.000px;width:0.000069%;">1-2:1.0 {r8152}</div>
<div id="a739" title="0cf3:e301 [1-3] {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.833173%;top:40.000px;height:360.000px;width:0.000069%;">1-3 {usb}</div>
<div id="a905" title="1-3:1.0 {btusb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.851594%;top:40.000px;height:360.000px;width:0.000069%;">1-3:1.0 {btusb}</div>
<div id="a740" title="1-3:1.1 {btusb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.833312%;top:40.000px;height:360.000px;width:0.000069%;">1-3:1.1 {btusb}</div>
<div id="a672" title="2-0:1.0 {hub} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.826110%;top:40.000px;height:360.000px;width:0.000069%;">2-0:1.0 {hub}</div>
<div id="a818" title="7:10 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.841899%;top:40.000px;height:360.000px;width:0.000069%;">7:10 {bdi}</div>
<div id="a820" title="7:11 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.842107%;top:40.000px;height:360.000px;width:0.000069%;">7:11 {bdi}</div>
<div id="a827" title="7:13 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.843007%;top:40.000px;height:360.000px;width:0.000069%;">7:13 {bdi}</div>
<div id="a829" title="7:14 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.843215%;top:40.000px;height:360.000px;width:0.000069%;">7:14 {bdi}</div>
<div id="a832" title="7:15 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.843561%;top:40.000px;height:360.000px;width:0.000069%;">7:15 {bdi}</div>
<div id="a634" title="7:2 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.822440%;top:40.000px;height:360.000px;width:0.000069%;">7:2 {bdi}</div>
<div id="a640" title="7:5 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.822925%;top:40.000px;height:360.000px;width:0.000069%;">7:5 {bdi}</div>
<div id="a644" title="7:7 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.823271%;top:40.000px;height:360.000px;width:0.000069%;">7:7 {bdi}</div>
<div id="a809" title="7:8 {bdi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.840929%;top:40.000px;height:360.000px;width:0.000069%;">7:8 {bdi}</div>
<div id="a731" title="86CCFD48-205E-4A77-9C48-2021CBEDE341 {intel-wmi-thunderbolt} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.832065%;top:40.000px;height:360.000px;width:0.000069%;">86CCFD48-205E-4A77-9C48-2021CBEDE341 {intel-wmi-thunderbolt}</div>
<div id="a733" title="8D9DDCBC-A997-11DA-B012-B622A1EF5492 {dell-wmi-descriptor} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.832342%;top:40.000px;height:360.000px;width:0.000069%;">8D9DDCBC-A997-11DA-B012-B622A1EF5492 {dell-wmi-descriptor}</div>
<div id="a735" title="9DBB5994-A997-11DA-B012-B622A1EF5492 {dell-wmi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.832689%;top:40.000px;height:360.000px;width:0.000069%;">9DBB5994-A997-11DA-B012-B622A1EF5492 {dell-wmi}</div>
<div id="a734" title="A80593CE-A997-11DA-B012-B622A1EF5492 {dell-smbios} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.832550%;top:40.000px;height:360.000px;width:0.000069%;">A80593CE-A997-11DA-B012-B622A1EF5492 {dell-smbios}</div>
<div id="a560" title="AC {power_supply} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815030%;top:40.000px;height:360.000px;width:0.000069%;">AC {power_supply}</div>
<div id="a426" title="ACPI0003:00 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.802219%;top:40.000px;height:360.000px;width:0.000069%;">ACPI0003:00 {platform}</div>
<div id="a384" title="ACPI0008:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.795917%;top:40.000px;height:360.000px;width:0.000069%;">ACPI0008:00 {acpi}</div>
<div id="a196" title="DLL075B:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.779644%;top:40.000px;height:360.000px;width:0.000069%;">DLL075B:00 {acpi}</div>
<div id="a333" title="DLL075B:01 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.791347%;top:40.000px;height:360.000px;width:0.000069%;">DLL075B:01 {acpi}</div>
<div id="a195" title="DLLK075B:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.779574%;top:40.000px;height:360.000px;width:0.000069%;">DLLK075B:00 {acpi}</div>
<div id="a342" title="FPNT_DIS:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.792108%;top:40.000px;height:360.000px;width:0.000069%;">FPNT_DIS:00 {acpi}</div>
<div id="a329" title="INT0000:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.791000%;top:40.000px;height:360.000px;width:0.000069%;">INT0000:00 {acpi}</div>
<div id="a407" title="INT0800:00 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.800211%;top:40.000px;height:360.000px;width:0.000069%;">INT0800:00 {platform}</div>
<div id="a421" title="INT33A1:00 {intel_pmc_core} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.801734%;top:40.000px;height:360.000px;width:0.000069%;">INT33A1:00 {intel_pmc_core}</div>
<div id="a347" title="INT33A2:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.792524%;top:40.000px;height:360.000px;width:0.000069%;">INT33A2:00 {acpi}</div>
<div id="a410" title="INT33D2:00 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.800488%;top:40.000px;height:360.000px;width:0.000069%;">INT33D2:00 {platform}</div>
<div id="a428" title="INT33D5:00 {intel-hid} sync_device (0.002 ms) suspend_prepare" class="thread sync" style="left:5.802427%;top:40.000px;height:360.000px;width:0.000138%;">INT33D5:00 {intel-hid}</div>
<div id="a413" title="INT33D6:00 {intel-vbtn} sync_device (0.002 ms) suspend_prepare" class="thread sync" style="left:5.800765%;top:40.000px;height:360.000px;width:0.000138%;">INT33D6:00 {intel-vbtn}</div>
<div id="a429" title="INT3400:00 {int3400 thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.802634%;top:40.000px;height:360.000px;width:0.000069%;">INT3400:00 {int3400 thermal}</div>
<div id="a414" title="INT3403:00 {int3403 thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.800972%;top:40.000px;height:360.000px;width:0.000069%;">INT3403:00 {int3403 thermal}</div>
<div id="a416" title="INT3403:02 {int3403 thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.801180%;top:40.000px;height:360.000px;width:0.000069%;">INT3403:02 {int3403 thermal}</div>
<div id="a418" title="INT3403:03 {int3403 thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.801388%;top:40.000px;height:360.000px;width:0.000069%;">INT3403:03 {int3403 thermal}</div>
<div id="a378" title="INT340E:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.795363%;top:40.000px;height:360.000px;width:0.000069%;">INT340E:00 {acpi}</div>
<div id="a383" title="Power Sharing Manager [INT3420:01] {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.795848%;top:40.000px;height:360.000px;width:0.000069%;">INT3420:01 {acpi}</div>
<div id="a323" title="INT343E:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.790446%;top:40.000px;height:360.000px;width:0.000069%;">INT343E:00 {acpi}</div>
<div id="a340" title="INT3440:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.791970%;top:40.000px;height:360.000px;width:0.000069%;">INT3440:00 {acpi}</div>
<div id="a341" title="INT3441:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.792039%;top:40.000px;height:360.000px;width:0.000069%;">INT3441:00 {acpi}</div>
<div id="a336" title="INT3444:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.791624%;top:40.000px;height:360.000px;width:0.000069%;">INT3444:00 {acpi}</div>
<div id="a346" title="INT344A:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.792455%;top:40.000px;height:360.000px;width:0.000069%;">INT344A:00 {acpi}</div>
<div id="a377" title="INT3470:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.795294%;top:40.000px;height:360.000px;width:0.000069%;">INT3470:00 {acpi}</div>
<div id="a330" title="INT3515:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.791070%;top:40.000px;height:360.000px;width:0.000069%;">INT3515:00 {acpi}</div>
<div id="a185" title="INT3F0D:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.778674%;top:40.000px;height:360.000px;width:0.000069%;">INT3F0D:00 {acpi}</div>
<div id="a150" title="LNXCPU:01 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.775627%;top:40.000px;height:360.000px;width:0.000069%;">LNXCPU:01 {acpi}</div>
<div id="a151" title="LNXCPU:02 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.775696%;top:40.000px;height:360.000px;width:0.000069%;">LNXCPU:02 {acpi}</div>
<div id="a155" title="LNXCPU:06 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.776043%;top:40.000px;height:360.000px;width:0.000069%;">LNXCPU:06 {acpi}</div>
<div id="a156" title="LNXCPU:07 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.776112%;top:40.000px;height:360.000px;width:0.000069%;">LNXCPU:07 {acpi}</div>
<div id="a199" title="LNXPOWER:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.779921%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:00 {acpi}</div>
<div id="a205" title="LNXPOWER:02 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.780475%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:02 {acpi}</div>
<div id="a208" title="LNXPOWER:03 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.780752%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:03 {acpi}</div>
<div id="a211" title="LNXPOWER:04 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781029%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:04 {acpi}</div>
<div id="a226" title="LNXPOWER:06 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.782275%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:06 {acpi}</div>
<div id="a232" title="LNXPOWER:08 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.782760%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:08 {acpi}</div>
<div id="a241" title="LNXPOWER:0b {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.783521%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:0b {acpi}</div>
<div id="a244" title="LNXPOWER:0c {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.783798%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:0c {acpi}</div>
<div id="a250" title="LNXPOWER:0e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784283%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:0e {acpi}</div>
<div id="a253" title="LNXPOWER:0f {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784560%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:0f {acpi}</div>
<div id="a267" title="LNXPOWER:11 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.785737%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:11 {acpi}</div>
<div id="a273" title="LNXPOWER:13 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.786222%;top:40.000px;height:360.000px;width:0.000069%;">LNXPOWER:13 {acpi}</div>
<div id="a148" title="LNXSYSTM:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.775419%;top:40.000px;height:360.000px;width:0.000069%;">LNXSYSTM:00 {acpi}</div>
<div id="a381" title="LNXTHERM:00 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.795640%;top:40.000px;height:360.000px;width:0.000069%;">LNXTHERM:00 {thermal}</div>
<div id="a159" title="LNXVIDEO:00 {video} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.776389%;top:40.000px;height:360.000px;width:0.000069%;">LNXVIDEO:00 {video}</div>
<div id="a179" title="PNP0000:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.778189%;top:40.000px;height:360.000px;width:0.000069%;">PNP0000:00 {acpi}</div>
<div id="a184" title="PNP0100:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.778605%;top:40.000px;height:360.000px;width:0.000069%;">PNP0100:00 {acpi}</div>
<div id="a276" title="PNP0C02:04 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.786499%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C02:04 {acpi}</div>
<div id="a180" title="PNP0C04:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.778259%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C04:00 {acpi}</div>
<div id="a409" title="PNP0C09:00 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.800418%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C09:00 {platform}</div>
<div id="a423" title="PNP0C0D:00 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.801942%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0D:00 {platform}</div>
<div id="a425" title="PNP0C0E:00 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.802150%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0E:00 {platform}</div>
<div id="a356" title="PNP0C0F:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793355%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0F:00 {acpi}</div>
<div id="a359" title="PNP0C0F:03 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793632%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0F:03 {acpi}</div>
<div id="a360" title="PNP0C0F:04 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793701%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0F:04 {acpi}</div>
<div id="a361" title="PNP0C0F:05 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793770%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0F:05 {acpi}</div>
<div id="a362" title="PNP0C0F:06 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793909%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0F:06 {acpi}</div>
<div id="a363" title="PNP0C0F:07 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793978%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C0F:07 {acpi}</div>
<div id="a420" title="PNP0C14:00 {acpi-wmi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.801596%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C14:00 {acpi-wmi}</div>
<div id="a422" title="PNP0C14:01 {acpi-wmi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.801873%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C14:01 {acpi-wmi}</div>
<div id="a368" title="TPM 1.2 Device [PNP0C31:00] {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.794394%;top:40.000px;height:360.000px;width:0.000069%;">PNP0C31:00 {acpi}</div>
<div id="a328" title="XXXX0000:00 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.790931%;top:40.000px;height:360.000px;width:0.000069%;">XXXX0000:00 {acpi}</div>
<div id="a2133" title="__pm_notifier_call_chain (0.650 ms) suspend_prepare" class="thread" style="left:5.433465%;top:40.000px;height:360.000px;width:0.045012%;">__pm_notifier_call_chain</div>
<div id="a2137" title="acpi_suspend_begin (0.075 ms) suspend_prepare" class="thread" style="left:5.756722%;top:40.000px;height:360.000px;width:0.005194%;">acpi_suspend_begin</div>
<div id="a533" title="alarmtimer {alarmtimer} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.812260%;top:40.000px;height:360.000px;width:0.000069%;">alarmtimer {alarmtimer}</div>
<div id="a744" title="autofs {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.833727%;top:40.000px;height:360.000px;width:0.000069%;">autofs {misc}</div>
<div id="a547" title="breakpoint {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813576%;top:40.000px;height:360.000px;width:0.000069%;">breakpoint {event_source}</div>
<div id="a539" title="broadcast {clockevents} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.812814%;top:40.000px;height:360.000px;width:0.000069%;">broadcast {clockevents}</div>
<div id="a650" title="bus.0 {platform Fixed MDIO} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.823894%;top:40.000px;height:360.000px;width:0.000069%;">bus.0 {platform Fixed MDIO}</div>
<div id="a841" title="PCH [card0] {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844669%;top:40.000px;height:360.000px;width:0.000069%;">card0 {sound}</div>
<div id="a619" title="card0-DP-1 {drm} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.820916%;top:40.000px;height:360.000px;width:0.000069%;">card0-DP-1 {drm}</div>
<div id="a623" title="card0-DP-2 {drm} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.821332%;top:40.000px;height:360.000px;width:0.000069%;">card0-DP-2 {drm}</div>
<div id="a626" title="card0-HDMI-A-2 {drm} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.821609%;top:40.000px;height:360.000px;width:0.000069%;">card0-HDMI-A-2 {drm}</div>
<div id="a535" title="clockevent0 {clockevents} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.812468%;top:40.000px;height:360.000px;width:0.000069%;">clockevent0 {clockevents}</div>
<div id="a536" title="clockevent1 {clockevents} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.812537%;top:40.000px;height:360.000px;width:0.000069%;">clockevent1 {clockevents}</div>
<div id="a532" title="clocksource0 {clocksource} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.812122%;top:40.000px;height:360.000px;width:0.000069%;">clocksource0 {clocksource}</div>
<div id="a455" title="console {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805335%;top:40.000px;height:360.000px;width:0.000069%;">console {tty}</div>
<div id="a132" title="container sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.773619%;top:40.000px;height:360.000px;width:0.000069%;">container</div>
<div id="a566" title="cooling_device0 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815723%;top:40.000px;height:360.000px;width:0.000069%;">cooling_device0 {thermal}</div>
<div id="a568" title="cooling_device2 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815930%;top:40.000px;height:360.000px;width:0.000069%;">cooling_device2 {thermal}</div>
<div id="a569" title="cooling_device3 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.816069%;top:40.000px;height:360.000px;width:0.000069%;">cooling_device3 {thermal}</div>
<div id="a838" title="cooling_device4 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844323%;top:40.000px;height:360.000px;width:0.000069%;">cooling_device4 {thermal}</div>
<div id="a877" title="cooling_device5 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.848685%;top:40.000px;height:360.000px;width:0.000069%;">cooling_device5 {thermal}</div>
<div id="a546" title="cpu {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813507%;top:40.000px;height:360.000px;width:0.000069%;">cpu {event_source}</div>
<div id="a141" title="cpu0 {processor} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.774727%;top:40.000px;height:360.000px;width:0.000069%;">cpu0 {processor}</div>
<div id="a806" title="cstate_core {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.840583%;top:40.000px;height:360.000px;width:0.000069%;">cstate_core {event_source}</div>
<div id="a799" title="dcdbas {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.839752%;top:40.000px;height:360.000px;width:0.000069%;">dcdbas {platform}</div>
<div id="a822" title="dell-laptop {dell-laptop} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.842384%;top:40.000px;height:360.000px;width:0.000069%;">dell-laptop {dell-laptop}</div>
<div id="a800" title="dell-smbios.0 {dell-smbios} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.839891%;top:40.000px;height:360.000px;width:0.000069%;">dell-smbios.0 {dell-smbios}</div>
<div id="a834" title="dell::kbd_backlight {leds} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.843769%;top:40.000px;height:360.000px;width:0.000069%;">dell::kbd_backlight {leds}</div>
<div id="a162" title="device:02 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.776735%;top:40.000px;height:360.000px;width:0.000069%;">device:02 {acpi}</div>
<div id="a163" title="device:03 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.776804%;top:40.000px;height:360.000px;width:0.000069%;">device:03 {acpi}</div>
<div id="a164" title="device:04 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.776874%;top:40.000px;height:360.000px;width:0.000069%;">device:04 {acpi}</div>
<div id="a167" title="device:07 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777151%;top:40.000px;height:360.000px;width:0.000069%;">device:07 {acpi}</div>
<div id="a168" title="device:08 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777220%;top:40.000px;height:360.000px;width:0.000069%;">device:08 {acpi}</div>
<div id="a169" title="device:09 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777289%;top:40.000px;height:360.000px;width:0.000069%;">device:09 {acpi}</div>
<div id="a171" title="device:0b {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777497%;top:40.000px;height:360.000px;width:0.000069%;">device:0b {acpi}</div>
<div id="a172" title="device:0c {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777566%;top:40.000px;height:360.000px;width:0.000069%;">device:0c {acpi}</div>
<div id="a174" title="device:0e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777774%;top:40.000px;height:360.000px;width:0.000069%;">device:0e {acpi}</div>
<div id="a175" title="device:0f {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777843%;top:40.000px;height:360.000px;width:0.000069%;">device:0f {acpi}</div>
<div id="a176" title="device:10 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.777912%;top:40.000px;height:360.000px;width:0.000069%;">device:10 {acpi}</div>
<div id="a200" title="device:13 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.779990%;top:40.000px;height:360.000px;width:0.000069%;">device:13 {acpi}</div>
<div id="a201" title="device:14 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.780128%;top:40.000px;height:360.000px;width:0.000069%;">device:14 {acpi}</div>
<div id="a204" title="device:16 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.780405%;top:40.000px;height:360.000px;width:0.000069%;">device:16 {acpi}</div>
<div id="a209" title="device:19 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.780821%;top:40.000px;height:360.000px;width:0.000069%;">device:19 {acpi}</div>
<div id="a212" title="device:1b {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781098%;top:40.000px;height:360.000px;width:0.000069%;">device:1b {acpi}</div>
<div id="a215" title="device:1d {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781375%;top:40.000px;height:360.000px;width:0.000069%;">device:1d {acpi}</div>
<div id="a216" title="device:1e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781444%;top:40.000px;height:360.000px;width:0.000069%;">device:1e {acpi}</div>
<div id="a217" title="device:1f {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781513%;top:40.000px;height:360.000px;width:0.000069%;">device:1f {acpi}</div>
<div id="a222" title="device:24 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781929%;top:40.000px;height:360.000px;width:0.000069%;">device:24 {acpi}</div>
<div id="a223" title="device:25 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.781998%;top:40.000px;height:360.000px;width:0.000069%;">device:25 {acpi}</div>
<div id="a227" title="device:28 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.782344%;top:40.000px;height:360.000px;width:0.000069%;">device:28 {acpi}</div>
<div id="a231" title="device:2b {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.782691%;top:40.000px;height:360.000px;width:0.000069%;">device:2b {acpi}</div>
<div id="a236" title="device:2e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.783106%;top:40.000px;height:360.000px;width:0.000069%;">device:2e {acpi}</div>
<div id="a237" title="device:2f {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.783175%;top:40.000px;height:360.000px;width:0.000069%;">device:2f {acpi}</div>
<div id="a243" title="device:33 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.783729%;top:40.000px;height:360.000px;width:0.000069%;">device:33 {acpi}</div>
<div id="a245" title="device:34 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.783868%;top:40.000px;height:360.000px;width:0.000069%;">device:34 {acpi}</div>
<div id="a248" title="device:36 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784145%;top:40.000px;height:360.000px;width:0.000069%;">device:36 {acpi}</div>
<div id="a249" title="device:37 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784214%;top:40.000px;height:360.000px;width:0.000069%;">device:37 {acpi}</div>
<div id="a252" title="device:39 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784491%;top:40.000px;height:360.000px;width:0.000069%;">device:39 {acpi}</div>
<div id="a257" title="device:3c {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784906%;top:40.000px;height:360.000px;width:0.000069%;">device:3c {acpi}</div>
<div id="a258" title="device:3d {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.784976%;top:40.000px;height:360.000px;width:0.000069%;">device:3d {acpi}</div>
<div id="a262" title="device:41 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.785322%;top:40.000px;height:360.000px;width:0.000069%;">device:41 {acpi}</div>
<div id="a263" title="device:42 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.785391%;top:40.000px;height:360.000px;width:0.000069%;">device:42 {acpi}</div>
<div id="a264" title="device:43 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.785460%;top:40.000px;height:360.000px;width:0.000069%;">device:43 {acpi}</div>
<div id="a266" title="device:45 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.785668%;top:40.000px;height:360.000px;width:0.000069%;">device:45 {acpi}</div>
<div id="a271" title="device:48 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.786084%;top:40.000px;height:360.000px;width:0.000069%;">device:48 {acpi}</div>
<div id="a272" title="device:49 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.786153%;top:40.000px;height:360.000px;width:0.000069%;">device:49 {acpi}</div>
<div id="a277" title="device:4a {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.786568%;top:40.000px;height:360.000px;width:0.000069%;">device:4a {acpi}</div>
<div id="a281" title="device:4e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.786915%;top:40.000px;height:360.000px;width:0.000069%;">device:4e {acpi}</div>
<div id="a284" title="device:51 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.787192%;top:40.000px;height:360.000px;width:0.000069%;">device:51 {acpi}</div>
<div id="a285" title="device:52 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.787261%;top:40.000px;height:360.000px;width:0.000069%;">device:52 {acpi}</div>
<div id="a286" title="device:53 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.787330%;top:40.000px;height:360.000px;width:0.000069%;">device:53 {acpi}</div>
<div id="a290" title="device:57 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.787676%;top:40.000px;height:360.000px;width:0.000069%;">device:57 {acpi}</div>
<div id="a291" title="device:58 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.787746%;top:40.000px;height:360.000px;width:0.000069%;">device:58 {acpi}</div>
<div id="a293" title="device:5a {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.787953%;top:40.000px;height:360.000px;width:0.000069%;">device:5a {acpi}</div>
<div id="a294" title="device:5b {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788023%;top:40.000px;height:360.000px;width:0.000069%;">device:5b {acpi}</div>
<div id="a295" title="device:5c {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788092%;top:40.000px;height:360.000px;width:0.000069%;">device:5c {acpi}</div>
<div id="a296" title="device:5d {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788161%;top:40.000px;height:360.000px;width:0.000069%;">device:5d {acpi}</div>
<div id="a299" title="device:60 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788438%;top:40.000px;height:360.000px;width:0.000069%;">device:60 {acpi}</div>
<div id="a300" title="device:61 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788507%;top:40.000px;height:360.000px;width:0.000069%;">device:61 {acpi}</div>
<div id="a301" title="device:62 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788577%;top:40.000px;height:360.000px;width:0.000069%;">device:62 {acpi}</div>
<div id="a305" title="device:66 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788923%;top:40.000px;height:360.000px;width:0.000069%;">device:66 {acpi}</div>
<div id="a306" title="device:67 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.788992%;top:40.000px;height:360.000px;width:0.000069%;">device:67 {acpi}</div>
<div id="a308" title="SPT XHCI controller [device:69] {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789200%;top:40.000px;height:360.000px;width:0.000069%;">device:69 {acpi}</div>
<div id="a309" title="device:6a {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789269%;top:40.000px;height:360.000px;width:0.000069%;">device:6a {acpi}</div>
<div id="a310" title="device:6b {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789338%;top:40.000px;height:360.000px;width:0.000069%;">device:6b {acpi}</div>
<div id="a313" title="device:6e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789615%;top:40.000px;height:360.000px;width:0.000069%;">device:6e {acpi}</div>
<div id="a314" title="device:6f {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789685%;top:40.000px;height:360.000px;width:0.000069%;">device:6f {acpi}</div>
<div id="a315" title="device:70 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789754%;top:40.000px;height:360.000px;width:0.000069%;">device:70 {acpi}</div>
<div id="a316" title="device:71 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789823%;top:40.000px;height:360.000px;width:0.000069%;">device:71 {acpi}</div>
<div id="a317" title="device:72 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.789892%;top:40.000px;height:360.000px;width:0.000069%;">device:72 {acpi}</div>
<div id="a320" title="device:75 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.790169%;top:40.000px;height:360.000px;width:0.000069%;">device:75 {acpi}</div>
<div id="a321" title="device:76 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.790239%;top:40.000px;height:360.000px;width:0.000069%;">device:76 {acpi}</div>
<div id="a322" title="device:77 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.790377%;top:40.000px;height:360.000px;width:0.000069%;">device:77 {acpi}</div>
<div id="a332" title="device:79 {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.791277%;top:40.000px;height:360.000px;width:0.000069%;">device:79 {acpi}</div>
<div id="a348" title="device:7a {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.792593%;top:40.000px;height:360.000px;width:0.000069%;">device:7a {acpi}</div>
<div id="a352" title="device:7e {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.792939%;top:40.000px;height:360.000px;width:0.000069%;">device:7e {acpi}</div>
<div id="a353" title="device:7f {acpi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.793009%;top:40.000px;height:360.000px;width:0.000069%;">device:7f {acpi}</div>
<div id="a781" title="dma0chan0 {dma} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.837605%;top:40.000px;height:360.000px;width:0.000069%;">dma0chan0 {dma}</div>
<div id="a787" title="dma1chan0 {dma} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.838298%;top:40.000px;height:360.000px;width:0.000069%;">dma1chan0 {dma}</div>
<div id="a788" title="dma1chan1 {dma} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.838367%;top:40.000px;height:360.000px;width:0.000069%;">dma1chan1 {dma}</div>
<div id="a527" title="dmar1 {iommu} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.811498%;top:40.000px;height:360.000px;width:0.000069%;">dmar1 {iommu}</div>
<div id="a617" title="DPDDC-A [drm_dp_aux0] {drm_dp_aux_dev} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.820709%;top:40.000px;height:360.000px;width:0.000069%;">drm_dp_aux0 {drm_dp_aux_dev}</div>
<div id="a620" title="DPDDC-B [drm_dp_aux1] {drm_dp_aux_dev} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.821055%;top:40.000px;height:360.000px;width:0.000069%;">drm_dp_aux1 {drm_dp_aux_dev}</div>
<div id="a552" title="ecryptfs {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.814061%;top:40.000px;height:360.000px;width:0.000069%;">ecryptfs {misc}</div>
<div id="a529" title="efi-framebuffer.0 {efi-framebuffer} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.811706%;top:40.000px;height:360.000px;width:0.000069%;">efi-framebuffer.0 {efi-framebuffer}</div>
<div id="a743" title="ep_00 async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.833589%;top:40.000px;height:360.000px;width:0.000069%;">ep_00</div>
<div id="a908" title="ep_02 async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.851871%;top:40.000px;height:360.000px;width:0.000069%;">ep_02</div>
<div id="a742" title="ep_03 async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.833520%;top:40.000px;height:360.000px;width:0.000069%;">ep_03</div>
<div id="a814" title="ep_83 async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.841483%;top:40.000px;height:360.000px;width:0.000069%;">ep_83</div>
<div id="a685" title="event0 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.827357%;top:40.000px;height:360.000px;width:0.000069%;">event0 {input}</div>
<div id="a858" title="event11 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.846539%;top:40.000px;height:360.000px;width:0.000069%;">event11 {input}</div>
<div id="a860" title="event12 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.846746%;top:40.000px;height:360.000px;width:0.000069%;">event12 {input}</div>
<div id="a862" title="event13 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.846954%;top:40.000px;height:360.000px;width:0.000069%;">event13 {input}</div>
<div id="a864" title="event14 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847162%;top:40.000px;height:360.000px;width:0.000069%;">event14 {input}</div>
<div id="a868" title="event16 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847508%;top:40.000px;height:360.000px;width:0.000069%;">event16 {input}</div>
<div id="a872" title="event17 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847924%;top:40.000px;height:360.000px;width:0.000069%;">event17 {input}</div>
<div id="a689" title="event4 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.827703%;top:40.000px;height:360.000px;width:0.000069%;">event4 {input}</div>
<div id="a701" title="event5 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.828880%;top:40.000px;height:360.000px;width:0.000069%;">event5 {input}</div>
<div id="a771" title="event9 {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.836359%;top:40.000px;height:360.000px;width:0.000069%;">event9 {input}</div>
<div id="a714" title="i915drmfb [fb0] {graphics} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.830196%;top:40.000px;height:360.000px;width:0.000069%;">fb0 {graphics}</div>
<div id="a651" title="fixed-0 {mdio_bus} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.824033%;top:40.000px;height:360.000px;width:0.000069%;">fixed-0 {mdio_bus}</div>
<div id="a2139" title="freeze_kernel_threads (1.308 ms) suspend_prepare" class="thread" style="left:5.665312%;top:40.000px;height:360.000px;width:0.090579%;">freeze_kernel_threads</div>
<div id="a2140" title="freeze_processes (2.687 ms) suspend_prepare" class="thread" style="left:5.478962%;top:40.000px;height:360.000px;width:0.186074%;">freeze_processes</div>
<div id="a728" title="gpiochip0 {gpio} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831650%;top:40.000px;height:360.000px;width:0.000069%;">gpiochip0 {gpio}</div>
<div id="a909" title="hci0 {bluetooth} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.852009%;top:40.000px;height:360.000px;width:0.000069%;">hci0 {bluetooth}</div>
<div id="a824" title="hdaudioC0D0 {snd_hda_codec_realtek} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.842730%;top:40.000px;height:360.000px;width:0.000069%;">hdaudioC0D0 {snd_hda_codec_realtek}</div>
<div id="a835" title="hdaudioC0D2 {snd_hda_codec_hdmi} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.843907%;top:40.000px;height:360.000px;width:0.000069%;">hdaudioC0D2 {snd_hda_codec_hdmi}</div>
<div id="a873" title="hidraw0 {hidraw} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.848062%;top:40.000px;height:360.000px;width:0.000069%;">hidraw0 {hidraw}</div>
<div id="a854" title="hwC0D0 {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.846123%;top:40.000px;height:360.000px;width:0.000069%;">hwC0D0 {sound}</div>
<div id="a855" title="hwC0D2 {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.846192%;top:40.000px;height:360.000px;width:0.000069%;">hwC0D2 {sound}</div>
<div id="a608" title="hw_random {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.819601%;top:40.000px;height:360.000px;width:0.000069%;">hw_random {misc}</div>
<div id="a561" title="AC [hwmon0] {hwmon} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815169%;top:40.000px;height:360.000px;width:0.000069%;">hwmon0 {hwmon}</div>
<div id="a571" title="acpitz [hwmon1] {hwmon} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.816277%;top:40.000px;height:360.000px;width:0.000069%;">hwmon1 {hwmon}</div>
<div id="a837" title="coretemp [hwmon3] {hwmon} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844184%;top:40.000px;height:360.000px;width:0.000069%;">hwmon3 {hwmon}</div>
<div id="a878" title="ath10k_hwmon [hwmon4] {hwmon} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.848755%;top:40.000px;height:360.000px;width:0.000069%;">hwmon4 {hwmon}</div>
<div id="a693" title="i915 gmbus dpc [i2c-0] {i2c-dev} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.828118%;top:40.000px;height:360.000px;width:0.000069%;">i2c-0 {i2c-dev}</div>
<div id="a695" title="i915 gmbus dpd [i2c-2] {i2c-dev} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.828326%;top:40.000px;height:360.000px;width:0.000069%;">i2c-2 {i2c-dev}</div>
<div id="a698" title="DPDDC-C [i2c-5] {i2c-dev} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.828603%;top:40.000px;height:360.000px;width:0.000069%;">i2c-5 {i2c-dev}</div>
<div id="a785" title="Synopsys DesignWare I2C adapter [i2c-6] {i2c-dev} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.838090%;top:40.000px;height:360.000px;width:0.000069%;">i2c-6 {i2c-dev}</div>
<div id="a792" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.838852%;top:40.000px;height:360.000px;width:0.000069%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a783" title="i2c_designware.0 {i2c_designware} sync_device (0.002 ms) suspend_prepare" class="thread sync" style="left:5.837813%;top:40.000px;height:360.000px;width:0.000138%;">i2c_designware.0 {i2c_designware}</div>
<div id="a612" title="i915 {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.820085%;top:40.000px;height:360.000px;width:0.000069%;">i915 {event_source}</div>
<div id="a139" title="id {dmi} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.774519%;top:40.000px;height:360.000px;width:0.000069%;">id {dmi}</div>
<div id="a780" title="idma64.0 {idma64} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.837467%;top:40.000px;height:360.000px;width:0.000069%;">idma64.0 {idma64}</div>
<div id="a562" title="Lid Switch [input0] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815307%;top:40.000px;height:360.000px;width:0.000069%;">input0 {input}</div>
<div id="a770" title="Intel Virtual Button driver [input10] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.836220%;top:40.000px;height:360.000px;width:0.000069%;">input10 {input}</div>
<div id="a804" title="Dell WMI hotkeys [input11] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.840375%;top:40.000px;height:360.000px;width:0.000069%;">input11 {input}</div>
<div id="a863" title="HDA Intel PCH HDMI/DP pcm=8 [input15] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847023%;top:40.000px;height:360.000px;width:0.000069%;">input15 {input}</div>
<div id="a865" title="HDA Intel PCH HDMI/DP pcm=9 [input16] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847231%;top:40.000px;height:360.000px;width:0.000069%;">input16 {input}</div>
<div id="a867" title="HDA Intel PCH HDMI/DP pcm=10 [input17] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847439%;top:40.000px;height:360.000px;width:0.000069%;">input17 {input}</div>
<div id="a564" title="Sleep Button [input2] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815515%;top:40.000px;height:360.000px;width:0.000069%;">input2 {input}</div>
<div id="a870" title="DLL075B:01 06CB:76AF Touchpad [input22] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.847716%;top:40.000px;height:360.000px;width:0.000069%;">input22 {input}</div>
<div id="a565" title="Power Button [input3] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.815584%;top:40.000px;height:360.000px;width:0.000069%;">input3 {input}</div>
<div id="a700" title="AT Translated Set 2 keyboard [input5] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.828811%;top:40.000px;height:360.000px;width:0.000069%;">input5 {input}</div>
<div id="a797" title="input5::capslock {leds} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.839544%;top:40.000px;height:360.000px;width:0.000069%;">input5::capslock {leds}</div>
<div id="a796" title="input5::numlock {leds} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.839406%;top:40.000px;height:360.000px;width:0.000069%;">input5::numlock {leds}</div>
<div id="a760" title="Intel HID events [input8] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.835251%;top:40.000px;height:360.000px;width:0.000069%;">input8 {input}</div>
<div id="a762" title="Intel HID 5 button array [input9] {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.835459%;top:40.000px;height:360.000px;width:0.000069%;">input9 {input}</div>
<div id="a843" title="intel-rapl {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844946%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl {powercap}</div>
<div id="a777" title="intel-rapl-mmio {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.837121%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl-mmio {powercap}</div>
<div id="a778" title="package-0 [intel-rapl-mmio:0] {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.837259%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl-mmio:0 {powercap}</div>
<div id="a779" title="dram [intel-rapl-mmio:0:0] {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.837328%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl-mmio:0:0 {powercap}</div>
<div id="a844" title="package-0 [intel-rapl:0] {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.845084%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl:0 {powercap}</div>
<div id="a846" title="uncore [intel-rapl:0:1] {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.845292%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl:0:1 {powercap}</div>
<div id="a856" title="psys [intel-rapl:1] {powercap} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.846331%;top:40.000px;height:360.000px;width:0.000069%;">intel-rapl:1 {powercap}</div>
<div id="a616" title="intel_backlight {backlight} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.820570%;top:40.000px;height:360.000px;width:0.000069%;">intel_backlight {backlight}</div>
<div id="a545" title="intel_pt {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813437%;top:40.000px;height:360.000px;width:0.000069%;">intel_pt {event_source}</div>
<div id="a772" title="intel_rapl_msr.0 {intel_rapl_msr} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.836497%;top:40.000px;height:360.000px;width:0.000069%;">intel_rapl_msr.0 {intel_rapl_msr}</div>
<div id="a670" title="intel_xhci_usb_sw {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.825902%;top:40.000px;height:360.000px;width:0.000069%;">intel_xhci_usb_sw {platform}</div>
<div id="a453" title="kmsg {mem} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805127%;top:40.000px;height:360.000px;width:0.000069%;">kmsg {mem}</div>
<div id="a549" title="kprobe {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813784%;top:40.000px;height:360.000px;width:0.000069%;">kprobe {event_source}</div>
<div id="a2141" title="ksys_sync (78.367 ms) suspend_prepare" class="thread" style="left:0.005263%;top:40.000px;height:360.000px;width:5.426886%;">ksys_sync</div>
<div id="a628" title="lightnvm {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.821817%;top:40.000px;height:360.000px;width:0.000069%;">lightnvm {misc}</div>
<div id="a882" title="lo {net} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.849170%;top:40.000px;height:360.000px;width:0.000069%;">lo {net}</div>
<div id="a631" title="loop0 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.822163%;top:40.000px;height:360.000px;width:0.000069%;">loop0 {block}</div>
<div id="a633" title="loop1 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.822371%;top:40.000px;height:360.000px;width:0.000069%;">loop1 {block}</div>
<div id="a830" title="loop14 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.843284%;top:40.000px;height:360.000px;width:0.000069%;">loop14 {block}</div>
<div id="a880" title="loop16 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.848962%;top:40.000px;height:360.000px;width:0.000069%;">loop16 {block}</div>
<div id="a639" title="loop4 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.822855%;top:40.000px;height:360.000px;width:0.000069%;">loop4 {block}</div>
<div id="a643" title="loop6 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.823202%;top:40.000px;height:360.000px;width:0.000069%;">loop6 {block}</div>
<div id="a816" title="loop9 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.841691%;top:40.000px;height:360.000px;width:0.000069%;">loop9 {block}</div>
<div id="a703" title="machinecheck0 {machinecheck} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.829088%;top:40.000px;height:360.000px;width:0.000069%;">machinecheck0 {machinecheck}</div>
<div id="a705" title="machinecheck2 {machinecheck} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.829296%;top:40.000px;height:360.000px;width:0.000069%;">machinecheck2 {machinecheck}</div>
<div id="a433" title="mc {edac} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.803119%;top:40.000px;height:360.000px;width:0.000069%;">mc {edac}</div>
<div id="a707" title="mcelog {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.829503%;top:40.000px;height:360.000px;width:0.000069%;">mcelog {misc}</div>
<div id="a795" title="mei0 {mei} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.839267%;top:40.000px;height:360.000px;width:0.000069%;">mei0 {mei}</div>
<div id="a890" title="mei::05b79a6f-4628-4d7f-899d-a91514cb32ab:02 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850070%;top:40.000px;height:360.000px;width:0.000069%;">mei::05b79a6f-4628-4d7f-899d-a91514cb32ab:02 {mei}</div>
<div id="a892" title="mei::082ee5a7-7c25-470a-9643-0c06f0466ea1:00 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850278%;top:40.000px;height:360.000px;width:0.000069%;">mei::082ee5a7-7c25-470a-9643-0c06f0466ea1:00 {mei}</div>
<div id="a889" title="mei::12f80028-b4b7-4b2d-aca8-46e0ff65814c:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850001%;top:40.000px;height:360.000px;width:0.000069%;">mei::12f80028-b4b7-4b2d-aca8-46e0ff65814c:01 {mei}</div>
<div id="a893" title="mei::3c4852d6-d47b-4f46-b05e-b5edc1aa440e:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850417%;top:40.000px;height:360.000px;width:0.000069%;">mei::3c4852d6-d47b-4f46-b05e-b5edc1aa440e:01 {mei}</div>
<div id="a902" title="mei::42b3ce2f-bd9f-485a-96ae-26406230b1ff:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.851248%;top:40.000px;height:360.000px;width:0.000069%;">mei::42b3ce2f-bd9f-485a-96ae-26406230b1ff:01 {mei}</div>
<div id="a903" title="mei::55213584-9a29-4916-badf-0fb7ed682aeb:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.851386%;top:40.000px;height:360.000px;width:0.000069%;">mei::55213584-9a29-4916-badf-0fb7ed682aeb:01 {mei}</div>
<div id="a894" title="mei::5565a099-7fe2-45c1-a22b-d7e9dfea9a2e:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850486%;top:40.000px;height:360.000px;width:0.000069%;">mei::5565a099-7fe2-45c1-a22b-d7e9dfea9a2e:01 {mei}</div>
<div id="a891" title="mei::6733a4db-0476-4e7b-b3af-bcfc29bee7a7:04 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850209%;top:40.000px;height:360.000px;width:0.000069%;">mei::6733a4db-0476-4e7b-b3af-bcfc29bee7a7:04 {mei}</div>
<div id="a898" title="mei::8c2f4425-77d6-4755-aca3-891fdbc66a58:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850901%;top:40.000px;height:360.000px;width:0.000069%;">mei::8c2f4425-77d6-4755-aca3-891fdbc66a58:01 {mei}</div>
<div id="a899" title="mei::8e6a6715-9abc-4043-88ef-9e39c6f63e0f:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850971%;top:40.000px;height:360.000px;width:0.000069%;">mei::8e6a6715-9abc-4043-88ef-9e39c6f63e0f:01 {mei}</div>
<div id="a888" title="mei::b638ab7e-94e2-4ea2-a552-d1c54b627f04:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.849863%;top:40.000px;height:360.000px;width:0.000069%;">mei::b638ab7e-94e2-4ea2-a552-d1c54b627f04:01 {mei}</div>
<div id="a904" title="mei::bb875e12-cb58-4d14-ae93-8566183c66c7:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.851455%;top:40.000px;height:360.000px;width:0.000069%;">mei::bb875e12-cb58-4d14-ae93-8566183c66c7:01 {mei}</div>
<div id="a901" title="mei::cea154ea-8ff5-4f94-9290-0bb7355a34db:00 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.851178%;top:40.000px;height:360.000px;width:0.000069%;">mei::cea154ea-8ff5-4f94-9290-0bb7355a34db:00 {mei}</div>
<div id="a896" title="mei::f908627d-13bf-4a04-b91f-a64e9245323d:01 {mei} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.850694%;top:40.000px;height:360.000px;width:0.000069%;">mei::f908627d-13bf-4a04-b91f-a64e9245323d:01 {mei}</div>
<div id="a3" title="memory sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.762816%;top:40.000px;height:360.000px;width:0.000069%;">memory</div>
<div id="a4" title="memory0 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.762954%;top:40.000px;height:360.000px;width:0.000069%;">memory0 {memory}</div>
<div id="a5" title="memory1 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763024%;top:40.000px;height:360.000px;width:0.000069%;">memory1 {memory}</div>
<div id="a14" title="memory10 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763785%;top:40.000px;height:360.000px;width:0.000069%;">memory10 {memory}</div>
<div id="a89" title="memory101 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770087%;top:40.000px;height:360.000px;width:0.000069%;">memory101 {memory}</div>
<div id="a90" title="memory102 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770156%;top:40.000px;height:360.000px;width:0.000069%;">memory102 {memory}</div>
<div id="a91" title="memory103 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770226%;top:40.000px;height:360.000px;width:0.000069%;">memory103 {memory}</div>
<div id="a92" title="memory104 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770295%;top:40.000px;height:360.000px;width:0.000069%;">memory104 {memory}</div>
<div id="a95" title="memory107 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770572%;top:40.000px;height:360.000px;width:0.000069%;">memory107 {memory}</div>
<div id="a96" title="memory108 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770641%;top:40.000px;height:360.000px;width:0.000069%;">memory108 {memory}</div>
<div id="a15" title="memory11 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763855%;top:40.000px;height:360.000px;width:0.000069%;">memory11 {memory}</div>
<div id="a98" title="memory110 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770849%;top:40.000px;height:360.000px;width:0.000069%;">memory110 {memory}</div>
<div id="a99" title="memory111 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770918%;top:40.000px;height:360.000px;width:0.000069%;">memory111 {memory}</div>
<div id="a100" title="memory112 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.770987%;top:40.000px;height:360.000px;width:0.000069%;">memory112 {memory}</div>
<div id="a101" title="memory113 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771057%;top:40.000px;height:360.000px;width:0.000069%;">memory113 {memory}</div>
<div id="a102" title="memory114 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771126%;top:40.000px;height:360.000px;width:0.000069%;">memory114 {memory}</div>
<div id="a104" title="memory116 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771334%;top:40.000px;height:360.000px;width:0.000069%;">memory116 {memory}</div>
<div id="a105" title="memory117 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771403%;top:40.000px;height:360.000px;width:0.000069%;">memory117 {memory}</div>
<div id="a106" title="memory118 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771472%;top:40.000px;height:360.000px;width:0.000069%;">memory118 {memory}</div>
<div id="a107" title="memory119 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771541%;top:40.000px;height:360.000px;width:0.000069%;">memory119 {memory}</div>
<div id="a16" title="memory12 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763924%;top:40.000px;height:360.000px;width:0.000069%;">memory12 {memory}</div>
<div id="a108" title="memory120 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771611%;top:40.000px;height:360.000px;width:0.000069%;">memory120 {memory}</div>
<div id="a111" title="memory123 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771888%;top:40.000px;height:360.000px;width:0.000069%;">memory123 {memory}</div>
<div id="a112" title="memory124 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.771957%;top:40.000px;height:360.000px;width:0.000069%;">memory124 {memory}</div>
<div id="a116" title="memory128 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772303%;top:40.000px;height:360.000px;width:0.000069%;">memory128 {memory}</div>
<div id="a117" title="memory129 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772372%;top:40.000px;height:360.000px;width:0.000069%;">memory129 {memory}</div>
<div id="a118" title="memory130 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772442%;top:40.000px;height:360.000px;width:0.000069%;">memory130 {memory}</div>
<div id="a120" title="memory132 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772649%;top:40.000px;height:360.000px;width:0.000069%;">memory132 {memory}</div>
<div id="a121" title="memory133 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772719%;top:40.000px;height:360.000px;width:0.000069%;">memory133 {memory}</div>
<div id="a122" title="memory134 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772788%;top:40.000px;height:360.000px;width:0.000069%;">memory134 {memory}</div>
<div id="a124" title="memory136 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.772996%;top:40.000px;height:360.000px;width:0.000069%;">memory136 {memory}</div>
<div id="a125" title="memory137 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.773065%;top:40.000px;height:360.000px;width:0.000069%;">memory137 {memory}</div>
<div id="a126" title="memory138 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.773134%;top:40.000px;height:360.000px;width:0.000069%;">memory138 {memory}</div>
<div id="a127" title="memory139 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.773203%;top:40.000px;height:360.000px;width:0.000069%;">memory139 {memory}</div>
<div id="a130" title="memory142 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.773480%;top:40.000px;height:360.000px;width:0.000069%;">memory142 {memory}</div>
<div id="a131" title="memory143 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.773550%;top:40.000px;height:360.000px;width:0.000069%;">memory143 {memory}</div>
<div id="a19" title="memory15 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.764201%;top:40.000px;height:360.000px;width:0.000069%;">memory15 {memory}</div>
<div id="a20" title="memory32 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.764270%;top:40.000px;height:360.000px;width:0.000069%;">memory32 {memory}</div>
<div id="a21" title="memory33 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.764339%;top:40.000px;height:360.000px;width:0.000069%;">memory33 {memory}</div>
<div id="a25" title="memory37 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.764686%;top:40.000px;height:360.000px;width:0.000069%;">memory37 {memory}</div>
<div id="a26" title="memory38 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.764755%;top:40.000px;height:360.000px;width:0.000069%;">memory38 {memory}</div>
<div id="a27" title="memory39 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.764824%;top:40.000px;height:360.000px;width:0.000069%;">memory39 {memory}</div>
<div id="a30" title="memory42 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.765101%;top:40.000px;height:360.000px;width:0.000069%;">memory42 {memory}</div>
<div id="a31" title="memory43 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.765170%;top:40.000px;height:360.000px;width:0.000069%;">memory43 {memory}</div>
<div id="a32" title="memory44 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.765240%;top:40.000px;height:360.000px;width:0.000069%;">memory44 {memory}</div>
<div id="a33" title="memory45 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.765309%;top:40.000px;height:360.000px;width:0.000069%;">memory45 {memory}</div>
<div id="a36" title="memory48 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.765586%;top:40.000px;height:360.000px;width:0.000069%;">memory48 {memory}</div>
<div id="a37" title="memory49 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.765724%;top:40.000px;height:360.000px;width:0.000069%;">memory49 {memory}</div>
<div id="a9" title="memory5 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763370%;top:40.000px;height:360.000px;width:0.000069%;">memory5 {memory}</div>
<div id="a40" title="memory52 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766001%;top:40.000px;height:360.000px;width:0.000069%;">memory52 {memory}</div>
<div id="a41" title="memory53 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766071%;top:40.000px;height:360.000px;width:0.000069%;">memory53 {memory}</div>
<div id="a42" title="memory54 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766140%;top:40.000px;height:360.000px;width:0.000069%;">memory54 {memory}</div>
<div id="a44" title="memory56 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766348%;top:40.000px;height:360.000px;width:0.000069%;">memory56 {memory}</div>
<div id="a45" title="memory57 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766417%;top:40.000px;height:360.000px;width:0.000069%;">memory57 {memory}</div>
<div id="a46" title="memory58 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766486%;top:40.000px;height:360.000px;width:0.000069%;">memory58 {memory}</div>
<div id="a10" title="memory6 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763439%;top:40.000px;height:360.000px;width:0.000069%;">memory6 {memory}</div>
<div id="a49" title="memory61 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766763%;top:40.000px;height:360.000px;width:0.000069%;">memory61 {memory}</div>
<div id="a50" title="memory62 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.766832%;top:40.000px;height:360.000px;width:0.000069%;">memory62 {memory}</div>
<div id="a56" title="memory68 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.767317%;top:40.000px;height:360.000px;width:0.000069%;">memory68 {memory}</div>
<div id="a57" title="memory69 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.767386%;top:40.000px;height:360.000px;width:0.000069%;">memory69 {memory}</div>
<div id="a11" title="memory7 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.763508%;top:40.000px;height:360.000px;width:0.000069%;">memory7 {memory}</div>
<div id="a59" title="memory71 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.767594%;top:40.000px;height:360.000px;width:0.000069%;">memory71 {memory}</div>
<div id="a60" title="memory72 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.767663%;top:40.000px;height:360.000px;width:0.000069%;">memory72 {memory}</div>
<div id="a64" title="memory76 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768010%;top:40.000px;height:360.000px;width:0.000069%;">memory76 {memory}</div>
<div id="a65" title="memory77 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768079%;top:40.000px;height:360.000px;width:0.000069%;">memory77 {memory}</div>
<div id="a66" title="memory78 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768148%;top:40.000px;height:360.000px;width:0.000069%;">memory78 {memory}</div>
<div id="a69" title="memory81 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768425%;top:40.000px;height:360.000px;width:0.000069%;">memory81 {memory}</div>
<div id="a70" title="memory82 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768494%;top:40.000px;height:360.000px;width:0.000069%;">memory82 {memory}</div>
<div id="a73" title="memory85 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768771%;top:40.000px;height:360.000px;width:0.000069%;">memory85 {memory}</div>
<div id="a74" title="memory86 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768841%;top:40.000px;height:360.000px;width:0.000069%;">memory86 {memory}</div>
<div id="a75" title="memory87 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768910%;top:40.000px;height:360.000px;width:0.000069%;">memory87 {memory}</div>
<div id="a76" title="memory88 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.768979%;top:40.000px;height:360.000px;width:0.000069%;">memory88 {memory}</div>
<div id="a79" title="memory91 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.769256%;top:40.000px;height:360.000px;width:0.000069%;">memory91 {memory}</div>
<div id="a82" title="memory94 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.769533%;top:40.000px;height:360.000px;width:0.000069%;">memory94 {memory}</div>
<div id="a83" title="memory95 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.769602%;top:40.000px;height:360.000px;width:0.000069%;">memory95 {memory}</div>
<div id="a84" title="memory96 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.769672%;top:40.000px;height:360.000px;width:0.000069%;">memory96 {memory}</div>
<div id="a85" title="memory97 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.769741%;top:40.000px;height:360.000px;width:0.000069%;">memory97 {memory}</div>
<div id="a86" title="memory98 {memory} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.769810%;top:40.000px;height:360.000px;width:0.000069%;">memory98 {memory}</div>
<div id="a683" title="mice {input} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.827149%;top:40.000px;height:360.000px;width:0.000069%;">mice {input}</div>
<div id="a709" title="microcode {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.829711%;top:40.000px;height:360.000px;width:0.000069%;">microcode {misc}</div>
<div id="a885" title="msr2 {msr} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.849516%;top:40.000px;height:360.000px;width:0.000069%;">msr2 {msr}</div>
<div id="a711" title="network_latency {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.829919%;top:40.000px;height:360.000px;width:0.000069%;">network_latency {misc}</div>
<div id="a712" title="network_throughput {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.829988%;top:40.000px;height:360.000px;width:0.000069%;">network_throughput {misc}</div>
<div id="a138" title="node sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.774381%;top:40.000px;height:360.000px;width:0.000069%;">node</div>
<div id="a140" title="node0 {node} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.774588%;top:40.000px;height:360.000px;width:0.000069%;">node0 {node}</div>
<div id="a447" title="null {mem} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.804643%;top:40.000px;height:360.000px;width:0.000069%;">null {mem}</div>
<div id="a647" title="nvme-reset-wq {workqueue} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.823548%;top:40.000px;height:360.000px;width:0.000069%;">nvme-reset-wq {workqueue}</div>
<div id="a716" title="THNSN5512GPUK NVMe TOSHIBA 512GB [nvme-subsys0] {nvme-subsystem} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.830473%;top:40.000px;height:360.000px;width:0.000069%;">nvme-subsys0 {nvme-subsystem}</div>
<div id="a646" title="nvme-wq {workqueue} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.823479%;top:40.000px;height:360.000px;width:0.000069%;">nvme-wq {workqueue}</div>
<div id="a718" title="nvme0n1 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.830680%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1 {block}</div>
<div id="a719" title="nvme0n1p1 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.830819%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1p1 {block}</div>
<div id="a721" title="nvme0n1p3 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831027%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1p3 {block}</div>
<div id="a722" title="nvme0n1p4 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831096%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1p4 {block}</div>
<div id="a725" title="nvme0n1p7 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831373%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1p7 {block}</div>
<div id="a726" title="nvme0n1p8 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831442%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1p8 {block}</div>
<div id="a727" title="nvme0n1p9 {block} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831511%;top:40.000px;height:360.000px;width:0.000069%;">nvme0n1p9 {block}</div>
<div id="a386" title="pci0000:00 async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.796125%;top:40.000px;height:360.000px;width:0.000069%;">pci0000:00</div>
<div id="a848" title="pcmC0D0c {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.845500%;top:40.000px;height:360.000px;width:0.000069%;">pcmC0D0c {sound}</div>
<div id="a842" title="pcmC0D0p {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844807%;top:40.000px;height:360.000px;width:0.000069%;">pcmC0D0p {sound}</div>
<div id="a849" title="pcmC0D3p {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.845569%;top:40.000px;height:360.000px;width:0.000069%;">pcmC0D3p {sound}</div>
<div id="a851" title="pcmC0D8p {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.845777%;top:40.000px;height:360.000px;width:0.000069%;">pcmC0D8p {sound}</div>
<div id="a852" title="pcmC0D9p {sound} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.845846%;top:40.000px;height:360.000px;width:0.000069%;">pcmC0D9p {sound}</div>
<div id="a528" title="pcspkr {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.811568%;top:40.000px;height:360.000px;width:0.000069%;">pcspkr {platform}</div>
<div id="a874" title="phy0 {ieee80211} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.848201%;top:40.000px;height:360.000px;width:0.000069%;">phy0 {ieee80211}</div>
<div id="a1" title="platform sync_device (0.002 ms) suspend_prepare" class="thread sync" style="left:5.762539%;top:40.000px;height:360.000px;width:0.000138%;">platform</div>
<div id="a840" title="platform::micmute {leds} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844600%;top:40.000px;height:360.000px;width:0.000069%;">platform::micmute {leds}</div>
<div id="a2143" title="pm_prepare_console (0.002 ms) suspend_prepare" class="thread" style="left:5.433188%;top:40.000px;height:360.000px;width:0.000138%;">pm_prepare_console</div>
<div id="a2145" title="pm_restrict_gfp_mask (0.002 ms) suspend_prepare" class="thread" style="left:5.756445%;top:40.000px;height:360.000px;width:0.000138%;">pm_restrict_gfp_mask</div>
<div id="a436" title="pnp0 sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.803465%;top:40.000px;height:360.000px;width:0.000069%;">pnp0</div>
<div id="a448" title="port {mem} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.804712%;top:40.000px;height:360.000px;width:0.000069%;">port {mem}</div>
<div id="a803" title="power {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.840237%;top:40.000px;height:360.000px;width:0.000069%;">power {event_source}</div>
<div id="a134" title="reg-dummy {reg-dummy} sync_device (0.002 ms) suspend_prepare" class="thread sync" style="left:5.773827%;top:40.000px;height:360.000px;width:0.000138%;">reg-dummy {reg-dummy}</div>
<div id="a135" title="regulator-dummy [regulator.0] {regulator} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.774034%;top:40.000px;height:360.000px;width:0.000069%;">regulator.0 {regulator}</div>
<div id="a794" title="regulatory.0 {platform} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.839129%;top:40.000px;height:360.000px;width:0.000069%;">regulatory.0 {platform}</div>
<div id="a613" title="renderD128 {drm} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.820224%;top:40.000px;height:360.000px;width:0.000069%;">renderD128 {drm}</div>
<div id="a875" title="phy0 [rfkill1] {rfkill} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.848408%;top:40.000px;height:360.000px;width:0.000069%;">rfkill1 {rfkill}</div>
<div id="a910" title="rfkill198 {rfkill} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.852148%;top:40.000px;height:360.000px;width:0.000069%;">rfkill198 {rfkill}</div>
<div id="a691" title="rtc_cmos 00:01 [rtc0] {rtc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.827911%;top:40.000px;height:360.000px;width:0.000069%;">rtc0 {rtc}</div>
<div id="a573" title="serial8250 {serial8250} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.816484%;top:40.000px;height:360.000px;width:0.000069%;">serial8250 {serial8250}</div>
<div id="a682" title="i8042 KBD port [serio0] {atkbd} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.827010%;top:40.000px;height:360.000px;width:0.000069%;">serio0 {atkbd}</div>
<div id="a887" title="i8042 AUX port [serio1] {serio} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.849724%;top:40.000px;height:360.000px;width:0.000069%;">serio1 {serio}</div>
<div id="a530" title="snapshot {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.811845%;top:40.000px;height:360.000px;width:0.000069%;">snapshot {misc}</div>
<div id="a831" title="snd-soc-dummy {snd-soc-dummy} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.843422%;top:40.000px;height:360.000px;width:0.000069%;">snd-soc-dummy {snd-soc-dummy}</div>
<div id="a2147" title="suspend_console (0.003 ms) suspend_prepare" class="thread" style="left:5.762054%;top:40.000px;height:360.000px;width:0.000208%;">suspend_console</div>
<div id="a764" title="thermal_zone1 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.835666%;top:40.000px;height:360.000px;width:0.000069%;">thermal_zone1 {thermal}</div>
<div id="a766" title="thermal_zone2 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.835874%;top:40.000px;height:360.000px;width:0.000069%;">thermal_zone2 {thermal}</div>
<div id="a769" title="thermal_zone5 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.836151%;top:40.000px;height:360.000px;width:0.000069%;">thermal_zone5 {thermal}</div>
<div id="a773" title="thermal_zone6 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.836636%;top:40.000px;height:360.000px;width:0.000069%;">thermal_zone6 {thermal}</div>
<div id="a839" title="thermal_zone8 {thermal} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.844461%;top:40.000px;height:360.000px;width:0.000069%;">thermal_zone8 {thermal}</div>
<div id="a550" title="tracepoint {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813853%;top:40.000px;height:360.000px;width:0.000069%;">tracepoint {event_source}</div>
<div id="a463" title="tty1 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.806097%;top:40.000px;height:360.000px;width:0.000069%;">tty1 {tty}</div>
<div id="a472" title="tty10 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.806859%;top:40.000px;height:360.000px;width:0.000069%;">tty10 {tty}</div>
<div id="a475" title="tty13 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807136%;top:40.000px;height:360.000px;width:0.000069%;">tty13 {tty}</div>
<div id="a476" title="tty14 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807205%;top:40.000px;height:360.000px;width:0.000069%;">tty14 {tty}</div>
<div id="a477" title="tty15 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807274%;top:40.000px;height:360.000px;width:0.000069%;">tty15 {tty}</div>
<div id="a478" title="tty16 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807343%;top:40.000px;height:360.000px;width:0.000069%;">tty16 {tty}</div>
<div id="a481" title="tty19 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807620%;top:40.000px;height:360.000px;width:0.000069%;">tty19 {tty}</div>
<div id="a464" title="tty2 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.806166%;top:40.000px;height:360.000px;width:0.000069%;">tty2 {tty}</div>
<div id="a482" title="tty20 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807690%;top:40.000px;height:360.000px;width:0.000069%;">tty20 {tty}</div>
<div id="a483" title="tty21 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807759%;top:40.000px;height:360.000px;width:0.000069%;">tty21 {tty}</div>
<div id="a484" title="tty22 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807897%;top:40.000px;height:360.000px;width:0.000069%;">tty22 {tty}</div>
<div id="a485" title="tty23 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.807967%;top:40.000px;height:360.000px;width:0.000069%;">tty23 {tty}</div>
<div id="a487" title="tty25 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808174%;top:40.000px;height:360.000px;width:0.000069%;">tty25 {tty}</div>
<div id="a488" title="tty26 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808244%;top:40.000px;height:360.000px;width:0.000069%;">tty26 {tty}</div>
<div id="a489" title="tty27 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808313%;top:40.000px;height:360.000px;width:0.000069%;">tty27 {tty}</div>
<div id="a492" title="tty30 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808590%;top:40.000px;height:360.000px;width:0.000069%;">tty30 {tty}</div>
<div id="a493" title="tty31 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808659%;top:40.000px;height:360.000px;width:0.000069%;">tty31 {tty}</div>
<div id="a494" title="tty32 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808728%;top:40.000px;height:360.000px;width:0.000069%;">tty32 {tty}</div>
<div id="a495" title="tty33 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808798%;top:40.000px;height:360.000px;width:0.000069%;">tty33 {tty}</div>
<div id="a496" title="tty34 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.808867%;top:40.000px;height:360.000px;width:0.000069%;">tty34 {tty}</div>
<div id="a499" title="tty37 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.809144%;top:40.000px;height:360.000px;width:0.000069%;">tty37 {tty}</div>
<div id="a500" title="tty38 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.809213%;top:40.000px;height:360.000px;width:0.000069%;">tty38 {tty}</div>
<div id="a504" title="tty42 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.809559%;top:40.000px;height:360.000px;width:0.000069%;">tty42 {tty}</div>
<div id="a505" title="tty43 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.809629%;top:40.000px;height:360.000px;width:0.000069%;">tty43 {tty}</div>
<div id="a506" title="tty44 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.809698%;top:40.000px;height:360.000px;width:0.000069%;">tty44 {tty}</div>
<div id="a509" title="tty47 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.809975%;top:40.000px;height:360.000px;width:0.000069%;">tty47 {tty}</div>
<div id="a510" title="tty48 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810044%;top:40.000px;height:360.000px;width:0.000069%;">tty48 {tty}</div>
<div id="a511" title="tty49 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810113%;top:40.000px;height:360.000px;width:0.000069%;">tty49 {tty}</div>
<div id="a512" title="tty50 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810183%;top:40.000px;height:360.000px;width:0.000069%;">tty50 {tty}</div>
<div id="a515" title="tty53 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810460%;top:40.000px;height:360.000px;width:0.000069%;">tty53 {tty}</div>
<div id="a516" title="tty54 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810529%;top:40.000px;height:360.000px;width:0.000069%;">tty54 {tty}</div>
<div id="a517" title="tty55 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810598%;top:40.000px;height:360.000px;width:0.000069%;">tty55 {tty}</div>
<div id="a519" title="tty57 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810806%;top:40.000px;height:360.000px;width:0.000069%;">tty57 {tty}</div>
<div id="a520" title="tty58 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810875%;top:40.000px;height:360.000px;width:0.000069%;">tty58 {tty}</div>
<div id="a521" title="tty59 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.810944%;top:40.000px;height:360.000px;width:0.000069%;">tty59 {tty}</div>
<div id="a468" title="tty6 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.806512%;top:40.000px;height:360.000px;width:0.000069%;">tty6 {tty}</div>
<div id="a522" title="tty60 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.811014%;top:40.000px;height:360.000px;width:0.000069%;">tty60 {tty}</div>
<div id="a469" title="tty7 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.806582%;top:40.000px;height:360.000px;width:0.000069%;">tty7 {tty}</div>
<div id="a470" title="tty8 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.806651%;top:40.000px;height:360.000px;width:0.000069%;">tty8 {tty}</div>
<div id="a574" title="ttyS0 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.816623%;top:40.000px;height:360.000px;width:0.000069%;">ttyS0 {tty}</div>
<div id="a584" title="ttyS10 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817454%;top:40.000px;height:360.000px;width:0.000069%;">ttyS10 {tty}</div>
<div id="a586" title="ttyS12 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817662%;top:40.000px;height:360.000px;width:0.000069%;">ttyS12 {tty}</div>
<div id="a587" title="ttyS13 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817731%;top:40.000px;height:360.000px;width:0.000069%;">ttyS13 {tty}</div>
<div id="a589" title="ttyS15 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817939%;top:40.000px;height:360.000px;width:0.000069%;">ttyS15 {tty}</div>
<div id="a590" title="ttyS16 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818008%;top:40.000px;height:360.000px;width:0.000069%;">ttyS16 {tty}</div>
<div id="a592" title="ttyS18 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818216%;top:40.000px;height:360.000px;width:0.000069%;">ttyS18 {tty}</div>
<div id="a593" title="ttyS19 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818285%;top:40.000px;height:360.000px;width:0.000069%;">ttyS19 {tty}</div>
<div id="a594" title="ttyS20 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818354%;top:40.000px;height:360.000px;width:0.000069%;">ttyS20 {tty}</div>
<div id="a595" title="ttyS21 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818423%;top:40.000px;height:360.000px;width:0.000069%;">ttyS21 {tty}</div>
<div id="a598" title="ttyS24 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818700%;top:40.000px;height:360.000px;width:0.000069%;">ttyS24 {tty}</div>
<div id="a599" title="ttyS25 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.818770%;top:40.000px;height:360.000px;width:0.000069%;">ttyS25 {tty}</div>
<div id="a603" title="ttyS29 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.819116%;top:40.000px;height:360.000px;width:0.000069%;">ttyS29 {tty}</div>
<div id="a604" title="ttyS30 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.819185%;top:40.000px;height:360.000px;width:0.000069%;">ttyS30 {tty}</div>
<div id="a578" title="ttyS4 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.816969%;top:40.000px;height:360.000px;width:0.000069%;">ttyS4 {tty}</div>
<div id="a579" title="ttyS5 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817038%;top:40.000px;height:360.000px;width:0.000069%;">ttyS5 {tty}</div>
<div id="a580" title="ttyS6 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817108%;top:40.000px;height:360.000px;width:0.000069%;">ttyS6 {tty}</div>
<div id="a581" title="ttyS7 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817177%;top:40.000px;height:360.000px;width:0.000069%;">ttyS7 {tty}</div>
<div id="a583" title="ttyS9 {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.817385%;top:40.000px;height:360.000px;width:0.000069%;">ttyS9 {tty}</div>
<div id="a606" title="ttyprintk {tty} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.819393%;top:40.000px;height:360.000px;width:0.000069%;">ttyprintk {tty}</div>
<div id="a652" title="tun {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.824171%;top:40.000px;height:360.000px;width:0.000069%;">tun {misc}</div>
<div id="a690" title="uinput {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.827772%;top:40.000px;height:360.000px;width:0.000069%;">uinput {misc}</div>
<div id="a542" title="uncore_cbox_0 {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813160%;top:40.000px;height:360.000px;width:0.000069%;">uncore_cbox_0 {event_source}</div>
<div id="a541" title="uncore_cbox_1 {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813022%;top:40.000px;height:360.000px;width:0.000069%;">uncore_cbox_1 {event_source}</div>
<div id="a543" title="uncore_imc {event_source} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.813230%;top:40.000px;height:360.000px;width:0.000069%;">uncore_imc {event_source}</div>
<div id="a452" title="urandom {mem} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805058%;top:40.000px;height:360.000px;width:0.000069%;">urandom {mem}</div>
<div id="a654" title="xHCI Host Controller [usb1] {usb} async_device (0.002 ms) suspend_prepare" class="thread" style="left:5.824379%;top:40.000px;height:360.000px;width:0.000138%;">usb1 {usb}</div>
<div id="a665" title="usb1-port10 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.825418%;top:40.000px;height:360.000px;width:0.000069%;">usb1-port10 {usb}</div>
<div id="a667" title="usb1-port12 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.825625%;top:40.000px;height:360.000px;width:0.000069%;">usb1-port12 {usb}</div>
<div id="a658" title="usb1-port3 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.824864%;top:40.000px;height:360.000px;width:0.000069%;">usb1-port3 {usb}</div>
<div id="a659" title="usb1-port4 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.824933%;top:40.000px;height:360.000px;width:0.000069%;">usb1-port4 {usb}</div>
<div id="a660" title="usb1-port5 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.825002%;top:40.000px;height:360.000px;width:0.000069%;">usb1-port5 {usb}</div>
<div id="a664" title="usb1-port9 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.825348%;top:40.000px;height:360.000px;width:0.000069%;">usb1-port9 {usb}</div>
<div id="a671" title="xHCI Host Controller [usb2] {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.826041%;top:40.000px;height:360.000px;width:0.000069%;">usb2 {usb}</div>
<div id="a676" title="usb2-port4 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.826456%;top:40.000px;height:360.000px;width:0.000069%;">usb2-port4 {usb}</div>
<div id="a677" title="usb2-port5 {usb} async_device (0.001 ms) suspend_prepare" class="thread" style="left:5.826526%;top:40.000px;height:360.000px;width:0.000069%;">usb2-port5 {usb}</div>
<div id="a457" title="vcs {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805543%;top:40.000px;height:360.000px;width:0.000069%;">vcs {vc}</div>
<div id="a460" title="vcs1 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805820%;top:40.000px;height:360.000px;width:0.000069%;">vcs1 {vc}</div>
<div id="a748" title="vcs3 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834143%;top:40.000px;height:360.000px;width:0.000069%;">vcs3 {vc}</div>
<div id="a751" title="vcs4 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834420%;top:40.000px;height:360.000px;width:0.000069%;">vcs4 {vc}</div>
<div id="a754" title="vcs5 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834697%;top:40.000px;height:360.000px;width:0.000069%;">vcs5 {vc}</div>
<div id="a757" title="vcs6 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834974%;top:40.000px;height:360.000px;width:0.000069%;">vcs6 {vc}</div>
<div id="a750" title="vcsa3 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834351%;top:40.000px;height:360.000px;width:0.000069%;">vcsa3 {vc}</div>
<div id="a753" title="vcsa4 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834628%;top:40.000px;height:360.000px;width:0.000069%;">vcsa4 {vc}</div>
<div id="a756" title="vcsa5 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834905%;top:40.000px;height:360.000px;width:0.000069%;">vcsa5 {vc}</div>
<div id="a759" title="vcsa6 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.835112%;top:40.000px;height:360.000px;width:0.000069%;">vcsa6 {vc}</div>
<div id="a458" title="vcsu {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805612%;top:40.000px;height:360.000px;width:0.000069%;">vcsu {vc}</div>
<div id="a461" title="vcsu1 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.805889%;top:40.000px;height:360.000px;width:0.000069%;">vcsu1 {vc}</div>
<div id="a746" title="vcsu2 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.833935%;top:40.000px;height:360.000px;width:0.000069%;">vcsu2 {vc}</div>
<div id="a752" title="vcsu4 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.834558%;top:40.000px;height:360.000px;width:0.000069%;">vcsu4 {vc}</div>
<div id="a758" title="vcsu6 {vc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.835043%;top:40.000px;height:360.000px;width:0.000069%;">vcsu6 {vc}</div>
<div id="a431" title="vga_arbiter {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.802911%;top:40.000px;height:360.000px;width:0.000069%;">vga_arbiter {misc}</div>
<div id="a136" title="(S) dummy device [vtcon0] {vtconsole} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.774173%;top:40.000px;height:360.000px;width:0.000069%;">vtcon0 {vtconsole}</div>
<div id="a715" title="(M) frame buffer device [vtcon1] {vtconsole} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.830334%;top:40.000px;height:360.000px;width:0.000069%;">vtcon1 {vtconsole}</div>
<div id="a801" title="wmi!dell-smbios {misc} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.840029%;top:40.000px;height:360.000px;width:0.000069%;">wmi!dell-smbios {misc}</div>
<div id="a730" title="wmi_bus-PNP0C14:00 {wmi_bus} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.831927%;top:40.000px;height:360.000px;width:0.000069%;">wmi_bus-PNP0C14:00 {wmi_bus}</div>
<div id="a732" title="wmi_bus-PNP0C14:01 {wmi_bus} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.832204%;top:40.000px;height:360.000px;width:0.000069%;">wmi_bus-PNP0C14:01 {wmi_bus}</div>
<div id="a145" title="writeback {workqueue} sync_device (0.001 ms) suspend_prepare" class="thread sync" style="left:5.775073%;top:40.000px;height:360.000px;width:0.000069%;">writeback {workqueue}</div>
<div id="a1024" title="0000:00:00.0 {skl_uncore} async_device (0.002 ms) suspend" class="thread" style="left:13.752977%;top:340.000px;height:60.000px;width:0.000138%;">0000:00:00.0 {skl_uncore}</div>
<div id="a1023" title="0000:00:02.0 {i915} async_device (1170.651 ms) suspend" class="thread" style="left:13.752700%;top:40.000px;height:60.000px;width:81.067151%;">0000:00:02.0 {i915}</div>
<div id="a1022" title="0000:00:04.0 {proc_thermal} async_device (0.001 ms) suspend" class="thread" style="left:13.752354%;top:40.000px;height:60.000px;width:0.000069%;">0000:00:04.0 {proc_thermal}</div>
<div id="a1029" title="0000:00:14.0 {xhci_hcd} async_device (0.115 ms) suspend" class="thread" style="left:16.542283%;top:160.000px;height:60.000px;width:0.007964%;">0000:00:14.0 {xhci_hcd}</div>
<div id="a1021" title="0000:00:14.2 {intel_pch_thermal} async_device (0.001 ms) suspend" class="thread" style="left:13.751869%;top:40.000px;height:60.000px;width:0.000069%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a1020" title="0000:00:15.0 {intel-lpss} async_device (0.010 ms) suspend" class="thread" style="left:13.751038%;top:40.000px;height:60.000px;width:0.000692%;">0000:00:15.0 {intel-lpss}</div>
<div id="a1016" title="0000:00:15.1 {intel-lpss} async_device (0.001 ms) suspend" class="thread" style="left:13.750692%;top:40.000px;height:60.000px;width:0.000069%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1014" title="0000:00:16.0 {mei_me} async_device (13.854 ms) suspend" class="thread" style="left:13.731994%;top:280.000px;height:60.000px;width:0.959384%;">0000:00:16.0 {mei_me}</div>
<div id="a1013" title="0000:00:1c.0 {pcieport} async_device (0.001 ms) suspend" class="thread" style="left:13.731163%;top:40.000px;height:60.000px;width:0.000069%;">0000:00:1c.0 {pcieport}</div>
<div id="a1012" title="0000:00:1c.4 {pcieport} async_device (0.002 ms) suspend" class="thread" style="left:13.730817%;top:40.000px;height:60.000px;width:0.000138%;">0000:00:1c.4 {pcieport}</div>
<div id="a1030" title="0000:00:1d.0 {pcieport} async_device (0.006 ms) suspend" class="thread" style="left:22.367493%;top:100.000px;height:60.000px;width:0.000415%;">0000:00:1d.0 {pcieport}</div>
<div id="a1011" title="0000:00:1f.0 {pci} async_device (0.001 ms) suspend" class="thread" style="left:13.730540%;top:40.000px;height:60.000px;width:0.000069%;">0000:00:1f.0 {pci}</div>
<div id="a1010" title="0000:00:1f.2 {pci} async_device (0.001 ms) suspend" class="thread" style="left:13.730471%;top:40.000px;height:60.000px;width:0.000069%;">0000:00:1f.2 {pci}</div>
<div id="a945" title="0000:00:1f.3 {snd_hda_intel} async_device (1.106 ms) suspend" class="thread" style="left:7.481107%;top:160.000px;height:60.000px;width:0.076590%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a1009" title="0000:00:1f.4 {pci} async_device (0.002 ms) suspend" class="thread" style="left:13.730124%;top:280.000px;height:60.000px;width:0.000138%;">0000:00:1f.4 {pci}</div>
<div id="a1008" title="0000:3a:00.0 {ath10k_pci} async_device (0.004 ms) suspend" class="thread" style="left:13.730055%;top:40.000px;height:60.000px;width:0.000277%;">0000:3a:00.0 {ath10k_pci}</div>
<div id="a1007" title="0000:3b:00.0 {nvme} async_device (124.707 ms) suspend" class="thread" style="left:13.729709%;top:100.000px;height:60.000px;width:8.635914%;">0000:3b:00.0 {nvme}</div>
<div id="a981" title="PNP0b00 [00:01] {rtc_cmos} sync_device (0.089 ms) suspend" class="thread sync" style="left:13.708034%;top:40.000px;height:60.000px;width:0.006163%;">00:01 {rtc_cmos}</div>
<div id="a980" title="INT3f0d PNP0c02 [00:02] {system} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.707826%;top:40.000px;height:60.000px;width:0.000069%;">00:02 {system}</div>
<div id="a978" title="DLL075b PNP0f13 [00:04] {i8042 aux} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.707618%;top:40.000px;height:60.000px;width:0.000069%;">00:04 {i8042 aux}</div>
<div id="a977" title="PNP0c02 [00:05] {system} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.707480%;top:40.000px;height:60.000px;width:0.000069%;">00:05 {system}</div>
<div id="a975" title="PNP0c02 [00:07] {system} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.707272%;top:40.000px;height:60.000px;width:0.000069%;">00:07 {system}</div>
<div id="a974" title="PNP0c02 [00:08] {system} sync_device (0.002 ms) suspend" class="thread sync" style="left:13.707064%;top:40.000px;height:60.000px;width:0.000138%;">00:08 {system}</div>
<div id="a956" title="USB 10/100/1000 LAN [1-2] {usb} async_device (42.921 ms) suspend" class="thread" style="left:13.557485%;top:160.000px;height:60.000px;width:2.972263%;">1-2 {usb}</div>
<div id="a957" title="0cf3:e301 [1-3] {usb} async_device (38.933 ms) suspend" class="thread" style="left:13.557485%;top:220.000px;height:60.000px;width:2.696096%;">1-3 {usb}</div>
<div id="a987" title="ACPI0003:00 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.726316%;top:40.000px;height:60.000px;width:0.000069%;">ACPI0003:00 {platform}</div>
<div id="a994" title="ACPI000C:00 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.727216%;top:40.000px;height:60.000px;width:0.000069%;">ACPI000C:00 {platform}</div>
<div id="a992" title="INT33A1:00 {intel_pmc_core} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.726939%;top:40.000px;height:60.000px;width:0.000069%;">INT33A1:00 {intel_pmc_core}</div>
<div id="a1003" title="INT33D2:00 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.728462%;top:40.000px;height:60.000px;width:0.000069%;">INT33D2:00 {platform}</div>
<div id="a1002" title="INT33D3:00 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.728324%;top:40.000px;height:60.000px;width:0.000069%;">INT33D3:00 {platform}</div>
<div id="a1001" title="INT33D4:00 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.728186%;top:40.000px;height:60.000px;width:0.000069%;">INT33D4:00 {platform}</div>
<div id="a985" title="INT33D5:00 {intel-hid} sync_device (0.157 ms) suspend" class="thread sync" style="left:13.715236%;top:40.000px;height:60.000px;width:0.010872%;">INT33D5:00 {intel-hid}</div>
<div id="a984" title="INT3400:00 {int3400 thermal} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.714959%;top:40.000px;height:60.000px;width:0.000069%;">INT3400:00 {int3400 thermal}</div>
<div id="a999" title="INT3403:00 {int3403 thermal} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.727909%;top:40.000px;height:60.000px;width:0.000069%;">INT3403:00 {int3403 thermal}</div>
<div id="a995" title="INT3403:03 {int3403 thermal} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.727355%;top:40.000px;height:60.000px;width:0.000069%;">INT3403:03 {int3403 thermal}</div>
<div id="a996" title="INT344B:00 {sunrisepoint-pinctrl} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.727562%;top:40.000px;height:60.000px;width:0.000069%;">INT344B:00 {sunrisepoint-pinctrl}</div>
<div id="a1015" title="LNXTHERM:00 {thermal} sync_device (0.003 ms) suspend" class="thread sync" style="left:13.749861%;top:40.000px;height:60.000px;width:0.000208%;">LNXTHERM:00 {thermal}</div>
<div id="a1005" title="PNP0103:00 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.728739%;top:40.000px;height:60.000px;width:0.000069%;">PNP0103:00 {platform}</div>
<div id="a1025" title="PNP0C09:00 {ec} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.760525%;top:340.000px;height:60.000px;width:0.000069%;">PNP0C09:00 {ec}</div>
<div id="a1018" title="PNP0C0C:00 {button} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.750899%;top:40.000px;height:60.000px;width:0.000069%;">PNP0C0C:00 {button}</div>
<div id="a1019" title="PNP0C0D:00 {button} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.751038%;top:340.000px;height:60.000px;width:0.000069%;">PNP0C0D:00 {button}</div>
<div id="a991" title="PNP0C14:01 {acpi-wmi} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.726801%;top:40.000px;height:60.000px;width:0.000069%;">PNP0C14:01 {acpi-wmi}</div>
<div id="a971" title="alarmtimer {alarmtimer} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.702979%;top:100.000px;height:60.000px;width:0.000069%;">alarmtimer {alarmtimer}</div>
<div id="a962" title="bus.0 {platform Fixed MDIO} async_device (0.001 ms) suspend" class="thread" style="left:13.694115%;top:40.000px;height:60.000px;width:0.000069%;">bus.0 {platform Fixed MDIO}</div>
<div id="a930" title="coretemp.0 {coretemp} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.861358%;top:40.000px;height:60.000px;width:0.000069%;">coretemp.0 {coretemp}</div>
<div id="a934" title="dell-laptop {dell-laptop} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.862743%;top:160.000px;height:60.000px;width:0.000069%;">dell-laptop {dell-laptop}</div>
<div id="a938" title="dell-smbios.0 {dell-smbios} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.864336%;top:40.000px;height:60.000px;width:0.000069%;">dell-smbios.0 {dell-smbios}</div>
<div id="a972" title="efi-framebuffer.0 {efi-framebuffer} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.703325%;top:100.000px;height:60.000px;width:0.000069%;">efi-framebuffer.0 {efi-framebuffer}</div>
<div id="a935" title="hdaudioC0D0 {snd_hda_codec_realtek} async_device (23.341 ms) suspend" class="thread" style="left:5.863228%;top:160.000px;height:60.000px;width:1.616356%;">hdaudioC0D0 {snd_hda_codec_realtek}</div>
<div id="a933" title="hdaudioC0D2 {snd_hda_codec_hdmi} async_device (0.004 ms) suspend" class="thread" style="left:5.862605%;top:40.000px;height:60.000px;width:0.000277%;">hdaudioC0D2 {snd_hda_codec_hdmi}</div>
<div id="a944" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (107.975 ms) suspend" class="thread" style="left:6.043554%;top:40.000px;height:60.000px;width:7.477229%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a946" title="i2c_designware.1 {i2c_designware} sync_device (0.002 ms) suspend" class="thread sync" style="left:13.524869%;top:40.000px;height:60.000px;width:0.000138%;">i2c_designware.1 {i2c_designware}</div>
<div id="a960" title="i8042 {i8042} sync_device (1.706 ms) suspend" class="thread sync" style="left:13.572651%;top:40.000px;height:60.000px;width:0.118140%;">i8042 {i8042}</div>
<div id="a949" title="idma64.0 {idma64} sync_device (0.359 ms) suspend" class="thread sync" style="left:13.526323%;top:40.000px;height:60.000px;width:0.024861%;">idma64.0 {idma64}</div>
<div id="a947" title="idma64.1 {idma64} sync_device (0.009 ms) suspend" class="thread sync" style="left:13.525215%;top:40.000px;height:60.000px;width:0.000623%;">idma64.1 {idma64}</div>
<div id="a970" title="Lid Switch [input0] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.700486%;top:100.000px;height:60.000px;width:0.000069%;">input0 {input}</div>
<div id="a951" title="Intel Virtual Button driver [input10] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.552430%;top:40.000px;height:60.000px;width:0.000069%;">input10 {input}</div>
<div id="a936" title="Dell WMI hotkeys [input11] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.863920%;top:40.000px;height:60.000px;width:0.000069%;">input11 {input}</div>
<div id="a921" title="HDA Intel PCH Headphone Mic [input12] {input} sync_device (0.004 ms) suspend" class="thread sync" style="left:5.858519%;top:40.000px;height:60.000px;width:0.000277%;">input12 {input}</div>
<div id="a920" title="HDA Intel PCH HDMI/DP pcm=3 [input13] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.858311%;top:40.000px;height:60.000px;width:0.000069%;">input13 {input}</div>
<div id="a919" title="HDA Intel PCH HDMI/DP pcm=7 [input14] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.858034%;top:40.000px;height:60.000px;width:0.000069%;">input14 {input}</div>
<div id="a918" title="HDA Intel PCH HDMI/DP pcm=8 [input15] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.857826%;top:40.000px;height:60.000px;width:0.000069%;">input15 {input}</div>
<div id="a917" title="HDA Intel PCH HDMI/DP pcm=9 [input16] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.857619%;top:40.000px;height:60.000px;width:0.000069%;">input16 {input}</div>
<div id="a916" title="HDA Intel PCH HDMI/DP pcm=10 [input17] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.857411%;top:40.000px;height:60.000px;width:0.000069%;">input17 {input}</div>
<div id="a968" title="Sleep Button [input2] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.700139%;top:100.000px;height:60.000px;width:0.000069%;">input2 {input}</div>
<div id="a915" title="DLL075B:01 06CB:76AF Touchpad [input22] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.857065%;top:40.000px;height:60.000px;width:0.000069%;">input22 {input}</div>
<div id="a967" title="Power Button [input3] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.699862%;top:100.000px;height:60.000px;width:0.000069%;">input3 {input}</div>
<div id="a964" title="Video Bus [input4] {input} sync_device (0.002 ms) suspend" class="thread sync" style="left:13.695638%;top:100.000px;height:60.000px;width:0.000138%;">input4 {input}</div>
<div id="a941" title="input5::capslock {leds} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.864821%;top:40.000px;height:60.000px;width:0.000069%;">input5::capslock {leds}</div>
<div id="a940" title="input5::scrolllock {leds} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.864682%;top:40.000px;height:60.000px;width:0.000069%;">input5::scrolllock {leds}</div>
<div id="a953" title="Intel HID events [input8] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.553192%;top:40.000px;height:60.000px;width:0.000069%;">input8 {input}</div>
<div id="a952" title="Intel HID 5 button array [input9] {input} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.552984%;top:40.000px;height:60.000px;width:0.000069%;">input9 {input}</div>
<div id="a965" title="intel_backlight {backlight} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.696469%;top:100.000px;height:60.000px;width:0.000069%;">intel_backlight {backlight}</div>
<div id="a950" title="intel_rapl_msr.0 {intel_rapl_msr} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.552084%;top:40.000px;height:60.000px;width:0.000069%;">intel_rapl_msr.0 {intel_rapl_msr}</div>
<div id="a961" title="intel_xhci_usb_sw {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.692383%;top:40.000px;height:60.000px;width:0.000069%;">intel_xhci_usb_sw {platform}</div>
<div id="a954" title="microcode {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.556169%;top:40.000px;height:60.000px;width:0.000069%;">microcode {platform}</div>
<div id="a927" title="pcmC0D0c {sound} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.860181%;top:40.000px;height:60.000px;width:0.000069%;">pcmC0D0c {sound}</div>
<div id="a928" title="pcmC0D0p {sound} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.860596%;top:40.000px;height:60.000px;width:0.000069%;">pcmC0D0p {sound}</div>
<div id="a922" title="pcmC0D10p {sound} sync_device (0.002 ms) suspend" class="thread sync" style="left:5.859281%;top:40.000px;height:60.000px;width:0.000138%;">pcmC0D10p {sound}</div>
<div id="a926" title="pcmC0D3p {sound} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.860042%;top:40.000px;height:60.000px;width:0.000069%;">pcmC0D3p {sound}</div>
<div id="a925" title="pcmC0D7p {sound} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.859904%;top:40.000px;height:60.000px;width:0.000069%;">pcmC0D7p {sound}</div>
<div id="a924" title="pcmC0D8p {sound} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.859696%;top:40.000px;height:60.000px;width:0.000069%;">pcmC0D8p {sound}</div>
<div id="a923" title="pcmC0D9p {sound} sync_device (0.002 ms) suspend" class="thread sync" style="left:5.859488%;top:40.000px;height:60.000px;width:0.000138%;">pcmC0D9p {sound}</div>
<div id="a973" title="pcspkr {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.703463%;top:100.000px;height:60.000px;width:0.000069%;">pcspkr {platform}</div>
<div id="a914" title="phy0 {ieee80211} async_device (99.475 ms) suspend" class="thread" style="left:5.856995%;top:100.000px;height:60.000px;width:6.888607%;">phy0 {ieee80211}</div>
<div id="a929" title="platform::micmute {leds} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.861012%;top:40.000px;height:60.000px;width:0.000069%;">platform::micmute {leds}</div>
<div id="a1027" title="reg-dummy {reg-dummy} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.777076%;top:340.000px;height:60.000px;width:0.000069%;">reg-dummy {reg-dummy}</div>
<div id="a1026" title="regulator-dummy [regulator.0] {regulator} sync_device (0.002 ms) suspend" class="thread sync" style="left:13.776868%;top:340.000px;height:60.000px;width:0.000138%;">regulator.0 {regulator}</div>
<div id="a943" title="regulatory.0 {platform} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.865236%;top:40.000px;height:60.000px;width:0.000069%;">regulatory.0 {platform}</div>
<div id="a913" title="phy0 [rfkill1] {rfkill} sync_device (0.002 ms) suspend" class="thread sync" style="left:5.856441%;top:40.000px;height:60.000px;width:0.000138%;">rfkill1 {rfkill}</div>
<div id="a911" title="rfkill198 {rfkill} async_device (0.002 ms) suspend" class="thread" style="left:5.854018%;top:40.000px;height:60.000px;width:0.000138%;">rfkill198 {rfkill}</div>
<div id="a958" title="rtc_cmos 00:01 [rtc0] {rtc} sync_device (0.001 ms) suspend" class="thread sync" style="left:13.557624%;top:40.000px;height:60.000px;width:0.000069%;">rtc0 {rtc}</div>
<div id="a966" title="serial8250 {serial8250} sync_device (0.003 ms) suspend" class="thread sync" style="left:13.699170%;top:100.000px;height:60.000px;width:0.000208%;">serial8250 {serial8250}</div>
<div id="a959" title="i8042 KBD port [serio0] {atkbd} sync_device (0.200 ms) suspend" class="thread sync" style="left:13.558385%;top:40.000px;height:60.000px;width:0.013850%;">serio0 {atkbd}</div>
<div id="a912" title="i8042 AUX port [serio1] {serio} sync_device (0.001 ms) suspend" class="thread sync" style="left:5.855610%;top:40.000px;height:60.000px;width:0.000069%;">serio1 {serio}</div>
<div id="a1028" title="xHCI Host Controller [usb1] {usb} async_device (0.076 ms) suspend" class="thread" style="left:16.533557%;top:160.000px;height:60.000px;width:0.005263%;">usb1 {usb}</div>
<div id="a963" title="xHCI Host Controller [usb2] {usb} async_device (0.122 ms) suspend" class="thread" style="left:13.695430%;top:40.000px;height:60.000px;width:0.008448%;">usb2 {usb}</div>
<div id="a1060" title="0000:00:02.0 {i915} async_device (17.309 ms) suspend_late" class="thread" style="left:94.840002%;top:40.000px;height:180.000px;width:1.198642%;">0000:00:02.0 {i915}</div>
<div id="a1056" title="0000:00:14.2 {intel_pch_thermal} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839725%;top:40.000px;height:180.000px;width:0.000069%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a1054" title="0000:00:15.1 {intel-lpss} async_device (0.065 ms) suspend_late" class="thread" style="left:94.839656%;top:220.000px;height:180.000px;width:0.004501%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1053" title="0000:00:16.0 {mei_me} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839587%;top:40.000px;height:180.000px;width:0.000069%;">0000:00:16.0 {mei_me}</div>
<div id="a1051" title="0000:00:1c.4 {pcieport} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839517%;top:40.000px;height:180.000px;width:0.000069%;">0000:00:1c.4 {pcieport}</div>
<div id="a1050" title="0000:00:1d.0 {pcieport} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839448%;top:40.000px;height:180.000px;width:0.000069%;">0000:00:1d.0 {pcieport}</div>
<div id="a1048" title="0000:00:1f.2 {pci} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839379%;top:40.000px;height:180.000px;width:0.000069%;">0000:00:1f.2 {pci}</div>
<div id="a1031" title="0000:00:1f.3 {snd_hda_intel} async_device (0.002 ms) suspend_late" class="thread" style="left:94.825183%;top:40.000px;height:180.000px;width:0.000138%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a1046" title="0000:00:1f.4 {pci} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839240%;top:40.000px;height:180.000px;width:0.000069%;">0000:00:1f.4 {pci}</div>
<div id="a1045" title="0000:3b:00.0 {nvme} async_device (0.001 ms) suspend_late" class="thread" style="left:94.839102%;top:40.000px;height:180.000px;width:0.000069%;">0000:3b:00.0 {nvme}</div>
<div id="a1034" title="INT3400:00 {int3400 thermal} sync_device (0.001 ms) suspend_late" class="thread sync" style="left:94.834739%;top:40.000px;height:180.000px;width:0.000069%;">INT3400:00 {int3400 thermal}</div>
<div id="a1042" title="INT3403:01 {int3403 thermal} sync_device (0.001 ms) suspend_late" class="thread sync" style="left:94.835570%;top:40.000px;height:180.000px;width:0.000069%;">INT3403:01 {int3403 thermal}</div>
<div id="a1041" title="INT3403:02 {int3403 thermal} sync_device (0.001 ms) suspend_late" class="thread sync" style="left:94.835501%;top:40.000px;height:180.000px;width:0.000069%;">INT3403:02 {int3403 thermal}</div>
<div id="a1039" title="INT3403:03 {int3403 thermal} sync_device (0.001 ms) suspend_late" class="thread sync" style="left:94.835362%;top:40.000px;height:180.000px;width:0.000069%;">INT3403:03 {int3403 thermal}</div>
<div id="a1040" title="INT344B:00 {sunrisepoint-pinctrl} sync_device (0.001 ms) suspend_late" class="thread sync" style="left:94.835432%;top:40.000px;height:180.000px;width:0.000069%;">INT344B:00 {sunrisepoint-pinctrl}</div>
<div id="a1036" title="PNP0C14:01 {acpi-wmi} sync_device (0.001 ms) suspend_late" class="thread sync" style="left:94.835085%;top:40.000px;height:180.000px;width:0.000069%;">PNP0C14:01 {acpi-wmi}</div>
<div id="a1032" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (0.001 ms) suspend_late" class="thread" style="left:94.825460%;top:40.000px;height:180.000px;width:0.000069%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a1033" title="i2c_designware.1 {i2c_designware} sync_device (0.004 ms) suspend_late" class="thread sync" style="left:94.825945%;top:40.000px;height:180.000px;width:0.000277%;">i2c_designware.1 {i2c_designware}</div>
<div id="a1087" title="0000:00:00.0 {skl_uncore} async_device (0.033 ms) suspend_noirq" class="thread" style="left:96.432674%;top:360.000px;height:40.000px;width:0.002285%;">0000:00:00.0 {skl_uncore}</div>
<div id="a1088" title="0000:00:02.0 {i915} async_device (0.001 ms) suspend_noirq" class="thread" style="left:97.400923%;top:160.000px;height:40.000px;width:0.000069%;">0000:00:02.0 {i915}</div>
<div id="a1086" title="0000:00:04.0 {proc_thermal} async_device (17.918 ms) suspend_noirq" class="thread" style="left:96.431913%;top:320.000px;height:40.000px;width:1.240815%;">0000:00:04.0 {proc_thermal}</div>
<div id="a1085" title="0000:00:14.0 {xhci_hcd} async_device (37.967 ms) suspend_noirq" class="thread" style="left:96.431705%;top:40.000px;height:40.000px;width:2.629201%;">0000:00:14.0 {xhci_hcd}</div>
<div id="a1084" title="0000:00:14.2 {intel_pch_thermal} async_device (18.016 ms) suspend_noirq" class="thread" style="left:96.425126%;top:280.000px;height:40.000px;width:1.247601%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a1082" title="0000:00:15.1 {intel-lpss} async_device (19.091 ms) suspend_noirq" class="thread" style="left:96.424572%;top:200.000px;height:40.000px;width:1.322045%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1081" title="0000:00:16.0 {mei_me} async_device (18.033 ms) suspend_noirq" class="thread" style="left:96.424226%;top:240.000px;height:40.000px;width:1.248779%;">0000:00:16.0 {mei_me}</div>
<div id="a1080" title="0000:00:1c.0 {pcieport} async_device (0.123 ms) suspend_noirq" class="thread" style="left:96.424018%;top:360.000px;height:40.000px;width:0.008518%;">0000:00:1c.0 {pcieport}</div>
<div id="a1090" title="0000:00:1c.4 {pcieport} async_device (19.400 ms) suspend_noirq" class="thread" style="left:97.713931%;top:80.000px;height:40.000px;width:1.343443%;">0000:00:1c.4 {pcieport}</div>
<div id="a1089" title="0000:00:1d.0 {pcieport} async_device (19.717 ms) suspend_noirq" class="thread" style="left:97.691910%;top:120.000px;height:40.000px;width:1.365395%;">0000:00:1d.0 {pcieport}</div>
<div id="a1079" title="0000:00:1f.0 {pci} async_device (1.498 ms) suspend_noirq" class="thread" style="left:96.320005%;top:40.000px;height:40.000px;width:0.103736%;">0000:00:1f.0 {pci}</div>
<div id="a1078" title="0000:00:1f.2 {pci} async_device (1.497 ms) suspend_noirq" class="thread" style="left:96.319867%;top:200.000px;height:40.000px;width:0.103667%;">0000:00:1f.2 {pci}</div>
<div id="a1061" title="0000:00:1f.3 {snd_hda_intel} async_device (19.369 ms) suspend_noirq" class="thread" style="left:96.059419%;top:160.000px;height:40.000px;width:1.341296%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a1076" title="0000:00:1f.4 {pci} async_device (0.939 ms) suspend_noirq" class="thread" style="left:96.245631%;top:40.000px;height:40.000px;width:0.065025%;">0000:00:1f.4 {pci}</div>
<div id="a1075" title="0000:3a:00.0 {ath10k_pci} async_device (21.201 ms) suspend_noirq" class="thread" style="left:96.245562%;top:80.000px;height:40.000px;width:1.468161%;">0000:3a:00.0 {ath10k_pci}</div>
<div id="a1074" title="0000:3b:00.0 {nvme} async_device (20.884 ms) suspend_noirq" class="thread" style="left:96.245354%;top:120.000px;height:40.000px;width:1.446209%;">0000:3b:00.0 {nvme}</div>
<div id="a1064" title="INT33D5:00 {intel-hid} sync_device (0.001 ms) suspend_noirq" class="thread sync" style="left:96.072646%;top:40.000px;height:40.000px;width:0.000069%;">INT33D5:00 {intel-hid}</div>
<div id="a1063" title="INT3400:00 {int3400 thermal} sync_device (0.001 ms) suspend_noirq" class="thread sync" style="left:96.072507%;top:40.000px;height:40.000px;width:0.000069%;">INT3400:00 {int3400 thermal}</div>
<div id="a1070" title="INT3403:02 {int3403 thermal} sync_device (0.001 ms) suspend_noirq" class="thread sync" style="left:96.244592%;top:40.000px;height:40.000px;width:0.000069%;">INT3403:02 {int3403 thermal}</div>
<div id="a1069" title="INT344B:00 {sunrisepoint-pinctrl} sync_device (2.473 ms) suspend_noirq" class="thread sync" style="left:96.073269%;top:40.000px;height:40.000px;width:0.171254%;">INT344B:00 {sunrisepoint-pinctrl}</div>
<div id="a1077" title="PNP0C09:00 {ec} sync_device (0.002 ms) suspend_noirq" class="thread sync" style="left:96.251033%;top:200.000px;height:40.000px;width:0.000138%;">PNP0C09:00 {ec}</div>
<div id="a1062" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (0.001 ms) suspend_noirq" class="thread" style="left:96.060873%;top:40.000px;height:40.000px;width:0.000069%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a2127" title="CPU_OFF[1] (2.019 ms) suspend_machine" class="thread" style="left:99.400298%;top:40.000px;height:360.000px;width:0.139815%;">CPU_OFF[1]</div>
<div id="a2128" title="CPU_OFF[2] (2.378 ms) suspend_machine" class="thread" style="left:99.540459%;top:40.000px;height:360.000px;width:0.164676%;">CPU_OFF[2]</div>
<div id="a2129" title="CPU_OFF[3] (1.809 ms) suspend_machine" class="thread" style="left:99.705412%;top:40.000px;height:360.000px;width:0.125273%;">CPU_OFF[3]</div>
<div id="a2136" title="acpi_pm_prepare (4.882 ms) suspend_machine" class="thread" style="left:99.061737%;top:40.000px;height:360.000px;width:0.338077%;">acpi_pm_prepare</div>
<div id="a2149" title="syscore_suspend (1.711 ms) suspend_machine" class="thread" style="left:99.830962%;top:40.000px;height:360.000px;width:0.118486%;">syscore_suspend</div>
<div class="timescale">
<div class="t" style="right:96.949%">-1400ms</div>
<div class="t" style="right:90.025%">-1300ms</div>
<div class="t" style="right:83.100%">-1200ms</div>
<div class="t" style="right:76.175%">-1100ms</div>
<div class="t" style="right:69.250%">-1000ms</div>
<div class="t" style="right:62.325%">-900ms</div>
<div class="t" style="right:55.400%">-800ms</div>
<div class="t" style="right:48.475%">-700ms</div>
<div class="t" style="right:41.550%">-600ms</div>
<div class="t" style="right:34.625%">-500ms</div>
<div class="t" style="right:27.700%">-400ms</div>
<div class="t" style="right:20.775%">-300ms</div>
<div class="t" style="right:13.850%">-200ms</div>
<div class="t" style="right:6.925%">-100ms</div>
<div class="t" style="right:0.000%">suspend</div>
</div>
</div>
<div id="blockr0" class="tblock" style="left:65.222532%;width:34.777468%;"><div class="tback" style="height:40px"></div>
<div class="phase" style="left:0.000000%;width:3.021224%;top:40.000px;height:360.000px;background:#FF0000"></div>
<div class="phase" style="left:3.021224%;width:6.809734%;top:40.000px;height:360.000px;background:#FF9900"></div>
<div class="phase" style="left:9.830958%;width:0.112470%;top:40.000px;height:360.000px;background:#FFCC00"></div>
<div class="phase" style="left:9.943428%;width:86.142475%;top:40.000px;height:360.000px;background:#FFFF88"></div>
<div class="phase" style="left:96.085903%;width:3.914097%;top:40.000px;height:360.000px;background:#FFFFCC"></div>
<div id="52_52" title="kernel error/warning" class="err" style="right:90.344500%">FAULT→</div>
<div id="53_53" title="kernel error/warning" class="err" style="right:90.344110%">FAULT→</div>
<div id="a2130" title="CPU_ON[1] (3.636 ms) resume_machine" class="thread" style="left:0.321954%;top:40.000px;height:360.000px;width:0.472216%;">CPU_ON[1]</div>
<div id="a2131" title="CPU_ON[2] (0.684 ms) resume_machine" class="thread" style="left:0.794690%;top:40.000px;height:360.000px;width:0.088833%;">CPU_ON[2]</div>
<div id="a2132" title="CPU_ON[3] (0.610 ms) resume_machine" class="thread" style="left:0.884042%;top:40.000px;height:360.000px;width:0.079222%;">CPU_ON[3]</div>
<div id="a2135" title="acpi_pm_finish (14.555 ms) resume_machine" class="thread" style="left:1.130800%;top:40.000px;height:360.000px;width:1.890294%;">acpi_pm_finish</div>
<div id="a2138" title="arch_enable_nonboot_cpus_end (1.284 ms) resume_machine" class="thread" style="left:0.963784%;top:40.000px;height:360.000px;width:0.166756%;">arch_enable_nonboot_cpus_end</div>
<div id="a2148" title="syscore_resume (2.426 ms) resume_machine" class="thread" style="left:0.000390%;top:40.000px;height:360.000px;width:0.315071%;">syscore_resume</div>
<div id="a1091" title="0000:00:00.0 {skl_uncore} async_device (0.015 ms) resume_noirq" class="thread" style="left:3.025769%;top:130.000px;height:30.000px;width:0.001948%;">0000:00:00.0 {skl_uncore}</div>
<div id="a1092" title="0000:00:02.0 {i915} async_device (18.536 ms) resume_noirq" class="thread" style="left:3.026029%;top:100.000px;height:30.000px;width:2.407316%;">0000:00:02.0 {i915}</div>
<div id="a1093" title="0000:00:04.0 {proc_thermal} async_device (18.539 ms) resume_noirq" class="thread" style="left:3.026289%;top:70.000px;height:30.000px;width:2.407706%;">0000:00:04.0 {proc_thermal}</div>
<div id="a1094" title="0000:00:14.0 {xhci_hcd} async_device (41.701 ms) resume_noirq" class="thread" style="left:3.027198%;top:40.000px;height:30.000px;width:5.415813%;">0000:00:14.0 {xhci_hcd}</div>
<div id="a1097" title="0000:00:14.2 {intel_pch_thermal} async_device (18.427 ms) resume_noirq" class="thread" style="left:3.028237%;top:220.000px;height:30.000px;width:2.393160%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a1095" title="0000:00:15.0 {intel-lpss} async_device (22.387 ms) resume_noirq" class="thread" style="left:3.027847%;top:130.000px;height:30.000px;width:2.907455%;">0000:00:15.0 {intel-lpss}</div>
<div id="a1096" title="0000:00:15.1 {intel-lpss} async_device (22.386 ms) resume_noirq" class="thread" style="left:3.027847%;top:160.000px;height:30.000px;width:2.907326%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1098" title="0000:00:16.0 {mei_me} async_device (18.356 ms) resume_noirq" class="thread" style="left:3.029016%;top:280.000px;height:30.000px;width:2.383939%;">0000:00:16.0 {mei_me}</div>
<div id="a1099" title="0000:00:1c.0 {pcieport} async_device (0.086 ms) resume_noirq" class="thread" style="left:3.029276%;top:190.000px;height:30.000px;width:0.011169%;">0000:00:1c.0 {pcieport}</div>
<div id="a1101" title="0000:00:1c.4 {pcieport} async_device (18.433 ms) resume_noirq" class="thread" style="left:3.040575%;top:190.000px;height:30.000px;width:2.393940%;">0000:00:1c.4 {pcieport}</div>
<div id="a1102" title="0000:00:1d.0 {pcieport} async_device (18.425 ms) resume_noirq" class="thread" style="left:3.041354%;top:250.000px;height:30.000px;width:2.392901%;">0000:00:1d.0 {pcieport}</div>
<div id="a1103" title="0000:00:1f.0 {pci} async_device (0.067 ms) resume_noirq" class="thread" style="left:3.041614%;top:310.000px;height:30.000px;width:0.008701%;">0000:00:1f.0 {pci}</div>
<div id="a1104" title="0000:00:1f.2 {pci} async_device (0.065 ms) resume_noirq" class="thread" style="left:3.042263%;top:370.000px;height:30.000px;width:0.008442%;">0000:00:1f.2 {pci}</div>
<div id="a1119" title="0000:00:1f.3 {snd_hda_intel} async_device (20.707 ms) resume_noirq" class="thread" style="left:5.471138%;top:190.000px;height:30.000px;width:2.689270%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a1105" title="0000:00:1f.4 {pci} async_device (0.118 ms) resume_noirq" class="thread" style="left:3.050575%;top:340.000px;height:30.000px;width:0.015325%;">0000:00:1f.4 {pci}</div>
<div id="a1117" title="0000:3a:00.0 {ath10k_pci} async_device (32.174 ms) resume_noirq" class="thread" style="left:5.435294%;top:100.000px;height:30.000px;width:4.178518%;">0000:3a:00.0 {ath10k_pci}</div>
<div id="a1118" title="0000:3b:00.0 {nvme} async_device (32.465 ms) resume_noirq" class="thread" style="left:5.435683%;top:70.000px;height:30.000px;width:4.216310%;">0000:3b:00.0 {nvme}</div>
<div id="a1115" title="INT33D5:00 {intel-hid} sync_device (0.001 ms) resume_noirq" class="thread sync" style="left:3.376555%;top:310.000px;height:30.000px;width:0.000130%;">INT33D5:00 {intel-hid}</div>
<div id="a1106" title="INT33D6:00 {intel-vbtn} sync_device (0.001 ms) resume_noirq" class="thread sync" style="left:3.051094%;top:310.000px;height:30.000px;width:0.000130%;">INT33D6:00 {intel-vbtn}</div>
<div id="a1110" title="INT344B:00 {sunrisepoint-pinctrl} sync_device (2.496 ms) resume_noirq" class="thread sync" style="left:3.051614%;top:310.000px;height:30.000px;width:0.324162%;">INT344B:00 {sunrisepoint-pinctrl}</div>
<div id="a1100" title="PNP0C09:00 {ec} sync_device (0.002 ms) resume_noirq" class="thread sync" style="left:3.036808%;top:250.000px;height:30.000px;width:0.000260%;">PNP0C09:00 {ec}</div>
<div id="a1112" title="PNP0C14:00 {acpi-wmi} sync_device (0.001 ms) resume_noirq" class="thread sync" style="left:3.376165%;top:310.000px;height:30.000px;width:0.000130%;">PNP0C14:00 {acpi-wmi}</div>
<div id="a1121" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (0.001 ms) resume_noirq" class="thread" style="left:8.450673%;top:40.000px;height:30.000px;width:0.000130%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a1120" title="i8042 {i8042} sync_device (0.001 ms) resume_noirq" class="thread sync" style="left:8.445608%;top:40.000px;height:30.000px;width:0.000130%;">i8042 {i8042}</div>
<div id="a1122" title="0000:00:02.0 {i915} async_device (0.648 ms) resume_early" class="thread" style="left:9.834335%;top:40.000px;height:180.000px;width:0.084157%;">0000:00:02.0 {i915}</div>
<div id="a1124" title="0000:00:15.0 {intel-lpss} async_device (0.012 ms) resume_early" class="thread" style="left:9.844205%;top:220.000px;height:180.000px;width:0.001558%;">0000:00:15.0 {intel-lpss}</div>
<div id="a1123" title="0000:00:15.1 {intel-lpss} async_device (0.013 ms) resume_early" class="thread" style="left:9.835114%;top:220.000px;height:180.000px;width:0.001688%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1132" title="INT33A1:00 {intel_pmc_core} sync_device (0.001 ms) resume_early" class="thread sync" style="left:9.861478%;top:220.000px;height:180.000px;width:0.000130%;">INT33A1:00 {intel_pmc_core}</div>
<div id="a1134" title="INT33D5:00 {intel-hid} sync_device (0.001 ms) resume_early" class="thread sync" style="left:9.861997%;top:220.000px;height:180.000px;width:0.000130%;">INT33D5:00 {intel-hid}</div>
<div id="a1125" title="INT33D6:00 {intel-vbtn} sync_device (0.002 ms) resume_early" class="thread sync" style="left:9.860049%;top:220.000px;height:180.000px;width:0.000260%;">INT33D6:00 {intel-vbtn}</div>
<div id="a1135" title="INT3400:00 {int3400 thermal} sync_device (0.001 ms) resume_early" class="thread sync" style="left:9.862257%;top:220.000px;height:180.000px;width:0.000130%;">INT3400:00 {int3400 thermal}</div>
<div id="a1128" title="INT3403:02 {int3403 thermal} sync_device (0.001 ms) resume_early" class="thread sync" style="left:9.860699%;top:220.000px;height:180.000px;width:0.000130%;">INT3403:02 {int3403 thermal}</div>
<div id="a1129" title="INT344B:00 {sunrisepoint-pinctrl} sync_device (0.001 ms) resume_early" class="thread sync" style="left:9.860829%;top:220.000px;height:180.000px;width:0.000130%;">INT344B:00 {sunrisepoint-pinctrl}</div>
<div id="a1137" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (0.002 ms) resume_early" class="thread" style="left:9.939531%;top:40.000px;height:180.000px;width:0.000260%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a1136" title="i2c_designware.1 {i2c_designware} sync_device (0.006 ms) resume_early" class="thread sync" style="left:9.937583%;top:40.000px;height:180.000px;width:0.000779%;">i2c_designware.1 {i2c_designware}</div>
<div id="a1138" title="0000:00:00.0 {skl_uncore} async_device (0.001 ms) resume" class="thread" style="left:9.946415%;top:40.000px;height:51.429px;width:0.000130%;">0000:00:00.0 {skl_uncore}</div>
<div id="a1139" title="0000:00:02.0 {i915} async_device (243.299 ms) resume" class="thread" style="left:9.947064%;top:194.286px;height:51.429px;width:31.597847%;">0000:00:02.0 {i915}</div>
<div id="a1140" title="0000:00:04.0 {proc_thermal} async_device (0.456 ms) resume" class="thread" style="left:9.947194%;top:91.429px;height:51.429px;width:0.059222%;">0000:00:04.0 {proc_thermal}</div>
<div id="a1141" title="0000:00:14.0 {xhci_hcd} async_device (0.768 ms) resume" class="thread" style="left:9.947583%;top:40.000px;height:51.429px;width:0.099742%;">0000:00:14.0 {xhci_hcd}</div>
<div id="a1142" title="0000:00:14.2 {intel_pch_thermal} async_device (0.001 ms) resume" class="thread" style="left:9.949142%;top:142.857px;height:51.429px;width:0.000130%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a1144" title="0000:00:15.1 {intel-lpss} async_device (0.001 ms) resume" class="thread" style="left:9.949921%;top:142.857px;height:51.429px;width:0.000130%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1145" title="0000:00:16.0 {mei_me} async_device (2.803 ms) resume" class="thread" style="left:9.950311%;top:142.857px;height:51.429px;width:0.364033%;">0000:00:16.0 {mei_me}</div>
<div id="a1146" title="0000:00:1c.0 {pcieport} async_device (0.003 ms) resume" class="thread" style="left:9.951739%;top:245.714px;height:51.429px;width:0.000390%;">0000:00:1c.0 {pcieport}</div>
<div id="a1147" title="0000:00:1c.4 {pcieport} async_device (0.451 ms) resume" class="thread" style="left:9.952259%;top:245.714px;height:51.429px;width:0.058572%;">0000:00:1c.4 {pcieport}</div>
<div id="a1151" title="0000:00:1d.0 {pcieport} async_device (0.423 ms) resume" class="thread" style="left:9.961220%;top:297.143px;height:51.429px;width:0.054936%;">0000:00:1d.0 {pcieport}</div>
<div id="a1152" title="0000:00:1f.0 {pci} async_device (0.002 ms) resume" class="thread" style="left:9.963818%;top:348.571px;height:51.429px;width:0.000260%;">0000:00:1f.0 {pci}</div>
<div id="a1153" title="0000:00:1f.2 {pci} async_device (0.001 ms) resume" class="thread" style="left:9.964337%;top:348.571px;height:51.429px;width:0.000130%;">0000:00:1f.2 {pci}</div>
<div id="a1200" title="0000:00:1f.3 {snd_hda_intel} async_device (13.406 ms) resume" class="thread" style="left:41.546729%;top:194.286px;height:51.429px;width:1.741071%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a1154" title="0000:00:1f.4 {pci} async_device (0.001 ms) resume" class="thread" style="left:9.964597%;top:348.571px;height:51.429px;width:0.000130%;">0000:00:1f.4 {pci}</div>
<div id="a1158" title="0000:3a:00.0 {ath10k_pci} async_device (0.331 ms) resume" class="thread" style="left:10.050313%;top:40.000px;height:51.429px;width:0.042988%;">0000:3a:00.0 {ath10k_pci}</div>
<div id="a1156" title="0000:3b:00.0 {nvme} async_device (0.007 ms) resume" class="thread" style="left:10.018883%;top:91.429px;height:51.429px;width:0.000909%;">0000:3b:00.0 {nvme}</div>
<div id="a1181" title="PNP0c02 [00:00] {system} sync_device (0.001 ms) resume" class="thread sync" style="left:12.211521%;top:142.857px;height:51.429px;width:0.000130%;">00:00 {system}</div>
<div id="a1182" title="PNP0b00 [00:01] {rtc_cmos} sync_device (0.148 ms) resume" class="thread sync" style="left:12.211780%;top:142.857px;height:51.429px;width:0.019221%;">00:01 {rtc_cmos}</div>
<div id="a1184" title="PNP0303 [00:03] {i8042 kbd} sync_device (0.001 ms) resume" class="thread sync" style="left:12.252950%;top:142.857px;height:51.429px;width:0.000130%;">00:03 {i8042 kbd}</div>
<div id="a1189" title="PNP0c02 [00:08] {system} sync_device (0.001 ms) resume" class="thread sync" style="left:12.253729%;top:142.857px;height:51.429px;width:0.000130%;">00:08 {system}</div>
<div id="a1199" title="USB 10/100/1000 LAN [1-2] {usb} async_device (284.081 ms) resume" class="thread" style="left:24.147322%;top:142.857px;height:51.429px;width:36.894307%;">1-2 {usb}</div>
<div id="a1198" title="0cf3:e301 [1-3] {usb} async_device (554.067 ms) resume" class="thread" style="left:24.115374%;top:91.429px;height:51.429px;width:71.958062%;">1-3 {usb}</div>
<div id="a1177" title="ACPI0003:00 {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:11.999699%;top:142.857px;height:51.429px;width:0.000130%;">ACPI0003:00 {platform}</div>
<div id="a1166" title="INT0800:00 {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:11.997751%;top:142.857px;height:51.429px;width:0.000130%;">INT0800:00 {platform}</div>
<div id="a1179" title="INT33D5:00 {intel-hid} sync_device (1.622 ms) resume" class="thread sync" style="left:12.000088%;top:142.857px;height:51.429px;width:0.210653%;">INT33D5:00 {intel-hid}</div>
<div id="a1180" title="LNXPWRBN:00 {button} sync_device (0.001 ms) resume" class="thread sync" style="left:12.211131%;top:142.857px;height:51.429px;width:0.000130%;">LNXPWRBN:00 {button}</div>
<div id="a1165" title="LNXTHERM:00 {thermal} sync_device (0.004 ms) resume" class="thread sync" style="left:11.995803%;top:142.857px;height:51.429px;width:0.000519%;">LNXTHERM:00 {thermal}</div>
<div id="a1178" title="PNP0C0A:00 {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:11.999829%;top:142.857px;height:51.429px;width:0.000130%;">PNP0C0A:00 {platform}</div>
<div id="a1175" title="PNP0C0C:00 {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:11.999439%;top:142.857px;height:51.429px;width:0.000130%;">PNP0C0C:00 {platform}</div>
<div id="a1176" title="PNP0C0E:00 {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:11.999569%;top:142.857px;height:51.429px;width:0.000130%;">PNP0C0E:00 {platform}</div>
<div id="a1192" title="alarmtimer {alarmtimer} sync_device (0.001 ms) resume" class="thread sync" style="left:12.256976%;top:142.857px;height:51.429px;width:0.000130%;">alarmtimer {alarmtimer}</div>
<div id="a1203" title="bus.0 {platform Fixed MDIO} async_device (0.001 ms) resume" class="thread" style="left:41.550236%;top:245.714px;height:51.429px;width:0.000130%;">bus.0 {platform Fixed MDIO}</div>
<div id="a1229" title="coretemp.0 {coretemp} sync_device (0.001 ms) resume" class="thread sync" style="left:41.657121%;top:297.143px;height:51.429px;width:0.000130%;">coretemp.0 {coretemp}</div>
<div id="a1222" title="dell-smbios.0 {dell-smbios} sync_device (0.001 ms) resume" class="thread sync" style="left:41.654134%;top:245.714px;height:51.429px;width:0.000130%;">dell-smbios.0 {dell-smbios}</div>
<div id="a1223" title="dell-smbios.1 {dell-smbios} sync_device (0.001 ms) resume" class="thread sync" style="left:41.654394%;top:245.714px;height:51.429px;width:0.000130%;">dell-smbios.1 {dell-smbios}</div>
<div id="a1191" title="efi-framebuffer.0 {efi-framebuffer} sync_device (0.001 ms) resume" class="thread sync" style="left:12.256586%;top:142.857px;height:51.429px;width:0.000130%;">efi-framebuffer.0 {efi-framebuffer}</div>
<div id="a1231" title="hdaudioC0D0 {snd_hda_codec_realtek} async_device (45.590 ms) resume" class="thread" style="left:43.289359%;top:194.286px;height:51.429px;width:5.920887%;">hdaudioC0D0 {snd_hda_codec_realtek}</div>
<div id="a1232" title="hdaudioC0D2 {snd_hda_codec_hdmi} async_device (0.002 ms) resume" class="thread" style="left:43.289748%;top:245.714px;height:51.429px;width:0.000260%;">hdaudioC0D2 {snd_hda_codec_hdmi}</div>
<div id="a1225" title="DLL075B:01 [i2c-DLL075B:01] {i2c_hid} async_device (6.874 ms) resume" class="thread" style="left:41.655433%;top:245.714px;height:51.429px;width:0.892744%;">i2c-DLL075B:01 {i2c_hid}</div>
<div id="a1216" title="i2c_designware.1 {i2c_designware} sync_device (0.001 ms) resume" class="thread sync" style="left:41.652056%;top:245.714px;height:51.429px;width:0.000130%;">i2c_designware.1 {i2c_designware}</div>
<div id="a1205" title="i8042 {i8042} sync_device (0.705 ms) resume" class="thread sync" style="left:41.551535%;top:245.714px;height:51.429px;width:0.091560%;">i8042 {i8042}</div>
<div id="a1214" title="idma64.0 {idma64} sync_device (0.002 ms) resume" class="thread sync" style="left:41.651017%;top:245.714px;height:51.429px;width:0.000260%;">idma64.0 {idma64}</div>
<div id="a1215" title="idma64.1 {idma64} sync_device (0.001 ms) resume" class="thread sync" style="left:41.651666%;top:245.714px;height:51.429px;width:0.000130%;">idma64.1 {idma64}</div>
<div id="a1193" title="Lid Switch [input0] {input} sync_device (0.001 ms) resume" class="thread sync" style="left:12.258015%;top:142.857px;height:51.429px;width:0.000130%;">input0 {input}</div>
<div id="a1233" title="HDA Intel PCH Headphone Mic [input12] {input} sync_device (0.002 ms) resume" class="thread sync" style="left:43.291177%;top:245.714px;height:51.429px;width:0.000260%;">input12 {input}</div>
<div id="a1234" title="HDA Intel PCH HDMI/DP pcm=3 [input13] {input} sync_device (0.001 ms) resume" class="thread sync" style="left:43.291566%;top:245.714px;height:51.429px;width:0.000130%;">input13 {input}</div>
<div id="a1235" title="HDA Intel PCH HDMI/DP pcm=7 [input14] {input} sync_device (0.001 ms) resume" class="thread sync" style="left:43.291826%;top:245.714px;height:51.429px;width:0.000130%;">input14 {input}</div>
<div id="a1238" title="HDA Intel PCH HDMI/DP pcm=10 [input17] {input} sync_device (0.001 ms) resume" class="thread sync" style="left:43.292475%;top:245.714px;height:51.429px;width:0.000130%;">input17 {input}</div>
<div id="a1196" title="Power Button [input3] {input} sync_device (0.001 ms) resume" class="thread sync" style="left:12.258535%;top:142.857px;height:51.429px;width:0.000130%;">input3 {input}</div>
<div id="a1202" title="Video Bus [input4] {input} sync_device (0.001 ms) resume" class="thread sync" style="left:41.548807%;top:245.714px;height:51.429px;width:0.000130%;">input4 {input}</div>
<div id="a1208" title="AT Translated Set 2 keyboard [input5] {input} sync_device (0.003 ms) resume" class="thread sync" style="left:41.645692%;top:245.714px;height:51.429px;width:0.000390%;">input5 {input}</div>
<div id="a1219" title="input5::capslock {leds} sync_device (0.001 ms) resume" class="thread sync" style="left:41.653485%;top:245.714px;height:51.429px;width:0.000130%;">input5::capslock {leds}</div>
<div id="a1218" title="input5::numlock {leds} sync_device (0.001 ms) resume" class="thread sync" style="left:41.653225%;top:245.714px;height:51.429px;width:0.000130%;">input5::numlock {leds}</div>
<div id="a1220" title="input5::scrolllock {leds} sync_device (0.001 ms) resume" class="thread sync" style="left:41.653744%;top:245.714px;height:51.429px;width:0.000130%;">input5::scrolllock {leds}</div>
<div id="a1201" title="intel_backlight {backlight} sync_device (0.002 ms) resume" class="thread sync" style="left:41.547768%;top:245.714px;height:51.429px;width:0.000260%;">intel_backlight {backlight}</div>
<div id="a1213" title="intel_rapl_msr.0 {intel_rapl_msr} sync_device (0.001 ms) resume" class="thread sync" style="left:41.650368%;top:245.714px;height:51.429px;width:0.000130%;">intel_rapl_msr.0 {intel_rapl_msr}</div>
<div id="a1204" title="intel_xhci_usb_sw {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:41.551015%;top:245.714px;height:51.429px;width:0.000130%;">intel_xhci_usb_sw {platform}</div>
<div id="a1190" title="pcspkr {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:12.256327%;top:142.857px;height:51.429px;width:0.000130%;">pcspkr {platform}</div>
<div id="a1160" title="phy0 {ieee80211} async_device (637.575 ms) resume" class="thread" style="left:10.094599%;top:40.000px;height:51.429px;width:82.803454%;">phy0 {ieee80211}</div>
<div id="a1230" title="platform::micmute {leds} sync_device (0.001 ms) resume" class="thread sync" style="left:41.657511%;top:297.143px;height:51.429px;width:0.000130%;">platform::micmute {leds}</div>
<div id="a1148" title="reg-dummy {reg-dummy} sync_device (0.001 ms) resume" class="thread sync" style="left:9.955765%;top:297.143px;height:51.429px;width:0.000130%;">reg-dummy {reg-dummy}</div>
<div id="a1149" title="regulator-dummy [regulator.0] {regulator} sync_device (0.001 ms) resume" class="thread sync" style="left:9.956155%;top:297.143px;height:51.429px;width:0.000130%;">regulator.0 {regulator}</div>
<div id="a1217" title="regulatory.0 {platform} sync_device (0.001 ms) resume" class="thread sync" style="left:41.652965%;top:245.714px;height:51.429px;width:0.000130%;">regulatory.0 {platform}</div>
<div id="a1240" title="phy0 [rfkill1] {rfkill} sync_device (0.005 ms) resume" class="thread sync" style="left:92.903248%;top:40.000px;height:51.429px;width:0.000649%;">rfkill1 {rfkill}</div>
<div id="a1207" title="rtc_cmos 00:01 [rtc0] {rtc} sync_device (0.006 ms) resume" class="thread sync" style="left:41.644523%;top:245.714px;height:51.429px;width:0.000779%;">rtc0 {rtc}</div>
<div id="a1197" title="serial8250 {serial8250} sync_device (0.002 ms) resume" class="thread sync" style="left:12.258924%;top:142.857px;height:51.429px;width:0.000260%;">serial8250 {serial8250}</div>
<div id="a1206" title="i8042 KBD port [serio0] {atkbd} sync_device (0.004 ms) resume" class="thread sync" style="left:41.643355%;top:245.714px;height:51.429px;width:0.000519%;">serio0 {atkbd}</div>
<div id="a1241" title="i8042 AUX port [serio1] {serio} sync_device (0.001 ms) resume" class="thread sync" style="left:92.904416%;top:40.000px;height:51.429px;width:0.000130%;">serio1 {serio}</div>
<div id="a1227" title="snd-soc-dummy {snd-soc-dummy} sync_device (0.001 ms) resume" class="thread sync" style="left:41.656472%;top:297.143px;height:51.429px;width:0.000130%;">snd-soc-dummy {snd-soc-dummy}</div>
<div id="a1159" title="xHCI Host Controller [usb1] {usb} async_device (108.271 ms) resume" class="thread" style="left:10.050962%;top:91.429px;height:51.429px;width:14.061424%;">usb1 {usb}</div>
<div id="a1157" title="xHCI Host Controller [usb2] {usb} async_device (0.486 ms) resume" class="thread" style="left:10.050053%;top:245.714px;height:51.429px;width:0.063118%;">usb2 {usb}</div>
<div id="a1736" title="0000:00:14.0 {xhci_hcd} async_device (0.033 ms) resume_complete" class="thread" style="left:96.165255%;top:40.000px;height:360.000px;width:0.004286%;">0000:00:14.0 {xhci_hcd}</div>
<div id="a1735" title="0000:00:14.2 {intel_pch_thermal} async_device (0.001 ms) resume_complete" class="thread" style="left:96.165125%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:14.2 {intel_pch_thermal}</div>
<div id="a1734" title="0000:00:15.0 {intel-lpss} async_device (0.001 ms) resume_complete" class="thread" style="left:96.164995%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:15.0 {intel-lpss}</div>
<div id="a1733" title="0000:00:15.1 {intel-lpss} async_device (0.001 ms) resume_complete" class="thread" style="left:96.164865%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:15.1 {intel-lpss}</div>
<div id="a1732" title="0000:00:16.0 {mei_me} async_device (0.001 ms) resume_complete" class="thread" style="left:96.164735%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:16.0 {mei_me}</div>
<div id="a1731" title="0000:00:1c.0 {pcieport} async_device (0.001 ms) resume_complete" class="thread" style="left:96.164476%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:1c.0 {pcieport}</div>
<div id="a1730" title="0000:00:1c.4 {pcieport} async_device (0.001 ms) resume_complete" class="thread" style="left:96.163567%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:1c.4 {pcieport}</div>
<div id="a1571" title="0000:00:1c.4:pcie002 {aer} async_device (0.001 ms) resume_complete" class="thread" style="left:96.139410%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:1c.4:pcie002 {aer}</div>
<div id="a1729" title="0000:00:1d.0 {pcieport} async_device (0.001 ms) resume_complete" class="thread" style="left:96.163437%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:1d.0 {pcieport}</div>
<div id="a1568" title="0000:00:1d.0:pcie010 {pci_express} async_device (0.001 ms) resume_complete" class="thread" style="left:96.139021%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:1d.0:pcie010 {pci_express}</div>
<div id="a1728" title="0000:00:1f.0 {pci} async_device (0.001 ms) resume_complete" class="thread" style="left:96.163307%;top:40.000px;height:360.000px;width:0.000130%;">0000:00:1f.0 {pci}</div>
<div id="a1307" title="0000:00:1f.3 {snd_hda_intel} async_device (0.019 ms) resume_complete" class="thread" style="left:96.095903%;top:40.000px;height:360.000px;width:0.002468%;">0000:00:1f.3 {snd_hda_intel}</div>
<div id="a1724" title="0000:3a {pci_bus} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.162917%;top:40.000px;height:360.000px;width:0.000130%;">0000:3a {pci_bus}</div>
<div id="a1723" title="0000:3a:00.0 {ath10k_pci} async_device (0.001 ms) resume_complete" class="thread" style="left:96.162787%;top:40.000px;height:360.000px;width:0.000130%;">0000:3a:00.0 {ath10k_pci}</div>
<div id="a1722" title="0000:3b {pci_bus} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.162658%;top:40.000px;height:360.000px;width:0.000130%;">0000:3b {pci_bus}</div>
<div id="a1721" title="0000:3b:00.0 {nvme} async_device (0.001 ms) resume_complete" class="thread" style="left:96.162398%;top:40.000px;height:360.000px;width:0.000130%;">0000:3b:00.0 {nvme}</div>
<div id="a1337" title="0018:06CB:76AF.0001 {hid-multitouch} async_device (0.001 ms) resume_complete" class="thread" style="left:96.102527%;top:40.000px;height:360.000px;width:0.000130%;">0018:06CB:76AF.0001 {hid-multitouch}</div>
<div id="a1690" title="PNP0c02 [00:00] {system} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.157982%;top:40.000px;height:360.000px;width:0.000130%;">00:00 {system}</div>
<div id="a1687" title="PNP0303 [00:03] {i8042 kbd} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.156424%;top:40.000px;height:360.000px;width:0.000130%;">00:03 {i8042 kbd}</div>
<div id="a1686" title="DLL075b PNP0f13 [00:04] {i8042 aux} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.156294%;top:40.000px;height:360.000px;width:0.000130%;">00:04 {i8042 aux}</div>
<div id="a1685" title="PNP0c02 [00:05] {system} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.156164%;top:40.000px;height:360.000px;width:0.000130%;">00:05 {system}</div>
<div id="a1683" title="PNP0c02 [00:07] {system} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.155904%;top:40.000px;height:360.000px;width:0.000130%;">00:07 {system}</div>
<div id="a1682" title="PNP0c02 [00:08] {system} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.155774%;top:40.000px;height:360.000px;width:0.000130%;">00:08 {system}</div>
<div id="a1394" title="05901221-D566-11D1-B2F0-00A0C9062910 {wmi-bmof} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.113566%;top:40.000px;height:360.000px;width:0.000130%;">05901221-D566-11D1-B2F0-00A0C9062910 {wmi-bmof}</div>
<div id="a1249" title="0:53 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.086942%;top:40.000px;height:360.000px;width:0.000130%;">0:53 {bdi}</div>
<div id="a1472" title="1-0:1.0 {hub} async_device (0.001 ms) resume_complete" class="thread" style="left:96.124475%;top:40.000px;height:360.000px;width:0.000130%;">1-0:1.0 {hub}</div>
<div id="a1355" title="1-2:1.0 {r8152} async_device (0.001 ms) resume_complete" class="thread" style="left:96.105773%;top:40.000px;height:360.000px;width:0.000130%;">1-2:1.0 {r8152}</div>
<div id="a1391" title="0cf3:e301 [1-3] {usb} async_device (0.007 ms) resume_complete" class="thread" style="left:96.111618%;top:40.000px;height:360.000px;width:0.000909%;">1-3 {usb}</div>
<div id="a1497" title="7:0 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.127982%;top:40.000px;height:360.000px;width:0.000130%;">7:0 {bdi}</div>
<div id="a1310" title="7:11 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.098630%;top:40.000px;height:360.000px;width:0.000130%;">7:11 {bdi}</div>
<div id="a1305" title="7:12 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.095643%;top:40.000px;height:360.000px;width:0.000130%;">7:12 {bdi}</div>
<div id="a1298" title="7:15 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.094864%;top:40.000px;height:360.000px;width:0.000130%;">7:15 {bdi}</div>
<div id="a1485" title="7:6 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.126813%;top:40.000px;height:360.000px;width:0.000130%;">7:6 {bdi}</div>
<div id="a1321" title="7:8 {bdi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.100578%;top:40.000px;height:360.000px;width:0.000130%;">7:8 {bdi}</div>
<div id="a1567" title="AC {power_supply} sync_device (0.007 ms) resume_complete" class="thread sync" style="left:96.138112%;top:40.000px;height:360.000px;width:0.000909%;">AC {power_supply}</div>
<div id="a1932" title="DLLK075B:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.197723%;top:40.000px;height:360.000px;width:0.000130%;">DLLK075B:00 {acpi}</div>
<div id="a1785" title="FPNT_DIS:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.177593%;top:40.000px;height:360.000px;width:0.000130%;">FPNT_DIS:00 {acpi}</div>
<div id="a1763" title="Enclave Page Cache 1.0 [INT0E0C:00] {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.174346%;top:40.000px;height:360.000px;width:0.000130%;">INT0E0C:00 {acpi}</div>
<div id="a1940" title="INT33D2:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.198632%;top:40.000px;height:360.000px;width:0.000130%;">INT33D2:00 {acpi}</div>
<div id="a1935" title="INT3403:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.198113%;top:40.000px;height:360.000px;width:0.000130%;">INT3403:01 {acpi}</div>
<div id="a1934" title="INT3403:02 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.197983%;top:40.000px;height:360.000px;width:0.000130%;">INT3403:02 {acpi}</div>
<div id="a1749" title="INT340E:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.171878%;top:40.000px;height:360.000px;width:0.000130%;">INT340E:00 {acpi}</div>
<div id="a1762" title="INT3420:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.174216%;top:40.000px;height:360.000px;width:0.000130%;">INT3420:00 {acpi}</div>
<div id="a1789" title="INT3446:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.177982%;top:40.000px;height:360.000px;width:0.000130%;">INT3446:00 {acpi}</div>
<div id="a1788" title="INT3447:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.177853%;top:40.000px;height:360.000px;width:0.000130%;">INT3447:00 {acpi}</div>
<div id="a1782" title="INT3449:00 {acpi} sync_device (0.007 ms) resume_complete" class="thread sync" style="left:96.176424%;top:40.000px;height:360.000px;width:0.000909%;">INT3449:00 {acpi}</div>
<div id="a1801" title="INT344B:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.179281%;top:40.000px;height:360.000px;width:0.000130%;">INT344B:00 {acpi}</div>
<div id="a1750" title="INT3470:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.172008%;top:40.000px;height:360.000px;width:0.000130%;">INT3470:00 {acpi}</div>
<div id="a1796" title="INT3515:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.178762%;top:40.000px;height:360.000px;width:0.000130%;">INT3515:01 {acpi}</div>
<div id="a1942" title="INT3F0D:00 {acpi} sync_device (0.007 ms) resume_complete" class="thread sync" style="left:96.198892%;top:40.000px;height:360.000px;width:0.000909%;">INT3F0D:00 {acpi}</div>
<div id="a1975" title="LNXCPU:03 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.203957%;top:40.000px;height:360.000px;width:0.000130%;">LNXCPU:03 {acpi}</div>
<div id="a1971" title="LNXCPU:07 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.203567%;top:40.000px;height:360.000px;width:0.000130%;">LNXCPU:07 {acpi}</div>
<div id="a1928" title="LNXPOWER:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.197333%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:00 {acpi}</div>
<div id="a1925" title="LNXPOWER:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.196944%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:01 {acpi}</div>
<div id="a1922" title="LNXPOWER:02 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.196684%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:02 {acpi}</div>
<div id="a1916" title="LNXPOWER:04 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.195255%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:04 {acpi}</div>
<div id="a1898" title="LNXPOWER:07 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.193437%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:07 {acpi}</div>
<div id="a1892" title="LNXPOWER:09 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.192009%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:09 {acpi}</div>
<div id="a1886" title="LNXPOWER:0b {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.191359%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:0b {acpi}</div>
<div id="a1883" title="LNXPOWER:0c {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.191100%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:0c {acpi}</div>
<div id="a1877" title="LNXPOWER:0e {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.190450%;top:40.000px;height:360.000px;width:0.000130%;">LNXPOWER:0e {acpi}</div>
<div id="a1874" title="LNXPOWER:0f {acpi} sync_device (0.007 ms) resume_complete" class="thread sync" style="left:96.189281%;top:40.000px;height:360.000px;width:0.000909%;">LNXPOWER:0f {acpi}</div>
<div id="a1970" title="LNXSYBUS:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.203437%;top:40.000px;height:360.000px;width:0.000130%;">LNXSYBUS:00 {acpi}</div>
<div id="a1747" title="LNXSYBUS:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.171619%;top:40.000px;height:360.000px;width:0.000130%;">LNXSYBUS:01 {acpi}</div>
<div id="a1979" title="LNXSYSTM:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.204347%;top:40.000px;height:360.000px;width:0.000130%;">LNXSYSTM:00 {acpi}</div>
<div id="a1948" title="PNP0000:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.200321%;top:40.000px;height:360.000px;width:0.000130%;">PNP0000:00 {acpi}</div>
<div id="a1943" title="PNP0100:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.199801%;top:40.000px;height:360.000px;width:0.000130%;">PNP0100:00 {acpi}</div>
<div id="a1969" title="PNP0A08:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.203308%;top:40.000px;height:360.000px;width:0.000130%;">PNP0A08:00 {acpi}</div>
<div id="a1802" title="PNP0C02:05 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.179411%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C02:05 {acpi}</div>
<div id="a1947" title="PNP0C04:00 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.200191%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C04:00 {acpi}</div>
<div id="a1941" title="PNP0C09:00 {ec} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.198762%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C09:00 {ec}</div>
<div id="a1933" title="PNP0C09:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.197853%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C09:01 {acpi}</div>
<div id="a1757" title="PNP0C0D:00 {button} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.172788%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C0D:00 {button}</div>
<div id="a1768" title="PNP0C0F:03 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.174866%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C0F:03 {acpi}</div>
<div id="a1767" title="PNP0C0F:04 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.174736%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C0F:04 {acpi}</div>
<div id="a1761" title="PNP0C14:00 {acpi} sync_device (0.007 ms) resume_complete" class="thread sync" style="left:96.173307%;top:40.000px;height:360.000px;width:0.000909%;">PNP0C14:00 {acpi}</div>
<div id="a1758" title="PNP0C14:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.172917%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C14:01 {acpi}</div>
<div id="a1759" title="TPM 1.2 Device [PNP0C31:00] {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.173047%;top:40.000px;height:360.000px;width:0.000130%;">PNP0C31:00 {acpi}</div>
<div id="a1793" title="XXXX0000:01 {acpi} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.178372%;top:40.000px;height:360.000px;width:0.000130%;">XXXX0000:01 {acpi}</div>
<div id="a2134" title="acpi_pm_end (2.222 ms) resume_complete" class="thread" style="left:96.226295%;top:40.000px;height:360.000px;width:0.288577%;">acpi_pm_end</div>
<div id="a1365" title="acpi_thermal_rel {misc} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.107721%;top:40.000px;height:360.000px;width:0.000130%;">acpi_thermal_rel {misc}</div>
<div id="a1594" title="alarmtimer {alarmtimer} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.142917%;top:40.000px;height:360.000px;width:0.000130%;">alarmtimer {alarmtimer}</div>
<div id="a1386" title="autofs {misc} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.111098%;top:40.000px;height:360.000px;width:0.000130%;">autofs {misc}</div>
<div id="a1477" title="bus.0 {platform Fixed MDIO} async_device (0.001 ms) resume_complete" class="thread" style="left:96.125124%;top:40.000px;height:360.000px;width:0.000130%;">bus.0 {platform Fixed MDIO}</div>
<div id="a1513" title="PCH [card0] {drm} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.130579%;top:40.000px;height:360.000px;width:0.000130%;">card0 {drm}</div>
<div id="a1592" title="clockevent0 {clockevents} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.142657%;top:40.000px;height:360.000px;width:0.000130%;">clockevent0 {clockevents}</div>
<div id="a1590" title="clockevent2 {clockevents} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.142527%;top:40.000px;height:360.000px;width:0.000130%;">clockevent2 {clockevents}</div>
<div id="a1593" title="clockevents sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.142787%;top:40.000px;height:360.000px;width:0.000130%;">clockevents</div>
<div id="a1596" title="clocksource sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.143177%;top:40.000px;height:360.000px;width:0.000130%;">clocksource</div>
<div id="a1595" title="clocksource0 {clocksource} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.143047%;top:40.000px;height:360.000px;width:0.000130%;">clocksource0 {clocksource}</div>
<div id="a1435" title="cmos_nvram0 {nvmem} sync_device (0.007 ms) resume_complete" class="thread sync" style="left:96.118890%;top:40.000px;height:360.000px;width:0.000909%;">cmos_nvram0 {nvmem}</div>
<div id="a1672" title="console {tty} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.153826%;top:40.000px;height:360.000px;width:0.000130%;">console {tty}</div>
<div id="a1559" title="cooling_device2 {thermal} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.137202%;top:40.000px;height:360.000px;width:0.000130%;">cooling_device2 {thermal}</div>
<div id="a1558" title="cooling_device3 {thermal} sync_device (0.001 ms) resume_complete" class="thread sync" style="left:96.137073%;top:40.000px;height:360.000px;width:0.000130%;">cooling_device3 {thermal}</div>