-
Notifications
You must be signed in to change notification settings - Fork 0
/
svd.log
1622 lines (1506 loc) · 58.6 KB
/
svd.log
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
This is XeTeX, Version 3.141592653-2.6-0.999996 (TeX Live 2024) (preloaded format=xelatex 2024.8.30) 3 SEP 2024 13:30
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**svd.tex
(./svd.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-16>
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2024/02/08 v1.4n Standard LaTeX file (size option)
)
\c@part=\count190
\c@section=\count191
\c@subsection=\count192
\c@subsubsection=\count193
\c@paragraph=\count194
\c@subparagraph=\count195
\c@figure=\count196
\c@table=\count197
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
\bibindent=\dimen141
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/oberdiek/ifdraft.sty
Package: ifdraft 2016/05/16 v1.4 Detect class options draft and final (HO)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/geometry/geometry.st
y
Package: geometry 2020/01/02 v5.9 Page Geometry
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
\Gm@cnth=\count198
\Gm@cntv=\count199
\c@Gm@tempcnt=\count266
\Gm@bindingoffset=\dimen142
\Gm@wd@mp=\dimen143
\Gm@odd@mp=\dimen144
\Gm@even@mp=\dimen145
\Gm@layoutwidth=\dimen146
\Gm@layoutheight=\dimen147
\Gm@layouthoffset=\dimen148
\Gm@layoutvoffset=\dimen149
\Gm@dimlist=\toks18
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsmath/amsmath.st
y
Package: amsmath 2024/05/23 v2.17q AMS math features
\@mathmargin=\skip51
For additional information on amsmath, use the `?' option.
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks19
\ex@=\dimen150
)) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsmath/amsbsy.st
y
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen151
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count267
LaTeX Info: Redefining \frac on input line 233.
\uproot@=\count268
\leftroot@=\count269
LaTeX Info: Redefining \overline on input line 398.
LaTeX Info: Redefining \colon on input line 409.
\classnum@=\count270
\DOTSCASE@=\count271
LaTeX Info: Redefining \ldots on input line 495.
LaTeX Info: Redefining \dots on input line 498.
LaTeX Info: Redefining \cdots on input line 619.
\Mathstrutbox@=\box52
\strutbox@=\box53
LaTeX Info: Redefining \big on input line 721.
LaTeX Info: Redefining \Big on input line 722.
LaTeX Info: Redefining \bigg on input line 723.
LaTeX Info: Redefining \Bigg on input line 724.
\big@size=\dimen152
LaTeX Font Info: Redeclaring font encoding OML on input line 742.
LaTeX Font Info: Redeclaring font encoding OMS on input line 743.
\macc@depth=\count272
LaTeX Info: Redefining \bmod on input line 904.
LaTeX Info: Redefining \pmod on input line 909.
LaTeX Info: Redefining \smash on input line 939.
LaTeX Info: Redefining \relbar on input line 969.
LaTeX Info: Redefining \Relbar on input line 970.
\c@MaxMatrixCols=\count273
\dotsspace@=\muskip17
\c@parentequation=\count274
\dspbrk@lvl=\count275
\tag@help=\toks20
\row@=\count276
\column@=\count277
\maxfields@=\count278
\andhelp@=\toks21
\eqnshift@=\dimen153
\alignsep@=\dimen154
\tagshift@=\dimen155
\tagwidth@=\dimen156
\totwidth@=\dimen157
\lineht@=\dimen158
\@envbody=\toks22
\multlinegap=\skip52
\multlinetaggap=\skip53
\mathdisplay@stack=\toks23
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks24
\thm@bodyfont=\toks25
\thm@headfont=\toks26
\thm@notefont=\toks27
\thm@headpunct=\toks28
\thm@preskip=\skip54
\thm@postskip=\skip55
\thm@headsep=\skip56
\dth@everypar=\toks29
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/amsfonts/amsfonts.st
y
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/mathtools/empheq.sty
Package: empheq 2017/03/31 v2.15 Emphasizing equations
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/mathtools/mhsetup.st
y
Package: mhsetup 2021/03/18 v1.4 programming setup (MH)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/mathtools/mathtools.
sty
Package: mathtools 2024/03/11 v1.30 mathematical typesetting tools
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2023/07/08 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count279
\calc@Bcount=\count280
\calc@Adimen=\dimen159
\calc@Bdimen=\dimen160
\calc@Askip=\skip57
\calc@Bskip=\skip58
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count281
\calc@Cskip=\skip59
)
\g_MT_multlinerow_int=\count282
\l_MT_multwidth_dim=\dimen161
\origjot=\skip60
\l_MT_shortvdotswithinadjustabove_dim=\dimen162
\l_MT_shortvdotswithinadjustbelow_dim=\dimen163
\l_MT_above_intertext_sep=\dimen164
\l_MT_below_intertext_sep=\dimen165
\l_MT_above_shortintertext_sep=\dimen166
\l_MT_below_shortintertext_sep=\dimen167
\xmathstrut@box=\box54
\xmathstrut@dim=\dimen168
)
\l_EQ_equationtype_int=\count283
\l_EQ_alignmentmode_int=\count284
\l_EQ_totalwidth_dim=\dimen169
\l_EQ_displaywidth_dim=\dimen170
\l_EQ_temp_linewidth_dim=\dimen171
\l_EQ_linewidth_dim=\dimen172
\EmphEqdelimitershortfall=\dimen173
\EmphEqdelimiterfactor=\count285
\g_EQ_toptag_height_dim=\dimen174
\g_EQ_bottomtag_depth_dim=\dimen175
\g_EQ_toprow_height_dim=\dimen176
\g_EQ_bottomrow_depth_dim=\dimen177
\g_EQ_widesttag_dim=\dimen178
\EQ_mathdisplay_box=\box55
\EQ_tag_box=\box56
\g_EQ_temprow_int=\count286
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/lscape.sty
Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/graphics.st
y
Package: graphics 2024/05/23 v1.4g Standard LaTeX Graphics (DPC,SPQR)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics-cfg/graphic
s.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 106.
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics-def/xetex.d
ef
File: xetex.def 2022/09/22 v5.0n Graphics/color driver for xetex
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2024-04-26 v4.20 Multi-page Table package (DPC)
\LTleft=\skip61
\LTright=\skip62
\LTpre=\skip63
\LTpost=\skip64
\LTchunksize=\count287
\LTcapwidth=\dimen179
\LT@head=\box57
\LT@firsthead=\box58
\LT@foot=\box59
\LT@lastfoot=\box60
\LT@gbox=\box61
\LT@cols=\count288
\LT@rows=\count289
\c@LT@tables=\count290
\c@LT@chunks=\count291
\LT@p@ftn=\toks30
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/color.sty
Package: color 2024/01/14 v1.3d Standard LaTeX Color (DPC)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics-cfg/color.c
fg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: xetex.def on input line 149.
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/mathcolor.l
tx))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/jknapltx/mathbbol.st
y
Package: mathbbol 1995/01/01
\symbbold=\mathgroup6
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/bbm-macros/bbm.sty
Package: bbm 1999/03/15 V 1.2 provides fonts for set symbols - TH
LaTeX Font Info: Redeclaring math alphabet \mathbbm on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathbbm' in version `bold'
(Font) U/bbm/m/n --> U/bbm/bx/n on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathbbmss' in version `bold'
(Font) U/bbmss/m/n --> U/bbmss/bx/n on input line 35.
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/rotating.st
y
Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/graphicx.st
y
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
\Gin@req@height=\dimen180
\Gin@req@width=\dimen181
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2024/03/16 v1.1e Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count292
\rotFPtop=\skip65
\rotFPbot=\skip66
\rot@float@box=\box62
\rot@mess@toks=\toks31
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/multirow/multirow.st
y
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
\multirow@colwidth=\skip67
\multirow@cntb=\count293
\multirow@dima=\skip68
\bigstrutjot=\dimen182
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/booktabs/booktabs.st
y
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen183
\lightrulewidth=\dimen184
\cmidrulewidth=\dimen185
\belowrulesep=\dimen186
\belowbottomsep=\dimen187
\aboverulesep=\dimen188
\abovetopsep=\dimen189
\cmidrulesep=\dimen190
\cmidrulekern=\dimen191
\defaultaddspace=\dimen192
\@cmidla=\count294
\@cmidlb=\count295
\@aboverulesep=\dimen193
\@belowrulesep=\dimen194
\@thisruleclass=\count296
\@lastruleclass=\count297
\@thisrulewidth=\dimen195
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/was/upgreek.sty
Package: upgreek 2003/02/12 v2.0 (WaS)
Package upgreek Info: Using Euler Roman for upright Greek on input line 31.
\symugrf@m=\mathgroup7
LaTeX Font Info: Overwriting symbol font `ugrf@m' in version `bold'
(Font) U/eur/m/n --> U/eur/b/n on input line 38.
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/accents/accents.sty
Package: accents 2006/05/12 v1.4 Math Accent Tools
\cc@skew=\dimen196
\cc@wd=\dimen197
\cc@code=\count298
\cc@group=\count299
\cc@skewchar=\count300
) (/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/datetime2/datetime2.
sty
Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/tracklang/tracklang.
sty
Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/tracklang/tracklan
g.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/etoolbox/etoolbox.st
y
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count301
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/xkeyval/xkeyval.te
x
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/xkeyval/xkvutils.t
ex
\XKV@toks=\toks32
\XKV@tempa@toks=\toks33
)
\XKV@depth=\count302
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/datetime2-english/da
tetime2-en-US.ldf
File: datetime2-en-US.ldf 2019/10/21 v1.05 (NLCT)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/datetime2-english/da
tetime2-english-base.ldf
File: datetime2-english-base.ldf 2019/10/21 v1.05 (NLCT)
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/frontendlayer/ti
kz.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/basiclayer/pgf.s
ty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/utilities/pgfrcs
.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfu
til-common.tex
\pgfutil@everybye=\toks34
\pgfutil@tempdima=\dimen198
\pgfutil@tempdimb=\dimen199
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfu
til-latex.def
\pgfutil@abb=\box63
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfr
cs.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/pgf.revision.t
ex)
Package: pgfrcs 2023-01-15 v3.1.10 (3.1.10)
))
Package: pgf 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/basiclayer/pgfco
re.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/systemlayer/pgfs
ys.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys.code.tex
Package: pgfsys 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfk
eys.code.tex
\pgfkeys@pathtoks=\toks35
\pgfkeys@temptoks=\toks36
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfk
eyslibraryfiltered.code.tex
\pgfkeys@tmptoks=\toks37
))
\pgf@x=\dimen256
\pgf@y=\dimen257
\pgf@xa=\dimen258
\pgf@ya=\dimen259
\pgf@xb=\dimen260
\pgf@yb=\dimen261
\pgf@xc=\dimen262
\pgf@yc=\dimen263
\pgf@xd=\dimen264
\pgf@yd=\dimen265
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count303
\c@pgf@countb=\count304
\c@pgf@countc=\count305
\c@pgf@countd=\count306
\t@pgf@toka=\toks38
\t@pgf@tokb=\toks39
\t@pgf@tokc=\toks40
\pgf@sys@id@count=\count307
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
f.cfg
File: pgf.cfg 2023-01-15 v3.1.10 (3.1.10)
)
Driver file for pgf: pgfsys-xetex.def
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys-xetex.def
File: pgfsys-xetex.def 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys-dvipdfmx.def
File: pgfsys-dvipdfmx.def 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
fsys-common-pdf.def
File: pgfsys-common-pdf.def 2023-01-15 v3.1.10 (3.1.10)
)
\pgfsys@objnum=\count308
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
fsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfsyssoftpath@smallbuffer@items=\count309
\pgfsyssoftpath@bigbuffer@items=\count310
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pg
fsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2023/11/15 v3.01 LaTeX color extensions (UK)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics-cfg/color.c
fg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: xetex.def on input line 274.
LaTeX Info: Redefining \color on input line 758.
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/graphics/mathcolor.l
tx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1350.
Package xcolor Info: Model `RGB' extended on input line 1366.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1368.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1371.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1372.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1373.
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
core.code.tex
Package: pgfcore 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmath.c
ode.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathut
il.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathpa
rser.code.tex
\pgfmath@dimen=\dimen266
\pgfmath@count=\count311
\pgfmath@box=\box64
\pgfmath@toks=\toks41
\pgfmath@stack@operand=\toks42
\pgfmath@stack@operation=\toks43
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.basic.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.trigonometric.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.random.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.comparison.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.base.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.round.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.misc.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfu
nctions.integerarithmetics.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathca
lc.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfl
oat.code.tex
\c@pgfmathroundto@lastzeros=\count312
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfint.co
de.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepoints.code.tex
File: pgfcorepoints.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@picminx=\dimen267
\pgf@picmaxx=\dimen268
\pgf@picminy=\dimen269
\pgf@picmaxy=\dimen270
\pgf@pathminx=\dimen271
\pgf@pathmaxx=\dimen272
\pgf@pathminy=\dimen273
\pgf@pathmaxy=\dimen274
\pgf@xx=\dimen275
\pgf@xy=\dimen276
\pgf@yx=\dimen277
\pgf@yy=\dimen278
\pgf@zx=\dimen279
\pgf@zy=\dimen280
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@path@lastx=\dimen281
\pgf@path@lasty=\dimen282
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepathusage.code.tex
File: pgfcorepathusage.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@shorten@end@additional=\dimen283
\pgf@shorten@start@additional=\dimen284
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corescopes.code.tex
File: pgfcorescopes.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfpic=\box65
\pgf@hbox=\box66
\pgf@layerbox@main=\box67
\pgf@picture@serial@count=\count313
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgflinewidth=\dimen285
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coretransformations.code.tex
File: pgfcoretransformations.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@pt@x=\dimen286
\pgf@pt@y=\dimen287
\pgf@pt@temp=\dimen288
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corequick.code.tex
File: pgfcorequick.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreobjects.code.tex
File: pgfcoreobjects.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corearrows.code.tex
File: pgfcorearrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfarrowsep=\dimen289
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreshade.code.tex
File: pgfcoreshade.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@max=\dimen290
\pgf@sys@shading@range@num=\count314
\pgf@shadingcount=\count315
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreimage.code.tex
File: pgfcoreimage.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coreexternal.code.tex
File: pgfcoreexternal.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfexternal@startupbox=\box68
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corelayers.code.tex
File: pgfcorelayers.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
coretransparency.code.tex
File: pgfcoretransparency.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corepatterns.code.tex
File: pgfcorepatterns.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgf
corerdf.code.tex
File: pgfcorerdf.code.tex 2023-01-15 v3.1.10 (3.1.10)
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/modules/pgfmod
uleshapes.code.tex
File: pgfmoduleshapes.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfnodeparttextbox=\box69
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/modules/pgfmod
uleplot.code.tex
File: pgfmoduleplot.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/compatibility/pg
fcomp-version-0-65.sty
Package: pgfcomp-version-0-65 2023-01-15 v3.1.10 (3.1.10)
\pgf@nodesepstart=\dimen291
\pgf@nodesepend=\dimen292
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/compatibility/pg
fcomp-version-1-18.sty
Package: pgfcomp-version-1-18 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/utilities/pgffor
.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/utilities/pgfkey
s.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfk
eys.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/math/pgfmath.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmath.c
ode.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgff
or.code.tex
Package: pgffor 2023-01-15 v3.1.10 (3.1.10)
\pgffor@iter=\dimen293
\pgffor@skip=\dimen294
\pgffor@stack=\toks44
\pgffor@toks=\toks45
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/tikz.code.tex
Package: tikz 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/pgfl
ibraryplothandlers.code.tex
File: pgflibraryplothandlers.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@plot@mark@count=\count316
\pgfplotmarksize=\dimen295
)
\tikz@lastx=\dimen296
\tikz@lasty=\dimen297
\tikz@lastxsaved=\dimen298
\tikz@lastysaved=\dimen299
\tikz@lastmovetox=\dimen300
\tikz@lastmovetoy=\dimen301
\tikzleveldistance=\dimen302
\tikzsiblingdistance=\dimen303
\tikz@figbox=\box70
\tikz@figbox@bg=\box71
\tikz@tempbox=\box72
\tikz@tempbox@bg=\box73
\tikztreelevel=\count317
\tikznumberofchildren=\count318
\tikznumberofcurrentchild=\count319
\tikz@fig@count=\count320
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/modules/pgfmod
ulematrix.code.tex
File: pgfmodulematrix.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfmatrixcurrentrow=\count321
\pgfmatrixcurrentcolumn=\count322
\pgf@matrix@numberofcolumns=\count323
)
\tikz@expandcount=\count324
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarytopaths.code.tex
File: tikzlibrarytopaths.code.tex 2023-01-15 v3.1.10 (3.1.10)
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/tikzscale/tikzscale.
sty
Package: tikzscale 2013/05/22 v0.2.6 tikzscale LaTeX package
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/l3packages/xparse/xp
arse.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2024-08-16 L3 programming layer (loader)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/l3backend/l3backend-
xetex.def
File: l3backend-xetex.def 2024-05-08 L3 backend support: XeTeX
\g__graphics_track_int=\count325
\l__pdf_internal_box=\box74
\g__pdf_backend_annotation_int=\count326
\g__pdf_backend_link_int=\count327
))
Package: xparse 2024-08-16 L3 Experimental document command parser
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/letltxmacro/letltxma
cro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/xstring/xstring.st
y
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/xstring/xstring.te
x
\xs_counta=\count328
\xs_countb=\count329
)
Package: xstring 2023/08/22 v1.86 String manipulations (CT)
)
\tikzscale@measuredSize=\box75
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/compatibility/pg
farrows.sty
Package: pgfarrows 2023-01-15 v3.1.10 (3.1.10)
Package pgfarrows Warning: This package is obsolete. pgf.sty will load arrow ma
nagement automatically on input line 17.
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgf/compatibility/pg
fnodes.sty
Package: pgfnodes 2023-01-15 v3.1.10 (3.1.10)
Package pgfnodes Warning: This package is obsolete. pgf.sty will load node mana
gement automatically on input line 17.
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/filecontents/filecon
tents.sty
Package: filecontents 2023/04/02 v1.5a Create an external file from within a La
TeX document
Package filecontents Warning: This package is obsolete. Disabling it and
(filecontents) passing control to the filecontents environment
(filecontents) defined by the LaTeX kernel.
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/tikz-cd/tikz-cd.sty
Package: tikz-cd 2021/05/04 v1.0 Commutative diagrams with TikZ
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/tikz-cd/tikzlibrar
ycd.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarymatrix.code.tex
File: tikzlibrarymatrix.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryquotes.code.tex
File: tikzlibraryquotes.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/pgfl
ibraryarrows.meta.code.tex
File: pgflibraryarrows.meta.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfarrowinset=\dimen304
\pgfarrowlength=\dimen305
\pgfarrowwidth=\dimen306
\pgfarrowlinewidth=\dimen307
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryarrows.code.tex
File: tikzlibraryarrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/pgfl
ibraryarrows.code.tex
File: pgflibraryarrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
\arrowsize=\dimen308
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarypatterns.code.tex
File: tikzlibrarypatterns.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/pgfl
ibrarypatterns.code.tex
File: pgflibrarypatterns.code.tex 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarypositioning.code.tex
File: tikzlibrarypositioning.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarydecorations.markings.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarydecorations.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/modules/pgfmod
uledecorations.code.tex
\pgfdecoratedcompleteddistance=\dimen309
\pgfdecoratedremainingdistance=\dimen310
\pgfdecoratedinputsegmentcompleteddistance=\dimen311
\pgfdecoratedinputsegmentremainingdistance=\dimen312
\pgf@decorate@distancetomove=\dimen313
\pgf@decorate@repeatstate=\count330
\pgfdecorationsegmentamplitude=\dimen314
\pgfdecorationsegmentlength=\dimen315
)
\tikz@lib@dec@box=\box76
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/deco
rations/pgflibrarydecorations.markings.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.code.tex
File: tikzlibraryshapes.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.geometric.code.tex
File: tikzlibraryshapes.geometric.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/shap
es/pgflibraryshapes.geometric.code.tex
File: pgflibraryshapes.geometric.code.tex 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.misc.code.tex
File: tikzlibraryshapes.misc.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/shap
es/pgflibraryshapes.misc.code.tex
File: pgflibraryshapes.misc.code.tex 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.symbols.code.tex
File: tikzlibraryshapes.symbols.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/shap
es/pgflibraryshapes.symbols.code.tex
File: pgflibraryshapes.symbols.code.tex 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.arrows.code.tex
File: tikzlibraryshapes.arrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/shap
es/pgflibraryshapes.arrows.code.tex
File: pgflibraryshapes.arrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.callouts.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/shap
es/pgflibraryshapes.callouts.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryshapes.multipart.code.tex
File: tikzlibraryshapes.multipart.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/shap
es/pgflibraryshapes.multipart.code.tex
File: pgflibraryshapes.multipart.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfnodepartlowerbox=\box77
\pgfnodeparttwobox=\box78
\pgfnodepartthreebox=\box79
\pgfnodepartfourbox=\box80
\pgfnodeparttwentybox=\box81
\pgfnodepartnineteenbox=\box82
\pgfnodeparteighteenbox=\box83
\pgfnodepartseventeenbox=\box84
\pgfnodepartsixteenbox=\box85
\pgfnodepartfifteenbox=\box86
\pgfnodepartfourteenbox=\box87
\pgfnodepartthirteenbox=\box88
\pgfnodeparttwelvebox=\box89
\pgfnodepartelevenbox=\box90
\pgfnodeparttenbox=\box91
\pgfnodepartninebox=\box92
\pgfnodeparteightbox=\box93
\pgfnodepartsevenbox=\box94
\pgfnodepartsixbox=\box95
\pgfnodepartfivebox=\box96
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgfplots/pgfplots.st
y
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
revision.tex)
Package: pgfplots 2021/05/15 v1.18.1 Data Visualization (1.18.1)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotsc
ore.code.tex
\t@pgfplots@toka=\toks46
\t@pgfplots@tokb=\toks47
\t@pgfplots@tokc=\toks48
\pgfplots@tmpa=\dimen316
\c@pgfplots@coordindex=\count331
\c@pgfplots@scanlineindex=\count332
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/sys/pgfpl
otssysgeneric.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/libs/pgfp
lotslibrary.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/oldpgfcom
patib/pgfplotsoldpgfsupp_loader.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/pgfl
ibraryfpu.code.tex)
Package pgfplots: loading complementary utilities for your pgf version...
\t@pgf@toka=\toks49
\t@pgf@tokb=\toks50
\t@pgf@tokc=\toks51
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/oldpgfcom
patib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/util/pgfp
lotsutil.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/liststruc
ture/pgfplotsliststructure.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/liststruc
ture/pgfplotsliststructureext.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/liststruc
ture/pgfplotsarray.code.tex
\c@pgfplotsarray@tmp=\count333
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/liststruc
ture/pgfplotsmatrix.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/numtable/
pgfplotstableshared.code.tex
\c@pgfplotstable@counta=\count334
\t@pgfplotstable@a=\toks52
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/liststruc
ture/pgfplotsdeque.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/util/pgfp
lotsbinary.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/util/pgfp
lotsbinary.data.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/util/pgfp
lotsutil.verb.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/libs/pgfl
ibrarypgfplots.surfshading.code.tex
\c@pgfplotslibrarysurf@no=\count335
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/sys/pgfli
brarypgfplots.surfshading.pgfsys-xetex.def
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/sys/pgfli
brarypgfplots.surfshading.pgfsys-dvipdfmx.def
\c@pgfplotslibrarysurf@streamlen=\count336
))))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/util/pgfp
lotscolormap.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/util/pgfp
lotscolor.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotss
tackedplots.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotsp
lothandlers.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotsm
eshplothandler.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotsm
eshplotimage.code.tex)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
scaling.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotsc
oordprocessing.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
errorbars.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
markers.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplotst
icks.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
paths.code.tex)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/deco
rations/pgflibrarydecorations.pathmorphing.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/deco
rations/pgflibrarydecorations.pathreplacing.code.tex))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/libs/tikz
librarypgfplots.contourlua.code.tex)
\pgfplots@numplots=\count337
\pgfplots@xmin@reg=\dimen317
\pgfplots@xmax@reg=\dimen318
\pgfplots@ymin@reg=\dimen319
\pgfplots@ymax@reg=\dimen320
\pgfplots@zmin@reg=\dimen321
\pgfplots@zmax@reg=\dimen322
)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/frontendlayer/
tikz/libraries/tikzlibraryplotmarks.code.tex
File: tikzlibraryplotmarks.code.tex 2023-01-15 v3.1.10 (3.1.10)
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgf/libraries/pgfl
ibraryplotmarks.code.tex
File: pgflibraryplotmarks.code.tex 2023-01-15 v3.1.10 (3.1.10)
)))
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/latex/pgfplots/pgfplotstab
le.sty
(/home/zaikunzhang/local/texlive/2024/texmf-dist/tex/generic/pgfplots/pgfplots.
revision.tex)