summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsijanec <sijanecantonluka@gmail.com>2020-11-07 21:19:50 +0100
committersijanec <sijanecantonluka@gmail.com>2020-11-07 21:19:50 +0100
commitbf3a6d51ed2d5421fb953ed682fd0a7e6c158a56 (patch)
tree1aa0c768b065073c1522620c9e11f67e26bcc120
parentrm img mapo, ker je user neumen (diff)
downloadsola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.tar
sola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.tar.gz
sola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.tar.bz2
sola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.tar.lz
sola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.tar.xz
sola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.tar.zst
sola-gimb-2-bf3a6d51ed2d5421fb953ed682fd0a7e6c158a56.zip
-rw-r--r--mat/domace_naloge/15/Git offers. You can learn more about individual236
-rw-r--r--mat/domace_naloge/15/a fast, scalable, distributed revision control system with an1180
-rw-r--r--mat/domace_naloge/15/dokument.aux19
-rw-r--r--mat/domace_naloge/15/dokument.dvibin0 -> 23900 bytes
-rw-r--r--mat/domace_naloge/15/dokument.log1502
-rw-r--r--mat/domace_naloge/15/dokument.out1
-rw-r--r--mat/domace_naloge/15/dokument.pdfbin0 -> 61125 bytes
-rw-r--r--mat/domace_naloge/15/dokument.synctex.gzbin0 -> 17857 bytes
-rw-r--r--mat/domace_naloge/15/dokument.tex193
-rw-r--r--mat/domace_naloge/15/dokument.toc1
-rw-r--r--mat/domace_naloge/15/stderr.log1
-rw-r--r--mat/domace_naloge/15/stdout.log708
12 files changed, 3841 insertions, 0 deletions
diff --git a/mat/domace_naloge/15/Git offers. You can learn more about individual b/mat/domace_naloge/15/Git offers. You can learn more about individual
new file mode 100644
index 0000000..255dc7e
--- /dev/null
+++ b/mat/domace_naloge/15/Git offers. You can learn more about individual
@@ -0,0 +1,236 @@
+
+ SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS
+
+ Commands marked with * may be preceded by a number, _N.
+ Notes in parentheses indicate the behavior if _N is given.
+ A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K.
+
+ h H Display this help.
+ q :q Q :Q ZZ Exit.
+ ---------------------------------------------------------------------------
+
+ MMOOVVIINNGG
+
+ e ^E j ^N CR * Forward one line (or _N lines).
+ y ^Y k ^K ^P * Backward one line (or _N lines).
+ f ^F ^V SPACE * Forward one window (or _N lines).
+ b ^B ESC-v * Backward one window (or _N lines).
+ z * Forward one window (and set window to _N).
+ w * Backward one window (and set window to _N).
+ ESC-SPACE * Forward one window, but don't stop at end-of-file.
+ d ^D * Forward one half-window (and set half-window to _N).
+ u ^U * Backward one half-window (and set half-window to _N).
+ ESC-) RightArrow * Right one half screen width (or _N positions).
+ ESC-( LeftArrow * Left one half screen width (or _N positions).
+ ESC-} ^RightArrow Right to last column displayed.
+ ESC-{ ^LeftArrow Left to first column.
+ F Forward forever; like "tail -f".
+ ESC-F Like F but stop when search pattern is found.
+ r ^R ^L Repaint screen.
+ R Repaint screen, discarding buffered input.
+ ---------------------------------------------------
+ Default "window" is the screen height.
+ Default "half-window" is half of the screen height.
+ ---------------------------------------------------------------------------
+
+ SSEEAARRCCHHIINNGG
+
+ /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line.
+ ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line.
+ n * Repeat previous search (for _N-th occurrence).
+ N * Repeat previous search in reverse direction.
+ ESC-n * Repeat previous search, spanning files.
+ ESC-N * Repeat previous search, reverse dir. & spanning files.
+ ESC-u Undo (toggle) search highlighting.
+ &_p_a_t_t_e_r_n * Display only matching lines
+ ---------------------------------------------------
+ A search pattern may be preceded by one or more of:
+ ^N or ! Search for NON-matching lines.
+ ^E or * Search multiple files (pass thru END OF FILE).
+ ^F or @ Start search at FIRST file (for /) or last file (for ?).
+ ^K Highlight matches, but don't move (KEEP position).
+ ^R Don't use REGULAR EXPRESSIONS.
+ ---------------------------------------------------------------------------
+
+ JJUUMMPPIINNGG
+
+ g < ESC-< * Go to first line in file (or line _N).
+ G > ESC-> * Go to last line in file (or line _N).
+ p % * Go to beginning of file (or _N percent into file).
+ t * Go to the (_N-th) next tag.
+ T * Go to the (_N-th) previous tag.
+ { ( [ * Find close bracket } ) ].
+ } ) ] * Find open bracket { ( [.
+ ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>.
+ ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>
+ ---------------------------------------------------
+ Each "find close bracket" command goes forward to the close bracket
+ matching the (_N-th) open bracket in the top line.
+ Each "find open bracket" command goes backward to the open bracket
+ matching the (_N-th) close bracket in the bottom line.
+
+ m_<_l_e_t_t_e_r_> Mark the current position with <letter>.
+ '_<_l_e_t_t_e_r_> Go to a previously marked position.
+ '' Go to the previous position.
+ ^X^X Same as '.
+ ---------------------------------------------------
+ A mark is any upper-case or lower-case letter.
+ Certain marks are predefined:
+ ^ means beginning of the file
+ $ means end of the file
+ ---------------------------------------------------------------------------
+
+ CCHHAANNGGIINNGG FFIILLEESS
+
+ :e [_f_i_l_e] Examine a new file.
+ ^X^V Same as :e.
+ :n * Examine the (_N-th) next file from the command line.
+ :p * Examine the (_N-th) previous file from the command line.
+ :x * Examine the first (or _N-th) file from the command line.
+ :d Delete the current file from the command line list.
+ = ^G :f Print current file name.
+ ---------------------------------------------------------------------------
+
+ MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS
+
+ -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below].
+ --_<_n_a_m_e_> Toggle a command line option, by name.
+ __<_f_l_a_g_> Display the setting of a command line option.
+ ___<_n_a_m_e_> Display the setting of an option, by name.
+ +_c_m_d Execute the less cmd each time a new file is examined.
+
+ !_c_o_m_m_a_n_d Execute the shell command with $SHELL.
+ |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command.
+ s _f_i_l_e Save input to a file.
+ v Edit the current file with $VISUAL or $EDITOR.
+ V Print version number of "less".
+ ---------------------------------------------------------------------------
+
+ OOPPTTIIOONNSS
+
+ Most options may be changed either on the command line,
+ or from within less by using the - or -- command.
+ Options may be given in one of two forms: either a single
+ character preceded by a -, or a name preceded by --.
+
+ -? ........ --help
+ Display help (from command line).
+ -a ........ --search-skip-screen
+ Search skips current screen.
+ -A ........ --SEARCH-SKIP-SCREEN
+ Search starts just after target line.
+ -b [_N] .... --buffers=[_N]
+ Number of buffers.
+ -B ........ --auto-buffers
+ Don't automatically allocate buffers for pipes.
+ -c ........ --clear-screen
+ Repaint by clearing rather than scrolling.
+ -d ........ --dumb
+ Dumb terminal.
+ -D [_x_n_._n] . --color=_x_n_._n
+ Set screen colors. (MS-DOS only)
+ -e -E .... --quit-at-eof --QUIT-AT-EOF
+ Quit at end of file.
+ -f ........ --force
+ Force open non-regular files.
+ -F ........ --quit-if-one-screen
+ Quit if entire file fits on first screen.
+ -g ........ --hilite-search
+ Highlight only last match for searches.
+ -G ........ --HILITE-SEARCH
+ Don't highlight any matches for searches.
+ -h [_N] .... --max-back-scroll=[_N]
+ Backward scroll limit.
+ -i ........ --ignore-case
+ Ignore case in searches that do not contain uppercase.
+ -I ........ --IGNORE-CASE
+ Ignore case in all searches.
+ -j [_N] .... --jump-target=[_N]
+ Screen position of target lines.
+ -J ........ --status-column
+ Display a status column at left edge of screen.
+ -k [_f_i_l_e] . --lesskey-file=[_f_i_l_e]
+ Use a lesskey file.
+ -K --quit-on-intr
+ Exit less in response to ctrl-C.
+ -L ........ --no-lessopen
+ Ignore the LESSOPEN environment variable.
+ -m -M .... --long-prompt --LONG-PROMPT
+ Set prompt style.
+ -n -N .... --line-numbers --LINE-NUMBERS
+ Don't use line numbers.
+ -o [_f_i_l_e] . --log-file=[_f_i_l_e]
+ Copy to log file (standard input only).
+ -O [_f_i_l_e] . --LOG-FILE=[_f_i_l_e]
+ Copy to log file (unconditionally overwrite).
+ -p [_p_a_t_t_e_r_n] --pattern=[_p_a_t_t_e_r_n]
+ Start at pattern (from command line).
+ -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t]
+ Define new prompt.
+ -q -Q .... --quiet --QUIET --silent --SILENT
+ Quiet the terminal bell.
+ -r -R .... --raw-control-chars --RAW-CONTROL-CHARS
+ Output "raw" control characters.
+ -s ........ --squeeze-blank-lines
+ Squeeze multiple blank lines.
+ -S ........ --chop-long-lines
+ Chop (truncate) long lines rather than wrapping.
+ -t [_t_a_g] .. --tag=[_t_a_g]
+ Find a tag.
+ -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e]
+ Use an alternate tags file.
+ -u -U .... --underline-special --UNDERLINE-SPECIAL
+ Change handling of backspaces.
+ -V ........ --version
+ Display the version number of "less".
+ -w ........ --hilite-unread
+ Highlight first new line after forward-screen.
+ -W ........ --HILITE-UNREAD
+ Highlight first new line after any forward movement.
+ -x [_N[,...]] --tabs=[_N[,...]]
+ Set tab stops.
+ -X ........ --no-init
+ Don't use termcap init/deinit strings.
+ -y [_N] .... --max-forw-scroll=[_N]
+ Forward scroll limit.
+ -z [_N] .... --window=[_N]
+ Set size of window.
+ -" [_c[_c]] . --quotes=[_c[_c]]
+ Set shell quote characters.
+ -~ ........ --tilde
+ Don't display tildes after end of file.
+ -# [_N] .... --shift=[_N]
+ Horizontal scroll amount (0 = one half screen width)
+ ........ --no-keypad
+ Don't send termcap keypad init/deinit strings.
+ ........ --follow-name
+ The F command changes files if the input file is renamed.
+ ........ --use-backslash
+ Subsequent options use backslash as escape char.
+
+
+ ---------------------------------------------------------------------------
+
+ LLIINNEE EEDDIITTIINNGG
+
+ These keys can be used to edit text being entered
+ on the "command line" at the bottom of the screen.
+
+ RightArrow ..................... ESC-l ... Move cursor right one character.
+ LeftArrow ...................... ESC-h ... Move cursor left one character.
+ ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word.
+ ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word.
+ HOME ........................... ESC-0 ... Move cursor to start of line.
+ END ............................ ESC-$ ... Move cursor to end of line.
+ BACKSPACE ................................ Delete char to left of cursor.
+ DELETE ......................... ESC-x ... Delete char under cursor.
+ ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor.
+ ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor.
+ ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line.
+ UpArrow ........................ ESC-k ... Retrieve previous command line.
+ DownArrow ...................... ESC-j ... Retrieve next command line.
+ TAB ...................................... Complete filename & cycle.
+ SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle.
+ ctrl-L ................................... Complete filename, list all.
+
+
diff --git a/mat/domace_naloge/15/a fast, scalable, distributed revision control system with an b/mat/domace_naloge/15/a fast, scalable, distributed revision control system with an
new file mode 100644
index 0000000..a786cdd
--- /dev/null
+++ b/mat/domace_naloge/15/a fast, scalable, distributed revision control system with an
@@ -0,0 +1,1180 @@
+GIT(1) Git Manual GIT(1)
+
+NNAAMMEE
+ git - the stupid content tracker
+
+SSYYNNOOPPSSIISS
+ _g_i_t [--version] [--help] [-C <path>] [-c <name>=<value>]
+ [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
+ [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
+ [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
+ [--super-prefix=<path>]
+ <command> [<args>]
+
+DDEESSCCRRIIPPTTIIOONN
+ Git is a fast, scalable, distributed revision control system with an
+ unusually rich command set that provides both high-level operations and
+ full access to internals.
+
+ See ggiittttuuttoorriiaall(7) to get started, then see ggiitteevveerryyddaayy(7) for a useful
+ minimum set of commands. The GGiitt UUsseerr’’ss MMaannuuaall[1] has a more in-depth
+ introduction.
+
+ After you mastered the basic concepts, you can come back to this page
+ to learn what commands Git offers. You can learn more about individual
+ Git commands with "git help command". ggiittccllii(7) manual page gives you
+ an overview of the command-line command syntax.
+
+ A formatted and hyperlinked copy of the latest Git documentation can be
+ viewed at hhttttppss::////ggiitt..ggiitthhuubb..iioo//hhttmmllddooccss//ggiitt..hhttmmll.
+
+OOPPTTIIOONNSS
+ --version
+ Prints the Git suite version that the _g_i_t program came from.
+
+ --help
+ Prints the synopsis and a list of the most commonly used commands.
+ If the option ----aallll or --aa is given then all available commands are
+ printed. If a Git command is named this option will bring up the
+ manual page for that command.
+
+ Other options are available to control how the manual page is
+ displayed. See ggiitt--hheellpp(1) for more information, because ggiitt ----hheellpp
+ ...... is converted internally into ggiitt hheellpp .......
+
+ -C <path>
+ Run as if git was started in _<_p_a_t_h_> instead of the current working
+ directory. When multiple --CC options are given, each subsequent
+ non-absolute --CC <<ppaatthh>> is interpreted relative to the preceding --CC
+ <<ppaatthh>>.
+
+ This option affects options that expect path name like ----ggiitt--ddiirr
+ and ----wwoorrkk--ttrreeee in that their interpretations of the path names
+ would be made relative to the working directory caused by the --CC
+ option. For example the following invocations are equivalent:
+
+ git --git-dir=a.git --work-tree=b -C c status
+ git --git-dir=c/a.git --work-tree=c/b status
+
+ -c <name>=<value>
+ Pass a configuration parameter to the command. The value given will
+ override values from configuration files. The <name> is expected in
+ the same format as listed by _g_i_t _c_o_n_f_i_g (subkeys separated by
+ dots).
+
+ Note that omitting the == in ggiitt --cc ffoooo..bbaarr ...... is allowed and sets
+ ffoooo..bbaarr to the boolean true value (just like [[ffoooo]]bbaarr would in a
+ config file). Including the equals but with an empty value (like
+ ggiitt --cc ffoooo..bbaarr== ......) sets ffoooo..bbaarr to the empty string which ggiitt
+ ccoonnffiigg ----bbooooll will convert to ffaallssee.
+
+ --exec-path[=<path>]
+ Path to wherever your core Git programs are installed. This can
+ also be controlled by setting the GIT_EXEC_PATH environment
+ variable. If no path is given, _g_i_t will print the current setting
+ and then exit.
+
+ --html-path
+ Print the path, without trailing slash, where Git’s HTML
+ documentation is installed and exit.
+
+ --man-path
+ Print the manpath (see mmaann((11))) for the man pages for this version
+ of Git and exit.
+
+ --info-path
+ Print the path where the Info files documenting this version of Git
+ are installed and exit.
+
+ -p, --paginate
+ Pipe all output into _l_e_s_s (or if set, $PAGER) if standard output is
+ a terminal. This overrides the ppaaggeerr..<<ccmmdd>> configuration options
+ (see the "Configuration Mechanism" section below).
+
+ --no-pager
+ Do not pipe Git output into a pager.
+
+ --git-dir=<path>
+ Set the path to the repository. This can also be controlled by
+ setting the GGIITT__DDIIRR environment variable. It can be an absolute
+ path or relative path to current working directory.
+
+ --work-tree=<path>
+ Set the path to the working tree. It can be an absolute path or a
+ path relative to the current working directory. This can also be
+ controlled by setting the GIT_WORK_TREE environment variable and
+ the core.worktree configuration variable (see core.worktree in ggiitt--
+ ccoonnffiigg(1) for a more detailed discussion).
+
+ --namespace=<path>
+ Set the Git namespace. See ggiittnnaammeessppaacceess(7) for more details.
+ Equivalent to setting the GGIITT__NNAAMMEESSPPAACCEE environment variable.
+
+ --super-prefix=<path>
+ Currently for internal use only. Set a prefix which gives a path
+ from above a repository down to its root. One use is to give
+ submodules context about the superproject that invoked it.
+
+ --bare
+ Treat the repository as a bare repository. If GIT_DIR environment
+ is not set, it is set to the current working directory.
+
+ --no-replace-objects
+ Do not use replacement refs to replace Git objects. See ggiitt--
+ rreeppllaaccee(1) for more information.
+
+ --literal-pathspecs
+ Treat pathspecs literally (i.e. no globbing, no pathspec magic).
+ This is equivalent to setting the GGIITT__LLIITTEERRAALL__PPAATTHHSSPPEECCSS environment
+ variable to 11.
+
+ --glob-pathspecs
+ Add "glob" magic to all pathspec. This is equivalent to setting the
+ GGIITT__GGLLOOBB__PPAATTHHSSPPEECCSS environment variable to 11. Disabling globbing on
+ individual pathspecs can be done using pathspec magic ":(literal)"
+
+ --noglob-pathspecs
+ Add "literal" magic to all pathspec. This is equivalent to setting
+ the GGIITT__NNOOGGLLOOBB__PPAATTHHSSPPEECCSS environment variable to 11. Enabling
+ globbing on individual pathspecs can be done using pathspec magic
+ ":(glob)"
+
+ --icase-pathspecs
+ Add "icase" magic to all pathspec. This is equivalent to setting
+ the GGIITT__IICCAASSEE__PPAATTHHSSPPEECCSS environment variable to 11.
+
+ --no-optional-locks
+ Do not perform optional operations that require locks. This is
+ equivalent to setting the GGIITT__OOPPTTIIOONNAALL__LLOOCCKKSS to 00.
+
+GGIITT CCOOMMMMAANNDDSS
+ We divide Git into high level ("porcelain") commands and low level
+ ("plumbing") commands.
+
+HHIIGGHH--LLEEVVEELL CCOOMMMMAANNDDSS ((PPOORRCCEELLAAIINN))
+ We separate the porcelain commands into the main commands and some
+ ancillary user utilities.
+
+ MMaaiinn ppoorrcceellaaiinn ccoommmmaannddss
+ ggiitt--aadddd(1)
+ Add file contents to the index.
+
+ ggiitt--aamm(1)
+ Apply a series of patches from a mailbox.
+
+ ggiitt--aarrcchhiivvee(1)
+ Create an archive of files from a named tree.
+
+ ggiitt--bbiisseecctt(1)
+ Use binary search to find the commit that introduced a bug.
+
+ ggiitt--bbrraanncchh(1)
+ List, create, or delete branches.
+
+ ggiitt--bbuunnddllee(1)
+ Move objects and refs by archive.
+
+ ggiitt--cchheecckkoouutt(1)
+ Switch branches or restore working tree files.
+
+ ggiitt--cchheerrrryy--ppiicckk(1)
+ Apply the changes introduced by some existing commits.
+
+ ggiitt--cciittooooll(1)
+ Graphical alternative to git-commit.
+
+ ggiitt--cclleeaann(1)
+ Remove untracked files from the working tree.
+
+ ggiitt--cclloonnee(1)
+ Clone a repository into a new directory.
+
+ ggiitt--ccoommmmiitt(1)
+ Record changes to the repository.
+
+ ggiitt--ddeessccrriibbee(1)
+ Give an object a human readable name based on an available ref.
+
+ ggiitt--ddiiffff(1)
+ Show changes between commits, commit and working tree, etc.
+
+ ggiitt--ffeettcchh(1)
+ Download objects and refs from another repository.
+
+ ggiitt--ffoorrmmaatt--ppaattcchh(1)
+ Prepare patches for e-mail submission.
+
+ ggiitt--ggcc(1)
+ Cleanup unnecessary files and optimize the local repository.
+
+ ggiitt--ggrreepp(1)
+ Print lines matching a pattern.
+
+ ggiitt--gguuii(1)
+ A portable graphical interface to Git.
+
+ ggiitt--iinniitt(1)
+ Create an empty Git repository or reinitialize an existing one.
+
+ ggiitt--lloogg(1)
+ Show commit logs.
+
+ ggiitt--mmeerrggee(1)
+ Join two or more development histories together.
+
+ ggiitt--mmvv(1)
+ Move or rename a file, a directory, or a symlink.
+
+ ggiitt--nnootteess(1)
+ Add or inspect object notes.
+
+ ggiitt--ppuullll(1)
+ Fetch from and integrate with another repository or a local branch.
+
+ ggiitt--ppuusshh(1)
+ Update remote refs along with associated objects.
+
+ ggiitt--rreebbaassee(1)
+ Reapply commits on top of another base tip.
+
+ ggiitt--rreesseett(1)
+ Reset current HEAD to the specified state.
+
+ ggiitt--rreevveerrtt(1)
+ Revert some existing commits.
+
+ ggiitt--rrmm(1)
+ Remove files from the working tree and from the index.
+
+ ggiitt--sshhoorrttlloogg(1)
+ Summarize _g_i_t _l_o_g output.
+
+ ggiitt--sshhooww(1)
+ Show various types of objects.
+
+ ggiitt--ssttaasshh(1)
+ Stash the changes in a dirty working directory away.
+
+ ggiitt--ssttaattuuss(1)
+ Show the working tree status.
+
+ ggiitt--ssuubbmmoodduullee(1)
+ Initialize, update or inspect submodules.
+
+ ggiitt--ttaagg(1)
+ Create, list, delete or verify a tag object signed with GPG.
+
+ ggiitt--wwoorrkkttrreeee(1)
+ Manage multiple working trees.
+
+ ggiittkk(1)
+ The Git repository browser.
+
+ AAnncciillllaarryy CCoommmmaannddss
+ Manipulators:
+
+ ggiitt--ccoonnffiigg(1)
+ Get and set repository or global options.
+
+ ggiitt--ffaasstt--eexxppoorrtt(1)
+ Git data exporter.
+
+ ggiitt--ffaasstt--iimmppoorrtt(1)
+ Backend for fast Git data importers.
+
+ ggiitt--ffiilltteerr--bbrraanncchh(1)
+ Rewrite branches.
+
+ ggiitt--mmeerrggeettooooll(1)
+ Run merge conflict resolution tools to resolve merge conflicts.
+
+ ggiitt--ppaacckk--rreeffss(1)
+ Pack heads and tags for efficient repository access.
+
+ ggiitt--pprruunnee(1)
+ Prune all unreachable objects from the object database.
+
+ ggiitt--rreefflloogg(1)
+ Manage reflog information.
+
+ ggiitt--rreemmoottee(1)
+ Manage set of tracked repositories.
+
+ ggiitt--rreeppaacckk(1)
+ Pack unpacked objects in a repository.
+
+ ggiitt--rreeppllaaccee(1)
+ Create, list, delete refs to replace objects.
+
+ Interrogators:
+
+ ggiitt--aannnnoottaattee(1)
+ Annotate file lines with commit information.
+
+ ggiitt--bbllaammee(1)
+ Show what revision and author last modified each line of a file.
+
+ ggiitt--cchheerrrryy(1)
+ Find commits yet to be applied to upstream.
+
+ ggiitt--ccoouunntt--oobbjjeeccttss(1)
+ Count unpacked number of objects and their disk consumption.
+
+ ggiitt--ddiiffffttooooll(1)
+ Show changes using common diff tools.
+
+ ggiitt--ffsscckk(1)
+ Verifies the connectivity and validity of the objects in the
+ database.
+
+ ggiitt--ggeett--ttaarr--ccoommmmiitt--iidd(1)
+ Extract commit ID from an archive created using git-archive.
+
+ ggiitt--hheellpp(1)
+ Display help information about Git.
+
+ ggiitt--iinnssttaawweebb(1)
+ Instantly browse your working repository in gitweb.
+
+ ggiitt--mmeerrggee--ttrreeee(1)
+ Show three-way merge without touching index.
+
+ ggiitt--rreerreerree(1)
+ Reuse recorded resolution of conflicted merges.
+
+ ggiitt--rreevv--ppaarrssee(1)
+ Pick out and massage parameters.
+
+ ggiitt--sshhooww--bbrraanncchh(1)
+ Show branches and their commits.
+
+ ggiitt--vveerriiffyy--ccoommmmiitt(1)
+ Check the GPG signature of commits.
+
+ ggiitt--vveerriiffyy--ttaagg(1)
+ Check the GPG signature of tags.
+
+ ggiitt--wwhhaattcchhaannggeedd(1)
+ Show logs with difference each commit introduces.
+
+ ggiittwweebb(1)
+ Git web interface (web frontend to Git repositories).
+
+ IInntteerraaccttiinngg wwiitthh OOtthheerrss
+ These commands are to interact with foreign SCM and with other people
+ via patch over e-mail.
+
+ ggiitt--aarrcchhiimmppoorrtt(1)
+ Import an Arch repository into Git.
+
+ ggiitt--ccvvsseexxppoorrttccoommmmiitt(1)
+ Export a single commit to a CVS checkout.
+
+ ggiitt--ccvvssiimmppoorrtt(1)
+ Salvage your data out of another SCM people love to hate.
+
+ ggiitt--ccvvsssseerrvveerr(1)
+ A CVS server emulator for Git.
+
+ ggiitt--iimmaapp--sseenndd(1)
+ Send a collection of patches from stdin to an IMAP folder.
+
+ ggiitt--pp44(1)
+ Import from and submit to Perforce repositories.
+
+ ggiitt--qquuiillttiimmppoorrtt(1)
+ Applies a quilt patchset onto the current branch.
+
+ ggiitt--rreeqquueesstt--ppuullll(1)
+ Generates a summary of pending changes.
+
+ ggiitt--sseenndd--eemmaaiill(1)
+ Send a collection of patches as emails.
+
+ ggiitt--ssvvnn(1)
+ Bidirectional operation between a Subversion repository and Git.
+
+LLOOWW--LLEEVVEELL CCOOMMMMAANNDDSS ((PPLLUUMMBBIINNGG))
+ Although Git includes its own porcelain layer, its low-level commands
+ are sufficient to support development of alternative porcelains.
+ Developers of such porcelains might start by reading about ggiitt--uuppddaattee--
+ iinnddeexx(1) and ggiitt--rreeaadd--ttrreeee(1).
+
+ The interface (input, output, set of options and the semantics) to
+ these low-level commands are meant to be a lot more stable than
+ Porcelain level commands, because these commands are primarily for
+ scripted use. The interface to Porcelain commands on the other hand are
+ subject to change in order to improve the end user experience.
+
+ The following description divides the low-level commands into commands
+ that manipulate objects (in the repository, index, and working tree),
+ commands that interrogate and compare objects, and commands that move
+ objects and references between repositories.
+
+ MMaanniippuullaattiioonn ccoommmmaannddss
+ ggiitt--aappppllyy(1)
+ Apply a patch to files and/or to the index.
+
+ ggiitt--cchheecckkoouutt--iinnddeexx(1)
+ Copy files from the index to the working tree.
+
+ ggiitt--ccoommmmiitt--ttrreeee(1)
+ Create a new commit object.
+
+ ggiitt--hhaasshh--oobbjjeecctt(1)
+ Compute object ID and optionally creates a blob from a file.
+
+ ggiitt--iinnddeexx--ppaacckk(1)
+ Build pack index file for an existing packed archive.
+
+ ggiitt--mmeerrggee--ffiillee(1)
+ Run a three-way file merge.
+
+ ggiitt--mmeerrggee--iinnddeexx(1)
+ Run a merge for files needing merging.
+
+ ggiitt--mmkkttaagg(1)
+ Creates a tag object.
+
+ ggiitt--mmkkttrreeee(1)
+ Build a tree-object from ls-tree formatted text.
+
+ ggiitt--ppaacckk--oobbjjeeccttss(1)
+ Create a packed archive of objects.
+
+ ggiitt--pprruunnee--ppaacckkeedd(1)
+ Remove extra objects that are already in pack files.
+
+ ggiitt--rreeaadd--ttrreeee(1)
+ Reads tree information into the index.
+
+ ggiitt--ssyymmbboolliicc--rreeff(1)
+ Read, modify and delete symbolic refs.
+
+ ggiitt--uunnppaacckk--oobbjjeeccttss(1)
+ Unpack objects from a packed archive.
+
+ ggiitt--uuppddaattee--iinnddeexx(1)
+ Register file contents in the working tree to the index.
+
+ ggiitt--uuppddaattee--rreeff(1)
+ Update the object name stored in a ref safely.
+
+ ggiitt--wwrriittee--ttrreeee(1)
+ Create a tree object from the current index.
+
+ IInntteerrrrooggaattiioonn ccoommmmaannddss
+ ggiitt--ccaatt--ffiillee(1)
+ Provide content or type and size information for repository
+ objects.
+
+ ggiitt--ddiiffff--ffiilleess(1)
+ Compares files in the working tree and the index.
+
+ ggiitt--ddiiffff--iinnddeexx(1)
+ Compare a tree to the working tree or index.
+
+ ggiitt--ddiiffff--ttrreeee(1)
+ Compares the content and mode of blobs found via two tree objects.
+
+ ggiitt--ffoorr--eeaacchh--rreeff(1)
+ Output information on each ref.
+
+ ggiitt--llss--ffiilleess(1)
+ Show information about files in the index and the working tree.
+
+ ggiitt--llss--rreemmoottee(1)
+ List references in a remote repository.
+
+ ggiitt--llss--ttrreeee(1)
+ List the contents of a tree object.
+
+ ggiitt--mmeerrggee--bbaassee(1)
+ Find as good common ancestors as possible for a merge.
+
+ ggiitt--nnaammee--rreevv(1)
+ Find symbolic names for given revs.
+
+ ggiitt--ppaacckk--rreedduunnddaanntt(1)
+ Find redundant pack files.
+
+ ggiitt--rreevv--lliisstt(1)
+ Lists commit objects in reverse chronological order.
+
+ ggiitt--sshhooww--iinnddeexx(1)
+ Show packed archive index.
+
+ ggiitt--sshhooww--rreeff(1)
+ List references in a local repository.
+
+ ggiitt--uunnppaacckk--ffiillee(1)
+ Creates a temporary file with a blob’s contents.
+
+ ggiitt--vvaarr(1)
+ Show a Git logical variable.
+
+ ggiitt--vveerriiffyy--ppaacckk(1)
+ Validate packed Git archive files.
+
+ In general, the interrogate commands do not touch the files in the
+ working tree.
+
+ SSyynncchhiinngg rreeppoossiittoorriieess
+ ggiitt--ddaaeemmoonn(1)
+ A really simple server for Git repositories.
+
+ ggiitt--ffeettcchh--ppaacckk(1)
+ Receive missing objects from another repository.
+
+ ggiitt--hhttttpp--bbaacckkeenndd(1)
+ Server side implementation of Git over HTTP.
+
+ ggiitt--sseenndd--ppaacckk(1)
+ Push objects over Git protocol to another repository.
+
+ ggiitt--uuppddaattee--sseerrvveerr--iinnffoo(1)
+ Update auxiliary info file to help dumb servers.
+
+ The following are helper commands used by the above; end users
+ typically do not use them directly.
+
+ ggiitt--hhttttpp--ffeettcchh(1)
+ Download from a remote Git repository via HTTP.
+
+ ggiitt--hhttttpp--ppuusshh(1)
+ Push objects over HTTP/DAV to another repository.
+
+ ggiitt--ppaarrssee--rreemmoottee(1)
+ Routines to help parsing remote repository access parameters.
+
+ ggiitt--rreecceeiivvee--ppaacckk(1)
+ Receive what is pushed into the repository.
+
+ ggiitt--sshheellll(1)
+ Restricted login shell for Git-only SSH access.
+
+ ggiitt--uuppllooaadd--aarrcchhiivvee(1)
+ Send archive back to git-archive.
+
+ ggiitt--uuppllooaadd--ppaacckk(1)
+ Send objects packed back to git-fetch-pack.
+
+ IInntteerrnnaall hheellppeerr ccoommmmaannddss
+ These are internal helper commands used by other commands; end users
+ typically do not use them directly.
+
+ ggiitt--cchheecckk--aattttrr(1)
+ Display gitattributes information.
+
+ ggiitt--cchheecckk--iiggnnoorree(1)
+ Debug gitignore / exclude files.
+
+ ggiitt--cchheecckk--mmaaiillmmaapp(1)
+ Show canonical names and email addresses of contacts.
+
+ ggiitt--cchheecckk--rreeff--ffoorrmmaatt(1)
+ Ensures that a reference name is well formed.
+
+ ggiitt--ccoolluummnn(1)
+ Display data in columns.
+
+ ggiitt--ccrreeddeennttiiaall(1)
+ Retrieve and store user credentials.
+
+ ggiitt--ccrreeddeennttiiaall--ccaacchhee(1)
+ Helper to temporarily store passwords in memory.
+
+ ggiitt--ccrreeddeennttiiaall--ssttoorree(1)
+ Helper to store credentials on disk.
+
+ ggiitt--ffmmtt--mmeerrggee--mmssgg(1)
+ Produce a merge commit message.
+
+ ggiitt--iinntteerrpprreett--ttrraaiilleerrss(1)
+ add or parse structured information in commit messages.
+
+ ggiitt--mmaaiilliinnffoo(1)
+ Extracts patch and authorship from a single e-mail message.
+
+ ggiitt--mmaaiillsspplliitt(1)
+ Simple UNIX mbox splitter program.
+
+ ggiitt--mmeerrggee--oonnee--ffiillee(1)
+ The standard helper program to use with git-merge-index.
+
+ ggiitt--ppaattcchh--iidd(1)
+ Compute unique ID for a patch.
+
+ ggiitt--sshh--ii1188nn(1)
+ Git’s i18n setup code for shell scripts.
+
+ ggiitt--sshh--sseettuupp(1)
+ Common Git shell script setup code.
+
+ ggiitt--ssttrriippssppaaccee(1)
+ Remove unnecessary whitespace.
+
+CCOONNFFIIGGUURRAATTIIOONN MMEECCHHAANNIISSMM
+ Git uses a simple text format to store customizations that are per
+ repository and are per user. Such a configuration file may look like
+ this:
+
+ #
+ # A '#' or ';' character indicates a comment.
+ #
+
+ ; core variables
+ [core]
+ ; Don't trust file modes
+ filemode = false
+
+ ; user identity
+ [user]
+ name = "Junio C Hamano"
+ email = "gitster@pobox.com"
+
+ Various commands read from the configuration file and adjust their
+ operation accordingly. See ggiitt--ccoonnffiigg(1) for a list and more details
+ about the configuration mechanism.
+
+IIDDEENNTTIIFFIIEERR TTEERRMMIINNOOLLOOGGYY
+ <object>
+ Indicates the object name for any type of object.
+
+ <blob>
+ Indicates a blob object name.
+
+ <tree>
+ Indicates a tree object name.
+
+ <commit>
+ Indicates a commit object name.
+
+ <tree-ish>
+ Indicates a tree, commit or tag object name. A command that takes a
+ <tree-ish> argument ultimately wants to operate on a <tree> object
+ but automatically dereferences <commit> and <tag> objects that
+ point at a <tree>.
+
+ <commit-ish>
+ Indicates a commit or tag object name. A command that takes a
+ <commit-ish> argument ultimately wants to operate on a <commit>
+ object but automatically dereferences <tag> objects that point at a
+ <commit>.
+
+ <type>
+ Indicates that an object type is required. Currently one of: bblloobb,
+ ttrreeee, ccoommmmiitt, or ttaagg.
+
+ <file>
+ Indicates a filename - almost always relative to the root of the
+ tree structure GGIITT__IINNDDEEXX__FFIILLEE describes.
+
+SSYYMMBBOOLLIICC IIDDEENNTTIIFFIIEERRSS
+ Any Git command accepting any <object> can also use the following
+ symbolic notation:
+
+ HEAD
+ indicates the head of the current branch.
+
+ <tag>
+ a valid tag _n_a_m_e (i.e. a rreeffss//ttaaggss//<<ttaagg>> reference).
+
+ <head>
+ a valid head _n_a_m_e (i.e. a rreeffss//hheeaaddss//<<hheeaadd>> reference).
+
+ For a more complete list of ways to spell object names, see "SPECIFYING
+ REVISIONS" section in ggiittrreevviissiioonnss(7).
+
+FFIILLEE//DDIIRREECCTTOORRYY SSTTRRUUCCTTUURREE
+ Please see the ggiittrreeppoossiittoorryy--llaayyoouutt(5) document.
+
+ Read ggiitthhooookkss(5) for more details about each hook.
+
+ Higher level SCMs may provide and manage additional information in the
+ $$GGIITT__DDIIRR.
+
+TTEERRMMIINNOOLLOOGGYY
+ Please see ggiittgglloossssaarryy(7).
+
+EENNVVIIRROONNMMEENNTT VVAARRIIAABBLLEESS
+ Various Git commands use the following environment variables:
+
+ TThhee GGiitt RReeppoossiittoorryy
+ These environment variables apply to _a_l_l core Git commands. Nb: it is
+ worth noting that they may be used/overridden by SCMS sitting above Git
+ so take care if using a foreign front-end.
+
+ GGIITT__IINNDDEEXX__FFIILLEE
+ This environment allows the specification of an alternate index
+ file. If not specified, the default of $$GGIITT__DDIIRR//iinnddeexx is used.
+
+ GGIITT__IINNDDEEXX__VVEERRSSIIOONN
+ This environment variable allows the specification of an index
+ version for new repositories. It won’t affect existing index files.
+ By default index file version 2 or 3 is used. See ggiitt--uuppddaattee--
+ iinnddeexx(1) for more information.
+
+ GGIITT__OOBBJJEECCTT__DDIIRREECCTTOORRYY
+ If the object storage directory is specified via this environment
+ variable then the sha1 directories are created underneath -
+ otherwise the default $$GGIITT__DDIIRR//oobbjjeeccttss directory is used.
+
+ GGIITT__AALLTTEERRNNAATTEE__OOBBJJEECCTT__DDIIRREECCTTOORRIIEESS
+ Due to the immutable nature of Git objects, old objects can be
+ archived into shared, read-only directories. This variable
+ specifies a ":" separated (on Windows ";" separated) list of Git
+ object directories which can be used to search for Git objects. New
+ objects will not be written to these directories.
+
+ Entries that begin with `"` (double-quote) will be interpreted
+ as C-style quoted paths, removing leading and trailing
+ double-quotes and respecting backslash escapes. E.g., the value
+ `"path-with-\"-and-:-in-it":vanilla-path` has two paths:
+ `path-with-"-and-:-in-it` and `vanilla-path`.
+
+ GGIITT__DDIIRR
+ If the GGIITT__DDIIRR environment variable is set then it specifies a path
+ to use instead of the default ..ggiitt for the base of the repository.
+ The ----ggiitt--ddiirr command-line option also sets this value.
+
+ GGIITT__WWOORRKK__TTRREEEE
+ Set the path to the root of the working tree. This can also be
+ controlled by the ----wwoorrkk--ttrreeee command-line option and the
+ core.worktree configuration variable.
+
+ GGIITT__NNAAMMEESSPPAACCEE
+ Set the Git namespace; see ggiittnnaammeessppaacceess(7) for details. The
+ ----nnaammeessppaaccee command-line option also sets this value.
+
+ GGIITT__CCEEIILLIINNGG__DDIIRREECCTTOORRIIEESS
+ This should be a colon-separated list of absolute paths. If set, it
+ is a list of directories that Git should not chdir up into while
+ looking for a repository directory (useful for excluding
+ slow-loading network directories). It will not exclude the current
+ working directory or a GIT_DIR set on the command line or in the
+ environment. Normally, Git has to read the entries in this list and
+ resolve any symlink that might be present in order to compare them
+ with the current directory. However, if even this access is slow,
+ you can add an empty entry to the list to tell Git that the
+ subsequent entries are not symlinks and needn’t be resolved; e.g.,
+ GGIITT__CCEEIILLIINNGG__DDIIRREECCTTOORRIIEESS==//mmaayybbee//ssyymmlliinnkk:::://vveerryy//ssllooww//nnoonn//ssyymmlliinnkk.
+
+ GGIITT__DDIISSCCOOVVEERRYY__AACCRROOSSSS__FFIILLEESSYYSSTTEEMM
+ When run in a directory that does not have ".git" repository
+ directory, Git tries to find such a directory in the parent
+ directories to find the top of the working tree, but by default it
+ does not cross filesystem boundaries. This environment variable can
+ be set to true to tell Git not to stop at filesystem boundaries.
+ Like GGIITT__CCEEIILLIINNGG__DDIIRREECCTTOORRIIEESS, this will not affect an explicit
+ repository directory set via GGIITT__DDIIRR or on the command line.
+
+ GGIITT__CCOOMMMMOONN__DDIIRR
+ If this variable is set to a path, non-worktree files that are
+ normally in $GIT_DIR will be taken from this path instead.
+ Worktree-specific files such as HEAD or index are taken from
+ $GIT_DIR. See ggiittrreeppoossiittoorryy--llaayyoouutt(5) and ggiitt--wwoorrkkttrreeee(1) for
+ details. This variable has lower precedence than other path
+ variables such as GIT_INDEX_FILE, GIT_OBJECT_DIRECTORY...
+
+ GGiitt CCoommmmiittss
+ GGIITT__AAUUTTHHOORR__NNAAMMEE, GGIITT__AAUUTTHHOORR__EEMMAAIILL, GGIITT__AAUUTTHHOORR__DDAATTEE, GGIITT__CCOOMMMMIITTTTEERR__NNAAMMEE,
+ GGIITT__CCOOMMMMIITTTTEERR__EEMMAAIILL, GGIITT__CCOOMMMMIITTTTEERR__DDAATTEE, _E_M_A_I_L
+ see ggiitt--ccoommmmiitt--ttrreeee(1)
+
+ GGiitt DDiiffffss
+ GGIITT__DDIIFFFF__OOPPTTSS
+ Only valid setting is "--unified=??" or "-u??" to set the number of
+ context lines shown when a unified diff is created. This takes
+ precedence over any "-U" or "--unified" option value passed on the
+ Git diff command line.
+
+ GGIITT__EEXXTTEERRNNAALL__DDIIFFFF
+ When the environment variable GGIITT__EEXXTTEERRNNAALL__DDIIFFFF is set, the program
+ named by it is called, instead of the diff invocation described
+ above. For a path that is added, removed, or modified,
+ GGIITT__EEXXTTEERRNNAALL__DDIIFFFF is called with 7 parameters:
+
+ path old-file old-hex old-mode new-file new-hex new-mode
+
+ where:
+
+ <old|new>-file
+ are files GIT_EXTERNAL_DIFF can use to read the contents of
+ <old|new>,
+
+ <old|new>-hex
+ are the 40-hexdigit SHA-1 hashes,
+
+ <old|new>-mode
+ are the octal representation of the file modes.
+
+ The file parameters can point at the user’s working file (e.g.
+ nneeww--ffiillee in "git-diff-files"), //ddeevv//nnuullll (e.g. oolldd--ffiillee when a new
+ file is added), or a temporary file (e.g. oolldd--ffiillee in the index).
+ GGIITT__EEXXTTEERRNNAALL__DDIIFFFF should not worry about unlinking the temporary
+ file --- it is removed when GGIITT__EEXXTTEERRNNAALL__DDIIFFFF exits.
+
+ For a path that is unmerged, GGIITT__EEXXTTEERRNNAALL__DDIIFFFF is called with 1
+ parameter, <path>.
+
+ For each path GGIITT__EEXXTTEERRNNAALL__DDIIFFFF is called, two environment
+ variables, GGIITT__DDIIFFFF__PPAATTHH__CCOOUUNNTTEERR and GGIITT__DDIIFFFF__PPAATTHH__TTOOTTAALL are set.
+
+ GGIITT__DDIIFFFF__PPAATTHH__CCOOUUNNTTEERR
+ A 1-based counter incremented by one for every path.
+
+ GGIITT__DDIIFFFF__PPAATTHH__TTOOTTAALL
+ The total number of paths.
+
+ ootthheerr
+ GGIITT__MMEERRGGEE__VVEERRBBOOSSIITTYY
+ A number controlling the amount of output shown by the recursive
+ merge strategy. Overrides merge.verbosity. See ggiitt--mmeerrggee(1)
+
+ GGIITT__PPAAGGEERR
+ This environment variable overrides $$PPAAGGEERR. If it is set to an
+ empty string or to the value "cat", Git will not launch a pager.
+ See also the ccoorree..ppaaggeerr option in ggiitt--ccoonnffiigg(1).
+
+ GGIITT__EEDDIITTOORR
+ This environment variable overrides $$EEDDIITTOORR and $$VVIISSUUAALL. It is used
+ by several Git commands when, on interactive mode, an editor is to
+ be launched. See also ggiitt--vvaarr(1) and the ccoorree..eeddiittoorr option in ggiitt--
+ ccoonnffiigg(1).
+
+ GGIITT__SSSSHH, GGIITT__SSSSHH__CCOOMMMMAANNDD
+ If either of these environment variables is set then _g_i_t _f_e_t_c_h and
+ _g_i_t _p_u_s_h will use the specified command instead of _s_s_h when they
+ need to connect to a remote system. The command-line parameters
+ passed to the configured command are determined by the ssh variant.
+ See sssshh..vvaarriiaanntt option in ggiitt--ccoonnffiigg(1) for details.
+
+ + $$GGIITT__SSSSHH__CCOOMMMMAANNDD takes precedence over $$GGIITT__SSSSHH, and is interpreted
+ by the shell, which allows additional arguments to be included.
+ $$GGIITT__SSSSHH on the other hand must be just the path to a program (which
+ can be a wrapper shell script, if additional arguments are needed).
+
+ + Usually it is easier to configure any desired options through your
+ personal ..sssshh//ccoonnffiigg file. Please consult your ssh documentation for
+ further details.
+
+ GGIITT__SSSSHH__VVAARRIIAANNTT
+ If this environment variable is set, it overrides Git’s
+ autodetection whether GGIITT__SSSSHH/GGIITT__SSSSHH__CCOOMMMMAANNDD/ccoorree..sssshhCCoommmmaanndd refer
+ to OpenSSH, plink or tortoiseplink. This variable overrides the
+ config setting sssshh..vvaarriiaanntt that serves the same purpose.
+
+ GGIITT__AASSKKPPAASSSS
+ If this environment variable is set, then Git commands which need
+ to acquire passwords or passphrases (e.g. for HTTP or IMAP
+ authentication) will call this program with a suitable prompt as
+ command-line argument and read the password from its STDOUT. See
+ also the ccoorree..aasskkPPaassss option in ggiitt--ccoonnffiigg(1).
+
+ GGIITT__TTEERRMMIINNAALL__PPRROOMMPPTT
+ If this environment variable is set to 00, git will not prompt on
+ the terminal (e.g., when asking for HTTP authentication).
+
+ GGIITT__CCOONNFFIIGG__NNOOSSYYSSTTEEMM
+ Whether to skip reading settings from the system-wide
+ $$((pprreeffiixx))//eettcc//ggiittccoonnffiigg file. This environment variable can be used
+ along with $$HHOOMMEE and $$XXDDGG__CCOONNFFIIGG__HHOOMMEE to create a predictable
+ environment for a picky script, or you can set it temporarily to
+ avoid using a buggy //eettcc//ggiittccoonnffiigg file while waiting for someone
+ with sufficient permissions to fix it.
+
+ GGIITT__FFLLUUSSHH
+ If this environment variable is set to "1", then commands such as
+ _g_i_t _b_l_a_m_e (in incremental mode), _g_i_t _r_e_v_-_l_i_s_t, _g_i_t _l_o_g, _g_i_t
+ _c_h_e_c_k_-_a_t_t_r and _g_i_t _c_h_e_c_k_-_i_g_n_o_r_e will force a flush of the output
+ stream after each record have been flushed. If this variable is set
+ to "0", the output of these commands will be done using completely
+ buffered I/O. If this environment variable is not set, Git will
+ choose buffered or record-oriented flushing based on whether stdout
+ appears to be redirected to a file or not.
+
+ GGIITT__TTRRAACCEE
+ Enables general trace messages, e.g. alias expansion, built-in
+ command execution and external command execution.
+
+ If this variable is set to "1", "2" or "true" (comparison is case
+ insensitive), trace messages will be printed to stderr.
+
+ If the variable is set to an integer value greater than 2 and lower
+ than 10 (strictly) then Git will interpret this value as an open
+ file descriptor and will try to write the trace messages into this
+ file descriptor.
+
+ Alternatively, if the variable is set to an absolute path (starting
+ with a _/ character), Git will interpret this as a file path and
+ will try to write the trace messages into it.
+
+ Unsetting the variable, or setting it to empty, "0" or "false"
+ (case insensitive) disables trace messages.
+
+ GGIITT__TTRRAACCEE__FFSSMMOONNIITTOORR
+ Enables trace messages for the filesystem monitor extension. See
+ GGIITT__TTRRAACCEE for available trace output options.
+
+ GGIITT__TTRRAACCEE__PPAACCKK__AACCCCEESSSS
+ Enables trace messages for all accesses to any packs. For each
+ access, the pack file name and an offset in the pack is recorded.
+ This may be helpful for troubleshooting some pack-related
+ performance problems. See GGIITT__TTRRAACCEE for available trace output
+ options.
+
+ GGIITT__TTRRAACCEE__PPAACCKKEETT
+ Enables trace messages for all packets coming in or out of a given
+ program. This can help with debugging object negotiation or other
+ protocol issues. Tracing is turned off at a packet starting with
+ "PACK" (but see GGIITT__TTRRAACCEE__PPAACCKKFFIILLEE below). See GGIITT__TTRRAACCEE for
+ available trace output options.
+
+ GGIITT__TTRRAACCEE__PPAACCKKFFIILLEE
+ Enables tracing of packfiles sent or received by a given program.
+ Unlike other trace output, this trace is verbatim: no headers, and
+ no quoting of binary data. You almost certainly want to direct into
+ a file (e.g., GGIITT__TTRRAACCEE__PPAACCKKFFIILLEE==//ttmmpp//mmyy..ppaacckk) rather than
+ displaying it on the terminal or mixing it with other trace output.
+
+ Note that this is currently only implemented for the client side of
+ clones and fetches.
+
+ GGIITT__TTRRAACCEE__PPEERRFFOORRMMAANNCCEE
+ Enables performance related trace messages, e.g. total execution
+ time of each Git command. See GGIITT__TTRRAACCEE for available trace output
+ options.
+
+ GGIITT__TTRRAACCEE__SSEETTUUPP
+ Enables trace messages printing the .git, working tree and current
+ working directory after Git has completed its setup phase. See
+ GGIITT__TTRRAACCEE for available trace output options.
+
+ GGIITT__TTRRAACCEE__SSHHAALLLLOOWW
+ Enables trace messages that can help debugging fetching / cloning
+ of shallow repositories. See GGIITT__TTRRAACCEE for available trace output
+ options.
+
+ GGIITT__TTRRAACCEE__CCUURRLL
+ Enables a curl full trace dump of all incoming and outgoing data,
+ including descriptive information, of the git transport protocol.
+ This is similar to doing curl ----ttrraaccee--aasscciiii on the command line.
+ This option overrides setting the GGIITT__CCUURRLL__VVEERRBBOOSSEE environment
+ variable. See GGIITT__TTRRAACCEE for available trace output options.
+
+ GGIITT__TTRRAACCEE__CCUURRLL__NNOO__DDAATTAA
+ When a curl trace is enabled (see GGIITT__TTRRAACCEE__CCUURRLL above), do not
+ dump data (that is, only dump info lines and headers).
+
+ GGIITT__RREEDDAACCTT__CCOOOOKKIIEESS
+ This can be set to a comma-separated list of strings. When a curl
+ trace is enabled (see GGIITT__TTRRAACCEE__CCUURRLL above), whenever a "Cookies:"
+ header sent by the client is dumped, values of cookies whose key is
+ in that list (case-sensitive) are redacted.
+
+ GGIITT__LLIITTEERRAALL__PPAATTHHSSPPEECCSS
+ Setting this variable to 11 will cause Git to treat all pathspecs
+ literally, rather than as glob patterns. For example, running
+ GGIITT__LLIITTEERRAALL__PPAATTHHSSPPEECCSS==11 ggiitt lloogg ---- ''**..cc'' will search for commits
+ that touch the path **..cc, not any paths that the glob **..cc matches.
+ You might want this if you are feeding literal paths to Git (e.g.,
+ paths previously given to you by ggiitt llss--ttrreeee, ----rraaww diff output,
+ etc).
+
+ GGIITT__GGLLOOBB__PPAATTHHSSPPEECCSS
+ Setting this variable to 11 will cause Git to treat all pathspecs as
+ glob patterns (aka "glob" magic).
+
+ GGIITT__NNOOGGLLOOBB__PPAATTHHSSPPEECCSS
+ Setting this variable to 11 will cause Git to treat all pathspecs as
+ literal (aka "literal" magic).
+
+ GGIITT__IICCAASSEE__PPAATTHHSSPPEECCSS
+ Setting this variable to 11 will cause Git to treat all pathspecs as
+ case-insensitive.
+
+ GGIITT__RREEFFLLOOGG__AACCTTIIOONN
+ When a ref is updated, reflog entries are created to keep track of
+ the reason why the ref was updated (which is typically the name of
+ the high-level command that updated the ref), in addition to the
+ old and new values of the ref. A scripted Porcelain command can use
+ set_reflog_action helper function in ggiitt--sshh--sseettuupp to set its name
+ to this variable when it is invoked as the top level command by the
+ end user, to be recorded in the body of the reflog.
+
+ GGIITT__RREEFF__PPAARRAANNOOIIAA
+ If set to 11, include broken or badly named refs when iterating over
+ lists of refs. In a normal, non-corrupted repository, this does
+ nothing. However, enabling it may help git to detect and abort some
+ operations in the presence of broken refs. Git sets this variable
+ automatically when performing destructive operations like ggiitt--
+ pprruunnee(1). You should not need to set it yourself unless you want to
+ be paranoid about making sure an operation has touched every ref
+ (e.g., because you are cloning a repository to make a backup).
+
+ GGIITT__AALLLLOOWW__PPRROOTTOOCCOOLL
+ If set to a colon-separated list of protocols, behave as if
+ pprroottooccooll..aallllooww is set to nneevveerr, and each of the listed protocols
+ has pprroottooccooll..<<nnaammee>>..aallllooww set to aallwwaayyss (overriding any existing
+ configuration). In other words, any protocol not mentioned will be
+ disallowed (i.e., this is a whitelist, not a blacklist). See the
+ description of pprroottooccooll..aallllooww in ggiitt--ccoonnffiigg(1) for more details.
+
+ GGIITT__PPRROOTTOOCCOOLL__FFRROOMM__UUSSEERR
+ Set to 0 to prevent protocols used by fetch/push/clone which are
+ configured to the uusseerr state. This is useful to restrict recursive
+ submodule initialization from an untrusted repository or for
+ programs which feed potentially-untrusted URLS to git commands. See
+ ggiitt--ccoonnffiigg(1) for more details.
+
+ GGIITT__PPRROOTTOOCCOOLL
+ For internal use only. Used in handshaking the wire protocol.
+ Contains a colon _: separated list of keys with optional values
+ _k_e_y_[_=_v_a_l_u_e_]. Presence of unknown keys and values must be ignored.
+
+ GGIITT__OOPPTTIIOONNAALL__LLOOCCKKSS
+ If set to 00, Git will complete any requested operation without
+ performing any optional sub-operations that require taking a lock.
+ For example, this will prevent ggiitt ssttaattuuss from refreshing the index
+ as a side effect. This is useful for processes running in the
+ background which do not want to cause lock contention with other
+ operations on the repository. Defaults to 11.
+
+ GGIITT__RREEDDIIRREECCTT__SSTTDDIINN, GGIITT__RREEDDIIRREECCTT__SSTTDDOOUUTT, GGIITT__RREEDDIIRREECCTT__SSTTDDEERRRR
+ Windows-only: allow redirecting the standard input/output/error
+ handles to paths specified by the environment variables. This is
+ particularly useful in multi-threaded applications where the
+ canonical way to pass standard handles via CCrreeaatteePPrroocceessss(()) is not
+ an option because it would require the handles to be marked
+ inheritable (and consequently eevveerryy spawned process would inherit
+ them, possibly blocking regular Git operations). The primary
+ intended use case is to use named pipes for communication (e.g.
+ \\\\..\\ppiippee\\mmyy--ggiitt--ssttddiinn--112233).
+
+ Two special values are supported: ooffff will simply close the
+ corresponding standard handle, and if GGIITT__RREEDDIIRREECCTT__SSTTDDEERRRR is 22>>&&11,
+ standard error will be redirected to the same handle as standard
+ output.
+
+ GGIITT__PPRRIINNTT__SSHHAA11__EELLLLIIPPSSIISS (deprecated)
+ If set to yyeess, print an ellipsis following an (abbreviated) SHA-1
+ value. This affects indications of detached HEADs (ggiitt--cchheecckkoouutt(1))
+ and the raw diff output (ggiitt--ddiiffff(1)). Printing an ellipsis in the
+ cases mentioned is no longer considered adequate and support for it
+ is likely to be removed in the foreseeable future (along with the
+ variable).
+
+DDIISSCCUUSSSSIIOONN
+ More detail on the following is available from the GGiitt ccoonncceeppttss cchhaapptteerr
+ ooff tthhee uusseerr--mmaannuuaall[2] and ggiittccoorree--ttuuttoorriiaall(7).
+
+ A Git project normally consists of a working directory with a ".git"
+ subdirectory at the top level. The .git directory contains, among other
+ things, a compressed object database representing the complete history
+ of the project, an "index" file which links that history to the current
+ contents of the working tree, and named pointers into that history such
+ as tags and branch heads.
+
+ The object database contains objects of three main types: blobs, which
+ hold file data; trees, which point to blobs and other trees to build up
+ directory hierarchies; and commits, which each reference a single tree
+ and some number of parent commits.
+
+ The commit, equivalent to what other systems call a "changeset" or
+ "version", represents a step in the project’s history, and each parent
+ represents an immediately preceding step. Commits with more than one
+ parent represent merges of independent lines of development.
+
+ All objects are named by the SHA-1 hash of their contents, normally
+ written as a string of 40 hex digits. Such names are globally unique.
+ The entire history leading up to a commit can be vouched for by signing
+ just that commit. A fourth object type, the tag, is provided for this
+ purpose.
+
+ When first created, objects are stored in individual files, but for
+ efficiency may later be compressed together into "pack files".
+
+ Named pointers called refs mark interesting points in history. A ref
+ may contain the SHA-1 name of an object or the name of another ref.
+ Refs with names beginning rreeff//hheeaadd// contain the SHA-1 name of the most
+ recent commit (or "head") of a branch under development. SHA-1 names of
+ tags of interest are stored under rreeff//ttaaggss//. A special ref named HHEEAADD
+ contains the name of the currently checked-out branch.
+
+ The index file is initialized with a list of all paths and, for each
+ path, a blob object and a set of attributes. The blob object represents
+ the contents of the file as of the head of the current branch. The
+ attributes (last modified time, size, etc.) are taken from the
+ corresponding file in the working tree. Subsequent changes to the
+ working tree can be found by comparing these attributes. The index may
+ be updated with new content, and new commits may be created from the
+ content stored in the index.
+
+ The index is also capable of storing multiple entries (called "stages")
+ for a given pathname. These stages are used to hold the various
+ unmerged version of a file when a merge is in progress.
+
+FFUURRTTHHEERR DDOOCCUUMMEENNTTAATTIIOONN
+ See the references in the "description" section to get started using
+ Git. The following is probably more detail than necessary for a
+ first-time user.
+
+ The GGiitt ccoonncceeppttss cchhaapptteerr ooff tthhee uusseerr--mmaannuuaall[2] and ggiittccoorree--ttuuttoorriiaall(7)
+ both provide introductions to the underlying Git architecture.
+
+ See ggiittwwoorrkkfflloowwss(7) for an overview of recommended workflows.
+
+ See also the hhoowwttoo[3] documents for some useful examples.
+
+ The internals are documented in the GGiitt AAPPII ddooccuummeennttaattiioonn[4].
+
+ Users migrating from CVS may also want to read ggiittccvvss--mmiiggrraattiioonn(7).
+
+AAUUTTHHOORRSS
+ Git was started by Linus Torvalds, and is currently maintained by Junio
+ C Hamano. Numerous contributions have come from the Git mailing list
+ <ggiitt@@vvggeerr..kkeerrnneell..oorrgg[5]>.
+ hhttttpp::////wwwwww..ooppeennhhuubb..nneett//pp//ggiitt//ccoonnttrriibbuuttoorrss//ssuummmmaarryy gives you a more
+ complete list of contributors.
+
+ If you have a clone of git.git itself, the output of ggiitt--sshhoorrttlloogg(1)
+ and ggiitt--bbllaammee(1) can show you the authors for specific parts of the
+ project.
+
+RREEPPOORRTTIINNGG BBUUGGSS
+ Report bugs to the Git mailing list <ggiitt@@vvggeerr..kkeerrnneell..oorrgg[5]> where the
+ development and maintenance is primarily done. You do not have to be
+ subscribed to the list to send a message there.
+
+ Issues which are security relevant should be disclosed privately to the
+ Git Security mailing list <ggiitt--sseeccuurriittyy@@ggoooogglleeggrroouuppss..ccoomm[6]>.
+
+SSEEEE AALLSSOO
+ ggiittttuuttoorriiaall(7), ggiittttuuttoorriiaall--22(7), ggiitteevveerryyddaayy(7), ggiittccvvss--mmiiggrraattiioonn(7),
+ ggiittgglloossssaarryy(7), ggiittccoorree--ttuuttoorriiaall(7), ggiittccllii(7), TThhee GGiitt UUsseerr’’ss
+ MMaannuuaall[1], ggiittwwoorrkkfflloowwss(7)
+
+GGIITT
+ Part of the ggiitt(1) suite
+
+NNOOTTEESS
+ 1. Git User’s Manual
+ file:///usr/share/doc/git/html/user-manual.html
+
+ 2. Git concepts chapter of the user-manual
+ file:///usr/share/doc/git/html/user-manual.html#git-concepts
+
+ 3. howto
+ file:///usr/share/doc/git/html/howto-index.html
+
+ 4. Git API documentation
+ file:///usr/share/doc/git/html/technical/api-index.html
+
+ 5. git@vger.kernel.org
+ mailto:git@vger.kernel.org
+
+ 6. git-security@googlegroups.com
+ mailto:git-security@googlegroups.com
+
+Git 2.17.1 04/20/2020 GIT(1)
diff --git a/mat/domace_naloge/15/dokument.aux b/mat/domace_naloge/15/dokument.aux
new file mode 100644
index 0000000..f564c6b
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.aux
@@ -0,0 +1,19 @@
+\relax
+\providecommand\hyper@newdestlabel[2]{}
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\providecommand\HyField@AuxAddToCoFields[2]{}
+\@writefile{toc}{\contentsline {section}{\numberline {1}Učni list \textit {Središčni in obodni kot }}{1}{section.1}\protected@file@percent }
diff --git a/mat/domace_naloge/15/dokument.dvi b/mat/domace_naloge/15/dokument.dvi
new file mode 100644
index 0000000..8ab8b70
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.dvi
Binary files differ
diff --git a/mat/domace_naloge/15/dokument.log b/mat/domace_naloge/15/dokument.log
new file mode 100644
index 0000000..a999e6c
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.log
@@ -0,0 +1,1502 @@
+This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2020.9.9) 7 NOV 2020 21:17
+entering extended mode
+ \write18 enabled.
+ %&-line parsing enabled.
+**/home/a/Documents/sola/gimb/2/mat/domace_naloge/15/dokument.tex
+(/home/a/Documents/sola/gimb/2/mat/domace_naloge/15/dokument.tex
+LaTeX2e <2020-02-02> patch level 5
+L3 programming layer <2020-02-25>
+(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
+Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
+(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
+File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
+)
+\c@part=\count167
+\c@section=\count168
+\c@subsection=\count169
+\c@subsubsection=\count170
+\c@paragraph=\count171
+\c@subparagraph=\count172
+\c@figure=\count173
+\c@table=\count174
+\abovecaptionskip=\skip47
+\belowcaptionskip=\skip48
+\bibindent=\dimen134
+)
+(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
+Package: inputenc 2018/08/11 v1.3c Input encoding file
+\inpenc@prehook=\toks15
+\inpenc@posthook=\toks16
+)
+(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
+Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count175
+)
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
+
+(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
+Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
+Package: iftex 2019/11/07 v1.0c TeX engine tests
+)
+(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
+Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
+)
+
+(/usr/share/texlive/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/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks17
+)
+(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
+Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
+)
+\@linkdim=\dimen135
+\Hy@linkcounter=\count176
+\Hy@pagecounter=\count177
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count178
+\pdfmajorversion=\count179
+Package hyperref Info: Hyper figures OFF on input line 4547.
+Package hyperref Info: Link nesting OFF on input line 4552.
+Package hyperref Info: Hyper index ON on input line 4555.
+Package hyperref Info: Plain pages OFF on input line 4562.
+Package hyperref Info: Backreferencing OFF on input line 4567.
+Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
+Package hyperref Info: Bookmarks ON on input line 4800.
+\c@Hy@tempcnt=\count180
+
+(/usr/share/texlive/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 5159.
+\XeTeXLinkMargin=\dimen136
+
+(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+
+(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count181
+\Field@Width=\dimen137
+\Fld@charsize=\dimen138
+Package hyperref Info: Hyper figures OFF on input line 6430.
+Package hyperref Info: Link nesting OFF on input line 6435.
+Package hyperref Info: Hyper index ON on input line 6438.
+Package hyperref Info: backreferencing OFF on input line 6445.
+Package hyperref Info: Link coloring OFF on input line 6450.
+Package hyperref Info: Link coloring with OCG OFF on input line 6455.
+Package hyperref Info: PDF/A mode OFF on input line 6460.
+LaTeX Info: Redefining \ref on input line 6500.
+LaTeX Info: Redefining \pageref on input line 6504.
+
+(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
+Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
+)
+\Hy@abspage=\count182
+\c@Item=\count183
+\c@Hfootnote=\count184
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
+File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX
+
+(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
+Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
+)
+\Fld@listcount=\count185
+\c@bookmark@seq@number=\count186
+
+(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(/usr/share/texlive/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.
+)
+\Hy@SectionHShift=\skip49
+)
+(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+
+(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count187
+\Gm@cntv=\count188
+\c@Gm@tempcnt=\count189
+\Gm@bindingoffset=\dimen139
+\Gm@wd@mp=\dimen140
+\Gm@odd@mp=\dimen141
+\Gm@even@mp=\dimen142
+\Gm@layoutwidth=\dimen143
+\Gm@layoutheight=\dimen144
+\Gm@layouthoffset=\dimen145
+\Gm@layoutvoffset=\dimen146
+\Gm@dimlist=\toks18
+)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
+Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
+
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
+Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
+
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+)
+(/usr/share/texlive/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/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
+File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen147
+\Gin@req@width=\dimen148
+)
+(/usr/share/texlive/texmf-dist/tex/generic/hologo/hologo.sty
+Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks19
+\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/share/texlive/texmf-dist/tex/latex/calculator/calculator.sty
+Package: calculator 2014/02/20 v.2.0
+\cctr@lengtha=\dimen149
+\cctr@lengthb=\dimen150
+\cctr@epsilon=\dimen151
+)
+(/usr/share/texlive/texmf-dist/tex/latex/pgfplots/pgfplots.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
+Package: pgfplots 2018/03/28 v1.16 Data Visualization (1.16)
+
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
+\pgfutil@everybye=\toks20
+\pgfutil@tempdima=\dimen152
+\pgfutil@tempdimb=\dimen153
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.t
+ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
+\pgfutil@abb=\box45
+(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty
+Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex)
+Package: pgfrcs 2020/01/08 v3.1.5b (3.1.5b)
+))
+Package: pgf 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
+Package: pgfsys 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks21
+\pgfkeys@temptoks=\toks22
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t
+ex
+\pgfkeys@tmptoks=\toks23
+))
+\pgf@x=\dimen154
+\pgf@y=\dimen155
+\pgf@xa=\dimen156
+\pgf@ya=\dimen157
+\pgf@xb=\dimen158
+\pgf@yb=\dimen159
+\pgf@xc=\dimen160
+\pgf@yc=\dimen161
+\pgf@xd=\dimen162
+\pgf@yd=\dimen163
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count190
+\c@pgf@countb=\count191
+\c@pgf@countc=\count192
+\c@pgf@countd=\count193
+\t@pgf@toka=\toks24
+\t@pgf@tokb=\toks25
+\t@pgf@tokc=\toks26
+\pgf@sys@id@count=\count194
+ (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
+File: pgf.cfg 2020/01/08 v3.1.5b (3.1.5b)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
+File: pgfsys-pdftex.def 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de
+f
+File: pgfsys-common-pdf.def 2020/01/08 v3.1.5b (3.1.5b)
+)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.
+tex
+File: pgfsyssoftpath.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfsyssoftpath@smallbuffer@items=\count195
+\pgfsyssoftpath@bigbuffer@items=\count196
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.
+tex
+File: pgfsysprotocol.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+
+(/usr/share/texlive/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/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
+Package: pgfcore 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
+\pgfmath@dimen=\dimen164
+\pgfmath@count=\count197
+\pgfmath@box=\box46
+\pgfmath@toks=\toks27
+\pgfmath@stack@operand=\toks28
+\pgfmath@stack@operation=\toks29
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet
+ric.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod
+e.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.
+tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.
+tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari
+thmetics.code.tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count198
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te
+x
+File: pgfcorepoints.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@picminx=\dimen165
+\pgf@picmaxx=\dimen166
+\pgf@picminy=\dimen167
+\pgf@picmaxy=\dimen168
+\pgf@pathminx=\dimen169
+\pgf@pathmaxx=\dimen170
+\pgf@pathminy=\dimen171
+\pgf@pathmaxy=\dimen172
+\pgf@xx=\dimen173
+\pgf@xy=\dimen174
+\pgf@yx=\dimen175
+\pgf@yy=\dimen176
+\pgf@zx=\dimen177
+\pgf@zy=\dimen178
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.
+code.tex
+File: pgfcorepathconstruct.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@path@lastx=\dimen179
+\pgf@path@lasty=\dimen180
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code
+.tex
+File: pgfcorepathusage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@shorten@end@additional=\dimen181
+\pgf@shorten@start@additional=\dimen182
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te
+x
+File: pgfcorescopes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfpic=\box47
+\pgf@hbox=\box48
+\pgf@layerbox@main=\box49
+\pgf@picture@serial@count=\count199
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c
+ode.tex
+File: pgfcoregraphicstate.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgflinewidth=\dimen183
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation
+s.code.tex
+File: pgfcoretransformations.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@pt@x=\dimen184
+\pgf@pt@y=\dimen185
+\pgf@pt@temp=\dimen186
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
+File: pgfcorequick.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t
+ex
+File: pgfcoreobjects.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing
+.code.tex
+File: pgfcorepathprocessing.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te
+x
+File: pgfcorearrows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfarrowsep=\dimen187
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
+File: pgfcoreshade.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@max=\dimen188
+\pgf@sys@shading@range@num=\count266
+\pgf@shadingcount=\count267
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
+File: pgfcoreimage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.
+tex
+File: pgfcoreexternal.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfexternal@startupbox=\box50
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te
+x
+File: pgfcorelayers.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c
+ode.tex
+File: pgfcoretransparency.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.
+tex
+File: pgfcorepatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
+File: pgfcorerdf.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
+File: pgfmoduleshapes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfnodeparttextbox=\box51
+) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
+File: pgfmoduleplot.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65
+.sty
+Package: pgfcomp-version-0-65 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@nodesepstart=\dimen189
+\pgf@nodesepend=\dimen190
+)
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18
+.sty
+Package: pgfcomp-version-1-18 2020/01/08 v3.1.5b (3.1.5b)
+)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
+Package: pgffor 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)
+\pgffor@iter=\dimen191
+\pgffor@skip=\dimen192
+\pgffor@stack=\toks30
+\pgffor@toks=\toks31
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
+Package: tikz 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers
+.code.tex
+File: pgflibraryplothandlers.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgf@plot@mark@count=\count268
+\pgfplotmarksize=\dimen193
+)
+\tikz@lastx=\dimen194
+\tikz@lasty=\dimen195
+\tikz@lastxsaved=\dimen196
+\tikz@lastysaved=\dimen197
+\tikz@lastmovetox=\dimen198
+\tikz@lastmovetoy=\dimen199
+\tikzleveldistance=\dimen256
+\tikzsiblingdistance=\dimen257
+\tikz@figbox=\box52
+\tikz@figbox@bg=\box53
+\tikz@tempbox=\box54
+\tikz@tempbox@bg=\box55
+\tikztreelevel=\count269
+\tikznumberofchildren=\count270
+\tikznumberofcurrentchild=\count271
+\tikz@fig@count=\count272
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
+File: pgfmodulematrix.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfmatrixcurrentrow=\count273
+\pgfmatrixcurrentcolumn=\count274
+\pgf@matrix@numberofcolumns=\count275
+)
+\tikz@expandcount=\count276
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
+\t@pgfplots@toka=\toks32
+\t@pgfplots@tokb=\toks33
+\t@pgfplots@tokc=\toks34
+\pgfplots@tmpa=\dimen258
+\c@pgfplots@coordindex=\count277
+\c@pgfplots@scanlineindex=\count278
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code
+.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.t
+ex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp
+gfsupp_loader.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists
+tructure.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists
+tructureext.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray
+.code.tex
+\c@pgfplotsarray@tmp=\count279
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri
+x.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare
+d.code.tex
+\c@pgfplotstable@counta=\count280
+\t@pgfplotstable@a=\toks35
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te
+x
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co
+de.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur
+fshading.code.tex
+\c@pgfplotslibrarysurf@no=\count281
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf
+shading.pgfsys-pdftex.def)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.
+tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t
+ex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t
+ex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod
+e.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.
+tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod
+e.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex
+) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex
+) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod
+e.tex
+\pgfdecoratedcompleteddistance=\dimen259
+\pgfdecoratedremainingdistance=\dimen260
+\pgfdecoratedinputsegmentcompleteddistance=\dimen261
+\pgfdecoratedinputsegmentremainingdistance=\dimen262
+\pgf@decorate@distancetomove=\dimen263
+\pgf@decorate@repeatstate=\count282
+\pgfdecorationsegmentamplitude=\dimen264
+\pgfdecorationsegmentlength=\dimen265
+)
+\tikz@lib@dec@box=\box56
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.pathmorphing.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.pathmorphing.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.pathreplacing.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.pathreplacing.code.tex))
+\pgfplots@numplots=\count283
+\pgfplots@xmin@reg=\dimen266
+\pgfplots@xmax@reg=\dimen267
+\pgfplots@ymin@reg=\dimen268
+\pgfplots@ymax@reg=\dimen269
+\pgfplots@zmin@reg=\dimen270
+\pgfplots@zmax@reg=\dimen271
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co
+de.tex
+File: pgflibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
+Package: enumitem 2019/06/20 v3.9 Customized lists
+\labelindent=\skip50
+\enit@outerparindent=\dimen272
+\enit@toks=\toks36
+\enit@inbox=\box57
+\enit@count@id=\count284
+\enitdp@description=\count285
+)
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
+Package: amsmath 2020/01/20 v2.17e AMS math features
+\@mathmargin=\skip51
+
+For additional information on amsmath, use the `?' option.
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks37
+\ex@=\dimen273
+))
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+)
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count286
+LaTeX Info: Redefining \frac on input line 227.
+\uproot@=\count287
+\leftroot@=\count288
+LaTeX Info: Redefining \overline on input line 389.
+\classnum@=\count289
+\DOTSCASE@=\count290
+LaTeX Info: Redefining \ldots on input line 486.
+LaTeX Info: Redefining \dots on input line 489.
+LaTeX Info: Redefining \cdots on input line 610.
+\Mathstrutbox@=\box58
+\strutbox@=\box59
+\big@size=\dimen275
+LaTeX Font Info: Redeclaring font encoding OML on input line 733.
+LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
+\macc@depth=\count291
+\c@MaxMatrixCols=\count292
+\dotsspace@=\muskip17
+\c@parentequation=\count293
+\dspbrk@lvl=\count294
+\tag@help=\toks38
+\row@=\count295
+\column@=\count296
+\maxfields@=\count297
+\andhelp@=\toks39
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks40
+\multlinegap=\skip52
+\multlinetaggap=\skip53
+\mathdisplay@stack=\toks41
+LaTeX Info: Redefining \[ on input line 2859.
+LaTeX Info: Redefining \] on input line 2860.
+)
+(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty
+(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
+Package: expl3 2020-02-25 L3 programming layer (loader)
+
+(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
+File: l3backend-pdfmode.def 2020-02-23 L3 backend support: PDF mode
+\l__kernel_color_stack_int=\count298
+\l__pdf_internal_box=\box60
+))
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
+Package: xparse 2020-02-25 L3 Experimental document command parser
+\l__xparse_current_arg_int=\count299
+\g__xparse_grabber_int=\count300
+\l__xparse_m_args_int=\count301
+\l__xparse_v_nesting_int=\count302
+)
+Package: siunitx 2020/02/25 v2.8b A comprehensive (SI) units package
+
+(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
+Package: array 2019/08/31 v2.4l Tabular extension package (FMi)
+\col@sep=\dimen282
+\ar@mcellbox=\box61
+\extrarowheight=\dimen283
+\NC@list=\toks42
+\extratabsurround=\skip54
+\backup@length=\skip55
+\ar@cellbox=\box62
+)
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
+Package: l3keys2e 2020-02-25 LaTeX2e option processing using LaTeX3 keys
+)
+\l__siunitx_tmp_box=\box63
+\l__siunitx_tmp_dim=\dimen284
+\l__siunitx_tmp_int=\count303
+\l__siunitx_number_mantissa_length_int=\count304
+\l__siunitx_number_uncert_length_int=\count305
+\l__siunitx_round_int=\count306
+\l__siunitx_process_decimal_int=\count307
+\l__siunitx_process_uncertainty_int=\count308
+\l__siunitx_process_fixed_int=\count309
+\l__siunitx_process_integer_min_int=\count310
+\l__siunitx_process_precision_int=\count311
+\l__siunitx_group_min_int=\count312
+\l__siunitx_angle_marker_box=\box64
+\l__siunitx_angle_unit_box=\box65
+\l__siunitx_angle_marker_dim=\dimen285
+\l__siunitx_angle_unit_dim=\dimen286
+\l__siunitx_unit_int=\count313
+\l__siunitx_unit_denominator_int=\count314
+\l__siunitx_unit_numerator_int=\count315
+\l__siunitx_unit_prefix_int=\count316
+\l__siunitx_unit_prefix_base_int=\count317
+\l__siunitx_unit_prefix_gram_int=\count318
+\l__siunitx_number_product_int=\count319
+\c__siunitx_one_fill_skip=\skip56
+\l__siunitx_table_unit_align_skip=\skip57
+\l__siunitx_table_exponent_dim=\dimen287
+\l__siunitx_table_integer_dim=\dimen288
+\l__siunitx_table_mantissa_dim=\dimen289
+\l__siunitx_table_marker_dim=\dimen290
+\l__siunitx_table_result_dim=\dimen291
+\l__siunitx_table_uncert_dim=\dimen292
+\l__siunitx_table_fill_pre_dim=\dimen293
+\l__siunitx_table_fill_post_dim=\dimen294
+\l__siunitx_table_fill_mid_dim=\dimen295
+\l__siunitx_table_pre_box=\box66
+\l__siunitx_table_post_box=\box67
+\l__siunitx_table_mantissa_box=\box68
+\l__siunitx_table_result_box=\box69
+\l__siunitx_table_number_align_skip=\skip58
+\l__siunitx_table_text_align_skip=\skip59
+
+(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty
+Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX
+))
+(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty
+Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
+\c@tracingmulticols=\count320
+\mult@box=\box70
+\multicol@leftmargin=\dimen296
+\c@unbalance=\count321
+\c@collectmore=\count322
+\doublecol@number=\count323
+\multicoltolerance=\count324
+\multicolpretolerance=\count325
+\full@width=\dimen297
+\page@free=\dimen298
+\premulticols=\dimen299
+\postmulticols=\dimen300
+\multicolsep=\skip60
+\multicolbaselineskip=\skip61
+\partial@page=\box71
+\last@line=\box72
+\maxbalancingoverflow=\dimen301
+\mult@rightbox=\box73
+\mult@grightbox=\box74
+\mult@gfirstbox=\box75
+\mult@firstbox=\box76
+\@tempa=\box77
+\@tempa=\box78
+\@tempa=\box79
+\@tempa=\box80
+\@tempa=\box81
+\@tempa=\box82
+\@tempa=\box83
+\@tempa=\box84
+\@tempa=\box85
+\@tempa=\box86
+\@tempa=\box87
+\@tempa=\box88
+\@tempa=\box89
+\@tempa=\box90
+\@tempa=\box91
+\@tempa=\box92
+\@tempa=\box93
+\@tempa=\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
+\c@minrows=\count326
+\c@columnbadness=\count327
+\c@finalcolumnbadness=\count328
+\last@try=\dimen302
+\multicolovershoot=\dimen303
+\multicolundershoot=\dimen304
+\mult@nat@firstbox=\box114
+\colbreak@box=\box115
+\mc@col@check@num=\count329
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty
+Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables
+
+(/usr/share/texlive/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/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty
+Package: defpattern 1994/10/12
+\actioncount=\count330
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty
+Package: fp-basic 1996/05/13
+\FP@xs=\count331
+\FP@xia=\count332
+\FP@xib=\count333
+\FP@xfa=\count334
+\FP@xfb=\count335
+\FP@rega=\count336
+\FP@regb=\count337
+\FP@regs=\count338
+\FP@times=\count339
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty
+Package: fp-addons 1995/03/15
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty
+Package: fp-snap 1995/04/05
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty
+Package: fp-exp 1995/04/03
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty
+Package: fp-trigo 1995/04/14
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty
+Package: fp-pas 1994/08/29
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty
+Package: fp-random 1995/02/23
+\FPseed=\count340
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty
+Package: fp-eqn 1995/04/03
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty
+Package: fp-upn 1996/10/21
+)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty
+Package: fp-eval 1995/04/03
+))
+(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty
+(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex
+\integerpart=\count341
+\decimalpart=\count342
+)
+Package: xstring 2019/02/06 v1.83 String manipulations (CT)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty
+Package: numprint 2012/08/20 v1.39 Print numbers (HH)
+\c@nprt@mantissa@digitsbefore=\count343
+\c@nprt@mantissa@digitsafter=\count344
+\c@nprt@exponent@digitsbefore=\count345
+\c@nprt@exponent@digitsafter=\count346
+\nprt@digitwidth=\skip62
+\nprt@sepwidth=\skip63
+\nprt@decimalwidth=\skip64
+\nprt@blockwidth=\skip65
+\nprt@digittoks=\toks43
+\nprt@pretoks=\toks44
+\nprt@posttoks=\toks45
+\nprt@thisdigit=\count347
+\nprt@curpos=\count348
+\nprt@rndpos=\count349
+\c@nprt@digitsfirstblock=\count350
+\c@nprt@blockcnt=\count351
+\c@nprt@cntprint=\count352
+
+No configuration file `numprint.cfg' found.)
+\tccol=\count353
+\tclin=\count354
+\tc@export=\write4
+)
+(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty
+Package: float 2001/11/08 v1.3d Float enhancements (AL)
+\c@float@type=\count355
+\float@exts=\toks46
+\float@box=\box116
+\@float@everytoks=\toks47
+\@floatcapt=\box117
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty
+Package: xtemplate 2020-02-25 L3 Experimental prototype document functions
+\l__xtemplate_tmp_dim=\dimen305
+\l__xtemplate_tmp_int=\count356
+\l__xtemplate_tmp_muskip=\muskip18
+\l__xtemplate_tmp_skip=\skip66
+)
+Package: tasks 2020/01/11 v1.1a horizontally columned lists
+\g__tasks_total_items_int=\count357
+\l__tasks_columns_int=\count358
+\g__tasks_rows_int=\count359
+\g__tasks_current_col_num_int=\count360
+\g__tasks_current_row_num_int=\count361
+\l__tasks_item_columns_int=\count362
+\g__tasks_env_int=\count363
+\l__tasks_start_int=\count364
+\l__tasks_item_indent_dim=\dimen306
+\l__tasks_item_default_indent_dim=\dimen307
+\l__tasks_item_width_dim=\dimen308
+\l__tasks_label_width_dim=\dimen309
+\l__tasks_label_default_width_dim=\dimen310
+\l__tasks_label_offset_dim=\dimen311
+\l__tasks_label_default_offset_dim=\dimen312
+\l__tasks_column_sep_dim=\dimen313
+\l__tasks_correction_dim=\dimen314
+\l__tasks_full_width_dim=\dimen315
+\l__tasks_after_item_skip=\skip67
+\l__tasks_custom_after_item_skip=\skip68
+\l__tasks_before_list_skip=\skip69
+\l__tasks_after_list_skip=\skip70
+\l__tasks_item_coffin=\box118
+\l__tasks_label_coffin=\box119
+\c@task=\count365
+\l__tasks_tmpa_int=\count366
+\l__tasks_tmpb_int=\count367
+\l__tasks_tmpa_coffin=\box120
+\l__tasks_tmpa_box=\box121
+
+Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on
+(xtemplate) line 426.
+
+
+(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg))
+(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty
+Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT
+eX document
+
+
+Package filecontents Warning: This package is obsolete. Disabling it and
+(filecontents) passing control to the filecontents environment
+(filecontents) defined by the LaTeX kernel.
+
+) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
+Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty
+2020/01/24 3.02c tkz-euclide.sty
+Package: tkz-euclide 2020/01/24 3.02c for euclidan geometry
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty
+2020/01/24 3.02c tkz-base.sty
+Package: tkz-base 2020/01/24 3.02c tkz-base
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryangles.code.tex
+File: tikzlibraryangles.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryarrows.code.tex
+File: tikzlibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.
+tex
+File: pgflibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\arrowsize=\dimen316
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta.
+code.tex
+File: pgflibraryarrows.meta.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+\pgfarrowinset=\dimen317
+\pgfarrowlength=\dimen318
+\pgfarrowwidth=\dimen319
+\pgfarrowlinewidth=\dimen320
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarybabel.code.tex
+File: tikzlibrarybabel.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarycalc.code.tex
+File: tikzlibrarycalc.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.markings.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.markings.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.shapes.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.shapes.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.text.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.text.code.tex
+\pgf@lib@dec@text@box=\box122
+)
+\tikz@lib@dec@te@box=\box123
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryintersections.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection
+s.code.tex
+\pgf@intersect@solutions=\count368
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarypatterns.code.tex
+File: tikzlibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod
+e.tex
+File: pgflibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarypositioning.code.tex
+File: tikzlibrarypositioning.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryquotes.code.tex
+File: tikzlibraryquotes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryshadows.code.tex
+File: tikzlibraryshadows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryfadings.code.tex
+File: tikzlibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code
+.tex
+File: pgflibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryshapes.misc.code.tex
+File: tikzlibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape
+s.misc.code.tex
+File: pgflibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarysnakes.code.tex
+File: tikzlibrarysnakes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+
+
+Package pgf Warning: Snakes have been superseded by decorations. Please use the
+ decoration libraries instead of the snakes library on input line 14.
+
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarythrough.code.tex
+File: tikzlibrarythrough.code.tex 2020/01/08 v3.1.5b (3.1.5b)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty
+Package: xfp 2020-02-25 L3 Floating point unit
+)
+\tkzRadius=\dimen321
+\tkzLength=\dimen322
+\tkz@radi=\dimen323
+\tkz@ax=\dimen324
+\tkz@ay=\dimen325
+\tkz@bx=\dimen326
+\tkz@by=\dimen327
+\tkz@cx=\dimen328
+\tkz@cy=\dimen329
+\tkz@dx=\dimen330
+\tkz@dy=\dimen331
+\tkz@tax=\dimen332
+\tkz@tay=\dimen333
+\tkz@tbx=\dimen334
+\tkz@tby=\dimen335
+\tkz@tcx=\dimen336
+\tkz@tcy=\dimen337
+\tkz@tdx=\dimen338
+\tkz@tdy=\dimen339
+\tkz@cntmk=\count369
+
+Local configuration file tkz-base.cfg found and used
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg
+2020/02/04 3.02c tkz-base.cfg
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex
+2020/01/24 3.02c tkz-tools-utilities.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex
+2020/01/24 3.02c tkz-lib-symbols.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex
+2020/01/24 3.02c tkz-tools-base.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex
+2020/01/24 3.02c tkz-tools-utilities.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex
+2020/01/24 3.02c tkz-tools-math.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex
+2020/01/24 3.02c tkz-tools-text.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex
+2020/01/24 3.02c tkz-obj-BB.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex
+2020/01/24 3.02c tkz-tools-arith.tex
+File: tkz-tool-arith.tex tkz-tool-arith 3.02 c
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex
+2020/01/24 3.02c tkz-tools-print.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex
+2020/01/24 3.02c tkz-tools-misc.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex
+2020/01/24 3.02c tkz-obj-axes.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex
+2020/01/24 3.02c tkz-obj-grids.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex
+2020/01/24 3.02c tkz-obj-marks.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex
+2020/01/24 3.02c tkz-obj-points.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex
+2020/01/24 3.02c tkz-obj-rep.tex
+))
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te
+x
+2020/01/24 3.02c tkz-tools-intersections.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex
+2020/01/24 3.02c tkz-tools-angles.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex
+2020/01/24 3.02c tkz-tool-eu-angles.tex
+\tkz@arcsize=\dimen340
+\tkz@fillsize=\dimen341
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex
+2020/01/24 3.02c tkz-obj-eu-arcs.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex
+2020/01/24 3.02c tkz-obj-eu-compass.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex
+2020/01/24 3.02c tkz-obj-eu-circles.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te
+x
+2020/01/24 3.02c tkz-obj-eu-draw-circles.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex
+2020/01/24 3.02c tkz-obj-eu-lines.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex
+2020/01/24 3.02c tkz-obj-eu-draw-lines.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex
+2020/01/24 3.02c tkz-obj-eu-points.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex
+2020/01/24 3.02c tkz-tools-eu-points-by.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex
+2020/01/24 3.02c tkz-obj-eu-points-rnd.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex
+2020/01/24 3.02c tkz-obj-eu-points-with.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t
+ex
+2020/01/24 3.02c tkz-obj-eu-polygons.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex
+2020/01/24 3.02c tkz-obj-eu-polygons.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex
+2020/01/24 3.02c tkz-obj-eu-protractor.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex
+2020/01/24 3.02c tkz-obj-eu-sectors.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex
+2020/01/24 3.02c tkz-obj-eu-show.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex
+2020/01/24 3.02c tkz-obj-eu-triangles.tex
+)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty
+Package: dirtytalk 2010/11/21 A package making "quoting" easier
+
+(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
+Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
+)
+\c@dirtytalk@qdepth=\count370
+)
+(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty
+Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW)
+\csq@reset=\count371
+\csq@gtype=\count372
+\csq@glevel=\count373
+\csq@qlevel=\count374
+\csq@maxlvl=\count375
+\csq@tshold=\count376
+\csq@ltx@everypar=\toks48
+
+(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def
+File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW)
+)
+Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
+Package csquotes Info: ... configuration file loaded successfully.
+
+(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg
+File: csquotes.cfg
+))
+(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
+\lst@mode=\count377
+\lst@gtempboxa=\box124
+\lst@token=\toks49
+\lst@length=\count378
+\lst@currlwidth=\dimen342
+\lst@column=\count379
+\lst@pos=\count380
+\lst@lostspace=\dimen343
+\lst@width=\dimen344
+\lst@newlines=\count381
+\lst@lineno=\count382
+\lst@maxwidth=\dimen345
+
+(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
+File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz)
+\c@lstnumber=\count383
+\lst@skipnumbers=\count384
+\lst@framebox=\box125
+)
+(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg
+File: listings.cfg 2019/09/10 1.8c listings configuration
+))
+Package: listings 2019/09/10 1.8c (Carsten Heinz)
+
+(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+
+(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty
+Package: xkeyval 2014/12/03 v2.7a package option processing (HA)
+
+(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex
+(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex
+\XKV@toks=\toks50
+\XKV@tempa@toks=\toks51
+)
+\XKV@depth=\count385
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+))
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty
+Package: fcprefix 2012/09/28
+
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count386
+))
+\c@padzeroesN=\count387
+\fc@tmpcatcode=\count388
+\@DT@modctr=\count389
+\@ordinalctr=\count390
+\@orgargctr=\count391
+\@strctr=\count392
+\@tmpstrctr=\count393
+\@DT@loopN=\count394
+\@DT@X=\count395
+)
+(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count396
+\@month=\count397
+\@year=\count398
+\c@HOUR=\count399
+\c@HOURXII=\count400
+\c@MINUTE=\count401
+\c@TOHOUR=\count402
+\c@TOMINUTE=\count403
+\c@SECOND=\count404
+\currenthour=\count405
+\currentminute=\count406
+\currentsecond=\count407
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+\@dtctr=\count408
+\dayofyear=\count409
+\dayofweek=\count410
+LaTeX Info: Redefining \today on input line 736.
+\dt@a=\toks52
+\dt@b=\toks53
+)
+Package csquotes Info: Checking for multilingual support...
+Package csquotes Info: ... none found.
+
+(./dokument.aux)
+\openout1 = `dokument.aux'.
+
+LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 120.
+LaTeX Font Info: ... okay on input line 120.
+\AtBeginShipoutBox=\box126
+Package hyperref Info: Link coloring OFF on input line 120.
+ (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
+Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
+
+(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
+Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
+Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
+)
+\c@section@level=\count411
+)
+LaTeX Info: Redefining \ref on input line 120.
+LaTeX Info: Redefining \pageref on input line 120.
+LaTeX Info: Redefining \nameref on input line 120.
+
+(./dokument.out) (./dokument.out)
+\@outlinefile=\write5
+\openout5 = `dokument.out'.
+
+
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+*geometry* verbose mode - [ preamble ] result:
+* driver: pdftex
+* paper: a4paper
+* layout: <same size as paper>
+* layoutoffset:(h,v)=(0.0pt,0.0pt)
+* modes:
+* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt)
+* v-part:(T,H,B)=(48.93872pt, 722.7pt, 73.40813pt)
+* \paperwidth=597.50787pt
+* \paperheight=845.04684pt
+* \textwidth=505.89pt
+* \textheight=722.7pt
+* \oddsidemargin=-26.46106pt
+* \evensidemargin=-26.46106pt
+* \topmargin=-60.33127pt
+* \headheight=12.0pt
+* \headsep=25.0pt
+* \topskip=10.0pt
+* \footskip=30.0pt
+* \marginparwidth=65.0pt
+* \marginparsep=11.0pt
+* \columnsep=10.0pt
+* \skip\footins=9.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/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count412
+\scratchdimen=\dimen346
+\scratchbox=\box127
+\nofMPsegments=\count413
+\nofMParguments=\count414
+\everyMPshowfont=\toks54
+\MPscratchCnt=\count415
+\MPscratchDim=\dimen347
+\MPnumerator=\count416
+\makeMPintoPDFobject=\count417
+\everyMPtoPDFconversion=\toks55
+) (/usr/share/texlive/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/share/texlive/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
+))
+ABD: EveryShipout initializing macros
+
+Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
+ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into
+your preamble.
+ on input line 120.
+
+
+(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary
+-English.dict
+Dictionary: translator-basic-dictionary, Language: English
+)
+(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg
+File: siunitx-abbreviations.cfg 2017/11/26 v2.7k siunitx: Abbreviated units
+)
+\c@lstlisting=\count418
+
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
+File: fc-english.def 2016/01/12
+)
+LaTeX Font Info: Trying to load font information for U+msa on input line 120
+.
+
+(/usr/share/texlive/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 120
+.
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
+File: umsb.fd 2013/01/14 v3.01 AMS symbols B
+) (./dokument.toc)
+\tf@toc=\write6
+\openout6 = `dokument.toc'.
+
+
+
+Package hyperref Warning: Composite letter `\textasciicaron+c'
+(hyperref) not defined in PD1 encoding,
+(hyperref) removing `\textasciicaron' on input line 126.
+
+
+Package hyperref Warning: Composite letter `\textasciicaron+c'
+(hyperref) not defined in PD1 encoding,
+(hyperref) removing `\textasciicaron' on input line 126.
+
+
+Overfull \hbox (15.38152pt too wide) in paragraph at lines 154--155
+ []
+ []
+
+[1
+
+{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2]
+Overfull \hbox (9.1613pt too wide) in paragraph at lines 176--181
+\OT1/cmr/m/n/10 /ali []$\OT1/cmtt/m/n/10 https : / / git . sijanec . eu / sijan
+ec / sola-[]gimb-[]2 / raw / branch / master / mat / domace _ naloge / 15 / dok
+ument . pdf$[]\OT1/cmr/m/n/10 .
+ []
+
+[3]
+Package atveryend Info: Empty hook `BeforeClearDocument' on input line 193.
+Package atveryend Info: Empty hook `AfterLastShipout' on input line 193.
+ (./dokument.aux)
+Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 193.
+Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 193.
+Package rerunfilecheck Info: File `dokument.out' has not changed.
+(rerunfilecheck) Checksum: 1067CEAB9EE84A8769615D2347FF0414;72.
+ )
+Here is how much of TeX's memory you used:
+ 40150 strings out of 482812
+ 942313 string characters out of 11706556
+ 13329488 words of memory out of 24000000
+ 54577 multiletter control sequences out of 15000+600000
+ 546051 words of font info for 76 fonts, out of 12000000 for 9000
+ 59 hyphenation exceptions out of 8191
+ 72i,13n,151p,1101b,1093s stack positions out of 5000i,500n,10000p,12000000b,80000s
+{/usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc}</usr/share/texli
+ve/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></usr/share/texlive/tex
+mf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb></usr/share/texlive/texmf-dis
+t/fonts/type1/public/amsfonts/cm/cmbx9.pfb></usr/share/texlive/texmf-dist/fonts
+/type1/public/amsfonts/cm/cmbxti10.pfb></usr/share/texlive/texmf-dist/fonts/typ
+e1/public/amsfonts/cm/cmmi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/pub
+lic/amsfonts/cm/cmmi7.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/ams
+fonts/cm/cmr10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/c
+m/cmr12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17
+.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></u
+sr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb></usr/share
+/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texli
+ve/texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb></usr/share/texlive/tex
+mf-dist/fonts/type1/public/amsfonts/cm/cmti9.pfb></usr/share/texlive/texmf-dist
+/fonts/type1/public/amsfonts/cm/cmtt10.pfb></usr/share/texmf/fonts/type1/public
+/cm-super/sfrm0700.pfb></usr/share/texmf/fonts/type1/public/cm-super/sfrm1000.p
+fb>
+Output written on dokument.pdf (3 pages, 179551 bytes).
+PDF statistics:
+ 141 PDF objects out of 1000 (max. 8388607)
+ 101 compressed objects within 2 object streams
+ 14 named destinations out of 1000 (max. 500000)
+ 117 words of extra memory for PDF output out of 10000 (max. 10000000)
+
diff --git a/mat/domace_naloge/15/dokument.out b/mat/domace_naloge/15/dokument.out
new file mode 100644
index 0000000..4a4670a
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.out
@@ -0,0 +1 @@
+\BOOKMARK [1][-]{section.1}{Ucni list Sredi\235cni in obodni kot }{}% 1
diff --git a/mat/domace_naloge/15/dokument.pdf b/mat/domace_naloge/15/dokument.pdf
new file mode 100644
index 0000000..c91da7c
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.pdf
Binary files differ
diff --git a/mat/domace_naloge/15/dokument.synctex.gz b/mat/domace_naloge/15/dokument.synctex.gz
new file mode 100644
index 0000000..791c49a
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.synctex.gz
Binary files differ
diff --git a/mat/domace_naloge/15/dokument.tex b/mat/domace_naloge/15/dokument.tex
new file mode 100644
index 0000000..48eb294
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.tex
@@ -0,0 +1,193 @@
+% !TeX encoding = UTF-8
+% !TeX spellcheck = sl_SI
+% do-vimlatex-onwrite
+\documentclass[]{article}
+\usepackage[utf8]{inputenc}
+\usepackage{etoolbox}
+\usepackage[hidelinks]{hyperref}
+\usepackage[a4paper, total={7in, 10in}]{geometry}
+\usepackage{graphicx}
+\usepackage{hologo}
+\usepackage{amssymb}
+\usepackage{calculator}
+\usepackage{pgfplots}
+\usepackage[inline]{enumitem}
+\usepackage{amsmath}
+\usepackage{siunitx}
+\usepackage{multicol}
+\usepackage{tabularcalc}
+\usepackage{amsmath}
+\usepackage{float}
+\usepackage{tasks}
+\usepackage{filecontents}
+\usepackage{textcomp}
+\usepackage{tkz-euclide}
+\usepackage{dirtytalk}
+\usepackage{csquotes}
+\usepackage{listings}
+\usepackage[ddmmyyyy]{datetime}
+% \usepackage{multienum} % weird with labels
+\usetikzlibrary{calc} %% not really needed............. idk.
+%\usetikzlibrary{external}
+% \usetkzobj{all} % tkz-euclide > 3.02 tega ne potrebuje več (:
+%\tikzexternalize
+\usepackage{xcolor}
+\sisetup{output-decimal-marker = {,}, quotient-mode=fraction,per-mode=fraction} % per-mode=symbol
+\newcommand\ddfrac[2]{\frac{\displaystyle #1}{\displaystyle #2}}
+\newcommand{\functionSamples}{100} % fix to fancier value upon release, keep low during development
+\newcommand{\razhroscevanje}{1}
+\definecolor{codegreen}{rgb}{0,0.6,0}
+\definecolor{codered}{rgb}{1,0,0}
+\definecolor{codegray}{rgb}{0.5,0.5,0.5}
+\definecolor{codepurple}{rgb}{0.58,0,0.82}
+\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
+\renewcommand{\dateseparator}{. }
+\settimeformat{hhmmsstime}
+\lstdefinestyle{mystyle}{
+ backgroundcolor=\color{backcolour},
+ commentstyle=\color{codegreen},
+ keywordstyle=\color{magenta},
+ numberstyle=\tiny\color{codegray},
+ stringstyle=\color{codepurple},
+ basicstyle=\ttfamily\footnotesize,
+ breakatwhitespace=false,
+ breaklines=true,
+ captionpos=b,
+ keepspaces=true,
+ numbers=left,
+ numbersep=5pt,
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ tabsize=2
+}
+
+\lstset{style=mystyle}
+\def\@maketitle{%
+ \newpage
+ \null
+ \vskip 2em%
+ \begin{center}%
+ \let \footnote \thanks
+ {\LARGE \@title \par}%
+ \vskip 1.5em%
+ {\large
+ \lineskip .5em%
+ \begin{tabular}[t]{c}% <------
+ \@author% <------ Authors
+ \end{tabular}\par}% <------
+ \vskip 1em%
+ {\large \@date}%
+ \end{center}%
+ \par
+ \vskip 1.5em}
+%opening
+\newcommand{\snovdn}{Središčni in obodni kot }
+\newcommand{\predmdn}{mat}
+\newcommand{\stevilkadn}{15}
+\newcommand{\cm}[1]{\SI{#1}{\centi\meter}}
+\newcommand{\kmh}[1]{\SI{#1}{\kilo\meter\per\hour}}
+\makeatletter
+\newcommand{\xslalph}[1]{\expandafter\@xslalph\csname c@#1\endcsname}
+\newcommand{\@xslalph}[1]{%
+ \ifcase#1\or a\or b\or c\or \v{c}\or d\or e\or f\or g\or h\or i%
+ \or j\or k\or l\or m\or n\or o\or p\or r\or s\or \v{s}%
+ \or t\or u\or v\or z\or \v{z}
+ \else\@ctrerr\fi%
+}
+\AddEnumerateCounter{\xslalph}{\@xslalph}{m}
+\makeatother
+\newcommand\gauss[2]{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))} % Gauss function, parameters mu and sigma
+\newcommand*\textfrac[2]{
+ \frac{\text{#1}}{\text{#2}}
+}
+\renewcommand\abstractname{Povzetek}
+\date{7. november 2020}
+\renewcommand\contentsname{Kazalo vsebine}
+\renewcommand\figurename{Slika}
+\renewcommand\abstractname{Povzetek}
+\newcommand{\iic}{I\textsuperscript{2}C }
+% \patchcmd{\thebibliography}{\section*{\refname}}{}{}{}
+\title{%
+ \snovdn --- \stevilkadn. domača naloga \\
+ \large Matematika, Gimnazija Bežigrad}
+\author{\begin{tabular}{rl}
+ \textbf{Profesor:} & prof. Vilko Domajnko\\
+ \textbf{Avtor:} & Anton Luka Šijanec, 2. a
+% \textbf{Avtor:} & Anton Luka Šijanec \\ & Member 2 \\ & Member 3
+\end{tabular}}
+% \everymath{\displaystyle} % https://tex.stackexchange.com/a/32847/212260
+\begin{document}
+\maketitle
+\begin{abstract}
+Ta dokument vsebuje domačo nalogo \textit{\snovdn} in rešitve, ki sem jih spisal sam. Naloga je z lista \textit{\snovdn} profesorja Domajnka. Kjer je bilo potrebno izbrati neke naključne primere, sem jih vedno izbral naključno.
+\end{abstract}
+\tableofcontents
+\section{Učni list \textit{\snovdn}}
+\begin{enumerate}[label=\textbf{\arabic*.}] % 10, 14, 3, 8, 9
+ \setcounter{enumi}{2}
+ \item Nariši trikotnik s podatki:
+ \begin{enumerate}[label=\textbf{\xslalph*)}]
+ \item $c=\cm{6}, v_c=\cm{6}, \gamma=\ang{30}$
+ \begin{center}
+ \begin{tikzpicture}
+ \tkzDefPoint(0,0){A} \tkzDefPoint(6,0){B}
+ \tkzCompass(A,B)
+ \tkzDrawLine(A,B) \tkzLabelLine[below left](A,B){c}
+ \tkzInterCC(A,B)(B,A) \tkzGetPoints{S}{SX}
+ \tkzCompass(A,S) \tkzCompass(B,S)
+ \tkzCompass(A,SX) \tkzCompass(B,SX)
+ \tkzInterLL(S,SX)(A,B) \tkzGetPoint{ABM}
+ \tkzInterLC(S,SX)(ABM,B) \tkzGetPoints{P3}{P3X} \tkzCompass(ABM,P3)
+ \tkzInterLC(S,SX)(P3,ABM) \tkzGetPoints{P6}{ABMA} \tkzCompass(P3,P6)
+ \tkzDrawLine(SX,P6)
+ \tkzInterLC(P6,S)(P6,S) \tkzGetPoints{SX2}{SAGAIN}
+ \tkzCompass(P6,SX2)
+ \tkzInterCC(SX2,S)(S,SX2) \tkzGetPoints{V1}{V2}
+ \tkzCompass(S,V1) \tkzCompass(SX2,V1)
+ \tkzInterLC(V1,V2)(S,A) \tkzGetPoints{C1}{C2}
+ \tkzDrawLine(C1,C2) \tkzCompass(S,C1) \tkzCompass(S,C2)
+ \tkzDrawPoints(A) \tkzLabelPoints(A,B,S,C1,C2)
+ \tkzMarkRightAngles(A,ABM,P6 ABM,P6,V1)
+ \tkzDrawPolygon[fill=blue!30, opacity=.3](A,B,C2)
+ \tkzDrawPolygon[fill=red!30, opacity=.3](A,B,C1)
+ \end{tikzpicture}
+ \end{center}
+ \end{enumerate}
+ \setcounter{enumi}{7}
+ \item
+ \begin{enumerate}[label=\textbf{\xslalph*)}]
+ \item V krožnco je včrtan enakokraki trikotnik $ABC$. Izračunaj njegove kote, če pripada osnovnici $AB$ središčni kot \ang{74}.
+
+ $$ \alpha = \beta = \frac{\ang{180}-\gamma}{2} = \frac{\ang{180}-\frac{\ang{74}}{2}}{2} = \ang{71,5} \rightarrow \gamma = \ang{37}$$
+ \end{enumerate}
+ \item Dokaži, da sta tetivi v krožnici, ki sta od središča enako oddaljeni, enako dolgi in da jima pripadata enako velika središčna kota.
+
+ Recimo, da sta tetivi $AB$ in $CD$, njuna razpolovišča pa M in N, \textit{respectively}. Kročnica naj bo $SA$. Ker se ujemata v dolžinah dveh stranic in velikostih enega kota, sta trikotnika $AMS$ in $CNS$ skladna, ker sta skladna in ker imata kot tretjo stranico polovico svoje tetive, sta po dolžinah skladni tudi tetivi. Ker je torej polovica kota v $S$ pri obeh trikotnikih enaka, sta skladna tudi kota $ASB$ in $CSD$.
+ \item S pomočjo izreka o središčnih in obodnih kotih dokaži, da je v poljubnem trikotniku vsota vseh notranjih kotov enaka iztegnjenemu kotu.i
+
+ Na poljubni krožnici $SA$ izberemo poljubni točki $B$ in $C$. Seštevek središčnih kotov $ASB$, $BSC$ in $CSA$ je očitno \ang{360}. Seštevek kotov $CAB$, $ABC$ in $BCA$ oziroma notranjih kotov trikotnika oziroma obodnih kotov je po izreku, da je obodni kot pol toliko velik, kot je velik središčni kot z istimi točkami, je vsota notranjih kotov enaka $\frac{\ang{360}}{2}=\ang{180}$.
+ \setcounter{enumi}{13}
+ \item[\textbf{*14.}] Naj bo $ABC$ ostrokotni trikotnik. Opiši konstrukcijo točke v notranjosti tega trikotnika, iz katere so vse stranice vidne pod kotom \ang{120}.
+
+ Tega z \textit{vidnostjo} stranic ne razumem najbolj. Je pa res, da sem naredil že dovolj nalog, zato bom kapitalistično odnehal. (-;
+\end{enumerate}
+\section*{Zaključek}
+Ta dokument je informativne narave in se lahko še spreminja. Najnovejša različica, torej PDFji in
+\hologo{LaTeX}
+izvorna koda, zgodovina sprememb in prejšnje različice, je na voljo v mojem šolskem Git repozitoriju na
+\url{https://git.sijanec.eu/sijanec/sola-gimb-2} v mapi
+\href{https://git.sijanec/sola-gimb-2/src/branch/master/\predmdn/domace_naloge/\stevilkadn/}{/\predmdn/domace\_naloge/\stevilkadn/}. Povezava za ogled zadnje različice tega dokumenta v PDF obliki je \url{http://razor.arnes.si/~asija3/files/sola/gimb/2/\predmdn/domace_naloge/\stevilkadn/dokument.pdf} in/ali \url{https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/\predmdn/domace_naloge/\stevilkadn/dokument.pdf}.
+
+\if\razhroscevanje1
+\section*{Razhroščevalne informacije}
+Te informacije so generirane, ker je omogočeno razhroščevanje. Pred objavo dokumenta izklopite razhroščevanje. To naredite tako, da nastavite ukaz \texttt{razhroscevanje} na 0 v začetku dokumenta.
+
+Grafi imajo natančnost \functionSamples\space točk na graf.
+
+Konec generiranja dokumenta: \today\ ob \currenttime%\input|"date -Ins"
+
+Dokument se je generiral aaasecgeninsaaa \SI{}{\second}.
+\fi
+% \item $$$$
+\end{document}
diff --git a/mat/domace_naloge/15/dokument.toc b/mat/domace_naloge/15/dokument.toc
new file mode 100644
index 0000000..0f6c3c4
--- /dev/null
+++ b/mat/domace_naloge/15/dokument.toc
@@ -0,0 +1 @@
+\contentsline {section}{\numberline {1}Učni list \textit {Središčni in obodni kot }}{1}{section.1}%
diff --git a/mat/domace_naloge/15/stderr.log b/mat/domace_naloge/15/stderr.log
new file mode 100644
index 0000000..d199eb5
--- /dev/null
+++ b/mat/domace_naloge/15/stderr.log
@@ -0,0 +1 @@
+<</Type/XRef/Filter/FlateDecode/ID[<83B532934453E294E8A91F4C92008995><83B532934453E294E8A91F4C92008995>]/Index[ 0 142]/Info 140 0 R/Length 373/Root 138 0 R/Size 142/W[ 1 3 1]>>
diff --git a/mat/domace_naloge/15/stdout.log b/mat/domace_naloge/15/stdout.log
new file mode 100644
index 0000000..da0f551
--- /dev/null
+++ b/mat/domace_naloge/15/stdout.log
@@ -0,0 +1,708 @@
+This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex)
+ \write18 enabled.
+entering extended mode
+(/home/a/Documents/sola/gimb/2/mat/domace_naloge/15/dokument.tex
+LaTeX2e <2020-02-02> patch level 5
+L3 programming layer <2020-02-25>
+(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
+Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
+(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
+(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
+(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
+(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def)
+(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
+(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty))
+(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
+(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
+(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty)))
+(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
+(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def)))
+(/usr/share/texlive/texmf-dist/tex/generic/hologo/hologo.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/calculator/calculator.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/pgfplots/pgfplots.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.t
+ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
+(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex)))
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t
+ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de
+f)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.
+tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.
+tex)) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty
+(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet
+ric.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod
+e.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.
+tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.
+tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari
+thmetics.code.tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te
+x)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.
+code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te
+x)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c
+ode.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation
+s.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t
+ex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te
+x)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.
+tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te
+x)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c
+ode.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.
+tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex))
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
+) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65
+.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18
+.sty)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex))
+(/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarytopaths.code.tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code
+.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.t
+ex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp
+gfsupp_loader.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists
+tructure.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists
+tructureext.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri
+x.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare
+d.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque
+.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te
+x
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co
+de.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code
+.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur
+fshading.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf
+shading.pgfsys-pdftex.def)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.
+tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex
+))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t
+ex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t
+ex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod
+e.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.
+tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod
+e.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex
+) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex
+) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod
+e.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.pathmorphing.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.pathmorphing.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.pathreplacing.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.pathreplacing.code.tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryplotmarks.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co
+de.tex))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
+For additional information on amsmath, use the `?' option.
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty
+(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
+(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def))
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty
+`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich
+(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty))
+(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty
+(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex))
+(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty
+No configuration file `numprint.cfg' found.))
+(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg))
+(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty
+
+Package filecontents Warning: This package is obsolete. Disabling it and
+(filecontents) passing control to the filecontents environment
+(filecontents) defined by the LaTeX kernel.
+
+) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty
+2020/01/24 3.02c tkz-euclide.sty
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty
+2020/01/24 3.02c tkz-base.sty
+
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryangles.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryarrows.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.
+tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta.
+code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarybabel.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarycalc.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.markings.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.markings.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.shapes.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.shapes.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarydecorations.text.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary
+decorations.text.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryintersections.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection
+s.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarypatterns.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod
+e.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarypositioning.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryquotes.code.tex)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryshadows.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryfadings.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code
+.tex)))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibraryshapes.misc.code.tex
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape
+s.misc.code.tex))
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarysnakes.code.tex
+
+Package pgf Warning: Snakes have been superseded by decorations. Please use the
+ decoration libraries instead of the snakes library on input line 14.
+
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik
+zlibrarythrough.code.tex)
+(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty)
+Local configuration file tkz-base.cfg found and used
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg
+2020/02/04 3.02c tkz-base.cfg
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex
+2020/01/24 3.02c tkz-tools-utilities.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex
+2020/01/24 3.02c tkz-lib-symbols.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex
+2020/01/24 3.02c tkz-tools-base.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex
+2020/01/24 3.02c tkz-tools-utilities.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex
+2020/01/24 3.02c tkz-tools-math.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex
+2020/01/24 3.02c tkz-tools-text.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex
+2020/01/24 3.02c tkz-obj-BB.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex
+2020/01/24 3.02c tkz-tools-arith.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex
+2020/01/24 3.02c tkz-tools-print.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex
+2020/01/24 3.02c tkz-tools-misc.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex
+2020/01/24 3.02c tkz-obj-axes.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex
+2020/01/24 3.02c tkz-obj-grids.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex
+2020/01/24 3.02c tkz-obj-marks.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex
+2020/01/24 3.02c tkz-obj-points.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex
+2020/01/24 3.02c tkz-obj-rep.tex
+))
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te
+x
+2020/01/24 3.02c tkz-tools-intersections.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex
+2020/01/24 3.02c tkz-tools-angles.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex
+2020/01/24 3.02c tkz-tool-eu-angles.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex
+2020/01/24 3.02c tkz-obj-eu-arcs.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex
+2020/01/24 3.02c tkz-obj-eu-compass.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex
+2020/01/24 3.02c tkz-obj-eu-circles.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te
+x
+2020/01/24 3.02c tkz-obj-eu-draw-circles.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex
+2020/01/24 3.02c tkz-obj-eu-lines.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex
+2020/01/24 3.02c tkz-obj-eu-draw-lines.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex
+2020/01/24 3.02c tkz-obj-eu-points.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex
+2020/01/24 3.02c tkz-tools-eu-points-by.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex
+2020/01/24 3.02c tkz-obj-eu-points-rnd.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex
+2020/01/24 3.02c tkz-obj-eu-points-with.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t
+ex
+2020/01/24 3.02c tkz-obj-eu-polygons.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex
+2020/01/24 3.02c tkz-obj-eu-polygons.tex
+)
+(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex
+2020/01/24 3.02c tkz-obj-eu-protractor.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex
+2020/01/24 3.02c tkz-obj-eu-sectors.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex
+2020/01/24 3.02c tkz-obj-eu-show.tex
+) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex
+2020/01/24 3.02c tkz-obj-eu-triangles.tex
+)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty
+(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty))
+(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty
+(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def)
+(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg))
+(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
+(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg))
+(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty
+(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty
+(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex
+(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex)))
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty)))
+(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty))
+(./dokument.aux) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
+(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty)
+(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty))
+(./dokument.out) (./dokument.out)
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg))
+ABD: EveryShipout initializing macros
+
+Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
+ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into
+your preamble.
+ on input line 120.
+
+
+(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary
+-English.dict)
+(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg)
+(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def)
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd)
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) (./dokument.toc)
+
+Package hyperref Warning: Composite letter `\textasciicaron+c'
+(hyperref) not defined in PD1 encoding,
+(hyperref) removing `\textasciicaron' on input line 126.
+
+
+Package hyperref Warning: Composite letter `\textasciicaron+c'
+(hyperref) not defined in PD1 encoding,
+(hyperref) removing `\textasciicaron' on input line 126.
+
+
+Overfull \hbox (15.38152pt too wide) in paragraph at lines 154--155
+ []
+[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2]
+Overfull \hbox (9.1613pt too wide) in paragraph at lines 176--181
+\OT1/cmr/m/n/10 /ali []$\OT1/cmtt/m/n/10 https : / / git . sijanec . eu / sijan
+ec / sola-[]gimb-[]2 / raw / branch / master / mat / domace _ naloge / 15 / dok
+ument . pdf$[]\OT1/cmr/m/n/10 .
+[3] (./dokument.aux) )
+(see the transcript file for additional information){/usr/share/texmf/fonts/enc
+/dvips/cm-super/cm-super-ts1.enc}</usr/share/texlive/texmf-dist/fonts/type1/pub
+lic/amsfonts/cm/cmbx10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/am
+sfonts/cm/cmbx12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts
+/cm/cmbx9.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmb
+xti10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.
+pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb></u
+sr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/shar
+e/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texli
+ve/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/share/texlive/texm
+f-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></usr/share/texlive/texmf-dist/f
+onts/type1/public/amsfonts/cm/cmr9.pfb></usr/share/texlive/texmf-dist/fonts/typ
+e1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/fonts/type1/pub
+lic/amsfonts/cm/cmti10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/am
+sfonts/cm/cmti9.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/
+cm/cmtt10.pfb></usr/share/texmf/fonts/type1/public/cm-super/sfrm0700.pfb></usr/
+share/texmf/fonts/type1/public/cm-super/sfrm1000.pfb>
+Output written on dokument.pdf (3 pages, 179551 bytes).
+SyncTeX written on dokument.synctex.gz.
+Transcript written on dokument.log.
+Reading 1 0 R
+Reading 2 0 R
+Reading 3 0 R
+Reading 4 0 R
+-> Uncompressing object 4 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 5 0 R
+Reading 7 0 R
+-> Uncompressing object 7 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 8 0 R
+Reading 9 0 R
+-> Uncompressing object 9 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 10 0 R
+Reading 11 0 R
+-> Uncompressing object 11 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 12 0 R
+Reading 17 0 R
+-> Uncompressing object 17 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 18 0 R
+Reading 20 0 R
+-> Uncompressing object 20 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 21 0 R
+Reading 23 0 R
+-> Uncompressing object 23 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 24 0 R
+Reading 26 0 R
+-> Uncompressing object 26 0
+-> Original Length: 15
+-> Uncompressed Length: 7
+Reading 27 0 R
+Reading 29 0 R
+Reading 30 0 R
+Reading 31 0 R
+Reading 32 0 R
+Reading 33 0 R
+Reading 34 0 R
+Reading 35 0 R
+Reading 36 0 R
+Reading 37 0 R
+-> Uncompressing object 37 0
+-> Original Length: 1082
+-> Uncompressed Length: 2678
+Reading 38 0 R
+Reading 39 0 R
+Reading 40 0 R
+Reading 41 0 R
+Reading 42 0 R
+Reading 43 0 R
+Reading 44 0 R
+Reading 45 0 R
+Reading 46 0 R
+Reading 47 0 R
+Reading 48 0 R
+Reading 49 0 R
+Reading 50 0 R
+Reading 51 0 R
+Reading 52 0 R
+Reading 53 0 R
+Reading 54 0 R
+Reading 55 0 R
+Reading 56 0 R
+Reading 57 0 R
+Reading 58 0 R
+-> Uncompressing object 58 0
+-> Original Length: 3107
+-> Uncompressed Length: 11262
+Reading 59 0 R
+Reading 60 0 R
+Reading 61 0 R
+Reading 62 0 R
+Reading 63 0 R
+Reading 64 0 R
+Reading 65 0 R
+Reading 66 0 R
+Reading 67 0 R
+Reading 68 0 R
+Reading 69 0 R
+Reading 70 0 R
+Reading 71 0 R
+Reading 72 0 R
+Reading 73 0 R
+Reading 74 0 R
+-> Uncompressing object 74 0
+-> Original Length: 1299
+-> Uncompressed Length: 3096
+Reading 75 0 R
+Reading 76 0 R
+Reading 77 0 R
+Reading 78 0 R
+Reading 79 0 R
+Reading 80 0 R
+Reading 81 0 R
+Reading 82 0 R
+Reading 83 0 R
+Reading 84 0 R
+Reading 85 0 R
+Reading 86 0 R
+Reading 87 0 R
+Reading 88 0 R
+Reading 89 0 R
+Reading 90 0 R
+Reading 91 0 R
+Reading 92 0 R
+Reading 93 0 R
+Reading 94 0 R
+Reading 95 0 R
+Reading 96 0 R
+Reading 97 0 R
+Reading 98 0 R
+-> Uncompressing object 98 0
+-> Original Length: 11578
+-> Uncompressed Length: 12153
+Reading 99 0 R
+Reading 100 0 R
+-> Uncompressing object 100 0
+-> Original Length: 11762
+-> Uncompressed Length: 12415
+Reading 101 0 R
+Reading 102 0 R
+-> Uncompressing object 102 0
+-> Original Length: 7846
+-> Uncompressed Length: 8318
+Reading 103 0 R
+Reading 104 0 R
+-> Uncompressing object 104 0
+-> Original Length: 9345
+-> Uncompressed Length: 9887
+Reading 105 0 R
+Reading 106 0 R
+-> Uncompressing object 106 0
+-> Original Length: 9510
+-> Uncompressed Length: 10042
+Reading 107 0 R
+Reading 108 0 R
+-> Uncompressing object 108 0
+-> Original Length: 6920
+-> Uncompressed Length: 7352
+Reading 109 0 R
+Reading 110 0 R
+-> Uncompressing object 110 0
+-> Original Length: 19645
+-> Uncompressed Length: 20560
+Reading 111 0 R
+Reading 112 0 R
+-> Uncompressing object 112 0
+-> Original Length: 12755
+-> Uncompressed Length: 13459
+Reading 113 0 R
+Reading 114 0 R
+-> Uncompressing object 114 0
+-> Original Length: 10423
+-> Uncompressed Length: 11007
+Reading 115 0 R
+Reading 116 0 R
+-> Uncompressing object 116 0
+-> Original Length: 7971
+-> Uncompressed Length: 8441
+Reading 117 0 R
+Reading 118 0 R
+-> Uncompressing object 118 0
+-> Original Length: 13035
+-> Uncompressed Length: 13694
+Reading 119 0 R
+Reading 120 0 R
+-> Uncompressing object 120 0
+-> Original Length: 7004
+-> Uncompressed Length: 7446
+Reading 121 0 R
+Reading 122 0 R
+-> Uncompressing object 122 0
+-> Original Length: 10416
+-> Uncompressed Length: 10962
+Reading 123 0 R
+Reading 124 0 R
+-> Uncompressing object 124 0
+-> Original Length: 9314
+-> Uncompressed Length: 9836
+Reading 125 0 R
+Reading 126 0 R
+-> Uncompressing object 126 0
+-> Original Length: 13246
+-> Uncompressed Length: 13952
+Reading 127 0 R
+Reading 128 0 R
+-> Uncompressing object 128 0
+-> Original Length: 1535
+-> Uncompressed Length: 1698
+Reading 129 0 R
+Reading 130 0 R
+-> Uncompressing object 130 0
+-> Original Length: 1535
+-> Uncompressed Length: 1697
+Reading 131 0 R
+Reading 132 0 R
+Reading 133 0 R
+Reading 134 0 R
+Reading 135 0 R
+Reading 136 0 R
+Reading 137 0 R
+Reading 138 0 R
+Reading 140 0 R
+Reading 141 0 R
+-> Uncompressing object 141 0
+-> Original Length: 373
+-> Uncompressed Length: 710
+/home/a/Documents/sola/gimb/2/mat/domace_naloge/15/dokument.pdf was successfully uncompressed to: /home/a/Documents/sola/gimb/2/mat/domace_naloge/15/dokument-uncompressed.pdf
+ **** Error: An error occurred while reading an XREF table.
+ **** The file has been damaged. This may have been caused
+ **** by a problem while converting or transfering the file.
+ **** Ghostscript will attempt to recover the data.
+ **** However, the output may be incorrect.
+ **** Error: stream Length incorrect.
+ Output may be incorrect.