summaryrefslogblamecommitdiffstats
path: root/fiz/naloga/predstavitev/dokument.log
blob: 21af4da0f6b03a2587b48a2be2e0276a74b790dd (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
                                                                                                                       





















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                               


































                                                                     

                                                             
                       
                   
                  
                         
                   




                                                                               

                               
                                  
                              

                                                                      




























                                            











                                                                             


                     
                



                    
                        
                  














                                                                               

                        





                                                                   
                       









                                                                           
                     






                                                                    

















































                                 


                              


                         















                                                                               



















































































                                









                                                                      







                                  



                        
                     
























































































                                                                               
                    






                                                                      
                           
  








                        



                                                                            











                        














                                                                               


                    





































                                                                               

                      
                

                           

















                                                                        




































                                                                       




                         
                        



                              









                                                                               
                                                          










                                                                               
                          
 


                                                 




                                                                           
                                                                      
                                                                         
                                                                       


                                                                           

                                                                       
                                                                           
                                                                       
                                                                         

                                                                       
                                                                           
                                                                       
                                                                         

                                                                        
                                                                           
                                                                        
                                                                         

                                                                         
                                                                           
                                                                       
                                                                         
                                                                       
                                                                       
                                                                       
                                                                           
                                                                         
                                                                         
                                                                      
                                                                         
                                                                       
                                                                         
                                                                       
                                                                         
                                                                         
                                                                         

                                                                           

                                                                               
  

                                                                               
  

                                                                               
           




























                                                                               
                  































                                                                               

                                                            
                 
                                                                               




                                                              
                                                                               





                                                                               
           



                                                                               
    
 

                                                                       

 
                                                                


                                                                               
  

                                                                   
                                                              


    
  

                                   
                                                

                                           
                                                               

                                                                  
                                                              


    
  

                   
                                                               

                                                            
                                                                               


                                                                   
                                                              


    
  
 
                                  
                                             









                                                                   
                                                         

   
  
 
               
                                                        




                                                                               

                                                          


                                                       
                                                                 
 
                                              

                                        
                                                            

                                                                  
                                                              



    
                                                         

   
  
 
                   
 





















































                                                                               
  
 
 

















































                                                                               
   



















































                                                                               
   



















































                                                                               
   



















































                                                                               
   














































                                                                               
   


















































                                                                               
   

 
                                                   

                                           
                                                               

                                                                  
                                                              



    
                                                         

   
   
 
                       
 



                                                                               
                 





                                                       
 
 





                                                             
                 



                                                
                                            

                                         
                                                             

                                                                   
                                                              


    
   
 
                     

 
                                                                               
    

                                                             
                                                                 
     
 
     
 
 
   











                            


                                                                              

                                                                             




                                                            



                                                        
                                                                
                                        
                                                                                  



















                                                                               
               



                                                                      
 
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17)  2 JUN 2021 11:28
entering extended mode
 \write18 enabled.
 %&-line parsing enabled.
**/home/a/Documents/sola-gimb-2/fiz/naloga/predstavitev/dokument.tex
(/home/a/Documents/sola-gimb-2/fiz/naloga/predstavitev/dokument.tex
LaTeX2e <2020-10-01> patch level 4
L3 programming layer <2021-02-18>
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamer.cls
Document Class: beamer 2021/03/19 v3.62 A class for typesetting presentations
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasemodes.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count179
)
\beamer@tempbox=\box47
\beamer@tempcount=\count180
\c@beamerpauses=\count181

(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasedecode.sty
\beamer@slideinframe=\count182
\beamer@minimum=\count183
\beamer@decode@box=\box48
)
\beamer@commentbox=\box49
\beamer@modecount=\count184
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifpdf.sty
Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.

(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
\headdp=\dimen138
\footheight=\dimen139
\sidebarheight=\dimen140
\beamer@tempdim=\dimen141
\beamer@finalheight=\dimen142
\beamer@animht=\dimen143
\beamer@animdp=\dimen144
\beamer@animwd=\dimen145
\beamer@leftmargin=\dimen146
\beamer@rightmargin=\dimen147
\beamer@leftsidebar=\dimen148
\beamer@rightsidebar=\dimen149
\beamer@boxsize=\dimen150
\beamer@vboxoffset=\dimen151
\beamer@descdefault=\dimen152
\beamer@descriptionwidth=\dimen153
\beamer@lastskip=\skip47
\beamer@areabox=\box50
\beamer@animcurrent=\box51
\beamer@animshowbox=\box52
\beamer@sectionbox=\box53
\beamer@logobox=\box54
\beamer@linebox=\box55
\beamer@sectioncount=\count185
\beamer@subsubsectionmax=\count186
\beamer@subsectionmax=\count187
\beamer@sectionmax=\count188
\beamer@totalheads=\count189
\beamer@headcounter=\count190
\beamer@partstartpage=\count191
\beamer@sectionstartpage=\count192
\beamer@subsectionstartpage=\count193
\beamer@animationtempa=\count194
\beamer@animationtempb=\count195
\beamer@xpos=\count196
\beamer@ypos=\count197
\beamer@ypos@offset=\count198
\beamer@showpartnumber=\count199
\beamer@currentsubsection=\count266
\beamer@coveringdepth=\count267
\beamer@sectionadjust=\count268
\beamer@tocsectionnumber=\count269

(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseoptions.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks15
))
\beamer@paperwidth=\skip48
\beamer@paperheight=\skip49

(/usr/local/texlive/2021/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry

(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count270
\Gm@cntv=\count271
\c@Gm@tempcnt=\count272
\Gm@bindingoffset=\dimen154
\Gm@wd@mp=\dimen155
\Gm@odd@mp=\dimen156
\Gm@even@mp=\dimen157
\Gm@layoutwidth=\dimen158
\Gm@layoutheight=\dimen159
\Gm@layouthoffset=\dimen160
\Gm@layoutvoffset=\dimen161
\Gm@dimlist=\toks16
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2020/09/09 v1.2b Enhanced LaTeX Graphics (DPC,SPQR)

(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2020/08/30 v1.4c Standard LaTeX Graphics (DPC,SPQR)

(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 105.

(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
))
\Gin@req@height=\dimen162
\Gin@req@width=\dimen163
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.te
x
\pgfutil@everybye=\toks17
\pgfutil@tempdima=\dimen164
\pgfutil@tempdimb=\dimen165

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-li
sts.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box56
) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2020/12/27 v3.1.8b (3.1.8b)
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2020/12/27 v3.1.8b (3.1.8b)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks18
\pgfkeys@temptoks=\toks19

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c
ode.tex
\pgfkeys@tmptoks=\toks20
))
\pgf@x=\dimen166
\pgf@y=\dimen167
\pgf@xa=\dimen168
\pgf@ya=\dimen169
\pgf@xb=\dimen170
\pgf@yb=\dimen171
\pgf@xc=\dimen172
\pgf@yc=\dimen173
\pgf@xd=\dimen174
\pgf@yd=\dimen175
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count273
\c@pgf@countb=\count274
\c@pgf@countc=\count275
\c@pgf@countd=\count276
\t@pgf@toka=\toks21
\t@pgf@tokb=\toks22
\t@pgf@tokc=\toks23
\pgf@sys@id@count=\count277

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2020/12/27 v3.1.8b (3.1.8b)
)
Driver file for pgf: pgfsys-pdftex.def

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.d
ef
File: pgfsys-pdftex.def 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-p
df.def
File: pgfsys-common-pdf.def 2020/12/27 v3.1.8b (3.1.8b)
)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.
code.tex
File: pgfsyssoftpath.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfsyssoftpath@smallbuffer@items=\count278
\pgfsyssoftpath@bigbuffer@items=\count279
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.
code.tex
File: pgfsysprotocol.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)

(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2020/12/27 v3.1.8b (3.1.8b)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen176
\pgfmath@count=\count280
\pgfmath@box=\box57
\pgfmath@toks=\toks24
\pgfmath@stack@operand=\toks25
\pgfmath@stack@operation=\toks26
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.
tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic
.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigo
nometric.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.rando
m.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.compa
rison.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.
code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round
.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.
code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integ
erarithmetics.code.tex)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count281
)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.co
de.tex
File: pgfcorepoints.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgf@picminx=\dimen177
\pgf@picmaxx=\dimen178
\pgf@picminy=\dimen179
\pgf@picmaxy=\dimen180
\pgf@pathminx=\dimen181
\pgf@pathmaxx=\dimen182
\pgf@pathminy=\dimen183
\pgf@pathmaxy=\dimen184
\pgf@xx=\dimen185
\pgf@xy=\dimen186
\pgf@yx=\dimen187
\pgf@yy=\dimen188
\pgf@zx=\dimen189
\pgf@zy=\dimen190
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconst
ruct.code.tex
File: pgfcorepathconstruct.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgf@path@lastx=\dimen191
\pgf@path@lasty=\dimen192
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage
.code.tex
File: pgfcorepathusage.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgf@shorten@end@additional=\dimen193
\pgf@shorten@start@additional=\dimen194
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.co
de.tex
File: pgfcorescopes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfpic=\box58
\pgf@hbox=\box59
\pgf@layerbox@main=\box60
\pgf@picture@serial@count=\count282
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicst
ate.code.tex
File: pgfcoregraphicstate.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgflinewidth=\dimen195
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransform
ations.code.tex
File: pgfcoretransformations.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgf@pt@x=\dimen196
\pgf@pt@y=\dimen197
\pgf@pt@temp=\dimen198
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.cod
e.tex
File: pgfcorequick.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.c
ode.tex
File: pgfcoreobjects.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathproce
ssing.code.tex
File: pgfcorepathprocessing.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.co
de.tex
File: pgfcorearrows.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfarrowsep=\dimen199
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.cod
e.tex
File: pgfcoreshade.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgf@max=\dimen256
\pgf@sys@shading@range@num=\count283
\pgf@shadingcount=\count284
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.cod
e.tex
File: pgfcoreimage.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.
code.tex
File: pgfcoreexternal.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfexternal@startupbox=\box61
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.co
de.tex
File: pgfcorelayers.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretranspare
ncy.code.tex
File: pgfcoretransparency.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.
code.tex
File: pgfcorepatterns.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.
tex
File: pgfcorerdf.code.tex 2020/12/27 v3.1.8b (3.1.8b)
))) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/xxcolor.sty
Package: xxcolor 2003/10/24 ver 0.1
\XC@nummixins=\count285
\XC@countmixins=\count286
) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2020/08/17 v1.0a Emulation of the original atbegshi packa
ge
with kernel methods
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2021-02-27 v7.00k Hypertext links for LaTeX

(/usr/local/texlive/2021/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)

(/usr/local/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
)
\@linkdim=\dimen257
\Hy@linkcounter=\count287
\Hy@pagecounter=\count288

(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2021-02-27 v7.00k Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def
File: hyperref-langpatches.def 2021-02-27 v7.00k Hyperref: patches for babel la
nguages
) (/usr/local/texlive/2021/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count289

(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2021-02-27 v7.00k Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
Package hyperref Info: Option `implicit' set `false' on input line 4073.
Package hyperref Info: Hyper figures OFF on input line 4192.
Package hyperref Info: Link nesting OFF on input line 4197.
Package hyperref Info: Hyper index ON on input line 4200.
Package hyperref Info: Plain pages OFF on input line 4207.
Package hyperref Info: Backreferencing OFF on input line 4212.
Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
Package hyperref Info: Bookmarks ON on input line 4445.
\c@Hy@tempcnt=\count290

(/usr/local/texlive/2021/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4804.
\XeTeXLinkMargin=\dimen258

(/usr/local/texlive/2021/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)

(/usr/local/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count291
\Field@Width=\dimen259
\Fld@charsize=\dimen260
Package hyperref Info: Hyper figures OFF on input line 6075.
Package hyperref Info: Link nesting OFF on input line 6080.
Package hyperref Info: Hyper index ON on input line 6083.
Package hyperref Info: backreferencing OFF on input line 6090.
Package hyperref Info: Link coloring OFF on input line 6095.
Package hyperref Info: Link coloring with OCG OFF on input line 6100.
Package hyperref Info: PDF/A mode OFF on input line 6105.
LaTeX Info: Redefining \ref on input line 6145.
LaTeX Info: Redefining \pageref on input line 6149.
\Hy@abspage=\count292


Package hyperref Message: Stopped early.

)
Package hyperref Info: Driver (autodetected): hpdftex.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2021-02-27 v7.00k Hyperref driver for pdfTeX

(/usr/local/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
e
with kernel methods
)
\Fld@listcount=\count293
\c@bookmark@seq@number=\count294

(/usr/local/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)

(/usr/local/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaserequires.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasecompatibility.st
y) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasefont.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols

(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks27
\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.
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty
Package: sansmathaccent 2020/01/31
(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2021/03/17 v3.33 KOMA-Script package (file load hooks)

(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
Package: scrlfile-hook 2021/03/17 v3.33 KOMA-Script package (using LaTeX hooks)


LaTeX3 Info: Defining command \BeforeFile with sig. 'm' on line 61.


LaTeX3 Info: Defining command \AfterFile with sig. 'm' on line 65.


LaTeX3 Info: Defining command \BeforeClass with sig. 'm' on line 69.


LaTeX3 Info: Defining command \BeforePackage with sig. 'm' on line 73.


LaTeX3 Info: Defining command \AfterAtEndOfClass with sig. 'smo+m' on line 83.


LaTeX3 Info: Defining command \AfterAtEndOfPackage with sig. 'smo+m' on line
(LaTeX3)     93.


LaTeX3 Info: Defining command \scrlfile@AfterClass with sig. 'smo+m' on line
(LaTeX3)     173.


LaTeX3 Info: Defining command \AfterClass with sig. '' on line 174.


LaTeX3 Info: Defining command \scrlfile@AfterPackage with sig. 'smo+m' on line
(LaTeX3)     191.


LaTeX3 Info: Defining command \AfterPackage with sig. '' on line 192.


LaTeX3 Info: Defining command \ReplaceInput with sig. '' on line 193.


LaTeX3 Info: Defining command \ReplaceClass with sig. 'mm' on line 196.


LaTeX3 Info: Defining command \ReplacePackage with sig. 'mm' on line 199.


LaTeX3 Info: Defining command \UnReplaceInput with sig. '' on line 200.


LaTeX3 Info: Defining command \UnReplaceClass with sig. 'm' on line 203.


LaTeX3 Info: Defining command \UnReplacePackage with sig. 'mm' on line 206.


LaTeX3 Info: Defining command \PreventPackageFromLoading with sig. 's+om' on
(LaTeX3)     line 234.


LaTeX3 Info: Defining command \StorePreventPackageFromLoading with sig. 'm' on
(LaTeX3)     line 242.


LaTeX3 Info: Defining command \ResetPreventPackageFromLoading with sig. '' on
(LaTeX3)     line 247.


LaTeX3 Info: Defining command \UnPreventPackageFromLoading with sig. 'sm' on
(LaTeX3)     line 261.


LaTeX3 Info: Defining command \BeforeClosingMainAux with sig. 'om' on line
(LaTeX3)     274.


LaTeX3 Info: Defining command \AfterReadingMainAux with sig. 'om' on line 287.


LaTeX3 Info: Defining command \protected@immediate@write with sig. 'm+m+m' on
(LaTeX3)     line 298.


(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlogo.sty
Package: scrlogo 2021/03/17 v3.33 KOMA-Script package (logo)
)))))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetranslator.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator.sty
Package: translator 2020-08-03 v1.12c Easy translation of strings in LaTeX
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasemisc.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseoverlay.sty
\beamer@argscount=\count295
\beamer@lastskipcover=\skip50
\beamer@trivlistdepth=\count296
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetitle.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasesection.sty
\c@lecture=\count297
\c@part=\count298
\c@section=\count299
\c@subsection=\count300
\c@subsubsection=\count301
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframe.sty
\beamer@framebox=\box62
\beamer@frametitlebox=\box63
\beamer@zoombox=\box64
\beamer@zoomcount=\count302
\beamer@zoomframecount=\count303
\beamer@frametextheight=\dimen261
\c@subsectionslide=\count304
\beamer@frametopskip=\skip51
\beamer@framebottomskip=\skip52
\beamer@frametopskipautobreak=\skip53
\beamer@framebottomskipautobreak=\skip54
\beamer@envbody=\toks28
\framewidth=\dimen262
\c@framenumber=\count305
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty
\beamer@verbatimfileout=\write4
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframesize.sty
\beamer@splitbox=\box65
\beamer@autobreakcount=\count306
\beamer@autobreaklastheight=\dimen263
\beamer@frametitletoks=\toks29
\beamer@framesubtitletoks=\toks30
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframecomponents.
sty
\beamer@footins=\box66
) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasecolor.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasenotes.sty
\beamer@frameboxcopy=\box67
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetoc.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetemplates.sty
\beamer@sbttoks=\toks31

(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseboxes.sty
\bmb@box=\box68
\bmb@colorbox=\box69
\bmb@boxwidth=\dimen264
\bmb@boxheight=\dimen265
\bmb@prevheight=\dimen266
\bmb@temp=\dimen267
\bmb@dima=\dimen268
\bmb@dimb=\dimen269
\bmb@prevheight=\dimen270
)
\beamer@blockheadheight=\dimen271
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaselocalstructure.s
ty (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/enumerate.sty
Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
\@enLab=\toks32
)
\beamer@bibiconwidth=\skip55
\c@figure=\count307
\c@table=\count308
\abovecaptionskip=\skip56
\belowcaptionskip=\skip57
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasenavigation.sty
\beamer@section@min@dim=\dimen272
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetheorems.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2020/09/23 v2.17i AMS math features
\@mathmargin=\skip58

For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text

(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks33
\ex@=\dimen273
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen274
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count309
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count310
\leftroot@=\count311
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count312
\DOTSCASE@=\count313
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box70
\strutbox@=\box71
\big@size=\dimen275
LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
\macc@depth=\count314
\c@MaxMatrixCols=\count315
\dotsspace@=\muskip17
\c@parentequation=\count316
\dspbrk@lvl=\count317
\tag@help=\toks34
\row@=\count318
\column@=\count319
\maxfields@=\count320
\andhelp@=\toks35
\eqnshift@=\dimen276
\alignsep@=\dimen277
\tagshift@=\dimen278
\tagwidth@=\dimen279
\totwidth@=\dimen280
\lineht@=\dimen281
\@envbody=\toks36
\multlinegap=\skip59
\multlinetaggap=\skip60
\mathdisplay@stack=\toks37
LaTeX Info: Redefining \[ on input line 2923.
LaTeX Info: Redefining \] on input line 2924.
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks38
\thm@bodyfont=\toks39
\thm@headfont=\toks40
\thm@notefont=\toks41
\thm@headpunct=\toks42
\thm@preskip=\skip61
\thm@postskip=\skip62
\thm@headsep=\skip63
\dth@everypar=\toks43
)
\c@theorem=\count321
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasethemes.sty))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemedefault.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerfontthemedefault.sty
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemedefault.st
y)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerinnerthemedefault.st
y
\beamer@dima=\dimen282
\beamer@dimb=\dimen283
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemedefault.st
y))) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2020/08/01 v1.3d Input encoding file
\inpenc@prehook=\toks44
\inpenc@posthook=\toks45
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/hologo/hologo.sty
Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplots.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
Package: pgfplots 2020/02/29 v1.17 Data Visualization (1.17)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
Package: pgf 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.cod
e.tex
File: pgfmoduleshapes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfnodeparttextbox=\box72
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.
tex
File: pgfmoduleplot.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version
-0-65.sty
Package: pgfcomp-version-0-65 2020/12/27 v3.1.8b (3.1.8b)
\pgf@nodesepstart=\dimen284
\pgf@nodesepend=\dimen285
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version
-1-18.sty
Package: pgfcomp-version-1-18 2020/12/27 v3.1.8b (3.1.8b)
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)
) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
Package: pgffor 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)
\pgffor@iter=\dimen286
\pgffor@skip=\dimen287
\pgffor@stack=\toks46
\pgffor@toks=\toks47
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.cod
e.tex
Package: tikz 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothan
dlers.code.tex
File: pgflibraryplothandlers.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgf@plot@mark@count=\count322
\pgfplotmarksize=\dimen288
)
\tikz@lastx=\dimen289
\tikz@lasty=\dimen290
\tikz@lastxsaved=\dimen291
\tikz@lastysaved=\dimen292
\tikz@lastmovetox=\dimen293
\tikz@lastmovetoy=\dimen294
\tikzleveldistance=\dimen295
\tikzsiblingdistance=\dimen296
\tikz@figbox=\box73
\tikz@figbox@bg=\box74
\tikz@tempbox=\box75
\tikz@tempbox@bg=\box76
\tikztreelevel=\count323
\tikznumberofchildren=\count324
\tikznumberofcurrentchild=\count325
\tikz@fig@count=\count326

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.cod
e.tex
File: pgfmodulematrix.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfmatrixcurrentrow=\count327
\pgfmatrixcurrentcolumn=\count328
\pgf@matrix@numberofcolumns=\count329
)
\tikz@expandcount=\count330

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarytopaths.code.tex
File: tikzlibrarytopaths.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
\t@pgfplots@toka=\toks48
\t@pgfplots@tokb=\toks49
\t@pgfplots@tokc=\toks50
\pgfplots@tmpa=\dimen297
\c@pgfplots@coordindex=\count331
\c@pgfplots@scanlineindex=\count332

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric
.code.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.c
ode.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplot
soldpgfsupp_loader.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.cod
e.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code
.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
liststructure.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
liststructureext.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
array.code.tex
\c@pgfplotsarray@tmp=\count333
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
matrix.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
shared.code.tex
\c@pgfplotstable@counta=\count334
\t@pgfplotstable@a=\toks51
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
deque.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.co
de.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.da
ta.code.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb
.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplot
s.surfshading.code.tex
\c@pgfplotslibrarysurf@no=\count335

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots
.surfshading.pgfsys-pdftex.def)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.
code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.cod
e.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.c
ode.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.c
ode.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandle
r.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.
code.tex)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.
tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessin
g.code.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.cod
e.tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.
tex)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.te
x)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarydecorations.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduledecoration
s.code.tex
\pgfdecoratedcompleteddistance=\dimen298
\pgfdecoratedremainingdistance=\dimen299
\pgfdecoratedinputsegmentcompleteddistance=\dimen300
\pgfdecoratedinputsegmentremainingdistance=\dimen301
\pgf@decorate@distancetomove=\dimen302
\pgf@decorate@repeatstate=\count336
\pgfdecorationsegmentamplitude=\dimen303
\pgfdecorationsegmentlength=\dimen304
)
\tikz@lib@dec@box=\box77
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarydecorations.pathmorphing.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
brarydecorations.pathmorphing.code.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarydecorations.pathreplacing.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
brarydecorations.pathreplacing.code.tex))
\pgfplots@numplots=\count337
\pgfplots@xmin@reg=\dimen305
\pgfplots@xmax@reg=\dimen306
\pgfplots@ymin@reg=\dimen307
\pgfplots@ymax@reg=\dimen308
\pgfplots@zmin@reg=\dimen309
\pgfplots@zmax@reg=\dimen310
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryplotmarks.code.tex
File: tikzlibraryplotmarks.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmar
ks.code.tex
File: pgflibraryplotmarks.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)))
(/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2021-02-18 L3 programming layer (loader) 

(/usr/local/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2021-03-18 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count338
\l__pdf_internal_box=\box78
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-2020-10-
01.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.
tex)))
Package: siunitx 2021-04-09 v2.8d A comprehensive (SI) units package
 (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/array.sty
Package: array 2020/10/01 v2.5c Tabular extension package (FMi)
\col@sep=\dimen311
\ar@mcellbox=\box79
\extrarowheight=\dimen312
\NC@list=\toks52
\extratabsurround=\skip64
\backup@length=\skip65
\ar@cellbox=\box80
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2021-03-12 LaTeX2e option processing using LaTeX3 keys
)
\l__siunitx_tmp_box=\box81
\l__siunitx_tmp_dim=\dimen313
\l__siunitx_tmp_int=\count339
\l__siunitx_number_mantissa_length_int=\count340
\l__siunitx_number_uncert_length_int=\count341
\l__siunitx_round_int=\count342
\l__siunitx_process_decimal_int=\count343
\l__siunitx_process_uncertainty_int=\count344
\l__siunitx_process_fixed_int=\count345
\l__siunitx_process_integer_min_int=\count346
\l__siunitx_process_precision_int=\count347
\l__siunitx_group_min_int=\count348
\l__siunitx_angle_marker_box=\box82
\l__siunitx_angle_unit_box=\box83
\l__siunitx_angle_marker_dim=\dimen314
\l__siunitx_angle_unit_dim=\dimen315
\l__siunitx_unit_int=\count349
\l__siunitx_unit_denominator_int=\count350
\l__siunitx_unit_numerator_int=\count351
\l__siunitx_unit_prefix_int=\count352
\l__siunitx_unit_prefix_base_int=\count353
\l__siunitx_unit_prefix_gram_int=\count354
\l__siunitx_number_product_int=\count355
\c__siunitx_one_fill_skip=\skip66
\l__siunitx_table_unit_align_skip=\skip67
\l__siunitx_table_exponent_dim=\dimen316
\l__siunitx_table_integer_dim=\dimen317
\l__siunitx_table_mantissa_dim=\dimen318
\l__siunitx_table_marker_dim=\dimen319
\l__siunitx_table_result_dim=\dimen320
\l__siunitx_table_uncert_dim=\dimen321
\l__siunitx_table_fill_pre_dim=\dimen322
\l__siunitx_table_fill_post_dim=\dimen323
\l__siunitx_table_fill_mid_dim=\dimen324
\l__siunitx_table_pre_box=\box84
\l__siunitx_table_post_box=\box85
\l__siunitx_table_mantissa_box=\box86
\l__siunitx_table_result_box=\box87
\l__siunitx_table_number_align_skip=\skip68
\l__siunitx_table_text_align_skip=\skip69
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
\c@tracingmulticols=\count356
\mult@box=\box88
\multicol@leftmargin=\dimen325
\c@unbalance=\count357
\c@collectmore=\count358
\doublecol@number=\count359
\multicoltolerance=\count360
\multicolpretolerance=\count361
\full@width=\dimen326
\page@free=\dimen327
\premulticols=\dimen328
\postmulticols=\dimen329
\multicolsep=\skip70
\multicolbaselineskip=\skip71
\partial@page=\box89
\last@line=\box90
\maxbalancingoverflow=\dimen330
\mult@rightbox=\box91
\mult@grightbox=\box92
\mult@gfirstbox=\box93
\mult@firstbox=\box94
\@tempa=\box95
\@tempa=\box96
\@tempa=\box97
\@tempa=\box98
\@tempa=\box99
\@tempa=\box100
\@tempa=\box101
\@tempa=\box102
\@tempa=\box103
\@tempa=\box104
\@tempa=\box105
\@tempa=\box106
\@tempa=\box107
\@tempa=\box108
\@tempa=\box109
\@tempa=\box110
\@tempa=\box111
\@tempa=\box112
\@tempa=\box113
\@tempa=\box114
\@tempa=\box115
\@tempa=\box116
\@tempa=\box117
\@tempa=\box118
\@tempa=\box119
\@tempa=\box120
\@tempa=\box121
\@tempa=\box122
\@tempa=\box123
\@tempa=\box124
\@tempa=\box125
\@tempa=\box126
\@tempa=\box127
\@tempa=\box128
\@tempa=\box129
\@tempa=\box130
\@tempa=\box131
\c@minrows=\count362
\c@columnbadness=\count363
\c@finalcolumnbadness=\count364
\last@try=\dimen331
\multicolovershoot=\dimen332
\multicolundershoot=\dimen333
\mult@nat@firstbox=\box132
\colbreak@box=\box133
\mc@col@check@num=\count365
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty
Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables

(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp.sty
Package: fp 1995/04/02

`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/defpattern.sty
Package: defpattern 1994/10/12
\actioncount=\count366
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-basic.sty
Package: fp-basic 1996/05/13
\FP@xs=\count367
\FP@xia=\count368
\FP@xib=\count369
\FP@xfa=\count370
\FP@xfb=\count371
\FP@rega=\count372
\FP@regb=\count373
\FP@regs=\count374
\FP@times=\count375
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-addons.sty
Package: fp-addons 1995/03/15
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-snap.sty
Package: fp-snap 1995/04/05
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-exp.sty
Package: fp-exp 1995/04/03
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-trigo.sty
Package: fp-trigo 1995/04/14
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-pas.sty
Package: fp-pas 1994/08/29
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-random.sty
Package: fp-random 1995/02/23
\FPseed=\count376
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-eqn.sty
Package: fp-eqn 1995/04/03
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-upn.sty
Package: fp-upn 1996/10/21
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-eval.sty
Package: fp-eval 1995/04/03
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex
\integerpart=\count377
\decimalpart=\count378
)
Package: xstring 2019/02/06 v1.83 String manipulations (CT)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/numprint/numprint.sty
Package: numprint 2012/08/20 v1.39 Print numbers (HH)
\c@nprt@mantissa@digitsbefore=\count379
\c@nprt@mantissa@digitsafter=\count380
\c@nprt@exponent@digitsbefore=\count381
\c@nprt@exponent@digitsafter=\count382
\nprt@digitwidth=\skip72
\nprt@sepwidth=\skip73
\nprt@decimalwidth=\skip74
\nprt@blockwidth=\skip75
\nprt@digittoks=\toks53
\nprt@pretoks=\toks54
\nprt@posttoks=\toks55
\nprt@thisdigit=\count383
\nprt@curpos=\count384
\nprt@rndpos=\count385
\c@nprt@digitsfirstblock=\count386
\c@nprt@blockcnt=\count387
\c@nprt@cntprint=\count388

No configuration file `numprint.cfg' found.)
\tccol=\count389
\tclin=\count390
\tc@export=\write5
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/mathtools/mathtools.sty
Package: mathtools 2021/04/12 v1.27 mathematical typesetting tools

(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count391
\calc@Bcount=\count392
\calc@Adimen=\dimen334
\calc@Bdimen=\dimen335
\calc@Askip=\skip76
\calc@Bskip=\skip77
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count393
\calc@Cskip=\skip78
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/mathtools/mhsetup.sty
Package: mhsetup 2021/03/18 v1.4 programming setup (MH)
)
LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 130.
LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 130.
LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 130.
LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 130.
\g_MT_multlinerow_int=\count394
\l_MT_multwidth_dim=\dimen336
\origjot=\skip79
\l_MT_shortvdotswithinadjustabove_dim=\dimen337
\l_MT_shortvdotswithinadjustbelow_dim=\dimen338
\l_MT_above_intertext_sep=\dimen339
\l_MT_below_intertext_sep=\dimen340
\l_MT_above_shortintertext_sep=\dimen341
\l_MT_below_shortintertext_sep=\dimen342
\xmathstrut@box=\box134
\xmathstrut@dim=\dimen343
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count395
\float@exts=\toks56
\float@box=\box135
\@float@everytoks=\toks57
\@floatcapt=\box136
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tasks/tasks.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st
y
Package: xtemplate 2021-03-12 L3 Experimental prototype document functions
\l__xtemplate_tmp_dim=\dimen344
\l__xtemplate_tmp_int=\count396
\l__xtemplate_tmp_muskip=\muskip18
\l__xtemplate_tmp_skip=\skip80
)
Package: tasks 2021/02/20 v1.3a lists with columns filled horizontally
\g__tasks_total_items_int=\count397
\l__tasks_columns_int=\count398
\g__tasks_rows_int=\count399
\g__tasks_current_col_num_int=\count400
\g__tasks_current_row_num_int=\count401
\l__tasks_item_columns_int=\count402
\g__tasks_env_int=\count403
\l__tasks_start_int=\count404
\l__tasks_item_indent_dim=\dimen345
\l__tasks_item_default_indent_dim=\dimen346
\l__tasks_item_width_dim=\dimen347
\l__tasks_label_width_dim=\dimen348
\l__tasks_label_default_width_dim=\dimen349
\l__tasks_label_offset_dim=\dimen350
\l__tasks_label_default_offset_dim=\dimen351
\l__tasks_column_sep_dim=\dimen352
\l__tasks_correction_dim=\dimen353
\l__tasks_full_width_dim=\dimen354
\l__tasks_after_item_skip=\skip81
\l__tasks_custom_after_item_skip=\skip82
\l__tasks_before_list_skip=\skip83
\l__tasks_after_list_skip=\skip84
\l__tasks_item_coffin=\box137
\l__tasks_label_coffin=\box138
\c@task=\count405
\l__tasks_tmpa_int=\count406
\l__tasks_tmpb_int=\count407
\l__tasks_tmpa_coffin=\box139
\l__tasks_tmpa_box=\box140

Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on
(xtemplate)             line 450.

 (/usr/local/texlive/2021/texmf-dist/tex/latex/tasks/tasks.cfg))
(/usr/local/texlive/2021/texmf-dist/tex/latex/environ/environ.sty
Package: environ 2014/05/04 v0.3 A new way to define environments

(/usr/local/texlive/2021/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box141
\UL@hyphenbox=\box142
\UL@skip=\skip85
\UL@hook=\toks58
\UL@height=\dimen355
\UL@pe=\count408
\UL@pixel=\dimen356
\ULC@box=\box143
Package: ulem 2019/11/18
\ULdepth=\dimen357
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplotstable.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
Package: pgfplotstable 2020/02/29 v1.17 Table typesetting and Pretty-printing (
1.17)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
.coltype.code.tex)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2021/04/07 3.57 The Babel package

(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2021/04/07 3.57 Babel common definitions
\babel@savecnt=\count409
\U@D=\dimen358
\l@babelnohyphens=\language87

(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/txtbabel.def)
\bbl@readstream=\read3
)
LaTeX Info: Redefining \textlatin on input line 717.
\bbl@dirlevel=\count410

(/usr/local/texlive/2021/texmf-dist/tex/generic/babel-slovenian/slovene.ldf
Language: slovene 2021/02/06 v1.2n Slovene support from the babel system
Package babel Info: Making " an active character on input line 79.
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.sty
Package: biblatex 2020/12/31 v3.16 programmable bibliographies (PK/MW)

(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.sty
Package: logreq 2010/08/04 v1.0 xml request logger
\lrq@indent=\count411

(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@tabx@nest=\count412
\c@listtotal=\count413
\c@listcount=\count414
\c@liststart=\count415
\c@liststop=\count416
\c@citecount=\count417
\c@citetotal=\count418
\c@multicitecount=\count419
\c@multicitetotal=\count420
\c@instcount=\count421
\c@maxnames=\count422
\c@minnames=\count423
\c@maxitems=\count424
\c@minitems=\count425
\c@citecounter=\count426
\c@maxcitecounter=\count427
\c@savedcitecounter=\count428
\c@uniquelist=\count429
\c@uniquename=\count430
\c@refsection=\count431
\c@refsegment=\count432
\c@maxextratitle=\count433
\c@maxextratitleyear=\count434
\c@maxextraname=\count435
\c@maxextradate=\count436
\c@maxextraalpha=\count437
\c@abbrvpenalty=\count438
\c@highnamepenalty=\count439
\c@lownamepenalty=\count440
\c@maxparens=\count441
\c@parenlevel=\count442
\blx@tempcnta=\count443
\blx@tempcntb=\count444
\blx@tempcntc=\count445
\blx@maxsection=\count446
\blx@maxsegment@0=\count447
\blx@notetype=\count448
\blx@parenlevel@text=\count449
\blx@parenlevel@foot=\count450
\blx@sectionciteorder@0=\count451
\blx@entrysetcounter=\count452
\blx@biblioinstance=\count453
\labelnumberwidth=\skip86
\labelalphawidth=\skip87
\biblabelsep=\skip88
\bibitemsep=\skip89
\bibnamesep=\skip90
\bibinitsep=\skip91
\bibparsep=\skip92
\bibhang=\skip93
\blx@bcfin=\read4
\blx@bcfout=\write6
\blx@langwohyphens=\language88
\c@mincomprange=\count454
\c@maxcomprange=\count455
\c@mincompwidth=\count456
Package biblatex Info: Trying to load biblatex default data model...
Package biblatex Info: ... file 'blx-dm.def' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-dm.def
File: blx-dm.def 2020/12/31 v3.16 biblatex localization (PK/MW)
)
Package biblatex Info: Trying to load biblatex style data model...
Package biblatex Info: ... file 'iso-authoryear.dbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.db
x
File: iso-authoryear.dbx 2020/03/25 v0.4.0 ISO 690 biblatex data model extensio
n
)
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@afterword=\count457
\c@savedafterword=\count458
\c@annotator=\count459
\c@savedannotator=\count460
\c@author=\count461
\c@savedauthor=\count462
\c@bookauthor=\count463
\c@savedbookauthor=\count464
\c@commentator=\count465
\c@savedcommentator=\count466
\c@editor=\count467
\c@savededitor=\count468
\c@editora=\count469
\c@savededitora=\count470
\c@editorb=\count471
\c@savededitorb=\count472
\c@editorc=\count473
\c@savededitorc=\count474
\c@foreword=\count475
\c@savedforeword=\count476
\c@holder=\count477
\c@savedholder=\count478
\c@introduction=\count479
\c@savedintroduction=\count480
\c@namea=\count481
\c@savednamea=\count482
\c@nameb=\count483
\c@savednameb=\count484
\c@namec=\count485
\c@savednamec=\count486
\c@translator=\count487
\c@savedtranslator=\count488
\c@shortauthor=\count489
\c@savedshortauthor=\count490
\c@shorteditor=\count491
\c@savedshorteditor=\count492
\c@supervisor=\count493
\c@savedsupervisor=\count494
\c@labelname=\count495
\c@savedlabelname=\count496
\c@institution=\count497
\c@savedinstitution=\count498
\c@lista=\count499
\c@savedlista=\count500
\c@listb=\count501
\c@savedlistb=\count502
\c@listc=\count503
\c@savedlistc=\count504
\c@listd=\count505
\c@savedlistd=\count506
\c@liste=\count507
\c@savedliste=\count508
\c@listf=\count509
\c@savedlistf=\count510
\c@location=\count511
\c@savedlocation=\count512
\c@organization=\count513
\c@savedorganization=\count514
\c@origlocation=\count515
\c@savedoriglocation=\count516
\c@origpublisher=\count517
\c@savedorigpublisher=\count518
\c@publisher=\count519
\c@savedpublisher=\count520
\c@language=\count521
\c@savedlanguage=\count522
\c@origlanguage=\count523
\c@savedoriglanguage=\count524
\c@pageref=\count525
\c@savedpageref=\count526
\shorthandwidth=\skip94
\shortjournalwidth=\skip95
\shortserieswidth=\skip96
\shorttitlewidth=\skip97
\shortauthorwidth=\skip98
\shorteditorwidth=\skip99
\locallabelnumberwidth=\skip100
\locallabelalphawidth=\skip101
\localshorthandwidth=\skip102
\localshortjournalwidth=\skip103
\localshortserieswidth=\skip104
\localshorttitlewidth=\skip105
\localshortauthorwidth=\skip106
\localshorteditorwidth=\skip107
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-compat.def
File: blx-compat.def 2020/12/31 v3.16 biblatex compatibility (PK/MW)
)
Package biblatex Info: Trying to load generic definitions...
Package biblatex Info: ... file 'biblatex.def' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.def
File: biblatex.def 2020/12/31 v3.16 biblatex compatibility (PK/MW)
\c@textcitecount=\count527
\c@textcitetotal=\count528
\c@textcitemaxnames=\count529
\c@biburlbigbreakpenalty=\count530
\c@biburlbreakpenalty=\count531
\c@biburlnumpenalty=\count532
\c@biburlucpenalty=\count533
\c@biburllcpenalty=\count534
\biburlbigskip=\muskip19
\biburlnumskip=\muskip20
\biburlucskip=\muskip21
\biburllcskip=\muskip22
\c@smartand=\count535
)
Package biblatex Info: Trying to load bibliography style 'iso-authoryear'...
Package biblatex Info: ... file 'iso-authoryear.bbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.bb
x
File: iso-authoryear.bbx 2020/03/25 v0.4.0 ISO 690 biblatex bibliography style
Package biblatex Info: Trying to load bibliography style 'iso'...
Package biblatex Info: ... file 'iso.bbx' found.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso.bbx
File: iso.bbx 2020/03/25 v0.4.0 ISO 690 biblatex bibliography style
Package biblatex-iso690 Info: Space colon enabled: false.
Package biblatex-iso690 Info: Total pages enabled: false.
Package biblatex-iso690 Info: Short numeration enabled: false.
Package biblatex-iso690 Info: Printing thesis info at the end enabled: true.
Package biblatex-iso690 Info: URL field enabled: true.
Package biblatex-iso690 Info: ISBN field enabled: true.
Package biblatex-iso690 Info: DOI field enabled: true.
Package biblatex-iso690 Info: eprint field enabled: true.
Package biblatex-iso690 Info: Article publication info enabled: false.
Package biblatex Info: Delimiter 'multinamedelim' in context '' already defined
, overwriting.
Package biblatex Info: Delimiter 'finalnamedelim' in context '' already defined
, overwriting.
Package biblatex Info: Delimiter 'editortypedelim' in context '' already define
d, overwriting.
Package biblatex Info: Delimiter 'authortypedelim' in context '' already define
d, overwriting.
)
Package biblatex Info: Delimiter 'nameyeardelim' in context 'bib' already defin
ed, overwriting.
Package biblatex Info: Delimiter 'nameyeardelim' in context 'biblist' already d
efined, overwriting.
Package biblatex Info: Delimiter 'nonameyeardelim' in context 'bib' already def
ined, overwriting.
Package biblatex Info: Delimiter 'nonameyeardelim' in context 'biblist' already
 defined, overwriting.
)
Package biblatex Info: Trying to load citation style 'iso-authoryear'...
Package biblatex Info: ... file 'iso-authoryear.cbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.cb
x
File: iso-authoryear.cbx 2020/03/25 v0.4.0 ISO 690 biblatex citation style
Package biblatex Info: Trying to load citation style 'authoryear'...
Package biblatex Info: ... file 'authoryear.cbx' found.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/cbx/authoryear.cbx
File: authoryear.cbx 2020/12/31 v3.16 biblatex citation style (PK/MW)
Package biblatex Info: Redefining '\cite'.
Package biblatex Info: Redefining '\parencite'.
Package biblatex Info: Redefining '\footcite'.
Package biblatex Info: Redefining '\footcitetext'.
Package biblatex Info: Redefining '\smartcite'.
Package biblatex Info: Redefining '\textcite'.
Package biblatex Info: Redefining '\textcites'.
)
Package biblatex Info: Trying to load citation style 'iso-fullcite'...
Package biblatex Info: ... file 'iso-fullcite.cbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-fullcite.cbx
File: iso-fullcite.cbx 2020/03/25 v0.4.0 ISO 690 biblatex fullcite modification
s
Package biblatex Info: Redefining '\fullcite'.
Package biblatex Info: Redefining '\footfullcite'.
)
Package biblatex Info: Delimiter 'nameyeardelim' in context '' already defined,
 overwriting.
Package biblatex Info: Delimiter 'nonameyeardelim' in context '' already define
d, overwriting.
)
Package biblatex Info: Trying to load configuration file...
Package biblatex Info: ... file 'biblatex.cfg' found.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.cfg
File: biblatex.cfg 
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime.sty
Package: datetime 2015/03/20 v2.60 Date Time Package

(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fmtcount.sty
Package: fmtcount 2020/01/30 v3.07

(/usr/local/texlive/2021/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2020/11/20 v2.8 package option processing (HA)

(/usr/local/texlive/2021/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks59
\XKV@tempa@toks=\toks60
)
\XKV@depth=\count536
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fcprefix.sty
Package: fcprefix 2012/09/28

(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
Package: fcnumparser 2017/06/15
\fc@digit@counter=\count537
))
\c@padzeroesN=\count538
\fc@tmpcatcode=\count539
\@DT@modctr=\count540
\@ordinalctr=\count541
\@orgargctr=\count542
\@strctr=\count543
\@tmpstrctr=\count544
\@DT@loopN=\count545
\@DT@X=\count546
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime-defaults.sty
Package: datetime-defaults 2013/09/10
)
\@day=\count547
\@month=\count548
\@year=\count549
\c@HOUR=\count550
\c@HOURXII=\count551
\c@MINUTE=\count552
\c@TOHOUR=\count553
\c@TOMINUTE=\count554
\c@SECOND=\count555
\currenthour=\count556
\currentminute=\count557
\currentsecond=\count558
Package datetime Info: No datetime.cfg file found, using default settings on in
put line 308.


! LaTeX Error: Unknown option `ddMMyyyy' for package `datetime'.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.560 \if@dt@nodate
                   
The option `ddMMyyyy' was not declared in package `datetime', perhaps you
misspelled its name. Try typing  <return>  to proceed.

\@dtctr=\count559
\dayofyear=\count560
\dayofweek=\count561
LaTeX Info: Redefining \today on input line 736.
(/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/dt-slovene.def
File: dt-slovene.def 2013/09/10
LaTeX Info: Redefining \dateslovene on input line 63.
)
\dt@a=\toks61
\dt@b=\toks62
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/ccicons/ccicons.sty
Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemeMadrid.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemewhale.sty)

(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemeorchid.sty
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerinnerthemerounded.st
y)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemeinfolines.
sty))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarycalc.code.tex
File: tikzlibrarycalc.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/libraries/tikzl
ibraryexternal.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzexternalshared.code.tex))
\openout3 = `dokument.auxlock'.



Package biblatex Warning: 'babel/polyglossia' detected but 'csquotes' missing.
(biblatex)                Loading 'csquotes' recommended.

\@quotelevel=\count562
\@quotereset=\count563
(./dokument.aux)
\openout1 = `dokument.aux'.

LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.
LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 92.
LaTeX Font Info:    ... okay on input line 92.

*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: custom
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: includehead includefoot 
* h-part:(L,W,R)=(10.95003pt, 433.34402pt, 10.95003pt)
* v-part:(T,H,B)=(0.0pt, 284.52756pt, 0.0pt)
* \paperwidth=455.24408pt
* \paperheight=284.52756pt
* \textwidth=433.34402pt
* \textheight=256.07483pt
* \oddsidemargin=-61.31996pt
* \evensidemargin=-61.31996pt
* \topmargin=-72.26999pt
* \headheight=14.22636pt
* \headsep=0.0pt
* \topskip=11.0pt
* \footskip=14.22636pt
* \marginparwidth=4.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)

(/usr/local/texlive/2021/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count564
\scratchdimen=\dimen359
\scratchbox=\box144
\nofMPsegments=\count565
\nofMParguments=\count566
\everyMPshowfont=\toks63
\MPscratchCnt=\count567
\MPscratchDim=\dimen360
\MPnumerator=\count568
\makeMPintoPDFobject=\count569
\everyMPtoPDFconversion=\toks64
) (/usr/local/texlive/2021/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.

(/usr/local/texlive/2021/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
Package hyperref Info: Link coloring OFF on input line 92.

(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section

(/usr/local/texlive/2021/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/gettitlestring/gettitlestring.s
ty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count570
)
LaTeX Info: Redefining \ref on input line 92.
LaTeX Info: Redefining \pageref on input line 92.
LaTeX Info: Redefining \nameref on input line 92.
 (./dokument.out) (./dokument.out)
\@outlinefile=\write7
\openout7 = `dokument.out'.

LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
(Font)                  OT1/cmr/m/n --> OT1/cmss/m/n on input line 92.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  OT1/cmr/bx/n --> OT1/cmss/b/n on input line 92.
\symnumbers=\mathgroup6
\sympureletters=\mathgroup7
LaTeX Font Info:    Overwriting math alphabet `\mathrm' in version `normal'
(Font)                  OT1/cmss/m/n --> OT1/cmr/m/n on input line 92.
LaTeX Font Info:    Redeclaring math alphabet \mathbf on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
(Font)                  OT1/cmr/bx/n --> OT1/cmss/b/n on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
(Font)                  OT1/cmr/bx/n --> OT1/cmss/b/n on input line 92.
LaTeX Font Info:    Redeclaring math alphabet \mathsf on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
(Font)                  OT1/cmss/m/n --> OT1/cmss/m/n on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
(Font)                  OT1/cmss/bx/n --> OT1/cmss/m/n on input line 92.
LaTeX Font Info:    Redeclaring math alphabet \mathit on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
(Font)                  OT1/cmr/m/it --> OT1/cmss/m/it on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
(Font)                  OT1/cmr/bx/it --> OT1/cmss/m/it on input line 92.
LaTeX Font Info:    Redeclaring math alphabet \mathtt on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
(Font)                  OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
(Font)                  OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 92.
LaTeX Font Info:    Overwriting symbol font `numbers' in version `bold'
(Font)                  OT1/cmss/m/n --> OT1/cmss/b/n on input line 92.
LaTeX Font Info:    Overwriting symbol font `pureletters' in version `bold'
(Font)                  OT1/cmss/m/it --> OT1/cmss/b/it on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathrm' in version `bold'
(Font)                  OT1/cmss/b/n --> OT1/cmr/b/n on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
(Font)                  OT1/cmss/b/n --> OT1/cmss/b/n on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
(Font)                  OT1/cmss/m/n --> OT1/cmss/b/n on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
(Font)                  OT1/cmss/m/it --> OT1/cmss/b/it on input line 92.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
(Font)                  OT1/cmtt/m/n --> OT1/cmtt/b/n on input line 92.
LaTeX Font Info:    Redeclaring symbol font `pureletters' on input line 92.
LaTeX Font Info:    Overwriting symbol font `pureletters' in version `normal'
(Font)                  OT1/cmss/m/it --> OT1/mathkerncmss/m/sl on input line 9
2.
LaTeX Font Info:    Overwriting symbol font `pureletters' in version `bold'
(Font)                  OT1/cmss/b/it --> OT1/mathkerncmss/m/sl on input line 9
2.
LaTeX Font Info:    Overwriting symbol font `pureletters' in version `bold'
(Font)                  OT1/mathkerncmss/m/sl --> OT1/mathkerncmss/bx/sl on inp
ut line 92.

(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-basic-dicti
onary-English.dict
Dictionary: translator-basic-dictionary, Language: English 
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-bibliograph
y-dictionary-English.dict
Dictionary: translator-bibliography-dictionary, Language: English 
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-environment
-dictionary-English.dict
Dictionary: translator-environment-dictionary, Language: English 
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-months-dict
ionary-English.dict
Dictionary: translator-months-dictionary, Language: English 
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-numbers-dic
tionary-English.dict
Dictionary: translator-numbers-dictionary, Language: English 
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-theorem-dic
tionary-English.dict
Dictionary: translator-theorem-dictionary, Language: English 
)

Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
ick labels; missing features). Consider writing \pgfplotsset{compat=1.17} into 
your preamble.
 on input line 92.


(/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg
File: siunitx-abbreviations.cfg 2021-04-09 v2.8d siunitx: Abbreviated units
)

Package biblatex Warning: File 'slovene-iso.lbx' not found!
(biblatex)                Ignoring mapping 'slovene' -> 'slovene-iso'.

Package biblatex Info: Trying to load language 'slovene'...
Package biblatex Info: ... file 'slovene.lbx' found.
(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/lbx/slovene.lbx
File: slovene.lbx 2020/12/31 v3.16 biblatex localization (PK/MW)
)
Package biblatex Info: Input encoding 'utf8' detected.
Package biblatex Info: Automatic encoding selection.
(biblatex)             Assuming data encoding 'utf8'.
Package biblatex Info: Document encoding is UTF8 ....
Package biblatex Info: ... and expl3
(biblatex)             2021-02-18 L3 programming layer (loader) 
(biblatex)             is new enough (at least 2020/04/06),
(biblatex)             setting 'casechanger=expl3'.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
Package: blx-case-expl3 2020/12/31 v3.16 expl3 case changing code for biblatex
)
\openout6 = `dokument.bcf'.

Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'dokument.bbl' found.

(./dokument.bbl)
Package biblatex Info: Reference section=0 on input line 92.
Package biblatex Info: Reference segment=0 on input line 92.
 (./dokument.nav)
LaTeX Font Info:    Trying to load font information for U+msa on input line 92.


(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info:    Trying to load font information for U+msb on input line 92.


(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
LaTeX Font Info:    Trying to load font information for OT1+mathkerncmss on inp
ut line 92.

(/usr/local/texlive/2021/texmf-dist/tex/latex/sansmathaccent/ot1mathkerncmss.fd
File: ot1mathkerncmss.fd 2020/01/31 Fontinst v1.933 font definitions for OT1/ma
thkerncmss.
) [1

{/usr/local/texlive/2021/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
(./dokument.toc) [2

]
<../tekst/img-tracked/navoji.jpg, id=221, 3468.96pt x 2312.64pt>
File: ../tekst/img-tracked/navoji.jpg Graphic file (type jpg)
<use ../tekst/img-tracked/navoji.jpg>
Package pdftex.def Info: ../tekst/img-tracked/navoji.jpg  used on input line 12
2.
(pdftex.def)             Requested size: 216.67201pt x 144.43378pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 122--122
 [] 
 []

[3

 <../tekst/img-tracked/navoji.jpg>]
<merilniki.jpg, id=247, 710.4141pt x 458.1918pt>
File: merilniki.jpg Graphic file (type jpg)
<use merilniki.jpg>
Package pdftex.def Info: merilniki.jpg  used on input line 146.
(pdftex.def)             Requested size: 216.67201pt x 139.7448pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 146--146
 [] 
 []

[4

 <./merilniki.jpg>]
<../tekst/img-tracked/rampa.jpg, id=274, 3468.96pt x 2312.64pt>
File: ../tekst/img-tracked/rampa.jpg Graphic file (type jpg)
<use ../tekst/img-tracked/rampa.jpg>
Package pdftex.def Info: ../tekst/img-tracked/rampa.jpg  used on input line 171
.
(pdftex.def)             Requested size: 216.67201pt x 144.43378pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 171--171
 [] 
 []

[5

 <../tekst/img-tracked/rampa.jpg>]
<totem.jpg, id=305, 1314.9125pt x 1915.155pt>
File: totem.jpg Graphic file (type jpg)
<use totem.jpg>
Package pdftex.def Info: totem.jpg  used on input line 196.
(pdftex.def)             Requested size: 216.67201pt x 315.57782pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 196--196
 [] 
 []


Overfull \vbox (57.94856pt too high) detected at line 196
 []

[6

 <./totem.jpg>]
Overfull \hbox (1.17192pt too wide) detected at line 236
\OT1/mathkerncmss/m/sl/10.95 f\OT1/cmss/m/n/10.95 (\OT1/mathkerncmss/m/sl/10.95
 x\OT1/cmss/m/n/10.95 ) = []
 []

LaTeX Font Info:    Trying to load font information for OMS+cmss on input line 
236.
LaTeX Font Info:    No file OMScmss.fd. on input line 236.

LaTeX Font Warning: Font shape `OMS/cmss/m/n' undefined
(Font)              using `OMS/cmsy/m/n' instead
(Font)              for symbol `textbraceleft' on input line 236.

<špric.jpg, id=334, 1388.18625pt x 2039.62pt>
File: špric.jpg Graphic file (type jpg)
<use špric.jpg>
Package pdftex.def Info: špric.jpg  used on input line 236.
(pdftex.def)             Requested size: 216.67201pt x 318.3475pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 236--236
 [] 
 []


Overfull \vbox (60.48602pt too high) detected at line 236
 []

[7

 <./špric.jpg>] [8

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure0" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure0" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure0" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure0' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure0.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.303 \end{frame}
                 
This error message was generated by an \errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
[9

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure1" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure1" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure1" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure1' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure1.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.339 \end{frame}
                 
(That was another \errmessage.)

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
[10

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure2" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure2" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure2" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure2' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure2.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.373 \end{frame}
                 
(That was another \errmessage.)

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
[11

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure3" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure3" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure3" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure3' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure3.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.409 \end{frame}
                 
(That was another \errmessage.)

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
[12

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure4" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure4" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure4" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure4' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure4.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.445 \end{frame}
                 
(That was another \errmessage.)

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
[13

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure5" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure5" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure5" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure5' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure5.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.474 \end{frame}
                 
(That was another \errmessage.)

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
[14

]
\openout3 = `dokument.auxlock'.


===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
n-error -interaction=batchmode -jobname "dokument-figure6" "\def\tikzexternalre
aljob{dokument}\input{dokument}"' ========
runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
 "dokument-figure6" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
cuted.

\openout3 = `dokument.auxlock'.


! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "dokument-figure6" "\def\tikzexternalrealj
ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
-figure6' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have 
enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
 it is also named 'write 18' or something like that. Or maybe the command simpl
y failed? Error messages can be found in 'dokument-figure6.log'. If you continu
e now, I'll try to typeset the picture.

See the tikz package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.503 \end{frame}
                 
(That was another \errmessage.)

\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}

Overfull \vbox (8.21541pt too high) detected at line 503
 []

[15

]
<kompresor.jpg, id=574, 1071.00125pt x 1656.1875pt>
File: kompresor.jpg Graphic file (type jpg)
<use kompresor.jpg>
Package pdftex.def Info: kompresor.jpg  used on input line 532.
(pdftex.def)             Requested size: 216.67201pt x 335.0476pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 532--532
 [] 
 []


Overfull \vbox (76.64851pt too high) detected at line 532
 []

[16

 <./kompresor.jpg>] [17

]
! Undefined control sequence.
\beamer@doifinframe ...pično \item Podporni \say 
                                                  {L} nosilec se je ukrivil ...
l.576 \end{frame}
                 
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.


! Package xkeyval Error: `align' undefined in families `Gin'.

See the xkeyval package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.576 \end{frame}
                 
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.

<dozirka.jpg, id=626, 3468.96pt x 2312.64pt>
File: dozirka.jpg Graphic file (type jpg)
<use dozirka.jpg>
Package pdftex.def Info: dozirka.jpg  used on input line 576.
(pdftex.def)             Requested size: 216.67201pt x 144.43378pt.

Overfull \hbox (5.0pt too wide) in paragraph at lines 576--576
 [] 
 []

[18

 <./dozirka.jpg>] [19

]
LaTeX Font Info:    Trying to load font information for TS1+cmss on input line 
603.

(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1cmss.fd
File: ts1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
) [20

] [21

]
[22

]
\tf@nav=\write8
\openout8 = `dokument.nav'.

\tf@toc=\write9
\openout9 = `dokument.toc'.

\tf@snm=\write10
\openout10 = `dokument.snm'.

 (./dokument.aux)

LaTeX Font Warning: Some font shapes were not available, defaults substituted.

Package rerunfilecheck Info: File `dokument.out' has not changed.
(rerunfilecheck)             Checksum: 4C9BBDF3BD5371C8A6856B187869BB8D;6363.
Package logreq Info: Writing requests to 'dokument.run.xml'.
\openout1 = `dokument.run.xml'.

 ) 
Here is how much of TeX's memory you used:
 48791 strings out of 478994
 1117236 string characters out of 5858190
 1948528 words of memory out of 5000000
 65276 multiletter control sequences out of 15000+600000
 418854 words of font info for 85 fonts, out of 8000000 for 9000
 1141 hyphenation exceptions out of 8191
 131i,16n,132p,1265b,2446s stack positions out of 5000i,500n,10000p,200000b,80000s
{/usr/local/texlive/2021/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc
}</usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb>
</usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb><
/usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb></u
sr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb></usr
/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfb></usr/l
ocal/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmss10.pfb></usr/lo
cal/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmss12.pfb></usr/loc
al/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmss8.pfb></usr/local
/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmss9.pfb></usr/local/t
exlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmssbx10.pfb></usr/local/
texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmssi10.pfb></usr/local/
texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmssi8.pfb></usr/local/t
exlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmssi9.pfb></usr/local/te
xlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/local/tex
live/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb></usr/local/texli
ve/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb></usr/local/texliv
e/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfb></usr/local/texlive/
2021/texmf-dist/fonts/type1/public/cm-super/sfss1095.pfb>
Output written on dokument.pdf (22 pages, 20729979 bytes).
PDF statistics:
 838 PDF objects out of 1000 (max. 8388607)
 766 compressed objects within 8 object streams
 70 named destinations out of 1000 (max. 500000)
 326 words of extra memory for PDF output out of 10000 (max. 10000000)