guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: website: Add post about reduced binary seed bootstrap.


From: Jan Nieuwenhuizen
Subject: 01/01: website: Add post about reduced binary seed bootstrap.
Date: Tue, 8 Oct 2019 08:43:43 -0400 (EDT)

janneke pushed a commit to branch master
in repository guix-artwork.

commit ffc246cd59252c639d9851867dd24b5e858e5873
Author: Jan Nieuwenhuizen <address@hidden>
Date:   Sun Sep 29 13:54:11 2019 +0200

    website: Add post about reduced binary seed bootstrap.
    
    * website/posts/reduced-binary-seed-bootstrap.md (author): New file.
    * website/static/blog/img/gcc-final-bag-rbsb.svg: New file.
    * website/static/blog/img/gcc-final-bag.svg: New file.
---
 website/posts/reduced-binary-seed-bootstrap.md |  316 +++
 website/static/blog/img/gcc-final-bag-rbsb.svg | 2725 ++++++++++++++++++++++++
 website/static/blog/img/gcc-final-bag.svg      | 1537 +++++++++++++
 3 files changed, 4578 insertions(+)

diff --git a/website/posts/reduced-binary-seed-bootstrap.md 
b/website/posts/reduced-binary-seed-bootstrap.md
new file mode 100644
index 0000000..b7bae8f
--- /dev/null
+++ b/website/posts/reduced-binary-seed-bootstrap.md
@@ -0,0 +1,316 @@
+title: Guix Reduces Bootstrap Seed by 50%
+date: 2019-10-08 00:00
+author: Jan Nieuwenhuizen
+tags: Bootstrapping, Reproducible builds
+---
+We are delighted to announce that the first reduction by 50% of the
+Guix _bootstrap binaries_ has now been officially released!
+
+This is a very important step because the ~250MB _seed_ of binary code
+was practically non-auditable, which makes it hard to establish what
+source code produced them.
+
+Every unauditable binary also leaves us vulnerable to compiler
+backdoors as described by Ken Thompson in the 1984 paper [Reflections
+on Trusting
+Trust](https://www.archive.ece.cmu.edu/~ganger/712.fall02/papers/p761-thompson.pdf)
+and beautifully explained by Carl Dong in his [Bitcoin Build System
+Security](https://www.youtube.com/watch?v=I2iShmUTEl8) talk.
+
+It is therefore equally important that we continue towards our final
+goal: A _Full Source_ bootstrap; removing all unauditable binary
+seeds.
+
+#### Guix’ Rigorous Regular Bootstrap
+
+GNU Guix takes a rigorous approach to bootstrapping.  Bootstrapping in
+this context refers to how the distribution gets built _from nothing_.
+
+The GNU system is primarily made of C code, with glibc at its core.
+The GNU build system itself assumes the availability of a Bourne shell
+and command-line tools provided by the Core GNU Utilities and Awk,
+Grep, Make, Sed, and some others.
+
+The build environment of a package is a container that contains
+nothing but the package’s declared inputs.  To be able to build
+anything at all in this container, Guix needs [pre-built
+binaries](https://guix.gnu.org/manual/en/html_node/Bootstrapping.html)
+of Guile, GCC, Binutils, glibc, and the other tools mentioned above.
+
+So there is an obvious chicken-and-egg problem: How does the first
+package get built?  How does the first compiler get compiled?
+
+```
+                            gcc-final
+                                ^
+                                |
+                          cross-gcc-boot
+                                ^
+                                |
+                        gcc-boot0 (5.5.0)
+                                ^
+                                |
+                 binutils-boot0, libstdc++-boot0
+                                ^
+                                |
+           diffutils-boot0, findutils-boot0, file-boot0
+                                ^
+                                |
+                           make-boot0
+                                ^
+                                |
+                                *
+        bootstrap-binutils, bootstrap-gcc, bootstrap-glibc (~130MB)
+      bootstrap-bash, bootstrap-coreutils&co, bootstrap-guile (~120MB)
+```
+[full graph](../../../static/blog/img/gcc-final-bag.svg)
+
+The answer to this starts with _bootstrap binaries_.  The first
+package that gets built with these bootstrap binaries is `make`, next
+are `diffutils`, `findutils`, and `file`.  Eventually a `gcc-final` is
+built: the compiler used to build regular packages.
+
+#### i686/x86_64 Reduced Binary Seed bootstrap
+
+The Guix development branch we just merged introduces a _reduced
+binary seed_ bootstrap for x86_64 and i686, where the bottom of the
+dependency graph looks like this:
+
+```
+                         gcc-mesboot (4.9.4)
+                                ^
+                                |
+                        glibc-mesboot (2.16.0)
+                                ^
+                                |
+                         gcc-mesboot1 (4.7.4)
+                                ^
+                                |
+                        binutils-mesboot (2.20.1a)
+                                ^
+                                |
+                         gcc-mesboot0 (2.95.3)
+                                ^
+                                |
+                         glibc-mesboot0 (2.2.5)
+                                ^
+                                |
+                        gcc-core-mesboot (2.95.3)
+                                ^
+                                |
+    make-mesboot0, diffutils-mesboot, binutils-mesboot0 (2.20.1a)
+                                ^
+                                |
+                            tcc-boot
+                                ^
+                                |
+                            tcc-boot0
+                                ^
+                                |
+                            mes-boot
+                                ^
+                                |
+                                *
+              bootstrap-mescc-tools, bootstrap-mes (~10MB)
+      bootstrap-bash, bootstrap-coreutils&co, bootstrap-guile (~120MB)
+```
+[full graph](../../../static/blog/img/gcc-final-bag-rbsb.svg)
+
+The new _Reduced Binary Seed_ bootstrap removes Binutils, GCC, and
+glibc and replaces them by GNU Mes and MesCC Tools.  This reduces
+the trusted binary seed by ~120MB - half of it!
+
+As a user, it means your package manager has a formal description of
+how to build all your applications, in a reproducible way, starting
+from nothing but this ~120MB seed.  It means you can rebuild any of
+those software artifacts locally [without trusting a single binary
+provider](https://guix.gnu.org/blog/2015/reproducible-builds-a-means-to-an-end/).
+
+For comparison, _traditional_ distros often have an informally
+specified bootstrap story, usually relying on much bigger binary
+seeds.  We those seeds to weigh in at ~550MB (the size of `debootstrap
+--arch=i386
+--include=build-essential,dpkg-dev,debhelper,gcc,libc6-dev,make,texinfo
+bullseye ./bullseye-chroot http://deb.debian.org/debian`, with
+`bullseye-chroot/var/cache/apt/archives` removed) in the case of
+Debian—ignoring [cycles that show up higher in the
+graph](https://bootstrap.debian.net/botch-native/amd64/stats.html).
+
+These bootstrap binaries can now be re-created by doing
+
+```
+    guix build bootstrap-binaries
+```
+
+Work started [three years
+ago](https://lists.gnu.org/archive/html/guile-user/2016-06/msg00061.html)
+with a simple LISP-1.5 interpreter.
+
+A year later, [Mes
+0.5](https://lists.gnu.org/archive/html/guile-user/2017-04/msg00056.html)
+had become a tiny Scheme interpreter written in simple subset of C
+that came with a simple C compiler in Scheme.  And yes, these were
+mutual self-hosting.
+
+The next step was to find a path towards compiling Guix’s default GCC
+(5.5.0).  Sadly, bootstrapping GCC compilers has been becoming
+increasingly difficult over the years.  We looked at GCC 1.42: not
+easy to bootstrap (100,000 LOC) and it depends on Bison.  Reluctantly,
+we started looking for non-GNU alternatives
+[8cc](https://github.com/rui314/8cc), [pcc](http://pcc.ludd.ltu.se/),
+[cc500](https://web.archive.org/web/20160402225843/http://homepage.ntlworld.com/edmund.grimley-evans/cc500/)
+but finally settled on [TinyCC](https://bellard.org/tcc/).  TinyCC
+(TCC) can compile GCC (4.7.4) which is currently the most recent
+release of GCC that can be built without a C++ compiler.
+
+Another year later, [Mes
+0.13](https://lists.gnu.org/archive/html/guile-user/2018-04/msg00033.html)
+has grown its own tiny C library and compiles a heavily patched and
+simplified TCC.  This looked very promising and [we
+suggested](https://lists.nongnu.org/archive/html/tinycc-devel/2017-09/msg00019.html)
+for TinyCC to help our bootstrapping effort by moving towards a
+simplified C subset.
+[Instead](https://lists.nongnu.org/archive/html/tinycc-devel/2017-09/msg00020.html)
+[we](https://lists.nongnu.org/archive/html/tinycc-devel/2017-09/msg00024.html)
+[were](https://lists.nongnu.org/archive/html/tinycc-devel/2017-09/msg00037.html)
+[encouraged](https://lists.nongnu.org/archive/html/tinycc-devel/2017-09/msg00040.html)
+to make MesCC a full blown C99 compliant compiler.  That felt as a
+setback but it gave us the perspective of removing TCC from the
+bootstrap lateron.  Using
+[Nyacc](https://savannah.nongnu.org/projects/nyacc), the amazing
+parser framework with C99 parser by Matt Wette, has even made that a
+feasible perspective.
+
+It took only half a year to mature into [Mes
+0.19](https://lists.gnu.org/archive/html/guile-user/2018-12/msg00081.html)
+so that building TinyCC (25,000 LOC) now only takes ~8min instead of
+the initial 5h.
+
+With a bootstrapped TCC we tried building some versions of GCC (1.4,
+2.6.3, 2.95.3, 3.0, 3.1, 3.2.3, 3.4.0, 3.4.6, 4.1.1, 4.1.2) to try to
+build some versions of glibc (1.06.4, 1.09.1, 2.0.1. 2.1.3, 2.3,
+2.3.6, 2.2.5, 2.12.2, 2.15, 2.16.0, 2.28) using slightly less versions
+of Binutils (1.9, 2.5.1, 2.5.2, 2.6, 2.7, 2.10.1, 2.14, 2.14a, 2.15a,
+2.17a, 2.18a, 2.20.1a, 2.23.2, 2.25, 2.28).  There were many
+interesting dependencies, tradeoffs, patching of generated Autotools
+outputs, especially if you are using your own tiny C library and
+headers.
+
+Typically, newer versions of the tool chain fix all kinds of bugs in
+the build system and C code compliance, which is great.  However,
+simultaneously new features are introduced or dependencies are added
+that are not necessary for bootstrapping, increasing the bootstrap
+hurdle.  Sometimes, newer tools are more strict or old configure
+scripts do not recognise newer tool versions.
+
+Also, can you spot the triplets of tool versions that combine into
+integral versions of the tool chain? ;-)
+
+
+#### Scheme-only Bootstrap
+
+Our next target will be another reduction by ~50%; the Scheme-only
+bootstrap will replace the Bash, Coreutils, etc. binaries by
+[Gash](https://savannah.nongnu.org/projects/gash) and Gash Core Utils.
+
+Gash is a work-in-progress implementation of a POSIX shell in Scheme,
+that is already capable-enough to interpret Autoconf-generated
+`configure` scripts.  It can run on Guile but it is designed to also
+run on Mes, meaning that we can use it early on during bootstrap.
+
+We are excited that the [Nlnet Foundation](https://nlnet.nl) is now
+[sponsoring this work](https://nlnet.nl/project/GNUMes)!
+
+#### Creating a GNU Tool Chain Bootstrap Story
+
+The Reduced Binary Seed bootstrap starts by building ancient GNU
+software, notably GCC (2.95.3), glibc (2.2.5).
+
+This amazing achievement is mirrored only by its terrible clumsiness.
+Is this really how we want to secure the bootstrap of our GNU system?
+
+```
+                         gcc-mesboot (4.6.4)
+                                ^
+                                |
+                            tcc-boot
+                                ^
+                                |
+                            mes-boot
+                                ^
+                                |
+                                *
+```
+
+Maybe if we could go straight from TinyCC to GCC (4.6.4) we need no
+longer depend on an ancient GNU tool chain and have a somewhat more
+modern and more maintainable bootstrap path.
+
+Now that we have shown it can be done, we think it is time for GNU
+tool chain developers to step in and help create a better version of
+our tool chain bootstrap story.
+
+#### Towards a Full Source Bootstrap
+
+We expect many interesting challenges before we approach this lofty
+target.
+
+The [stage0](https://savannah.nongnu.org/projects/stage0) project by
+Jeremiah Orians starts everything from ~512 bytes; virtually nothing.
+Have a look at this incredible project if you haven’t already done so.
+
+Jeremiah is also leading the
+[Mes-M2](https://github.com/oriansj/mes-m2.git) effort that is about
+bootstrapping Mes from stage0.  The Mes Scheme interpreter is being
+rewritten in an even more simple subset of C, without preprocessor
+macros even.  That C-like language is called M2-Planet, after its
+transpiler.
+
+#### About Bootstrappable Builds and GNU Mes
+
+Software is bootstrappable when it does not depend on a binary seed
+that cannot be built from source.  Software that is not
+bootstrappable - even if it is free software - is a serious security
+risk
+[for](https://www.ece.cmu.edu/~ganger/712.fall02/papers/p761-thompson.pdf)
+[a](https://manishearth.github.io/blog/2016/12/02/reflections-on-rusting-trust/)
+[variety](https://www.quora.com/What-is-a-coders-worst-nightmare/answer/Mick-Stute)
+[of](http://blog.regehr.org/archives/1241)
+[reasons](https://www.alchemistowl.org/pocorgtfo/pocorgtfo08.pdf).
+The [Bootstrappable Builds](https://bootstrappable.org/) project aims
+to reduce the number and size of binary seeds to a bare minimum.
+
+[GNU Mes](https://www.gnu.org/software/mes/) is closely related to the
+Bootstrappable Builds project.  Mes aims to create an entirely
+source-based bootstrapping path for the Guix System and other
+interested GNU/Linux distributions.  The goal is to start from a
+minimal, easily inspectable binary (which should be readable as
+source) and bootstrap into something close to R6RS Scheme.
+
+Currently, Mes consists of a mutual self-hosting scheme interpreter
+and C compiler.  It also implements a C library.  Mes, the scheme
+interpreter, is written in about 5,000 lines of code of simple C.
+MesCC, the C compiler, is written in scheme.  Together, Mes and MesCC
+can compile [a lightly patched
+TinyCC](http://gitlab.com/janneke/tinycc) that is self-hosting.  Using
+this TinyCC and the Mes C library, it is possible to bootstrap the
+entire Guix System for i686-linux and x86_64-linux.
+
+#### About GNU Guix
+
+[GNU Guix](https://www.gnu.org/software/guix) is a transactional package
+manager and an advanced distribution of the GNU system that [respects
+user
+freedom](https://www.gnu.org/distros/free-system-distribution-guidelines.html).
+Guix can be used on top of any system running the kernel Linux, or it
+can be used as a standalone operating system distribution for i686,
+x86_64, ARMv7, and AArch64 machines.
+
+In addition to standard package management features, Guix supports
+transactional upgrades and roll-backs, unprivileged package management,
+per-user profiles, and garbage collection.  When used as a standalone
+GNU/Linux distribution, Guix offers a declarative, stateless approach to
+operating system configuration management.  Guix is highly customizable
+and hackable through [Guile](https://www.gnu.org/software/guile)
+programming interfaces and extensions to the
+[Scheme](http://schemers.org) language.
diff --git a/website/static/blog/img/gcc-final-bag-rbsb.svg 
b/website/static/blog/img/gcc-final-bag-rbsb.svg
new file mode 100644
index 0000000..9a4e20f
--- /dev/null
+++ b/website/static/blog/img/gcc-final-bag-rbsb.svg
@@ -0,0 +1,2725 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
+<!-- Generated by graphviz version 2.40.1 (20161225.0304)
+ -->
+<!-- Title: Guix bag Pages: 1 -->
+<svg width="5925pt" height="2276pt"
+ viewBox="0.00 0.00 5925.00 2276.00" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 
2272)">
+<title>Guix bag</title>
+<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-2272 5921,-2272 
5921,4 -4,4"/>
+<!-- /gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv -->
+<g id="node1" class="node">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv</title>
+<polygon fill="none" stroke="#000000" points="2200,-2268 2118,-2268 2118,-2232 
2200,-2232 2200,-2268"/>
+<text text-anchor="middle" x="2159" y="-2246.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc@7.4.0</text>
+</g>
+<!-- /gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv -->
+<g id="node2" class="node">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv</title>
+<polygon fill="none" stroke="#000000" points="5196.5,-1548 5107.5,-1548 
5107.5,-1512 5196.5,-1512 5196.5,-1548"/>
+<text text-anchor="middle" x="5152" y="-1526.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">texinfo@6.6</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv
 -->
+<g id="edge1" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.0483,-2249.7578C2551.9049,-2247.6223 5050.7451,-2231.2456 5204,-2196 
5296.6307,-2174.6968 5398,-2201.0488 5398,-2106 5398,-2106 5398,-2106 
5398,-1746 5398,-1644.5568 5278.4182,-1579.5698 5206.0024,-1549.5156"/>
+<polygon fill="#696969" stroke="#696969" points="5207.1309,-1546.1964 
5196.5487,-1545.6787 5204.4983,-1552.6826 5207.1309,-1546.1964"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv 
-->
+<g id="node3" class="node">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<polygon fill="none" stroke="#000000" points="4915.5,-1476 4786.5,-1476 
4786.5,-1440 4915.5,-1440 4915.5,-1476"/>
+<text text-anchor="middle" x="4851" y="-1454.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">perl&#45;boot0@5.30.0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv
 -->
+<g id="edge2" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.2468,-2249.7732C2553.654,-2247.7676 5060.4592,-2232.2754 5128,-2196 
5170.7914,-2173.0173 5190,-2154.5727 5190,-2106 5190,-2106 5190,-2106 
5190,-1962 5190,-1816.2385 5154.8008,-1775.9602 5072,-1656 5020.3773,-1581.2101 
4934.9583,-1515.4743 4886.8338,-1481.8284"/>
+<polygon fill="#696969" stroke="#696969" points="4888.799,-1478.932 
4878.5842,-1476.12 4884.8159,-1484.6883 4888.799,-1478.932"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv 
-->
+<g id="node4" class="node">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv</title>
+<polygon fill="none" stroke="#000000" points="4065,-1908 3939,-1908 3939,-1872 
4065,-1872 4065,-1908"/>
+<text text-anchor="middle" x="4002" y="-1886.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bash&#45;static@5.0.7</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv
 -->
+<g id="edge3" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.3944,-2249.4508C2467.8569,-2245.8204 3941.9745,-2224.5376 3978,-2196 
4010.4501,-2170.2946 4002,-2147.3978 4002,-2106 4002,-2106 4002,-2106 
4002,-2034 4002,-1993.876 4002,-1947.4631 4002,-1918.4177"/>
+<polygon fill="#696969" stroke="#696969" points="4005.5001,-1918.1853 
4002,-1908.1854 3998.5001,-1918.1854 4005.5001,-1918.1853"/>
+</g>
+<!-- 
/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv
 -->
+<g id="node5" class="node">
+<title>/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="654,-2196 514,-2196 514,-2160 
654,-2160 654,-2196"/>
+<text text-anchor="middle" x="584" y="-2174.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">ld&#45;wrapper&#45;boot3@0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv
 -->
+<g id="edge4" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.7644,-2249.0329C1912.1034,-2244.1219 995.898,-2221.1922 712,-2196 
696.5974,-2194.6332 680.2128,-2192.6981 664.491,-2190.5997"/>
+<polygon fill="#696969" stroke="#696969" points="664.6543,-2187.0895 
654.2721,-2189.2014 663.7053,-2194.0249 664.6543,-2187.0895"/>
+</g>
+<!-- /gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv -->
+<g id="node6" class="node">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv</title>
+<polygon fill="none" stroke="#000000" points="704.5,-2124 605.5,-2124 
605.5,-2088 704.5,-2088 704.5,-2124"/>
+<text text-anchor="middle" x="655" y="-2102.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils@2.32</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv
 -->
+<g id="edge5" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.8368,-2249.0995C1940.5846,-2245.0589 1241.5784,-2227.4134 1024,-2196 
913.049,-2179.9812 786.7295,-2145.5479 714.3825,-2124.2217"/>
+<polygon fill="#696969" stroke="#696969" points="715.1219,-2120.7904 
704.5395,-2121.3028 713.1317,-2127.5015 715.1219,-2120.7904"/>
+</g>
+<!-- /gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv 
-->
+<g id="node7" class="node">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv</title>
+<polygon fill="none" stroke="#000000" points="1516,-2124 1400,-2124 1400,-2088 
1516,-2088 1516,-2124"/>
+<text text-anchor="middle" x="1458" y="-2102.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">libstdc++@7.4.0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv
 -->
+<g id="edge6" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.7663,-2241.5297C2001.4764,-2217.6414 1670.0267,-2149.5547 
1526.0941,-2119.9879"/>
+<polygon fill="#696969" stroke="#696969" points="1526.5603,-2116.5107 
1516.0605,-2117.9268 1525.1517,-2123.3675 1526.5603,-2116.5107"/>
+</g>
+<!-- /gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv -->
+<g id="node8" class="node">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv</title>
+<polygon fill="none" stroke="#000000" points="2514.5,-2124 2425.5,-2124 
2425.5,-2088 2514.5,-2088 2514.5,-2124"/>
+<text text-anchor="middle" x="2470" y="-2102.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">zlib@1.2.11</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv
 -->
+<g id="edge7" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv</title>
+<path fill="none" stroke="#696969" 
d="M2198.0735,-2231.9081C2254.8675,-2205.6112 2360.1449,-2156.8654 
2421.7173,-2128.356"/>
+<polygon fill="#696969" stroke="#696969" points="2423.2379,-2131.5089 
2430.8418,-2124.1311 2420.2967,-2125.1568 2423.2379,-2131.5089"/>
+</g>
+<!-- /gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv -->
+<g id="node9" class="node">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<polygon fill="none" stroke="#000000" points="2022.5,-1980 1937.5,-1980 
1937.5,-1944 2022.5,-1944 2022.5,-1980"/>
+<text text-anchor="middle" x="1980" y="-1958.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc@2.29</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge8" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#696969" 
d="M2144.3161,-2231.9843C2109.7435,-2182.9909 2025.0779,-2047.1186 
1992.624,-1988.9694"/>
+<polygon fill="#696969" stroke="#696969" points="1995.5861,-1987.0919 
1987.7069,-1980.0089 1989.4494,-1990.4595 1995.5861,-1987.0919"/>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge9" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#696969" 
d="M2151.2894,-2231.9843C2124.8519,-2182.7889 2040.0336,-2045.9965 
2000.41,-1988.254"/>
+<polygon fill="#696969" stroke="#696969" points="2003.2605,-1986.2226 
1994.6791,-1980.0089 1997.5126,-1990.2178 2003.2605,-1986.2226"/>
+</g>
+<!-- 
/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="node10" class="node">
+<title>/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<polygon fill="none" stroke="#000000" points="1429.5,-2052 1216.5,-2052 
1216.5,-2016 1429.5,-2016 1429.5,-2052"/>
+<text text-anchor="middle" x="1323" y="-2030.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;cross&#45;boot0&#45;wrapped@7.4.0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="edge10" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.6135,-2247.491C1976.1674,-2238.2696 1513.9357,-2202.619 1391,-2124 
1366.9641,-2108.6288 1348.2626,-2081.6049 1336.6084,-2061.1695"/>
+<polygon fill="#696969" stroke="#696969" points="1339.6293,-2059.3988 
1331.7558,-2052.3094 1333.4898,-2062.7614 1339.6293,-2059.3988"/>
+</g>
+<!-- 
/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="node11" class="node">
+<title>/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="1282,-1548 1142,-1548 1142,-1512 
1282,-1512 1282,-1548"/>
+<text text-anchor="middle" x="1212" y="-1526.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">ld&#45;wrapper&#45;boot0@0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge11" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.7735,-2249.1304C1915.5302,-2244.3316 1038,-2217.108 1038,-2106 
1038,-2106 1038,-2106 1038,-1962 1038,-1797.9013 1147.3616,-1622.4755 
1192.6834,-1556.8211"/>
+<polygon fill="#696969" stroke="#696969" points="1195.7794,-1558.5008 
1198.6354,-1548.2982 1190.0403,-1554.4929 1195.7794,-1558.5008"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="node12" class="node">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<polygon fill="none" stroke="#000000" points="1988,-1476 1814,-1476 1814,-1440 
1988,-1440 1988,-1476"/>
+<text text-anchor="middle" x="1901" y="-1454.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils&#45;cross&#45;boot0@2.32</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge12" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.1847,-2244.8778C2316.1171,-2228.4775 2632.2228,-2169.0879 2560,-2016 
2420.4362,-1720.1721 2220.0166,-1782.5222 1992,-1548 1977.8701,-1533.4669 
1977.9879,-1526.6698 1964,-1512 1954.2562,-1501.7812 1942.7384,-1491.4714 
1932.2334,-1482.6384"/>
+<polygon fill="#696969" stroke="#696969" points="1934.3808,-1479.8724 
1924.4437,-1476.1975 1929.9201,-1485.2672 1934.3808,-1479.8724"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv -->
+<g id="node13" class="node">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<polygon fill="none" stroke="#000000" points="2675.5,-1260 2542.5,-1260 
2542.5,-1224 2675.5,-1224 2675.5,-1260"/>
+<text text-anchor="middle" x="2609" y="-1238.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">make&#45;boot0@4.2.1</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge13" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.6031,-2249.4166C1856.3564,-2245.6528 444.3681,-2224.0663 358,-2196 
290.4706,-2174.0556 226,-2177.0055 226,-2106 226,-2106 226,-2106 226,-1458 
226,-1275.7778 446.2646,-1398.0022 626,-1368 914.8678,-1319.781 
988.9601,-1317.9624 1281,-1296 1755.8976,-1260.2861 2328.2316,-1247.0593 
2532.2186,-1243.2741"/>
+<polygon fill="#696969" stroke="#696969" points="2532.2983,-1246.7734 
2542.2324,-1243.0905 2532.1699,-1239.7745 2532.2983,-1246.7734"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv 
-->
+<g id="node14" class="node">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<polygon fill="none" stroke="#000000" points="3469,-1332 3339,-1332 3339,-1296 
3469,-1296 3469,-1332"/>
+<text text-anchor="middle" x="3404" y="-1310.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">diffutils&#45;boot0@3.7</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge14" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.2434,-2249.7041C2474.6031,-2247.6384 4039.3868,-2234.3135 4515,-2196 
4747.1238,-2177.3011 4874.3096,-2293.4995 5034,-2124 5127.546,-2024.7079 
5058,-1954.4177 5058,-1818 5058,-1818 5058,-1818 5058,-1746 5058,-1570.9515 
4479.6635,-1543.1333 4318,-1476 4283.1109,-1461.5117 4277.0931,-1451.1557 
4241,-1440 4146.3402,-1410.7423 4109.7666,-1448.0112 4021,-1404 
4000.1568,-1393.6658 4004.1882,-1377.607 3983,-1368 3938.1881,-1347.6818 
3625.8658,-1326.994 [...]
+<polygon fill="#696969" stroke="#696969" points="3479.3819,-1314.7726 
3469.1927,-1317.6759 3478.9685,-1321.7604 3479.3819,-1314.7726"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="node15" class="node">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<polygon fill="none" stroke="#000000" points="3826.5,-1404 3681.5,-1404 
3681.5,-1368 3826.5,-1368 3826.5,-1404"/>
+<text text-anchor="middle" x="3754" y="-1382.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">findutils&#45;boot0@4.6.0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge15" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.2761,-2249.6944C2399.5744,-2248.0296 3282.2352,-2238.4931 4004,-2196 
4230.2701,-2182.6786 5020,-2332.6619 5020,-2106 5020,-2106 5020,-2106 
5020,-1890 5020,-1667.564 4197.8989,-1906.3775 4027,-1764 3910.908,-1667.2827 
4030.8571,-1546.8324 3924,-1440 3916.8129,-1432.8145 3872.2945,-1418.7988 
3830.621,-1406.8473"/>
+<polygon fill="#696969" stroke="#696969" points="3831.5295,-1403.4669 
3820.9533,-1404.0962 3829.6135,-1410.1996 3831.5295,-1403.4669"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv -->
+<g id="node16" class="node">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<polygon fill="none" stroke="#000000" points="2296.5,-1404 2183.5,-1404 
2183.5,-1368 2296.5,-1368 2296.5,-1404"/>
+<text text-anchor="middle" x="2240" y="-1382.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">file&#45;boot0@5.33</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge16" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.7943,-2249.7828C1877.7477,-2248.3676 664.8469,-2239.1168 505,-2196 
423.5949,-2174.042 338,-2190.3145 338,-2106 338,-2106 338,-2106 338,-2034 
338,-1835.4273 452,-1800.5727 452,-1602 452,-1602 452,-1602 452,-1530 
452,-1489.1184 439.6434,-1466.2311 471,-1440 504.259,-1412.1775 
1855.0694,-1391.4251 2173.3334,-1386.9157"/>
+<polygon fill="#696969" stroke="#696969" points="2173.3835,-1390.4154 
2183.3331,-1386.7746 2173.2846,-1383.4161 2173.3835,-1390.4154"/>
+</g>
+<!-- 
/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="node17" class="node">
+<title>/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<polygon fill="none" stroke="#000000" points="3549,-1188 3357,-1188 3357,-1152 
3549,-1152 3549,-1188"/>
+<text text-anchor="middle" x="3453" y="-1166.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;mesboot&#45;wrapper@4.9.4</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge17" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#696969" 
d="M2200.2484,-2249.6694C2559.2898,-2246.7457 5144.918,-2224.7357 5305,-2196 
5423.7069,-2174.6914 5561,-2226.6042 5561,-2106 5561,-2106 5561,-2106 
5561,-1530 5561,-1273.8932 5254.3046,-1438.1767 5008,-1368 4892.6848,-1335.1446 
4865.0102,-1322.186 4748,-1296 4563.6094,-1254.7348 4516.6846,-1245.845 
4329,-1224 4052.5204,-1191.8199 3724.5686,-1178.0694 3559.3838,-1172.8325"/>
+<polygon fill="#696969" stroke="#696969" points="3559.3289,-1169.3291 
3549.2243,-1172.5146 3559.1099,-1176.3257 3559.3289,-1169.3291"/>
+</g>
+<!-- 
/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="node18" class="node">
+<title>/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="3488,-36 3342,-36 3342,0 3488,0 
3488,-36"/>
+<text text-anchor="middle" x="3415" y="-14.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bootstrap&#45;binaries@0</text>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge18" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.8539,-2249.6778C1855.9708,-2247.4637 427.7731,-2233.4589 238,-2196 
127.0525,-2174.1003 0,-2219.0882 0,-2106 0,-2106 0,-2106 0,-162 0,-114.4133 
16.4048,-95.1157 58,-72 131.6683,-31.0603 2820.6995,-19.9763 3331.656,-18.256"/>
+<polygon fill="#696969" stroke="#696969" points="3331.9074,-21.7553 
3341.8956,-18.2218 3331.884,-14.7553 3331.9074,-21.7553"/>
+</g>
+<!-- 
/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge19" class="edge">
+<title>/gnu/store/1919am1cqx1qbc0y68c499wkffmdal9g&#45;gcc&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2117.7638,-2249.6373C1857.1575,-2247.2976 444.6532,-2233.2379 256,-2196 
145.0525,-2174.1003 18,-2219.0882 18,-2106 18,-2106 18,-2106 18,-162 
18,-114.4133 34.4048,-95.1157 76,-72 149.4318,-31.1917 2821.4568,-20.0478 
3331.4038,-18.2728"/>
+<polygon fill="#696969" stroke="#696969" points="3331.637,-21.7721 
3341.6248,-18.2375 3331.6127,-14.7722 3331.637,-21.7721"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv
 -->
+<g id="edge31" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5107.2623,-1519.2986C5059.4469,-1507.8611 4982.8317,-1489.5345 
4925.812,-1475.8952"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4926.3037,-1472.4142 
4915.7638,-1473.4917 4924.6751,-1479.2221 4926.3037,-1472.4142"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge20" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5127.4956,-1511.8726C5097.9245,-1490.975 5045.9328,-1457.2909 4996,-1440 
4572.938,-1293.5007 4444.8511,-1336.7457 3999,-1296 3740.8846,-1272.4112 
2938.3893,-1250.4155 2685.8779,-1243.9252"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2685.7838,-1240.4217 
2675.6974,-1243.6643 2685.6044,-1247.4194 2685.7838,-1240.4217"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge21" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#ff0000" d="M5107.3599,-1527.7C4955.9628,-1519.7752 
4467.6234,-1493.1506 4399,-1476 4360.7801,-1466.4479 4355.8811,-1450.8178 
4318,-1440 4206.2496,-1408.0873 4163.7365,-1454.3669 4059,-1404 
4038.0339,-1393.9176 4042.2155,-1377.5466 4021,-1368 3972.7131,-1346.2718 
3633.4549,-1326.011 3479.5766,-1317.8231"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3479.4399,-1314.3111 
3469.269,-1317.278 3479.0701,-1321.3013 3479.4399,-1314.3111"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge22" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5107.2154,-1528.4843C4983.1096,-1523.978 4624.3757,-1508.8787 4328,-1476 
4280.0702,-1470.6829 3983.4531,-1423.0892 3836.4307,-1399.3468"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3836.9683,-1395.8883 
3826.5381,-1397.7488 3835.852,-1402.7987 3836.9683,-1395.8883"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge23" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5107.243,-1528.9362C4988.7557,-1526.1241 4657.0781,-1518.2789 4381,-1512 
4019.6716,-1503.7822 3113.2422,-1523.8365 2755,-1476 2689.1832,-1467.2114 
2675.1536,-1452.8102 2610,-1440 2504.7542,-1419.3071 2381.2331,-1402.8307 
2306.8697,-1393.748"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2307.0587,-1390.2454 
2296.71,-1392.5158 2306.2158,-1397.1944 2307.0587,-1390.2454"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge26" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5135.2379,-1511.7396C5115.9294,-1491.665 5082.4183,-1459.6589 5048,-1440 
4960.8623,-1390.2291 4931.31,-1392.5128 4834,-1368 4367.3777,-1250.4558 
3793.2748,-1196.105 3559.5469,-1177.6571"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3559.593,-1174.1501 
3549.3501,-1176.8581 3559.0461,-1181.1287 3559.593,-1174.1501"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge29" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5196.7442,-1523.8917C5264.178,-1514.7992 5387.8171,-1496.5541 5428,-1476 
5521.2044,-1428.3247 5599,-1418.69 5599,-1314 5599,-1314 5599,-1314 5599,-162 
5599,-38.5326 4960.711,-62.7619 4030,-36 3839.7325,-30.529 3616.832,-24.0927 
3498.5356,-20.5906"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.5615,-17.09 
3488.4621,-20.292 3498.354,-24.0869 3498.5615,-17.09"/>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge30" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5196.7351,-1525.3268C5268.1231,-1516.8277 5403.5753,-1497.7008 5446,-1476 
5539.2044,-1428.3247 5617,-1418.69 5617,-1314 5617,-1314 5617,-1314 5617,-162 
5617,-38.5326 4978.711,-62.7619 4048,-36 3851.4165,-30.3474 3619.9977,-23.6643 
3498.6952,-20.2517"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.4674,-16.744 
3488.3731,-19.9618 3498.2708,-23.7413 3498.4674,-16.744"/>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="node19" class="node">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<polygon fill="none" stroke="#000000" points="3290.5,-972 3137.5,-972 
3137.5,-936 3290.5,-936 3290.5,-972"/>
+<text text-anchor="middle" x="3214" y="-950.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc&#45;mesboot@2.16.0</text>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge24" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5196.6003,-1522.4516C5256.1297,-1509.7193 5359.345,-1477.7409 5405,-1404 
5431.7858,-1360.7362 5405.7704,-1328.9559 5367,-1296 5213.7599,-1165.7416 
5130.7256,-1209.5031 4938,-1152 4816.9322,-1115.8773 4787.9302,-1098.8341 
4663,-1080 4479.7864,-1052.3792 4002.7382,-1111.0198 3830,-1044 
3806.7631,-1034.9844 3810.0006,-1017.6025 3787,-1008 3701.4297,-972.2752 
3438.7397,-959.9675 3300.7413,-955.9"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3300.7162,-952.398 
3290.62,-955.6099 3300.5156,-959.3951 3300.7162,-952.398"/>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="node20" class="node">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<polygon fill="none" stroke="#000000" points="4195.5,-756 4020.5,-756 
4020.5,-720 4195.5,-720 4195.5,-756"/>
+<text text-anchor="middle" x="4108" y="-734.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils&#45;mesboot@2.20.1a</text>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge25" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5196.8136,-1526.8239C5242.2847,-1521.8153 5313.1682,-1508.9526 5365,-1476 
5399.9131,-1453.8036 5410.0767,-1442.9583 5424,-1404 5440.6156,-1357.5086 
5427.3621,-1335.6913 5398,-1296 5366.2816,-1253.1236 5347.6335,-1251.6049 
5302,-1224 5079.173,-1089.2062 5005.9692,-1088.3899 4773,-972 
4618.6376,-894.8815 4592.5559,-846.9953 4429,-792 4356.2915,-767.5519 
4270.4408,-753.8483 4205.8259,-746.3685"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4205.9723,-742.8629 
4195.6432,-745.2208 4205.1882,-749.8189 4205.9723,-742.8629"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv 
-->
+<g id="node21" class="node">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<polygon fill="none" stroke="#000000" points="4043.5,-1116 3904.5,-1116 
3904.5,-1080 4043.5,-1080 4043.5,-1116"/>
+<text text-anchor="middle" x="3974" y="-1094.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;mesboot@4.9.4</text>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge27" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5166.2936,-1511.8105C5189.6955,-1479.6744 5230.4015,-1412.0916 5197,-1368 
5088.9118,-1225.3184 4596.6686,-1186.3747 4421,-1152 4293.7646,-1127.1027 
4143.7674,-1111.7999 4053.9096,-1104.11"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4054.0524,-1100.6097 
4043.793,-1103.2547 4053.4626,-1107.5848 4054.0524,-1100.6097"/>
+</g>
+<!-- 
/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="node22" class="node">
+<title>/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="2826,-468 2616,-468 2616,-432 
2826,-432 2826,-468"/>
+<text text-anchor="middle" x="2721" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">linux&#45;libre&#45;headers&#45;bootstrap@0</text>
+</g>
+<!-- 
/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge28" class="edge">
+<title>/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M5196.6668,-1524.2869C5258.7545,-1515.6781 5367.2158,-1498.0198 5400,-1476 
5523.9669,-1392.7363 5572.0708,-1276.0963 5489,-1152 5288.6531,-852.7093 
5097.382,-925.8001 4763,-792 4662.7642,-751.8915 4635.9579,-745.2931 4531,-720 
4303.8318,-665.2564 3724.9894,-581.3176 3495,-540 3408.6876,-524.494 
3387.8586,-516.0771 3301,-504 3140.4062,-481.6705 2953.4752,-466.1298 
2836.1845,-457.6328"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2836.3342,-454.1346 
2826.1088,-456.9078 2835.8318,-461.1165 2836.3342,-454.1346"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge166" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4786.4911,-1448.9037C4713.6757,-1438.526 4591.7099,-1420.8114 4487,-1404 
4208.67,-1359.3134 4142.2796,-1326.1304 3862,-1296 3632.1498,-1271.2908 
2921.5243,-1250.4197 2685.837,-1244.0199"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2685.7347,-1240.5159 
2675.6437,-1243.7441 2685.5453,-1247.5134 2685.7347,-1240.5159"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge167" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4786.1869,-1455.3913C4676.8284,-1450.2537 4448.9952,-1436.3781 4259,-1404 
4194.3928,-1392.9899 4180.6893,-1378.5166 4116,-1368 3886.0725,-1330.6206 
3610.068,-1319.0212 3479.5143,-1315.4952"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3479.3196,-1311.989 
3469.2315,-1315.2262 3479.1365,-1318.9866 3479.3196,-1311.989"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge168" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4786.4732,-1453.7649C4597.7028,-1441.3752 4046.643,-1405.2072 
3836.616,-1391.4224"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3836.7823,-1387.9259 
3826.5745,-1390.7633 3836.3238,-1394.9108 3836.7823,-1387.9259"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge169" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4786.4778,-1454.0237C4718.1086,-1449.9416 4606.9839,-1443.6811 4511,-1440 
3639.926,-1406.593 2580.0632,-1390.6181 2306.7804,-1386.8774"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2306.6774,-1383.3758 
2296.6306,-1386.7391 2306.582,-1390.3751 2306.6774,-1383.3758"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge172" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4786.2244,-1446.6375C4727.756,-1436.1954 4639.439,-1419.9602 4563,-1404 
4353.6158,-1360.2812 4302.8599,-1342.1586 4094,-1296 4018.5886,-1279.3339 
3997.723,-1283.0123 3924,-1260 3884.4462,-1247.6535 3877.9579,-1234.9682 
3838,-1224 3745.8104,-1198.6945 3637.7775,-1184.8606 3559.6543,-1177.5508"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3559.5939,-1174.0307 
3549.3166,-1176.6052 3558.9562,-1181.0016 3559.5939,-1174.0307"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge175" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4915.9232,-1450.5355C5039.7278,-1434.9847 5297,-1393.7477 5297,-1314 
5297,-1314 5297,-1314 5297,-162 5297,25.8634 5070.3849,-95.5227 4884,-72 
4814.8834,-63.2771 3800.4926,-30.5273 3498.9121,-20.7638"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3498.5954,-17.2518 
3488.4873,-20.4263 3498.3688,-24.2482 3498.5954,-17.2518"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge176" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4915.8029,-1451.7508C5043.5034,-1437.2054 5315,-1395.9226 5315,-1314 
5315,-1314 5315,-1314 5315,-162 5315,25.8634 5088.3849,-95.5227 4902,-72 
4832.2982,-63.2033 3801.2489,-29.971 3498.1548,-20.5208"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3498.2155,-17.0211 
3488.1114,-20.2081 3497.9976,-24.0177 3498.2155,-17.0211"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge170" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4849.9276,-1439.6554C4848.4373,-1421.1686 4844.958,-1392.0165 4837,-1368 
4814.2379,-1299.3063 4809.5996,-1277.6192 4761,-1224 4680.2582,-1134.9187 
4647.0872,-1114.78 4532,-1080 4367.3886,-1030.2536 3920.8299,-1102.1608 
3759,-1044 3733.9048,-1034.9809 3735.8051,-1017.7887 3711,-1008 
3638.4616,-979.3745 3422.8732,-964.3288 3300.8034,-957.9029"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3300.9031,-954.4035 
3290.7353,-957.3813 3300.5408,-961.3941 3300.9031,-954.4035"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge171" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4915.722,-1445.4063C5003.2572,-1425.0215 5143.8238,-1378.5135 5101,-1296 
5078.5921,-1252.8241 4429.7485,-811.0746 4385,-792 4328.1428,-767.764 
4260.0593,-754.3011 4205.6195,-746.8791"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4205.9903,-743.3978 
4195.6189,-745.5623 4205.0764,-750.3379 4205.9903,-743.3978"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge173" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4824.0632,-1439.8357C4742.1578,-1385.6084 4487.2334,-1224.1907 4251,-1152 
4185.826,-1132.0834 4109.7013,-1117.8682 4053.7655,-1109.0384"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4053.9823,-1105.5301 
4043.5632,-1107.4522 4052.9068,-1112.447 4053.9823,-1105.5301"/>
+</g>
+<!-- 
/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge174" class="edge">
+<title>/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M4915.7768,-1448.6225C4973.8111,-1439.1693 5053.5834,-1423.2468 5079,-1404 
5119.8066,-1373.099 5130.7602,-1345.8171 5119,-1296 5110.7801,-1261.18 
5102.5415,-1253.9688 5083,-1224 5014.8995,-1119.5614 4831.8119,-856.3141 
4725,-792 4590.4382,-710.977 4534.6942,-740.7584 4379,-720 4114.197,-684.6943 
4043.9381,-718.2768 3779,-684 3698.09,-673.5321 3679.7808,-659.4218 3599,-648 
3409.109,-621.1509 3351.5225,-670.8643 3169,-612 3109.8054,-592.9095 3100.6139, 
[...]
+<polygon fill="#b8860b" stroke="#b8860b" points="2836.5035,-456.8129 
2826.1122,-458.8799 2835.5244,-463.7442 2836.5035,-456.8129"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge180" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M3938.7676,-1888.7702C3702.4528,-1883.9844 2871.2647,-1865.4002 2608,-1836 
2259.8246,-1797.1173 2176.7381,-1759.691 1833,-1692 1678.8878,-1661.6513 
1635.911,-1669.9712 1487,-1620 1451.5663,-1608.1092 1446.0623,-1596.945 
1411,-1584 1372.6296,-1569.8337 1328.8691,-1557.5559 1292.1733,-1548.3028"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1292.5704,-1544.7949 
1282.0209,-1545.7742 1290.8785,-1551.5874 1292.5704,-1544.7949"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge181" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M3938.7073,-1888.969C3688.0137,-1884.6821 2772.1916,-1867.0268 2646,-1836 
2573.4106,-1818.1524 2561.5351,-1796.0431 2494,-1764 2359.2925,-1700.0859 
2323.489,-1688.3943 2191,-1620 2100.2254,-1573.1398 1996.2237,-1513.5649 
1940.762,-1481.3075"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1942.3639,-1478.1901 
1931.9613,-1476.181 1938.8405,-1484.2388 1942.3639,-1478.1901"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge182" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M3938.9064,-1883.8135C3769.0726,-1865.428 3315,-1804.1064 3315,-1674 
3315,-1674 3315,-1674 3315,-1602 3315,-1561.0242 3321.6238,-1543.1478 
3295,-1512 3273.2998,-1486.6124 2830.8327,-1323.092 2668.254,-1263.6001"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2669.0105,-1260.1501 
2658.4167,-1260.0024 2666.6061,-1266.7243 2669.0105,-1260.1501"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge183" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M4065.2541,-1877.9843C4132.1129,-1861.1891 4228,-1823.5786 4228,-1746 
4228,-1746 4228,-1746 4228,-1674 4228,-1606.8767 4092.8186,-1477.2803 
4037,-1440 3990.6961,-1409.0744 3966.447,-1429.6015 3917,-1404 
3893.9458,-1392.0635 3895.1356,-1377.5629 3871,-1368 3709.4258,-1303.9818 
3650.8192,-1359.9412 3479.2527,-1332.7915"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3479.5694,-1329.2963 
3469.1318,-1331.1149 3478.4253,-1336.2022 3479.5694,-1329.2963"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge184" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M3973.3258,-1871.9184C3938.9749,-1847.7745 3886,-1801.5374 3886,-1746 
3886,-1746 3886,-1746 3886,-1674 3886,-1569.814 3959.5368,-1525.499 3900,-1440 
3891.6056,-1427.945 3864.0125,-1416.3906 3835.04,-1407.0854"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3835.7758,-1403.6489 
3825.1874,-1404.0186 3833.6952,-1410.3326 3835.7758,-1403.6489"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge185" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M3938.8371,-1885.9159C3742.2571,-1872.1404 3124.9156,-1820.829 2631,-1692 
2535.9343,-1667.2038 2508.0656,-1667.382 2422,-1620 2377.126,-1595.2953 
2369.5489,-1582.8437 2332,-1548 2315.9792,-1533.1334 2275.6733,-1495.0725 
2265,-1476 2254.2254,-1456.7463 2247.842,-1432.5371 2244.2257,-1414.078"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2247.6671,-1413.4391 
2242.4475,-1404.2192 2240.7782,-1414.6817 2247.6671,-1413.4391"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge186" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M4065.1693,-1885.2254C4281.8996,-1867.1357 4982,-1793.8529 4982,-1602 
4982,-1602 4982,-1602 4982,-1530 4982,-1486.7517 4977.7054,-1468.2979 
4945,-1440 4920.1376,-1418.4881 4690.0808,-1375.1921 4658,-1368 
4497.082,-1331.9244 4456.7211,-1322.7938 4294,-1296 4173.2424,-1276.1159 
4138.5579,-1294.0284 4021,-1260 3984.3247,-1249.384 3979.7865,-1234.2239 
3943,-1224 3873.122,-1204.5791 3680.9964,-1187.2046 3559.1202,-1177.6793"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3559.2532,-1174.1792 
3549.0123,-1176.8947 3558.7114,-1181.1582 3559.2532,-1174.1792"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge188" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M4065.1596,-1887.4643C4169.4385,-1882.6082 4383.4985,-1869.3398 4562,-1836 
5010.7727,-1752.1799 5123.3661,-1715.6566 5548,-1548 5703.657,-1486.5425 
5843,-1481.3503 5843,-1314 5843,-1314 5843,-1314 5843,-162 5843,-90.2584 
5777.3995,-93.6419 5709,-72 5620.0472,-43.8549 4123.2697,-38.3451 4030,-36 
3839.714,-31.2156 3616.8204,-24.5238 3498.5302,-20.7936"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3498.5628,-17.293 
3488.4572,-20.4752 3498.3415,-24.2895 3498.5628,-17.293"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge189" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M4065.169,-1887.9505C4172.1872,-1883.5254 4395.1583,-1870.524 4580,-1836 
5028.7727,-1752.1799 5141.3661,-1715.6566 5566,-1548 5721.657,-1486.5425 
5861,-1481.3503 5861,-1314 5861,-1314 5861,-1314 5861,-162 5861,-90.2584 
5795.3995,-93.6419 5727,-72 5638.0472,-43.8549 4141.2697,-38.3451 4048,-36 
3851.3974,-31.0567 3619.9866,-24.0774 3498.6903,-20.4321"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3498.4694,-16.924 
3488.3688,-20.122 3498.2591,-23.9209 3498.4694,-16.924"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge187" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M4065.1812,-1887.845C4244.5577,-1881.4785 4754.6344,-1861.5888 4920,-1836 
5204.2234,-1792.0191 5270.6442,-1744.3053 5530,-1620 5592.7397,-1589.9298 
5619.8836,-1597.2755 5669,-1548 5769.8144,-1446.8588 5767,-1384.8044 5767,-1242 
5767,-1242 5767,-1242 5767,-1170 5767,-990.4841 5564.4933,-1072.5909 5397,-1008 
5162.1406,-917.4305 5097.3582,-911.8025 4860,-828 4714.8802,-776.7635 
4682.5358,-746.8669 4531,-720 4215.9574,-664.1437 4126.5249,-742.7012 3812,- 
[...]
+<polygon fill="#9400d3" stroke="#9400d3" points="2836.3818,-458.9314 
2826.0272,-461.1745 2835.5206,-465.8782 2836.3818,-458.9314"/>
+</g>
+<!-- 
/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="node39" class="node">
+<title>/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<polygon fill="none" stroke="#000000" points="3857.5,-1836 3644.5,-1836 
3644.5,-1800 3857.5,-1800 3857.5,-1836"/>
+<text text-anchor="middle" x="3751" y="-1814.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;cross&#45;boot0&#45;wrapped@7.4.0</text>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="edge177" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M3938.9861,-1871.9243C3904.0762,-1861.9103 3860.5058,-1849.412 
3824.1038,-1838.97"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3824.6173,-1835.4762 
3814.0398,-1836.0831 3822.6871,-1842.2049 3824.6173,-1835.4762"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv
 -->
+<g id="node40" class="node">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv</title>
+<polygon fill="none" stroke="#000000" points="4200,-1764 4036,-1764 4036,-1728 
4200,-1728 4200,-1764"/>
+<text text-anchor="middle" x="4118" y="-1742.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc&#45;intermediate@2.29</text>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv
 -->
+<g id="edge178" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M4012.0183,-1871.7623C4029.8782,-1846.4436 4066.66,-1800.5182 
4091.9626,-1771.7251"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="4094.7276,-1773.8832 
4098.7695,-1764.0896 4089.5024,-1769.225 4094.7276,-1773.8832"/>
+</g>
+<!-- 
/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv
 -->
+<g id="edge179" class="edge">
+<title>/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv&#45;&gt;/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv</title>
+<path fill="none" stroke="#9400d3" d="M4021.3647,-1871.7623C4044.0999,-1846.66 
4080.8702,-1801.3017 4102.0473,-1772.4671"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="4105.0778,-1774.2484 
4108.0861,-1764.0896 4099.3993,-1770.1551 4105.0778,-1774.2484"/>
+</g>
+<!-- 
/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv
 -->
+<g id="edge326" class="edge">
+<title>/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv</title>
+<path fill="none" stroke="#ff00ff" d="M601.9163,-2159.8314C610.3442,-2151.2848 
620.541,-2140.9443 629.736,-2131.6198"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="632.3131,-2133.9912 
636.8425,-2124.4133 627.3289,-2129.0761 632.3131,-2133.9912"/>
+</g>
+<!-- 
/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge328" class="edge">
+<title>/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M524.4045,-2159.904C499.4824,-2150.992 
470.836,-2138.9233 447,-2124 179.1112,-1956.2791 56,-1846.0613 56,-1530 
56,-1530 56,-1530 56,-162 56,-113.926 73.8014,-95.0302 116,-72 
188.7214,-32.3117 2825.5768,-20.2514 3331.5275,-18.3005"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3331.684,-21.8 
3341.6705,-18.2616 3331.6571,-14.8001 3331.684,-21.8"/>
+</g>
+<!-- 
/gnu/store/sbsq9bzfi41a52x50gpv6dl6plyb9kc3&#45;guile&#45;bootstrap&#45;2.0.drv 
-->
+<g id="node48" class="node">
+<title>/gnu/store/sbsq9bzfi41a52x50gpv6dl6plyb9kc3&#45;guile&#45;bootstrap&#45;2.0.drv</title>
+<polygon fill="none" stroke="#000000" points="619.5,-1476 480.5,-1476 
480.5,-1440 619.5,-1440 619.5,-1476"/>
+<text text-anchor="middle" x="550" y="-1454.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">guile&#45;bootstrap@2.0</text>
+</g>
+<!-- 
/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/sbsq9bzfi41a52x50gpv6dl6plyb9kc3&#45;guile&#45;bootstrap&#45;2.0.drv
 -->
+<g id="edge327" class="edge">
+<title>/gnu/store/rp1z1z7hd7pj9awswlapr1553nh43cmc&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/sbsq9bzfi41a52x50gpv6dl6plyb9kc3&#45;guile&#45;bootstrap&#45;2.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M541.6595,-2159.8995C496.684,-2137.489 
432,-2094.7057 432,-2034 432,-2034 432,-2034 432,-1890 432,-1807.9855 
512.1439,-1567.7435 540.3342,-1485.7763"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="543.7016,-1486.7472 
543.6558,-1476.1525 537.0847,-1484.4634 543.7016,-1486.7472"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge329" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#ff00ff" d="M704.666,-2095.3101C800.011,-2076.4525 
1014.9866,-2037.2665 1198,-2016 1470.9483,-1984.283 1800.4395,-1968.8016 
1927.0528,-1963.8391"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1927.3868,-1967.3289 
1937.2442,-1963.4454 1927.1165,-1960.3342 1927.3868,-1967.3289"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge330" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#ff00ff" d="M704.8115,-2097.2436C802.6758,-2079.2631 
1026.4762,-2038.023 1216,-2016 1482.4495,-1985.0381 1802.7815,-1969.548 
1927.1621,-1964.2116"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1927.3396,-1967.7073 
1937.1819,-1963.7855 1927.0422,-1960.7136 1927.3396,-1967.7073"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="edge331" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M704.8686,-2101.9053C801.1363,-2093.8174 
1019.2184,-2074.6035 1202,-2052 1203.482,-2051.8167 1204.9739,-2051.6299 
1206.474,-2051.44"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1207.009,-2054.9 
1216.4761,-2050.1436 1206.1092,-2047.9581 1207.009,-2054.9"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge332" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M704.8429,-2096.125C736.1568,-2088.0977 
776.1286,-2074.3501 806,-2052 877.3215,-1998.6365 924,-1979.0754 924,-1890 
924,-1890 924,-1890 924,-1818 924,-1685.5715 1078.1366,-1592.7682 
1160.886,-1552.488"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1162.6144,-1555.541 
1170.1223,-1548.0657 1159.5914,-1549.2274 1162.6144,-1555.541"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge333" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#ff00ff" d="M691.3538,-2087.8217C731.9407,-2064.6537 
792,-2020.4889 792,-1962 792,-1962 792,-1962 792,-1890 792,-1780.9405 
1006.5404,-1558.9007 1105,-1512 1136.0508,-1497.2091 1598.1993,-1472.8582 
1803.7176,-1462.6896"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1804.0882,-1466.1756 
1813.9034,-1462.1868 1803.743,-1459.1841 1804.0882,-1466.1756"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge334" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M614.8316,-2087.9276C571.3076,-2065.2786 
508,-2022.0189 508,-1962 508,-1962 508,-1962 508,-1890 508,-1755.3546 
414,-1736.6454 414,-1602 414,-1602 414,-1602 414,-1530 414,-1487.3959 
413.5542,-1466.3911 447,-1440 500.9239,-1397.4502 1606.5716,-1301.985 
1675,-1296 1992.6487,-1268.2174 2372.37,-1251.2897 2532.1644,-1244.9066"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2532.5155,-1248.3955 
2542.3688,-1244.5014 2532.2377,-1241.401 2532.5155,-1248.3955"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge335" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#ff00ff" d="M639.2428,-2087.8597C618.3256,-2061.8524 
584,-2011.6151 584,-1962 584,-1962 584,-1962 584,-1746 584,-1617.1901 
636.1063,-1561.5609 755,-1512 936.922,-1436.1658 1007.3252,-1529.5712 
1197,-1476 1231.0482,-1466.3835 1234.0459,-1449.9434 1268,-1440 
1421.0438,-1395.1813 1467.4908,-1428.9391 1625,-1404 1699.5639,-1392.194 
1716.0823,-1377.3006 1791,-1368 2094.1808,-1330.3616 3051.281,-1317.6629 
3328.2345,-1314.7262"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3328.6152,-1318.2225 
3338.578,-1314.6178 3328.5418,-1311.2229 3328.6152,-1318.2225"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge336" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M659.3837,-2087.7387C681.552,-2000.2074 
790.4533,-1623.2541 1046,-1512 1084.8352,-1495.0928 1762.7232,-1442.588 
1805,-1440 2527.1924,-1395.7908 3402.1546,-1387.7609 3671.2809,-1386.3145"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3671.3789,-1389.8142 
3681.3605,-1386.2619 3671.3424,-1382.8143 3671.3789,-1389.8142"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge337" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff00ff" d="M648.0015,-2087.6679C638.3147,-2060.6028 
622,-2008.1665 622,-1962 622,-1962 622,-1962 622,-1818 622,-1652.5496 
679.6385,-1571.5513 834,-1512 1014.5791,-1442.3342 1077.4881,-1510.1663 
1268,-1476 1326.5893,-1465.4926 1338.3146,-1449.9565 1397,-1440 
1545.9552,-1414.7286 2001.2158,-1395.1563 2173.2336,-1388.4797"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2173.5586,-1391.9698 
2183.4162,-1388.0867 2173.2886,-1384.975 2173.5586,-1391.9698"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge338" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff00ff" d="M605.3831,-2094.0629C578.6777,-2085.7113 
546.4952,-2072.3363 523,-2052 487.9011,-2021.6202 470,-2008.4205 470,-1962 
470,-1962 470,-1962 470,-1890 470,-1688.5651 281.7317,-1590.16 416,-1440 
615.4612,-1216.931 2832.074,-1177.2766 3346.7194,-1171.0592"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3346.7808,-1174.5588 
3356.7384,-1170.9398 3346.6973,-1167.5593 3346.7808,-1174.5588"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge339" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M605.4318,-2100.4443C566.2616,-2093.8805 
512.1049,-2080.0756 473,-2052 240.1069,-1884.7926 94,-1816.7011 94,-1530 
94,-1530 94,-1530 94,-162 94,-112.3971 115.9418,-94.7885 160,-72 
232.4624,-34.5199 2830.3859,-20.6591 3331.753,-18.3569"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3331.8223,-21.8567 
3341.8062,-18.311 3331.7903,-14.8568 3331.8223,-21.8567"/>
+</g>
+<!-- 
/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge340" class="edge">
+<title>/gnu/store/d2yx1bxbaqqrjsa3aszywbxpc0i90zvb&#45;binutils&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M605.2342,-2097.5672C570.7014,-2090.1298 
525.1209,-2076.4974 491,-2052 258.1069,-1884.7926 112,-1816.7011 112,-1530 
112,-1530 112,-1530 112,-162 112,-112.3971 133.9418,-94.7885 178,-72 
250.2294,-34.6404 2831.7007,-20.7485 3331.6516,-18.3794"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3331.6944,-21.8794 
3341.6778,-18.3322 3331.6613,-14.8795 3331.6944,-21.8794"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge379" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1516.1289,-2088.7018C1618.5007,-2059.6223 1829.1404,-2001.5565 
1927.436,-1975.3631"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="1928.3914,-1978.7308 
1937.157,-1972.7796 1926.5935,-1971.9656 1928.3914,-1978.7308"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge380" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1516.2044,-2091.1318C1618.6547,-2063.7595 1829.3661,-2005.6408 
1927.5756,-1977.6759"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="1928.6319,-1981.0142 
1937.2871,-1974.9038 1926.7105,-1974.2831 1928.6319,-1981.0142"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="edge381" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1423.9338,-2087.8314C1406.3467,-2078.4516 1384.7084,-2066.9112 
1365.9832,-2056.9244"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="1367.5259,-2053.7805 
1357.0553,-2052.1628 1364.2318,-2059.957 1367.5259,-2053.7805"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge382" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1455.2488,-2087.7183C1452.1716,-2069.2804 1446.4787,-2040.1656 1438,-2016 
1420.2981,-1965.547 1407.5771,-1956.4679 1385,-1908 1318.5368,-1765.3187 
1312.0715,-1724.9443 1242,-1584 1237.5822,-1575.114 1232.4387,-1565.5968 
1227.6712,-1557.0656"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="1230.6672,-1555.2531 
1222.6977,-1548.2718 1224.5742,-1558.6992 1230.6672,-1555.2531"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge383" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#0000ff" d="M1472.4256,-2087.6392C1491.5751,-2061.37 
1523,-2010.8235 1523,-1962 1523,-1962 1523,-1962 1523,-1890 1523,-1692.4801 
1775.2149,-1789.872 1876,-1620 1900.6331,-1578.4813 1903.5974,-1520.8512 
1902.7942,-1486.6939"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="1906.2839,-1486.3454 
1902.4237,-1476.4789 1899.2885,-1486.5992 1906.2839,-1486.3454"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge384" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1399.7815,-2103.2246C1260.953,-2096.2386 918.5936,-2076.7071 873,-2052 
763.2532,-1992.5284 717.6888,-1920.8339 749,-1800 778.0035,-1688.072 
813.0173,-1666.5281 894,-1584 928.914,-1548.4198 934.7036,-1532.8129 980,-1512 
1068.8339,-1471.1824 1101.2308,-1495.6414 1197,-1476 1262.8925,-1462.486 
1278.6604,-1455.9744 1344,-1440 1475.0986,-1407.9487 1506.6081,-1394.2012 
1639,-1368 1847.1669,-1326.8025 1900.5778,-1323.4445 2111,-1296 
2259.876,-1276.5827 243 [...]
+<polygon fill="#0000ff" stroke="#0000ff" points="2532.8201,-1252.7411 
2542.4354,-1248.2918 2532.1441,-1245.7738 2532.8201,-1252.7411"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge385" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1399.644,-2101.4387C1268.5304,-2089.5859 962,-2052.2272 962,-1962 962,-1962 
962,-1962 962,-1890 962,-1714.2673 937.4186,-1617.446 1078,-1512 
1173.4368,-1440.4157 1232.5842,-1518.6499 1344,-1476 1370.5938,-1465.8199 
1370.1916,-1449.6006 1397,-1440 1562.5452,-1380.7152 1615.9099,-1420.2278 
1791,-1404 1961.2429,-1388.2215 2003.4319,-1379.7531 2174,-1368 
2610.8382,-1337.8994 3136.1743,-1321.394 3328.6439,-1316.0005"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3329.0282,-1319.4912 
3338.9269,-1315.7141 3328.8333,-1312.494 3329.0282,-1319.4912"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge386" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1516.3553,-2102.542C1627.7602,-2095.5987 1878.3287,-2078.3363 2088,-2052 
2282.0008,-2027.632 2331.2273,-2022.8473 2522,-1980 2557.62,-1971.9998 
3764.0032,-1649.1364 3786,-1620 3832.6887,-1558.1572 3793.0075,-1460.1022 
3769.0309,-1413.0001"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3772.0692,-1411.2573 
3764.3324,-1404.019 3765.8667,-1414.5022 3772.0692,-1411.2573"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge387" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1399.7677,-2100.2913C1334.645,-2092.7625 1234.6537,-2077.4069 1207,-2052 
1027.829,-1887.386 931.9358,-1669.9596 1117,-1512 1165.387,-1470.6998 
1341.126,-1497.4969 1401,-1476 1429.2004,-1465.875 1429.4726,-1449.1632 
1458,-1440 1588.7641,-1397.9975 1938.1339,-1415.451 2075,-1404 
2107.3778,-1401.2911 2143.243,-1397.4766 2173.2425,-1394.0559"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2173.6433,-1397.533 
2183.1778,-1392.9131 2172.8434,-1390.5788 2173.6433,-1397.533"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge388" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" d="M1516.2644,-2097.8076C1787.38,-2058.874 
2924.7044,-1886.349 3220,-1692 3388.4097,-1581.161 3431.2339,-1522.9253 
3496,-1332 3501.3096,-1316.3478 3498.9623,-1240.8768 3493,-1224 
3489.5023,-1214.0995 3483.5201,-1204.4861 3477.2326,-1196.1816"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3479.9233,-1193.9426 
3470.924,-1188.3512 3474.4723,-1198.3342 3479.9233,-1193.9426"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge389" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1399.9578,-2103.2745C1293.3327,-2097.3977 1071.1971,-2081.6097 1001,-2052 
976.7733,-2041.781 264,-1484.2938 264,-1458 264,-1458 264,-1458 264,-162 
264,-110.775 290.0277,-94.5952 336,-72 405.0263,-38.0738 2846.0676,-21.4226 
3331.5539,-18.4787"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.6608,-21.9782 
3341.6394,-18.4178 3331.6184,-14.9783 3331.6608,-21.9782"/>
+</g>
+<!-- 
/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge390" class="edge">
+<title>/gnu/store/hfxd4vx3rzr9is3bv4wcdv8kkx6bcxrd&#45;libstdc++&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1399.7619,-2102.6519C1296.6553,-2096.327 1086.8512,-2080.6202 1019,-2052 
994.7733,-2041.781 282,-1484.2938 282,-1458 282,-1458 282,-1458 282,-162 
282,-110.775 308.0277,-94.5952 354,-72 422.8037,-38.1832 2848.3437,-21.5302 
3331.7224,-18.5076"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.7869,-22.0074 
3341.7649,-18.445 3331.7432,-15.0075 3331.7869,-22.0074"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge391" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#696969" 
d="M2425.3379,-2099.8352C2377.7912,-2091.8728 2301.338,-2076.1054 2239,-2052 
2207.8356,-2039.9491 2204.0262,-2028.4024 2173,-2016 2126.7976,-1997.531 
2072.1619,-1983.3589 2032.7503,-1974.177"/>
+<polygon fill="#696969" stroke="#696969" points="2033.3499,-1970.7235 
2022.8198,-1971.893 2031.7809,-1977.5454 2033.3499,-1970.7235"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge392" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#696969" 
d="M2425.2433,-2097.3554C2381.3992,-2088.8032 2313.4187,-2073.8164 2257,-2052 
2225.8356,-2039.9491 2222.0262,-2028.4024 2191,-2016 2138.9327,-1995.1866 
2076.1551,-1979.8301 2032.5717,-1970.923"/>
+<polygon fill="#696969" stroke="#696969" points="2033.2427,-1967.4879 
2022.7505,-1968.9594 2031.8702,-1974.3521 2033.2427,-1967.4879"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv
 -->
+<g id="edge393" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2425.3883,-2103.1996C2261.4495,-2092.9088 1688.9622,-2056.9723 
1440.0547,-2041.3478"/>
+<polygon fill="#696969" stroke="#696969" points="1440.0922,-2037.8434 
1429.8925,-2040.7099 1439.6536,-2044.8296 1440.0922,-2037.8434"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge394" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2430.6227,-2087.9703C2245.7533,-2003.3242 1464.4165,-1645.5739 
1260.7239,-1552.3092"/>
+<polygon fill="#696969" stroke="#696969" points="1262.0149,-1549.0509 
1251.4655,-1548.0701 1259.1007,-1555.4155 1262.0149,-1549.0509"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge395" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#696969" 
d="M2453.4675,-2087.9067C2378.1916,-2005.5179 2069.6824,-1667.7915 2027,-1620 
1998.6764,-1588.2861 1990.2303,-1581.466 1964,-1548 1947.8222,-1527.3595 
1930.8482,-1502.9276 1918.6005,-1484.7317"/>
+<polygon fill="#696969" stroke="#696969" points="1921.4599,-1482.7112 
1912.9918,-1476.344 1915.6409,-1486.6023 1921.4599,-1482.7112"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge396" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#696969" d="M2470,-2087.6423C2470,-2034.6635 
2470,-1876.9375 2470,-1746 2470,-1746 2470,-1746 2470,-1674 2470,-1504.8464 
2598.9107,-1496.8094 2637,-1332 2640.6028,-1316.4109 2640.7904,-1311.5445 
2637,-1296 2634.7461,-1286.7566 2630.6107,-1277.3312 2626.1973,-1268.9966"/>
+<polygon fill="#696969" stroke="#696969" points="2629.1476,-1267.1033 
2621.1817,-1260.118 2623.0529,-1270.5463 2629.1476,-1267.1033"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge397" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#696969" 
d="M2514.7114,-2092.7625C2522.4207,-2090.884 2530.3989,-2089.1897 2538,-2088 
2843.5824,-2040.1698 2925.5891,-2086.1596 3233,-2052 3421.4488,-2031.0595 
3894.8982,-1970.2414 4074,-1908 4137.1234,-1886.0634 4159.5975,-1884.0893 
4206,-1836 4334.8203,-1702.4968 4236.0219,-1530.3696 4074,-1440 
4022.0154,-1411.005 3996.5991,-1433.6756 3945,-1404 3925.1109,-1392.5614 
3928.7661,-1377.7565 3908,-1368 3870.1469,-1350.2156 3610.59,-1329.0667 
3479.4706,-1319.3571"/>
+<polygon fill="#696969" stroke="#696969" points="3479.3377,-1315.8379 
3469.1076,-1318.5937 3478.8234,-1322.8189 3479.3377,-1315.8379"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge398" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#696969" d="M2514.782,-2103.894C2701.0747,-2094.5492 
3405,-2053.2047 3405,-1962 3405,-1962 3405,-1962 3405,-1890 3405,-1668.4628 
3683.9024,-1791.6141 3824,-1620 3875.7062,-1556.662 3904.9855,-1509.552 
3862,-1440 3853.7278,-1426.6153 3841.0222,-1416.4372 3827.194,-1408.7361"/>
+<polygon fill="#696969" stroke="#696969" points="3828.4771,-1405.4611 
3817.9801,-1404.0241 3825.2899,-1411.6935 3828.4771,-1405.4611"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge399" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#696969" 
d="M2461.6169,-2087.9582C2427.7331,-2014.0993 2300.1797,-1726.8396 2247,-1476 
2242.6729,-1455.59 2240.9533,-1432.0694 2240.2993,-1414.1926"/>
+<polygon fill="#696969" stroke="#696969" points="2243.7962,-1414.0272 
2240.0208,-1404.1278 2236.7988,-1414.2209 2243.7962,-1414.0272"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge400" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#696969" 
d="M2514.5703,-2104.647C2647.6739,-2100.3347 3053.8117,-2085.2019 3389,-2052 
4222.539,-1969.4343 4976.7763,-2353.927 5205,-1548 5246.0246,-1403.1297 
5061.2177,-1414.4662 4918,-1368 4592.6543,-1262.4434 4501.6249,-1264.5821 
4162,-1224 3948.8446,-1198.5298 3698.1206,-1182.7455 3559.2253,-1175.2408"/>
+<polygon fill="#696969" stroke="#696969" points="3559.1832,-1171.7336 
3549.0101,-1174.6929 3558.8083,-1178.7235 3559.1832,-1171.7336"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge401" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2514.8035,-2105.3895C2706.8496,-2102.6698 3478.6307,-2090.0682 4112,-2052 
4478.0715,-2029.9975 4583.4195,-2087.6373 4934,-1980 5183.0824,-1903.5253 
5899,-1574.5579 5899,-1314 5899,-1314 5899,-1314 5899,-162 5899,-14.9086 
5742.5211,-78.2534 4030,-36 3839.7117,-31.305 3616.819,-24.5799 
3498.5295,-20.8201"/>
+<polygon fill="#696969" stroke="#696969" points="3498.563,-17.3195 
3488.4566,-20.499 3498.34,-24.3159 3498.563,-17.3195"/>
+</g>
+<!-- 
/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge402" class="edge">
+<title>/gnu/store/hpma4vrx80xikvwsrc323cy3prm1lvg9&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M2514.8221,-2105.4736C2708.2643,-2102.9374 3489.8318,-2090.4768 4130,-2052 
4496.0715,-2029.9975 4601.4195,-2087.6373 4952,-1980 5201.0824,-1903.5253 
5917,-1574.5579 5917,-1314 5917,-1314 5917,-1314 5917,-162 5917,-14.9086 
5760.5211,-78.2534 4048,-36 3851.3951,-31.1491 3619.9852,-24.1312 
3498.6898,-20.4556"/>
+<polygon fill="#696969" stroke="#696969" points="3498.4697,-16.9475 
3488.3682,-20.1429 3498.2576,-23.9442 3498.4697,-16.9475"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv
 -->
+<g id="edge342" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.5474,-1961.7709C2355.5486,-1959.7607 4537.8357,-1942.5648 4808,-1836 
4958.9084,-1776.475 5086.7488,-1619.006 5133.2492,-1556.3032"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="5136.1709,-1558.2377 
5139.2647,-1548.1046 5130.527,-1554.0967 5136.1709,-1558.2377"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv
 -->
+<g id="edge343" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.771,-1957.4236C2104.8907,-1948.5528 2290.3105,-1928.1158 2446,-1908 
3360.8225,-1789.8009 3621.1545,-1857.8043 4490,-1548 4523.325,-1536.1173 
4527.4062,-1523.1001 4561,-1512 4651.3296,-1482.1532 4678.6979,-1494.5741 
4772,-1476 4773.4658,-1475.7082 4774.9461,-1475.4096 4776.437,-1475.1053"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="4777.3199,-1478.4965 
4786.3927,-1473.0251 4775.8882,-1471.6444 4777.3199,-1478.4965"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv
 -->
+<g id="edge346" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/vv9zgaaqvrx53w9glv98xbl0q5k2k1xf&#45;bash&#45;static&#45;5.0.7.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.6989,-1960.4796C2277.875,-1951.3932 3601.2406,-1904.2704 
3928.6675,-1892.6112"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3929.1099,-1896.0978 
3938.979,-1892.2441 3928.8608,-1889.1022 3929.1099,-1896.0978"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge348" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.4557,-1958.1399C1856.4213,-1950.3528 1683.0974,-1931.4853 1628,-1908 
1433.5997,-1825.1368 1433.517,-1729.225 1280,-1584 1269.0725,-1573.6628 
1256.3328,-1563.1801 1244.8537,-1554.2358"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1246.8241,-1551.3359 
1236.7619,-1548.0189 1242.5594,-1556.8868 1246.8241,-1551.3359"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge349" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1970.0325,-1943.9772C1956.2361,-1917.2973 1933,-1865.3363 1933,-1818 
1933,-1818 1933,-1818 1933,-1674 1933,-1605.8221 1917.207,-1526.8337 
1907.8107,-1485.872"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1911.2038,-1485.0108 
1905.5169,-1476.0716 1904.388,-1486.6061 1911.2038,-1485.0108"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge350" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.2934,-1959.8503C1832.3469,-1954.1749 1564.2534,-1937.187 1480,-1908 
1429.6049,-1890.5421 1118.4971,-1668.3562 1096,-1620 1075.3734,-1575.6643 
1080.3066,-1544.3219 1117,-1512 1193.6523,-1444.4797 1245.7403,-1503.9213 
1344,-1476 1383.858,-1464.674 1390.2182,-1451.5907 1430,-1440 
1520.4941,-1413.634 1546.6943,-1423.0788 1639,-1404 1705.7175,-1390.2101 
1720.9014,-1379.7967 1788,-1368 1930.2625,-1342.9887 1979.9886,-1392.8294 
2111,-1332 2132.1009,-1 [...]
+<polygon fill="#9400d3" stroke="#9400d3" points="2532.6692,-1248.6522 
2542.4863,-1244.6679 2532.3272,-1241.6605 2532.6692,-1248.6522"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge351" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.7794,-1959.1362C2072.3405,-1954.319 2155.2196,-1941.5464 2218,-1908 
2238.5188,-1897.0358 2238.908,-1887.7828 2256,-1872 2291.1437,-1839.5482 
2295.8117,-1825.9442 2336,-1800 2402.8786,-1756.8254 2425.6019,-1756.3145 
2500,-1728 2695.8622,-1653.4585 2748.6104,-1645.3387 2949,-1584 
3003.0578,-1567.4531 3018.3444,-1568.5776 3071,-1548 3191.867,-1500.7658 
3227.3707,-1489.4893 3325,-1404 3347.2091,-1384.5526 3369.0845,-1358.9914 
3384.1644,-1340.0809"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3386.9602,-1342.1877 
3390.3916,-1332.164 3381.4582,-1337.86 3386.9602,-1342.1877"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge352" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.7758,-1958.6458C2104.2134,-1951.7398 2278.2075,-1934.3373 2332,-1908 
2352.8945,-1897.7699 2350.3146,-1884.3984 2370,-1872 2407.8544,-1848.1583 
2423.2675,-1854.4998 2464,-1836 2495.1354,-1821.859 2499.5538,-1810.7993 
2532,-1800 2605.4206,-1775.563 3143.6571,-1704.6297 3220,-1692 
3266.0644,-1684.3794 3590.9184,-1637.9993 3634,-1620 3684.8663,-1598.7484 
3701.6811,-1591.9189 3735,-1548 3764.84,-1508.6667 3764.18,-1489.2688 
3761,-1440 3760.4605,-143 [...]
+<polygon fill="#9400d3" stroke="#9400d3" points="3761.838,-1413.8568 
3756.9885,-1404.437 3754.9053,-1414.825 3761.838,-1413.8568"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge353" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#9400d3" d="M1937.268,-1959.5281C1843.4923,-1953.631 
1622.5674,-1937.0233 1554,-1908 1435.7204,-1857.9344 1047.3249,-1607.6892 
1133,-1512 1181.4703,-1457.8642 1385.795,-1484.154 1458,-1476 
1722.6979,-1446.108 2037.6716,-1409.5588 2172.901,-1393.8201"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2173.5718,-1397.2657 
2183.1,-1392.6328 2172.7624,-1390.3126 2173.5718,-1397.2657"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge355" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.6303,-1952.2211C2056.3233,-1943.4653 2103.8646,-1928.7851 2142,-1908 
2220.5595,-1865.1825 2384.8256,-1710.2139 2456,-1656 2586.4136,-1556.6634 
2612.4049,-1520.8833 2755,-1440 2966.2675,-1320.1642 3027.8214,-1304.4472 
3257,-1224 3293.0731,-1211.3375 3333.7088,-1199.723 3368.5883,-1190.5366"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3369.4728,-1193.9231 
3378.2648,-1188.0111 3367.7051,-1187.15 3369.4728,-1193.9231"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge358" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.1833,-1960.5022C1807.1176,-1955.4595 1418.8862,-1937.7288 1297,-1908 
1252.8605,-1897.2341 320,-1488.6311 320,-1458 320,-1458 320,-1458 320,-162 
320,-52.6441 441.7525,-93.3701 549,-72 688.6111,-44.1811 2875.1999,-22.8317 
3331.8363,-18.7187"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3332.0117,-22.2174 
3341.9798,-18.6277 3331.9488,-15.2177 3332.0117,-22.2174"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge359" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.2578,-1960.1864C1809.7845,-1954.7496 1434.4627,-1937.1377 1315,-1908 
1270.8605,-1897.2341 338,-1488.6311 338,-1458 338,-1458 338,-1458 338,-162 
338,-52.6441 459.7525,-93.3701 567,-72 706.083,-44.2863 2876.6865,-22.9933 
3331.7476,-18.7662"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3331.8906,-22.2651 
3341.8576,-18.6724 3331.8256,-15.2654 3331.8906,-22.2651"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge354" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.1425,-1960.6135C1822.417,-1956.4751 1510.4957,-1942.3036 1414,-1908 
1196.5747,-1830.7067 1090.8837,-1823.4511 982,-1620 913.5106,-1492.0264 
930.4786,-1407.8385 1023,-1296 1151.2,-1141.0338 1255.8305,-1196.3544 
1452,-1152 1595.4576,-1119.5639 1630.641,-1108.1546 1775,-1080 
1965.1883,-1042.9073 2012.3928,-1029.2113 2205,-1008 2545.0055,-970.5562 
2952.4402,-958.8243 3127.3272,-955.3591"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3127.5692,-958.8552 
3137.4994,-955.1617 3127.4333,-951.8565 3127.5692,-958.8552"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge356" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2010.4969,-1943.9612C2049.064,-1920.9289 2110,-1876.8961 2110,-1818 
2110,-1818 2110,-1818 2110,-1674 2110,-1535.8207 2083.1604,-1479.3365 
2165,-1368 2246.9458,-1256.5191 2312.5446,-1275.4035 2441,-1224 
2548.3511,-1181.0417 2576.8752,-1170.5798 2691,-1152 2923.6411,-1114.1255 
3650.7338,-1101.8969 3893.9225,-1098.8547"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3894.1432,-1102.3523 
3904.0993,-1098.7292 3894.0569,-1095.3529 3894.1432,-1102.3523"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge360" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.8851,-1944.1645C2066.7039,-1921.1885 2128,-1877.0698 2128,-1818 
2128,-1818 2128,-1818 2128,-1674 2128,-1535.8207 2101.1604,-1479.3365 
2183,-1368 2264.9458,-1256.5191 2330.5446,-1275.4035 2459,-1224 
2566.3511,-1181.0417 2594.8752,-1170.5798 2709,-1152 2939.2177,-1114.5201 
3653.6397,-1102.1544 3894.1275,-1098.9528"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3894.241,-1102.4517 
3904.1941,-1098.8204 3894.1489,-1095.4523 3894.241,-1102.4517"/>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge357" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.3176,-1961.5071C1779.7832,-1959.3754 1231.4033,-1949.1028 1062,-1908 
966.0911,-1884.7294 308.5813,-1627.4247 250,-1548 158.5397,-1423.9979 
151.816,-1056.6112 250,-936 553.5495,-563.1137 2159.5255,-472.2207 
2605.8426,-454.0153"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2605.9995,-457.5119 
2615.8501,-453.6114 2605.7171,-450.5176 2605.9995,-457.5119"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv
 -->
+<g id="node41" class="node">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv</title>
+<polygon fill="none" stroke="#000000" points="1607.5,-1548 1450.5,-1548 
1450.5,-1512 1607.5,-1512 1607.5,-1548"/>
+<text text-anchor="middle" x="1529" y="-1526.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;cross&#45;boot0@7.4.0</text>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv
 -->
+<g id="edge347" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.4112,-1958.4728C1863.7941,-1951.7331 1716.4514,-1935.2245 1673,-1908 
1550.1693,-1831.0405 1531.7977,-1632.4558 1529.2895,-1558.3994"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1532.7781,-1557.9168 
1529.0166,-1548.0122 1525.7805,-1558.1006 1532.7781,-1557.9168"/>
+</g>
+<!-- /gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv -->
+<g id="node43" class="node">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv</title>
+<polygon fill="none" stroke="#000000" points="3286.5,-1548 3193.5,-1548 
3193.5,-1512 3286.5,-1512 3286.5,-1548"/>
+<text text-anchor="middle" x="3240" y="-1526.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bison@3.4.1</text>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv
 -->
+<g id="edge341" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.6492,-1956.6167C2089.5949,-1947.6752 2215.853,-1928.6868 2256,-1908 
2276.6804,-1897.3438 2275.811,-1886.505 2294,-1872 2339.1032,-1836.032 
2350.1424,-1825.2743 2402,-1800 2475.2412,-1764.3038 3007.8,-1600.7703 
3183.7499,-1547.11"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3184.7965,-1550.45 
3193.3412,-1544.186 3182.7552,-1543.7542 3184.7965,-1550.45"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv
 -->
+<g id="node44" class="node">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv</title>
+<polygon fill="none" stroke="#000000" points="4372,-1548 4218,-1548 4218,-1512 
4372,-1512 4372,-1548"/>
+<text text-anchor="middle" x="4295" y="-1526.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">python&#45;minimal@3.5.7</text>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv
 -->
+<g id="edge344" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.7681,-1958.127C2094.9148,-1951.1379 2245.1546,-1934.6191 2370,-1908 
2426.1251,-1896.0332 2437.9048,-1884.1065 2494,-1872 3044.3737,-1753.2177 
3197.9476,-1812.2613 3748,-1692 3927.0842,-1652.8457 4133.1432,-1585.6273 
4233.5605,-1551.3919"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="4234.9059,-1554.6309 
4243.2358,-1548.0838 4232.6412,-1548.0073 4234.9059,-1554.6309"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv
 -->
+<g id="node45" class="node">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv</title>
+<polygon fill="none" stroke="#000000" points="3211.5,-1692 3024.5,-1692 
3024.5,-1656 3211.5,-1656 3211.5,-1692"/>
+<text text-anchor="middle" x="3118" y="-1670.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">linux&#45;libre&#45;headers@4.19.56</text>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv
 -->
+<g id="edge361" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2022.5202,-1957.1953C2096.546,-1948.4172 2245.8056,-1928.7697 2294,-1908 
2318.4893,-1897.4462 2319.1681,-1885.7774 2342,-1872 2406.0016,-1833.3795 
2423.0625,-1823.5717 2494,-1800 2672.3196,-1740.7466 2889.0174,-1704.6218 
3014.4619,-1687.0401"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3015.027,-1690.4953 
3024.4502,-1685.6524 3014.0636,-1683.5619 3015.027,-1690.4953"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv
 -->
+<g id="node50" class="node">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv</title>
+<polygon fill="none" stroke="#000000" points="1867,-1620 1709,-1620 1709,-1584 
1867,-1584 1867,-1620"/>
+<text text-anchor="middle" x="1788" y="-1598.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gettext&#45;boot0@0.19.8.1</text>
+</g>
+<!-- 
/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv
 -->
+<g id="edge345" class="edge">
+<title>/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv&#45;&gt;/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M1937.1787,-1954.0317C1842.7595,-1935.2408 1625,-1884.6756 1625,-1818 
1625,-1818 1625,-1818 1625,-1746 1625,-1687.5901 1684.5139,-1647.1917 
1731.6193,-1624.3643"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1733.2864,-1627.4483 
1740.8536,-1620.033 1730.3138,-1621.1108 1733.2864,-1627.4483"/>
+</g>
+<!-- 
/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv
 -->
+<g id="edge377" class="edge">
+<title>/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/rmfsg2dsb88b136arb40z3kgd57kcnzs&#45;glibc&#45;2.29.drv</title>
+<path fill="none" stroke="#696969" 
d="M1429.6544,-2022.3118C1572.2295,-2006.6872 1819.4635,-1979.593 
1927.2355,-1967.7824"/>
+<polygon fill="#696969" stroke="#696969" points="1927.6623,-1971.2567 
1937.2214,-1966.6881 1926.8996,-1964.2983 1927.6623,-1971.2567"/>
+</g>
+<!-- 
/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge375" class="edge">
+<title>/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#696969" d="M1280.381,-2015.976C1235.1095,-1993.6355 
1170,-1950.9165 1170,-1890 1170,-1890 1170,-1890 1170,-1818 1170,-1681.0094 
1039.5919,-1612.2065 1133,-1512 1144.3013,-1499.8762 1599.3685,-1474.1104 
1803.5743,-1463.1297"/>
+<polygon fill="#696969" stroke="#696969" points="1803.9006,-1466.6173 
1813.6986,-1462.5863 1803.5254,-1459.6273 1803.9006,-1466.6173"/>
+</g>
+<!-- 
/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge378" class="edge">
+<title>/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M1252.7013,-2015.9245C999.636,-1948.8267 
150,-1705.1504 150,-1458 150,-1458 150,-1458 150,-162 150,-102.2061 
194.36,-93.8974 250,-72 323.784,-42.962 2838.2558,-22.3829 3331.522,-18.6202"/>
+<polygon fill="#696969" stroke="#696969" points="3331.7908,-22.1183 
3341.7639,-18.5423 3331.7375,-15.1185 3331.7908,-22.1183"/>
+</g>
+<!-- 
/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv
 -->
+<g id="edge376" class="edge">
+<title>/gnu/store/nxknxk4axfvzba7f3pdlcfamz4zw1nzf&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M1330.4533,-2015.7646C1361.4618,-1939.8993 1480.3671,-1648.9855 
1517.7098,-1557.6226"/>
+<polygon fill="#696969" stroke="#696969" points="1521.013,-1558.7918 
1521.5567,-1548.2109 1514.5333,-1556.1433 1521.013,-1558.7918"/>
+</g>
+<!-- 
/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge296" class="edge">
+<title>/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1282.1766,-1522.6666C1405.8245,-1509.7455 1662.7079,-1482.9014 
1803.5027,-1468.1884"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="1804.2689,-1471.6275 
1813.8509,-1467.107 1803.5413,-1464.6654 1804.2689,-1471.6275"/>
+</g>
+<!-- 
/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge298" class="edge">
+<title>/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1141.8098,-1526.8392C1022.898,-1520.7569 787.2249,-1505.3532 710,-1476 
662.2631,-1457.8552 547,-1365.0691 547,-1314 547,-1314 547,-1314 547,-162 
547,-113.4273 566.2208,-95.0053 609,-72 670.4864,-38.9345 2872.1099,-21.7852 
3331.5142,-18.5624"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.7436,-22.061 
3341.7188,-18.4911 3331.6946,-15.0612 3331.7436,-22.061"/>
+</g>
+<!-- 
/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/sbsq9bzfi41a52x50gpv6dl6plyb9kc3&#45;guile&#45;bootstrap&#45;2.0.drv
 -->
+<g id="edge297" class="edge">
+<title>/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/sbsq9bzfi41a52x50gpv6dl6plyb9kc3&#45;guile&#45;bootstrap&#45;2.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1141.8306,-1526.1221C1032.7369,-1519.4911 816.0561,-1503.9108 634,-1476 
632.5258,-1475.774 631.0386,-1475.5382 629.5416,-1475.2937"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="630.0055,-1471.822 
619.5551,-1473.5654 628.8118,-1478.7195 630.0055,-1471.822"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge194" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1950.8424,-1439.8391C2005.2139,-1420.4357 2095.0479,-1389.5647 2174,-1368 
2246.4062,-1348.2232 2266.6265,-1351.8962 2339,-1332 2412.9337,-1311.6748 
2496.4462,-1282.9201 2550.757,-1263.4241"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2551.9938,-1266.6988 
2560.2155,-1260.0163 2549.6211,-1260.1131 2551.9938,-1266.6988"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge195" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1988.0291,-1449.6619C2257.6239,-1423.8324 3075.922,-1345.4326 
3328.7593,-1321.2087"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3329.3238,-1324.6707 
3338.9444,-1320.2329 3328.6561,-1317.7026 3329.3238,-1324.6707"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge196" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1988.1976,-1454.6119C2301.1351,-1442.4524 3365.2617,-1401.1048 
3671.1421,-1389.2195"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3671.4125,-1392.7117 
3681.2691,-1388.826 3671.1407,-1385.717 3671.4125,-1392.7117"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge197" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1986.1064,-1439.9243C2044.0545,-1427.6167 2119.6708,-1411.5566 
2173.2668,-1400.1734"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2174.2898,-1403.5343 
2183.3444,-1398.033 2172.8354,-1396.687 2174.2898,-1403.5343"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge200" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1934.8064,-1439.9326C1953.8056,-1429.639 1977.876,-1416.3644 1999,-1404 
2025.184,-1388.6738 2029.3548,-1380.4995 2057,-1368 2258.3953,-1276.9414 
2315.3977,-1262.7429 2533,-1224 2686.4319,-1196.6823 3139.1043,-1179.6703 
3346.7384,-1173.0984"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3346.8552,-1176.5966 
3356.7403,-1172.784 3346.6352,-1169.6001 3346.8552,-1176.5966"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge203" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1813.7241,-1448.8159C1631.3632,-1426.7051 1227,-1363.1613 1227,-1242 
1227,-1242 1227,-1242 1227,-162 1227,-6.973 1410.603,-94.4217 1564,-72 
1739.6056,-46.3322 2994.6194,-24.5916 3331.8163,-19.2536"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3332.0552,-22.7504 
3341.9988,-19.093 3331.9448,-15.7512 3332.0552,-22.7504"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge204" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1813.8371,-1447.6146C1635.3082,-1424.4591 1245,-1361.037 1245,-1242 
1245,-1242 1245,-1242 1245,-162 1245,-6.973 1428.603,-94.4217 1582,-72 
1756.4796,-46.4968 2996.5694,-24.8706 3331.7205,-19.3583"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3331.9023,-22.8559 
3341.8435,-19.1922 3331.7874,-15.8568 3331.9023,-22.8559"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge198" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1900.3765,-1439.746C1900.2297,-1407.2086 1904.4045,-1338.6127 1939,-1296 
1986.6221,-1237.3419 2023.8376,-1254.4171 2093,-1224 2246.5979,-1156.4489 
2285.1852,-1139.7041 2442,-1080 2487.3198,-1062.7454 2503.4276,-1068.9667 
2545,-1044 2565.2225,-1031.8552 2562.4177,-1017.5209 2584,-1008 
2608.4529,-997.2128 2960.3752,-971.5818 3127.3186,-959.9383"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3127.5811,-963.4286 
3137.3139,-959.2425 3127.0949,-956.4455 3127.5811,-963.4286"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge199" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1870.5042,-1439.7757C1858.3178,-1430.7056 1845.6228,-1418.5508 1839,-1404 
1808.6764,-1337.3766 1882.6069,-1257.6197 1913,-1224 2019.2253,-1106.4973 
2372.5763,-1013.3341 2390,-1008 2530.636,-964.9453 2567.2193,-955.4982 
2713,-936 3053.4523,-890.4643 3145.3736,-951.3335 3485,-900 3611.1988,-880.9254 
3649.8514,-887.0539 3763,-828 3784.7955,-816.6246 3782.7825,-802.5274 3805,-792 
3823.5225,-783.2234 3928.6908,-765.5687 4009.986,-752.8312"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="4010.9367,-756.2253 
4020.2773,-751.225 4009.8571,-749.3091 4010.9367,-756.2253"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge201" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1930.2184,-1439.8172C1942.1119,-1430.6828 1954.5573,-1418.4662 1961,-1404 
1980.6118,-1359.9644 1921.3968,-1334.0448 1951,-1296 1990.9831,-1244.6155 
2034.2582,-1288.0787 2093,-1260 2117.0593,-1248.4996 2116.3733,-1234.2292 
2141,-1224 2192.5302,-1202.596 2582.438,-1157.1336 2638,-1152 
2884.0857,-1129.2631 3645.0336,-1106.9922 3894.1511,-1100.141"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3894.3125,-1103.638 
3904.2127,-1099.865 3894.1205,-1096.6406 3894.3125,-1103.638"/>
+</g>
+<!-- 
/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge202" class="edge">
+<title>/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1863.6998,-1439.9669C1849.8542,-1431.189 1835.6642,-1419.2027 1828,-1404 
1799.986,-1348.4318 1625.2786,-1644.4326 1837,-1080 1871.4202,-988.2384 
1920.9951,-988.1069 2004,-936 2057.3244,-902.5253 2070.1649,-893.0945 2126,-864 
2160.218,-846.1697 2175.3562,-852.6989 2205,-828 2339.8865,-715.6136 
2283.4635,-599.1739 2431,-504 2459.8151,-485.4117 2537.8381,-471.4943 
2605.7026,-462.4474"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2606.1732,-465.9157 
2615.6346,-461.148 2605.265,-458.9749 2606.1732,-465.9157"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge34" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2675.5796,-1236.3202C2821.4409,-1223.8771 3170.2252,-1194.123 
3346.7679,-1179.0625"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3347.1856,-1182.5396 
3356.8519,-1178.2022 3346.5906,-1175.565 3347.1856,-1182.5396"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge37" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2542.2136,-1234.8256C2450.6315,-1223.995 2295.2263,-1203.1301 2274,-1188 
1991.8824,-986.9072 2023,-796.4515 2023,-450 2023,-450 2023,-450 2023,-162 
2023,-119.3959 2021.5663,-97.0885 2056,-72 2107.4686,-34.4999 
3043.3167,-21.7617 3331.3748,-18.7613"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.791,-22.2573 
3341.7544,-18.6545 3331.7189,-15.2577 3331.791,-22.2573"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge38" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2542.1385,-1233.3384C2455.2106,-1222.1693 2312.292,-1202.4641 2292,-1188 
2009.8824,-986.9072 2041,-796.4515 2041,-450 2041,-450 2041,-450 2041,-162 
2041,-119.3959 2039.5663,-97.0885 2074,-72 2125.059,-34.7983 3046.4758,-21.966 
3331.6427,-18.8348"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.9592,-22.3317 
3341.9206,-18.7232 3331.8831,-15.3321 3331.9592,-22.3317"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge32" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2620.5603,-1223.7867C2650.4125,-1178.486 2735.0628,-1060.6029 2839,-1008 
2887.9801,-983.211 3032.5133,-967.7908 3127.1707,-960.0606"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3127.6245,-963.5356 
3137.3122,-959.2462 3127.0641,-956.558 3127.6245,-963.5356"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge33" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2674.5836,-1223.9617C2923.9092,-1155.3389 3800.1693,-913.7116 3827,-900 
3895.7302,-864.876 3895.7817,-829.9372 3963,-792 3986.0275,-779.0036 
4012.7841,-768.0179 4036.9975,-759.4182"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="4038.1931,-762.7081 
4046.491,-756.1205 4035.8962,-756.0957 4038.1931,-762.7081"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge35" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2675.8729,-1228.7005C2777.9082,-1208.9069 2978.7823,-1171.8989 3151,-1152 
3422.5671,-1120.6218 3746.8136,-1106.012 3894.1261,-1100.6117"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3894.5569,-1104.0985 
3904.4236,-1100.2387 3894.3035,-1097.103 3894.5569,-1104.0985"/>
+</g>
+<!-- 
/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge36" class="edge">
+<title>/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2542.4004,-1235.8133C2470.594,-1228.0025 2362.1109,-1212.5418 2329,-1188 
2259.2356,-1136.2905 2232.1212,-1092.2912 2253,-1008 2261.6996,-972.8781 
2273.4357,-967.6343 2291,-936 2326.9666,-871.222 2334.9771,-854.3534 2375,-792 
2406.7046,-742.6061 2419.3981,-733.4596 2451,-684 2500.7465,-606.1426 
2483.1977,-562.1458 2555,-504 2572.6437,-489.7121 2594.1764,-479.1621 
2615.8111,-471.386"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2617.0749,-474.653 
2625.4102,-468.1129 2614.8157,-468.0276 2617.0749,-474.653"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge141" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3338.9418,-1308.1079C3193.249,-1294.9131 2841.3571,-1263.0437 
2685.4961,-1248.928"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2685.7926,-1245.4406 
2675.5176,-1248.0242 2685.1611,-1252.412 2685.7926,-1245.4406"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge144" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3416.4673,-1295.7436C3422.8667,-1285.6102 3430.2872,-1272.5486 3435,-1260 
3442.54,-1239.9237 3447.127,-1216.0817 3449.782,-1197.9824"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3453.2517,-1198.4414 
3451.1297,-1188.0612 3446.3154,-1197.4991 3453.2517,-1198.4414"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge147" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3338.9151,-1303.2811C3200.5271,-1277.238 2871.5502,-1200.9213 2644,-1044 
2500.895,-945.3131 2135,-623.8336 2135,-450 2135,-450 2135,-450 2135,-162 
2135,-98.1421 2187.2748,-94.5992 2247,-72 2347.2276,-34.0752 3081.6706,-21.8876 
3331.8588,-18.8543"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3332.0231,-22.3527 
3341.9805,-18.7334 3331.9394,-15.3532 3332.0231,-22.3527"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge148" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M3338.7853,-1301.335C3202.919,-1273.5582 
2884.1324,-1197.1851 2662,-1044 2518.895,-945.3131 2153,-623.8336 2153,-450 
2153,-450 2153,-450 2153,-162 2153,-98.1421 2205.2748,-94.5992 2265,-72 
2364.1824,-34.4707 3084.421,-22.1446 3331.8559,-18.9522"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3331.9153,-22.4518 
3341.8698,-18.8247 3331.826,-15.4524 3331.9153,-22.4518"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge142" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3395.1885,-1295.9922C3386.2258,-1277.7674 3371.8635,-1248.8149 3359,-1224 
3312.628,-1134.5442 3255.5155,-1029.687 3228.9289,-981.167"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3231.9081,-979.3206 
3224.0308,-972.2355 3225.7704,-982.6865 3231.9081,-979.3206"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge143" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3469.2055,-1303.5145C3590.2452,-1282.0658 3855.2356,-1225.6833 4052,-1116 
4095.2443,-1091.8941 4115.5593,-1088.6257 4137,-1044 4182.1429,-950.0417 
4141.5076,-821.305 4119.7163,-765.5728"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4122.8639,-764.0182 
4115.8917,-756.0408 4116.3673,-766.625 4122.8639,-764.0182"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge145" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3451.6175,-1295.9555C3555.8728,-1256.4482 3803.9874,-1162.4258 
3916.621,-1119.7436"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3918.0064,-1122.9616 
3926.1172,-1116.1451 3915.5258,-1116.4158 3918.0064,-1122.9616"/>
+</g>
+<!-- 
/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge146" class="edge">
+<title>/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3388.886,-1295.9031C3369.3851,-1272.8665 3336.1691,-1234.7607 3321,-1224 
3189.485,-1130.7058 3137.7369,-1139.8236 2988,-1080 2837.1863,-1019.7462 
2645,-1116.4048 2645,-954 2645,-954 2645,-954 2645,-594 2645,-548.656 
2674.8384,-503.5999 2697.1226,-476.2735"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2700.0006,-478.2889 
2703.7544,-468.3814 2694.6415,-473.7856 2700.0006,-478.2889"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge149" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3681.0705,-1376.8281C3475.9422,-1351.0303 2895.2939,-1278.0055 
2685.6733,-1251.6428"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2686.0347,-1248.1607 
2675.6761,-1250.3855 2685.1612,-1255.106 2686.0347,-1248.1607"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge150" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3681.4798,-1371.0816C3622.3301,-1358.9136 3539.0636,-1341.7845 
3479.2005,-1329.4698"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3479.5554,-1325.9696 
3469.0552,-1327.3828 3478.1449,-1332.826 3479.5554,-1325.9696"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge153" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3749.4673,-1367.7572C3740.1002,-1333.9774 3715.3254,-1261.7048 3667,-1224 
3649.4447,-1210.3028 3603.7219,-1197.9126 3559.0256,-1188.4657"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3559.7169,-1185.0347 
3549.2149,-1186.4344 3558.2976,-1191.8893 3559.7169,-1185.0347"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge156" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3826.8337,-1380.6214C3937.3397,-1372.2157 4141.668,-1354.5646 4212,-1332 
4516.7766,-1234.2185 4825,-1274.0781 4825,-954 4825,-954 4825,-954 4825,-162 
4825,-13.4039 4649.6775,-95.8012 4503,-72 4309.3833,-40.582 3718.4658,-24.7861 
3498.5483,-19.7943"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.4358,-16.291 
3488.3595,-19.5647 3498.2781,-23.2892 3498.4358,-16.291"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge157" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3826.6873,-1381.4589C3941.0689,-1373.4288 4157.2394,-1355.3438 4230,-1332 
4534.7766,-1234.2185 4843,-1274.0781 4843,-954 4843,-954 4843,-954 4843,-162 
4843,-13.4039 4667.6775,-95.8012 4521,-72 4324.8357,-40.1687 3720.8465,-24.3731 
3498.3454,-19.6028"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.1137,-16.0972 
3488.0416,-19.384 3497.965,-23.0956 3498.1137,-16.0972"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge151" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3754.4222,-1367.8592C3754.2994,-1349.2789 3752.548,-1319.824 3744,-1296 
3731.0943,-1260.0307 3724.9324,-1250.0792 3697,-1224 3660.8017,-1190.2033 
3369.5473,-1035.6759 3257.6079,-976.8377"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3259.0826,-973.6588 
3248.602,-972.1071 3255.8274,-979.8559 3259.0826,-973.6588"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge152" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3826.7881,-1378.1477C3912.3973,-1368.2839 4048.9391,-1350.4086 4097,-1332 
4240.3376,-1277.0979 4351,-1251.4923 4351,-1098 4351,-1098 4351,-1098 
4351,-1026 4351,-901.0076 4284.8079,-878.9348 4195,-792 4182.8357,-780.2249 
4167.6819,-769.7376 4153.4462,-761.2095"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4155.1426,-758.1473 
4144.7361,-756.1587 4151.6311,-764.2029 4155.1426,-758.1473"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge154" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3826.6691,-1378.1726C3895.4981,-1366.1888 3993.3291,-1335.9739 4028,-1260 
4035.3465,-1243.9017 4029.9532,-1168.3042 4023,-1152 4018.5135,-1141.4798 
4011.091,-1131.6596 4003.3636,-1123.3555"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4005.7802,-1120.8217 
3996.2568,-1116.179 4000.8064,-1125.7473 4005.7802,-1120.8217"/>
+</g>
+<!-- 
/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge155" class="edge">
+<title>/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3826.8665,-1383.5138C3909.1542,-1379.0598 4046.2721,-1366.6362 4159,-1332 
4227.3984,-1310.9842 4248.6929,-1306.5911 4303,-1260 4437.2242,-1144.8465 
4441.4113,-1010.2664 4342,-864 4317.0858,-827.3431 4244.2847,-738.482 4204,-720 
4136.1383,-688.8661 3607.3371,-690.9665 3533,-684 3413.1241,-672.7659 
3105.8901,-661.1998 2996,-612 2928.6826,-581.8608 2933.706,-541.1691 2870,-504 
2847.1315,-490.6574 2820.4027,-479.7158 2795.9468,-471.2553"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2796.9363,-467.8954 
2786.3422,-468.0174 2794.7001,-474.5286 2796.9363,-467.8954"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge158" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2296.7318,-1375.5205C2354.7257,-1364.3148 2440.4889,-1346.2365 2471,-1332 
2495.1655,-1320.7244 2496.8707,-1310.8797 2519,-1296 2534.6741,-1285.4607 
2552.4106,-1274.603 2567.9696,-1265.4127"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2569.9895,-1268.2857 
2576.8467,-1260.2092 2566.4497,-1262.2466 2569.9895,-1268.2857"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge161" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2296.7467,-1374.6085C2480.437,-1337.7338 3047,-1224 3047,-1224 
3148.3329,-1207.109 3264.5992,-1192.0843 3346.6696,-1182.1991"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3347.2448,-1185.6553 
3356.7568,-1180.9892 3346.4112,-1178.7051 3347.2448,-1185.6553"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge164" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2183.1623,-1384.6241C2090.6502,-1381.2543 1913.4457,-1369.8518 1866,-1332 
1725.0915,-1219.5845 1719,-1134.2566 1719,-954 1719,-954 1719,-954 1719,-162 
1719,-85.3942 1792.6416,-94.068 1866,-72 2005.9625,-29.8959 3029.1867,-20.3254 
3331.2908,-18.4258"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3331.7526,-21.9232 
3341.7308,-18.3615 3331.7093,-14.9233 3331.7526,-21.9232"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge165" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2183.3254,-1384.1851C2094.8267,-1380.3103 1929.5679,-1368.3537 1884,-1332 
1743.0915,-1219.5845 1737,-1134.2566 1737,-954 1737,-954 1737,-954 1737,-162 
1737,-85.3942 1810.6416,-94.068 1884,-72 2022.9339,-30.2053 3032.1955,-20.4678 
3331.5622,-18.469"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3331.9328,-21.9667 
3341.9096,-18.4011 3331.8868,-14.9669 3331.9328,-21.9667"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge159" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2244.79,-1367.8434C2254.2485,-1335.1562 
2278.2066,-1265.9165 2321,-1224 2461.4409,-1086.4367 2517.2466,-1059.3901 
2707,-1008 2783.9755,-987.153 3003.7606,-968.9006 3127.1898,-959.918"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3127.644,-963.3944 
3137.3657,-959.1826 3127.1394,-956.4126 3127.644,-963.3944"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge160" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2240.6874,-1367.7984C2243.6803,-1315.176 2259.6745,-1161.4322 2345,-1080 
2412.1352,-1015.9281 2450.7924,-1029.7931 2541,-1008 2796.4939,-946.2757 
2866.227,-959.7043 3128,-936 3264.1218,-923.6738 3617.5737,-956.5614 3742,-900 
3803.2275,-872.1674 3788.9691,-824.2305 3848,-792 3875.7892,-776.8273 
3948.6052,-762.3909 4010.1313,-752.2686"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="4010.9823,-755.6763 
4020.2921,-750.6187 4009.8604,-748.7668 4010.9823,-755.6763"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge162" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2266.1042,-1367.8063C2315.7154,-1334.1085 2428.0558,-1261.9671 2533,-1224 
2572.9996,-1209.5288 2866.7687,-1157.0892 2909,-1152 3099.6751,-1129.0221 
3680.8181,-1107.82 3894.2704,-1100.6081"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3894.582,-1104.0997 
3904.4585,-1100.2651 3894.3463,-1097.1037 3894.582,-1104.0997"/>
+</g>
+<!-- 
/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge163" class="edge">
+<title>/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" 
d="M2183.3162,-1383.3301C2100.9159,-1378.3593 1953.4556,-1365.015 1913,-1332 
1853.2719,-1283.2571 1851,-1247.0929 1851,-1170 1851,-1170 1851,-1170 
1851,-1098 1851,-1044.7459 2205.8647,-861.8214 2247,-828 2281.9564,-799.2589 
2291.4448,-791.8987 2319,-756 2399.78,-650.7604 2366.9252,-574.9931 2479,-504 
2500.6511,-490.2853 2554.5184,-477.6459 2605.9477,-468.0488"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2606.6475,-471.4789 
2615.8517,-466.2316 2605.3842,-464.5938 2606.6475,-471.4789"/>
+</g>
+<!-- 
/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge126" class="edge">
+<title>/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M3450.2004,-1151.8948C3442.4936,-1101.0237 3421.07,-952.3985 3414,-828 
3404.4673,-660.2701 3415,-618.0006 3415,-450 3415,-450 3415,-450 3415,-162 
3415,-121.876 3415,-75.4631 3415,-46.4177"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3418.5001,-46.1853 
3415,-36.1854 3411.5001,-46.1854 3418.5001,-46.1853"/>
+</g>
+<!-- 
/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge127" class="edge">
+<title>/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M3426.2633,-1151.908C3411.8732,-1141.8226 3394.0414,-1128.7546 3379,-1116 
3325.8511,-1070.9315 3268.9169,-1012.499 3237.767,-979.5468"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3240.1905,-977.0151 
3230.7876,-972.1329 3235.0937,-981.8132 3240.1905,-977.0151"/>
+</g>
+<!-- 
/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge128" class="edge">
+<title>/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M3549.1666,-1156.7102C3648.3564,-1143.0026 3801.2727,-1121.8702 
3894.053,-1109.0483"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3894.801,-1112.4783 
3904.2277,-1107.6422 3893.8427,-1105.5442 3894.801,-1112.4783"/>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge43" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3137.4853,-950.131C3061.9182,-944.5427 
2944.0939,-931.1999 2847,-900 2685.2616,-848.0274 2229,-619.8836 2229,-450 
2229,-450 2229,-450 2229,-162 2229,-57.1789 2344.7951,-95.2728 2447,-72 
2613.7081,-34.0394 3128.6622,-22.2451 3331.6241,-19.0543"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3331.9795,-22.5494 
3341.9243,-18.8956 3331.8716,-15.5502 3331.9795,-22.5494"/>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge44" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3137.2597,-949.007C3065.4732,-942.8301 
2956.1097,-929.277 2865,-900 2703.2616,-848.0274 2247,-619.8836 2247,-450 
2247,-450 2247,-450 2247,-162 2247,-57.1789 2362.7951,-95.2728 2465,-72 
2629.3109,-34.5853 3131.9243,-22.5897 3331.8191,-19.1974"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3332.0276,-22.6945 
3341.9679,-19.0281 3331.9109,-15.6955 3332.0276,-22.6945"/>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge39" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3290.7261,-948.3856C3443.2747,-937.0121 
3771.9675,-911.3686 3794,-900 3850.2917,-870.9538 3832.9901,-825.0965 3887,-792 
3908.0698,-779.0887 3961.342,-765.8979 4010.3025,-755.7855"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4011.2476,-759.165 
4020.3483,-753.7404 4009.8511,-752.3056 4011.2476,-759.165"/>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge46" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3137.3551,-939.4651C2990.3049,-909.3785 
2683,-834.9103 2683,-738 2683,-738 2683,-738 2683,-594 2683,-552.3681 
2698.0328,-506.14 2709.1881,-477.567"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2712.4578,-478.817 
2712.9412,-468.2332 2705.9632,-476.2055 2712.4578,-478.817"/>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="node23" class="node">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<polygon fill="none" stroke="#000000" points="3632.5,-612 3479.5,-612 
3479.5,-576 3632.5,-576 3632.5,-612"/>
+<text text-anchor="middle" x="3556" y="-590.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc&#45;mesboot0@2.2.5</text>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="edge40" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3248.3635,-935.7653C3264.828,-926.2183 
3284.3245,-913.6768 3300,-900 3403.0458,-810.093 3499.4172,-676.8535 
3538.1165,-620.5987"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3541.07,-622.4801 
3543.8245,-612.2496 3535.2914,-618.5294 3541.07,-622.4801"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="node24" class="node">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv</title>
+<polygon fill="none" stroke="#000000" points="3291,-900 3085,-900 3085,-864 
3291,-864 3291,-900"/>
+<text text-anchor="middle" x="3188" y="-878.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc&#45;headers&#45;mesboot@2.16.0</text>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge41" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3207.4391,-935.8314C3204.5973,-927.9617 
3201.2063,-918.5712 3198.0581,-909.8533"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3201.3377,-908.63 
3194.6492,-900.4133 3194.7538,-911.0076 3201.3377,-908.63"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv 
-->
+<g id="node25" class="node">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv</title>
+<polygon fill="none" stroke="#000000" points="3569,-828 3423,-828 3423,-792 
3569,-792 3569,-828"/>
+<text text-anchor="middle" x="3496" y="-806.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;mesboot1@4.7.4</text>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv
 -->
+<g id="edge42" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3280.3137,-935.9295C3308.9958,-926.9223 
3342.4581,-914.774 3371,-900 3406.2049,-881.777 3442.553,-854.4797 
3466.9152,-834.7281"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3469.1871,-837.3914 
3474.6987,-828.343 3464.7474,-831.9794 3469.1871,-837.3914"/>
+</g>
+<!-- 
/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="node26" class="node">
+<title>/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<polygon fill="none" stroke="#000000" points="4257.5,-396 4108.5,-396 
4108.5,-360 4257.5,-360 4257.5,-396"/>
+<text text-anchor="middle" x="4183" y="-374.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">diffutils&#45;mesboot@2.7</text>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge45" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3288.8143,-935.9181C3473.0671,-890.5632 
3943.6547,-769.4895 4080,-684 4151.0669,-639.4406 4175.7242,-619.6595 4202,-540 
4217.1138,-494.18 4225.1027,-478.7057 4213,-432 4210.6154,-422.7976 
4206.2854,-413.4938 4201.6432,-405.2621"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4204.5146,-403.2459 
4196.3562,-396.4863 4198.5187,-406.8582 4204.5146,-403.2459"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv 
-->
+<g id="node27" class="node">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv</title>
+<polygon fill="none" stroke="#000000" points="3329,-756 3181,-756 3181,-720 
3329,-720 3329,-756"/>
+<text text-anchor="middle" x="3255" y="-734.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">make&#45;mesboot@3.82</text>
+</g>
+<!-- 
/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv
 -->
+<g id="edge47" class="edge">
+<title>/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv</title>
+<path fill="none" stroke="#ff00ff" d="M3147.8028,-935.8792C3116.8639,-925.9394 
3084.8834,-913.0153 3076,-900 3066.9802,-886.7847 3068.6296,-878.2013 3076,-864 
3101.6874,-814.5051 3156.7352,-780.3539 3199.0469,-760.2177"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3200.5326,-763.3868 
3208.1384,-756.011 3197.593,-757.0339 3200.5326,-763.3868"/>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge51" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4195.6688,-721.8578C4231.6079,-713.5116 
4272.8812,-701.3316 4308,-684 4366.2009,-655.2771 4423,-658.9026 4423,-594 
4423,-594 4423,-594 4423,-162 4423,-61.6805 4313.4834,-95.6852 4216,-72 
4081.1514,-39.2364 3674.4568,-24.9254 3498.0415,-20.0653"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3498.123,-16.5664 
3488.0315,-19.7929 3497.9325,-23.5638 3498.123,-16.5664"/>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge52" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4195.7001,-725.4266C4236.825,-717.1206 
4285.5041,-703.9853 4326,-684 4384.2009,-655.2771 4441,-658.9026 4441,-594 
4441,-594 4441,-594 4441,-162 4441,-61.6805 4331.4834,-95.6852 4234,-72 
4096.8004,-38.6651 3678.1931,-24.432 3498.3974,-19.8197"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3498.2856,-16.3159 
3488.2003,-19.5619 3498.1086,-23.3136 3498.2856,-16.3159"/>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge54" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4020.2908,-734.7905C3784.7675,-725.1773 
3143.2233,-692.1663 2949,-612 2938.2025,-607.5433 2814.7896,-518.2363 
2754.1807,-474.1702"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2756.2094,-471.3179 
2746.0636,-468.266 2752.0918,-476.9788 2756.2094,-471.3179"/>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="edge49" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4020.4244,-725.7359C3961.0815,-716.5217 
3881.1731,-702.3465 3812,-684 3740.986,-665.1652 3661.4915,-635.8792 
3610.2018,-615.8648"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3611.2339,-612.51 
3600.6464,-612.1158 3608.6772,-619.0264 3611.2339,-612.51"/>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge53" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4175.7692,-719.9993C4234.1217,-699.9142 
4309,-661.0733 4309,-594 4309,-594 4309,-594 4309,-522 4309,-480.6022 
4310.7804,-464.3906 4285,-432 4274.5634,-418.8874 4260.0583,-408.5788 
4245.2574,-400.6417"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4246.5433,-397.3707 
4236.0372,-396.0023 4243.3969,-403.6237 4246.5433,-397.3707"/>
+</g>
+<!-- 
/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv
 -->
+<g id="node28" class="node">
+<title>/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv</title>
+<polygon fill="none" stroke="#000000" points="3977,-468 3795,-468 3795,-432 
3977,-432 3977,-468"/>
+<text text-anchor="middle" x="3886" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils&#45;mesboot0@2.20.1a</text>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv
 -->
+<g id="edge48" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4102.4697,-719.9945C4088.6825,-677.6232 
4049.1322,-570.2049 3984,-504 3971.5867,-491.3822 3955.5948,-480.9055 
3940.1443,-472.6442"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3941.6376,-469.4768 
3931.1411,-468.0367 3938.4485,-475.7082 3941.6376,-469.4768"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv 
-->
+<g id="node29" class="node">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv</title>
+<polygon fill="none" stroke="#000000" points="3975,-684 3821,-684 3821,-648 
3975,-648 3975,-684"/>
+<text text-anchor="middle" x="3898" y="-662.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;mesboot0@2.95.3</text>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv
 -->
+<g id="edge50" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4055.2792,-719.9243C4026.4462,-710.0387 
3990.5519,-697.7321 3960.3369,-687.3726"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3961.3371,-684.0156 
3950.7425,-684.0831 3959.0668,-690.6373 3961.3371,-684.0156"/>
+</g>
+<!-- 
/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv 
-->
+<g id="node30" class="node">
+<title>/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<polygon fill="none" stroke="#000000" points="3914.5,-324 3759.5,-324 
3759.5,-288 3914.5,-288 3914.5,-324"/>
+<text text-anchor="middle" x="3837" y="-302.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">make&#45;mesboot0@3.80</text>
+</g>
+<!-- 
/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge55" class="edge">
+<title>/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4195.8299,-725.9105C4226.9845,-718.0869 
4260.5836,-705.2055 4286,-684 4372.388,-611.9244 4350.011,-537.1518 4310,-432 
4296.663,-396.9494 4297.4975,-380.3551 4266,-360 4211.336,-324.6737 
4033.8903,-312.4285 3925.081,-308.2043"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3924.8952,-304.6951 
3914.7718,-307.8201 3924.6344,-311.6902 3924.8952,-304.6951"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge133" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M4043.5382,-1088.3746C4199.047,-1063.0797 4561,-979.162 4561,-738 4561,-738 
4561,-738 4561,-162 4561,-88.7758 4492.6105,-94.7191 4423,-72 
4335.9874,-43.6013 3724.3638,-25.8141 3498.491,-20.0519"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3498.4386,-16.5495 
3488.3531,-19.7947 3498.2611,-23.5472 3498.4386,-16.5495"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge134" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M4043.6894,-1089.7829C4202.8497,-1066.2804 4579,-983.8462 4579,-738 
4579,-738 4579,-738 4579,-162 4579,-88.7758 4510.6105,-94.7191 4441,-72 
4352.9011,-43.2467 3727.0096,-25.3716 3498.3262,-19.8416"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3498.148,-16.3365 
3488.0669,-19.5954 3497.98,-23.3344 3498.148,-16.3365"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge132" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M3904.4072,-1092.8814C3816.7064,-1085.6623 3661.6348,-1070.3403 3531,-1044 
3441.8343,-1026.0213 3341.1489,-995.6591 3277.6467,-975.2303"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3278.3736,-971.787 
3267.7818,-972.0403 3276.2198,-978.4474 3278.3736,-971.787"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge129" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M4043.5116,-1080.2851C4076.0079,-1070.4582 4109.6129,-1057.5128 4119,-1044 
4134.5779,-1021.5755 4118.0667,-838.0535 4110.9391,-766.4554"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4114.406,-765.9496 
4109.9213,-756.3508 4107.4412,-766.6513 4114.406,-765.9496"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge136" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M4025.0855,-1079.9348C4041.0666,-1071.5922 4056.8895,-1059.9115 4066,-1044 
4095.5505,-992.3903 4037.6802,-967.1177 3987,-936 3910.0441,-888.749 
3882.1369,-894.1094 3797,-864 3700.4043,-829.838 3675.7438,-822.7233 3578,-792 
3471.7613,-758.6066 3444.9913,-750.8974 3338,-720 3165.6157,-670.2182 
3105.191,-700.3117 2949,-612 2888.2455,-577.6489 2892.5881,-543.4299 2835,-504 
2817.0641,-491.7195 2795.8988,-480.844 2776.7048,-472.1302"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2778.0235,-468.8863 
2767.4634,-468.0295 2775.1843,-475.2847 2778.0235,-468.8863"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv
 -->
+<g id="edge131" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M4012.1883,-1079.8328C4026.0975,-1071.0933 4040.29,-1059.1707 4048,-1044 
4055.249,-1029.7363 4057.1468,-1021.1277 4048,-1008 3993.0791,-929.1764 
3719.1484,-858.9658 3578.9584,-827.506"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3579.6227,-824.0682 
3569.1007,-825.3083 3578.0994,-830.9005 3579.6227,-824.0682"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge135" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M4043.2548,-1079.9233C4080.4388,-1069.278 4121.7085,-1055.6573 4137,-1044 
4279.2614,-935.5486 4276.738,-858.2956 4317,-684 4342.2177,-574.8316 
4379.9013,-519.5642 4310,-432 4298.7754,-417.9391 4283.2081,-407.4809 
4266.8118,-399.7216"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4268.2023,-396.5096 
4257.6397,-395.6828 4265.3813,-402.916 4268.2023,-396.5096"/>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv
 -->
+<g id="edge137" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M3921.4014,-1079.9922C3893.8574,-1070.133 3859.7583,-1057.2479 3830,-1044 
3622.0455,-951.4219 3385.6085,-815.2375 3294.0583,-761.2638"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3295.7911,-758.2224 
3285.4009,-756.15 3292.231,-764.2495 3295.7911,-758.2224"/>
+</g>
+<!-- 
/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv
 -->
+<g id="node38" class="node">
+<title>/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv</title>
+<polygon fill="none" stroke="#000000" points="4039,-1044 3839,-1044 3839,-1008 
4039,-1008 4039,-1044"/>
+<text text-anchor="middle" x="3939" y="-1022.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;mesboot1&#45;wrapper@4.7.4</text>
+</g>
+<!-- 
/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv
 -->
+<g id="edge130" class="edge">
+<title>/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv&#45;&gt;/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M3965.168,-1079.8314C3961.3014,-1071.8771 3956.6794,-1062.369 
3952.4032,-1053.5723"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3955.4707,-1051.8768 
3947.9509,-1044.4133 3949.1751,-1054.9371 3955.4707,-1051.8768"/>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge81" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M3528.1228,-575.9956C3497.4297,-550.9031 
3453,-502.5449 3453,-450 3453,-450 3453,-450 3453,-162 3453,-119.8411 
3434.5688,-74.0138 3423.0006,-45.6453"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3426.0993,-43.973 
3419.096,-36.0228 3419.6129,-46.605 3426.0993,-43.973"/>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge82" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M3540.2737,-575.9956C3515.4297,-550.9031 
3471,-502.5449 3471,-450 3471,-450 3471,-450 3471,-162 3471,-119.4713 
3452.2441,-73.2096 3436.1601,-44.9028"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3438.9814,-42.8016 
3430.839,-36.0228 3432.9769,-46.3997 3438.9814,-42.8016"/>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge83" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#ff0000" d="M3632.5597,-588.3232C3733.9704,-580.0499 
3906.9094,-563.1102 3966,-540 4045.3013,-508.9855 4121.0103,-440.7682 
4158.5166,-403.5133"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4161.3598,-405.6176 
4165.9277,-396.058 4156.3954,-400.6826 4161.3598,-405.6176"/>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv
 -->
+<g id="edge79" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff0000" d="M3632.8608,-588.7775C3741.108,-580.6289 
3927.6302,-563.3682 3948,-540 3966.0671,-519.2735 3943.8126,-493.1731 
3921.097,-474.4243"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3923.1266,-471.5674 
3913.1083,-468.1201 3918.7902,-477.0625 3923.1266,-471.5674"/>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge85" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#ff0000" d="M3575.2606,-575.8469C3611.5492,-541.4668 
3692.2234,-464.1836 3757,-396 3776.9785,-374.9707 3798.8011,-350.2988 
3814.6,-332.1103"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3817.5087,-334.0978 
3821.4068,-324.2461 3812.2159,-329.5167 3817.5087,-334.0978"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv
 -->
+<g id="node36" class="node">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv</title>
+<polygon fill="none" stroke="#000000" points="3939.5,-540 3762.5,-540 
3762.5,-504 3939.5,-504 3939.5,-540"/>
+<text text-anchor="middle" x="3851" y="-518.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;core&#45;mesboot@2.95.3</text>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv
 -->
+<g id="edge80" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv</title>
+<path fill="none" stroke="#ff0000" d="M3630.0602,-575.9243C3671.7826,-565.7412 
3724.0303,-552.9892 3767.2413,-542.4428"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3768.2803,-545.792 
3777.1653,-540.0207 3766.6205,-538.9916 3768.2803,-545.792"/>
+</g>
+<!-- 
/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv
 -->
+<g id="node37" class="node">
+<title>/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv</title>
+<polygon fill="none" stroke="#000000" points="3292.5,-540 3129.5,-540 
3129.5,-504 3292.5,-504 3292.5,-540"/>
+<text text-anchor="middle" x="3211" y="-518.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">mesboot&#45;headers@0.19</text>
+</g>
+<!-- 
/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv
 -->
+<g id="edge84" class="edge">
+<title>/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv&#45;&gt;/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv</title>
+<path fill="none" stroke="#ff0000" d="M3479.4333,-578.0209C3427.2928,-567.1394 
3358.0064,-552.6796 3302.8868,-541.1764"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3303.2712,-537.6813 
3292.767,-539.0644 3301.8411,-544.5336 3303.2712,-537.6813"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge106" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M3084.8386,-872.5729C3030.0268,-864.9638 
2962.551,-851.4967 2906,-828 2718.6229,-750.1457 2361,-633.5792 2361,-450 
2361,-450 2361,-450 2361,-162 2361,-64.6269 3082.236,-29.6574 
3331.5067,-20.6102"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3331.7289,-24.1046 
3341.5971,-20.2488 3331.4783,-17.1091 3331.7289,-24.1046"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge107" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M3084.6752,-870.1467C3034.8242,-862.21 
2974.974,-849.1795 2924,-828 2736.6229,-750.1457 2379,-633.5792 2379,-450 
2379,-450 2379,-450 2379,-162 2379,-65.6342 3085.3905,-30.3876 
3331.6163,-20.8994"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3332.0785,-24.3844 
3341.9381,-20.5064 3331.8121,-17.3895 3332.0785,-24.3844"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge102" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#b8860b" d="M3291.3544,-872.0283C3396.6878,-861.2887 
3552.6278,-843.635 3611,-828 3651.025,-817.2793 3656.9947,-802.7941 3697,-792 
3700.7857,-790.9786 3890.0483,-766.3017 4010.394,-750.6642"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4010.9089,-754.1268 
4020.3746,-749.3675 4010.007,-747.1852 4010.9089,-754.1268"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge109" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M3106.435,-863.9144C3013.1878,-839.0705 
2862.2205,-785.4446 2775,-684 2723.9542,-624.6296 2718.7413,-526.4401 
2719.5868,-478.3351"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2723.0859,-478.4119 
2719.8654,-468.3184 2716.0886,-478.2172 2723.0859,-478.4119"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="edge103" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<path fill="none" stroke="#b8860b" d="M3211.02,-863.9843C3274.5263,-814.2838 
3452.2721,-675.1784 3524.6936,-618.5006"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3527.2707,-620.9283 
3532.9887,-612.0089 3522.9565,-615.4157 3527.2707,-620.9283"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv
 -->
+<g id="edge104" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv</title>
+<path fill="none" stroke="#b8860b" d="M3265.3238,-863.9243C3310.3134,-853.4073 
3367.0246,-840.1501 3412.9575,-829.4125"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3413.9448,-832.7762 
3422.8855,-827.0917 3412.3513,-825.9599 3413.9448,-832.7762"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge108" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#b8860b" d="M3291.033,-870.713C3397.6605,-858.5572 
3552.2235,-839.4278 3578,-828 3600.7857,-817.8981 3598.348,-802.3981 3621,-792 
3710.2475,-751.0324 3744.0454,-781.0417 3839,-756 3928.7347,-732.3349 
3954.0387,-729.3609 4035,-684 4114.2355,-639.606 4141.5048,-622.263 4180,-540 
4200.5949,-495.9894 4203.1466,-480.2007 4197,-432 4195.9146,-423.4887 
4193.9038,-414.4011 4191.738,-406.1555"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4195.0363,-404.9542 
4188.9698,-396.2681 4188.2955,-406.8414 4195.0363,-404.9542"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv
 -->
+<g id="edge110" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv</title>
+<path fill="none" stroke="#b8860b" d="M3196.4856,-863.7623C3208.0644,-838.8764 
3228.9062,-794.0822 3242.3368,-765.2165"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3245.5381,-766.6328 
3246.5833,-756.0896 3239.1914,-763.6798 3245.5381,-766.6328"/>
+</g>
+<!-- 
/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv
 -->
+<g id="edge105" class="edge">
+<title>/gnu/store/p9sl13frcs2wdcddkh20hc51l7lpavza&#45;glibc&#45;headers&#45;mesboot&#45;2.16.0.drv&#45;&gt;/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv</title>
+<path fill="none" stroke="#b8860b" d="M3166.4302,-863.9468C3138.957,-838.7991 
3095,-790.3785 3095,-738 3095,-738 3095,-738 3095,-666 3095,-614.8014 
3140.0209,-571.5068 3173.968,-546.1388"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3176.2825,-548.7839 
3182.3258,-540.0816 3172.1748,-543.1158 3176.2825,-548.7839"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge114" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3541.9798,-791.904C3590.8906,-770.5661 
3661,-729.7187 3661,-666 3661,-666 3661,-666 3661,-594 3661,-451.287 
3519,-448.713 3519,-306 3519,-306 3519,-306 3519,-162 3519,-111.3873 
3475.2626,-68.0147 3444.3765,-42.4634"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3446.4208,-39.6154 
3436.4446,-36.048 3442.0187,-45.058 3446.4208,-39.6154"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge115" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3555.3761,-791.904C3608.8906,-770.5661 
3679,-729.7187 3679,-666 3679,-666 3679,-666 3679,-594 3679,-451.287 
3537,-448.713 3537,-306 3537,-306 3537,-306 3537,-162 3537,-110.9565 
3492.5149,-67.2769 3457.1446,-41.8149"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3459.0512,-38.8778 
3448.8412,-36.048 3455.0581,-44.6272 3459.0512,-38.8778"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge111" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3569.2136,-801.3866C3679.2291,-788.4436 
3887.3524,-763.9585 4010.236,-749.5016"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="4010.871,-752.9512 
4020.3935,-748.3066 4010.053,-745.9991 4010.871,-752.9512"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge117" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3422.9375,-806.4594C3262.1041,-797.1999 
2884.3807,-766.9614 2792,-684 2784.106,-676.9109 2745.2361,-538.1674 
2728.589,-477.7352"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2731.9587,-476.7885 
2725.9332,-468.0739 2725.209,-478.6439 2731.9587,-476.7885"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="edge113" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3506.7508,-791.5343C3512.2929,-781.3395 
3518.7601,-768.2861 3523,-756 3538.647,-710.6592 3547.9278,-655.4829 
3552.4864,-622.6319"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3555.9991,-622.7688 
3553.8537,-612.3935 3549.0607,-621.8422 3555.9991,-622.7688"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge116" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3569.0035,-794.8256C3637.6903,-780.4921 
3732.5454,-760.5311 3750,-756 3910.0296,-714.457 3968.4681,-720.7526 4093,-612 
4149.4945,-562.6639 4167.7042,-541.8167 4181,-468 4184.6882,-447.5236 
4185.0814,-424.0056 4184.6091,-406.1467"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="4188.1046,-405.9579 
4184.2373,-396.0942 4181.1094,-406.2167 4188.1046,-405.9579"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv
 -->
+<g id="edge118" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3435.4966,-791.9243C3401.9775,-781.9103 
3360.1431,-769.412 3325.1913,-758.97"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3326.1117,-755.5922 
3315.5283,-756.0831 3324.1079,-762.2993 3326.1117,-755.5922"/>
+</g>
+<!-- 
/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv
 -->
+<g id="edge112" class="edge">
+<title>/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv&#45;&gt;/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3569.2951,-792.6279C3606.7145,-783.0764 
3652.7221,-770.2756 3693,-756 3748.9112,-736.1835 3811.0143,-708.0092 
3852.0568,-688.4845"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3853.7401,-691.5592 
3861.2516,-684.0874 3850.7201,-685.2442 3853.7401,-691.5592"/>
+</g>
+<!-- 
/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge73" class="edge">
+<title>/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M4169.0226,-359.7572C4148.3012,-326.3017 
4107.7577,-254.9967 4053,-216 4010.0657,-185.4236 3985.2683,-207.0011 3940,-180 
3880.6114,-144.5766 3890.3492,-101.9065 3828,-72 3771.0421,-44.6795 
3601.7926,-29.76 3498.428,-22.8668"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3498.5352,-19.3665 
3488.3277,-22.2048 3498.0773,-26.3515 3498.5352,-19.3665"/>
+</g>
+<!-- 
/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge74" class="edge">
+<title>/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M4179.488,-359.7572C4166.3012,-326.3017 
4125.7577,-254.9967 4071,-216 4028.0657,-185.4236 4003.2683,-207.0011 3958,-180 
3898.6114,-144.5766 3908.3492,-101.9065 3846,-72 3786.8072,-43.6075 
3606.338,-28.6082 3498.5489,-22.0923"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3498.5407,-18.5857 
3488.3511,-21.488 3498.1265,-25.5735 3498.5407,-18.5857"/>
+</g>
+<!-- 
/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge75" class="edge">
+<title>/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#8b7765" d="M4108.3491,-362.4657C4054.3754,-351.2342 
3981.2768,-336.0229 3924.548,-324.2181"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3925.0178,-320.7409 
3914.5145,-322.1302 3923.5917,-327.5941 3925.0178,-320.7409"/>
+</g>
+<!-- 
/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv -->
+<g id="node31" class="node">
+<title>/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv</title>
+<polygon fill="none" stroke="#000000" points="4053,-252 3937,-252 3937,-216 
4053,-216 4053,-252"/>
+<text text-anchor="middle" x="3995" y="-230.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">tcc&#45;boot@0.9.27</text>
+</g>
+<!-- 
/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv
 -->
+<g id="edge72" class="edge">
+<title>/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv</title>
+<path fill="none" stroke="#8b7765" d="M4131.3061,-359.95C4110.1158,-351.0777 
4086.1282,-339.0262 4067,-324 4044.485,-306.3133 4024.6457,-280.2817 
4011.5247,-260.7589"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4014.391,-258.7472 
4005.9834,-252.3003 4008.5356,-262.5832 4014.391,-258.7472"/>
+</g>
+<!-- /gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv 
-->
+<g id="node32" class="node">
+<title>/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv</title>
+<polygon fill="none" stroke="#000000" points="4216,-108 4102,-108 4102,-72 
4216,-72 4216,-108"/>
+<text text-anchor="middle" x="4159" y="-86.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">mes&#45;boot@0.19</text>
+</g>
+<!-- 
/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv
 -->
+<g id="edge71" class="edge">
+<title>/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv&#45;&gt;/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv</title>
+<path fill="none" stroke="#8b7765" d="M4184.5402,-359.8983C4187.4875,-320.3371 
4192.428,-223.3581 4178,-144 4176.4075,-135.241 4173.6032,-126 
4170.63,-117.6868"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4173.8121,-116.2074 
4166.9898,-108.1014 4167.2681,-118.6926 4173.8121,-116.2074"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge123" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3257.086,-719.8715C3269.808,-665.5727 
3321,-504.6385 3321,-450 3321,-450 3321,-450 3321,-162 3321,-115.2973 
3354.5673,-70.4253 3381.7468,-43.5264"/>
+<polygon fill="#696969" stroke="#696969" points="3384.3752,-45.8569 
3389.2102,-36.4296 3379.5516,-40.7841 3384.3752,-45.8569"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge124" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3264.9356,-719.8715C3287.808,-665.5727 
3339,-504.6385 3339,-450 3339,-450 3339,-450 3339,-162 3339,-115.6964 
3371.9959,-71.1925 3394.695,-44.2201"/>
+<polygon fill="#696969" stroke="#696969" points="3397.519,-46.3033 
3401.3611,-36.4296 3392.2003,-41.7522 3397.519,-46.3033"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge125" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3180.7179,-725.0664C3169.4369,-723.2627 
3157.9209,-721.5119 3147,-720 3074.8037,-710.0051 2876.2688,-731.5137 2821,-684 
2758.2158,-630.0255 2813.6765,-576.1148 2773,-504 2767.0654,-493.4787 
2758.5991,-483.4885 2750.2167,-475.0273"/>
+<polygon fill="#696969" stroke="#696969" points="2752.5664,-472.4309 
2742.9378,-468.0103 2747.7081,-477.4705 2752.5664,-472.4309"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="edge120" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<path fill="none" stroke="#696969" d="M3292.8171,-719.9081C3347.6721,-693.6652 
3449.259,-645.0655 3508.9022,-616.5318"/>
+<polygon fill="#696969" stroke="#696969" points="3510.5905,-619.6041 
3518.1009,-612.1311 3507.5695,-613.2895 3510.5905,-619.6041"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv
 -->
+<g id="edge119" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#696969" d="M3276.1829,-719.7445C3298.1503,-701.0728 
3333.735,-671.5462 3366,-648 3389.5993,-630.7778 3396.997,-628.6549 3421,-612 
3443.2023,-596.5945 3445.8321,-588.0906 3470,-576 3529.3316,-546.3179 
3703.4031,-497.9704 3806.6125,-470.5994"/>
+<polygon fill="#696969" stroke="#696969" points="3807.6007,-473.9585 
3816.373,-468.0174 3805.8104,-467.1913 3807.6007,-473.9585"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv
 -->
+<g id="edge121" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv</title>
+<path fill="none" stroke="#696969" d="M3329.0741,-729.7055C3448.5995,-716.3217 
3683.4533,-690.0239 3810.8446,-675.7592"/>
+<polygon fill="#696969" stroke="#696969" points="3811.405,-679.2184 
3820.9534,-674.6273 3810.626,-672.2619 3811.405,-679.2184"/>
+</g>
+<!-- 
/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge122" class="edge">
+<title>/gnu/store/5ad88jy4a1gpbslzdiksk7zjyh28wzkr&#45;make&#45;mesboot&#45;3.82.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#696969" d="M3264.514,-719.9878C3275.2753,-700.7116 
3294.17,-669.9486 3316,-648 3465.8641,-497.3216 3692.4564,-376.5349 
3789.8194,-328.47"/>
+<polygon fill="#696969" stroke="#696969" points="3791.3963,-331.595 
3798.8313,-324.047 3788.3122,-325.311 3791.3963,-331.595"/>
+</g>
+<!-- 
/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge57" class="edge">
+<title>/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M3817.9933,-431.9895C3760.2939,-411.4201 
3687,-371.8092 3687,-306 3687,-306 3687,-306 3687,-162 3687,-119.3959 
3686.1177,-99.9922 3654,-72 3630.5663,-51.5763 3557.6353,-37.2628 
3498.3896,-28.5279"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.6539,-25.0299 
3488.257,-27.0678 3497.6555,-31.9584 3498.6539,-25.0299"/>
+</g>
+<!-- 
/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge58" class="edge">
+<title>/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M3831.6806,-431.9895C3778.2939,-411.4201 
3705,-371.8092 3705,-306 3705,-306 3705,-306 3705,-162 3705,-119.3959 
3704.1177,-99.9922 3672,-72 3646.6564,-49.9118 3563.4184,-34.9702 
3498.399,-26.503"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.493,-22.987 
3488.1318,-25.1996 3497.6114,-29.9312 3498.493,-22.987"/>
+</g>
+<!-- 
/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge59" class="edge">
+<title>/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#ff0000" d="M3960.5623,-431.9243C4002.5676,-421.7412 
4055.1695,-408.9892 4098.6734,-398.4428"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4099.7708,-401.7782 
4108.6647,-396.0207 4098.1216,-394.9753 4099.7708,-401.7782"/>
+</g>
+<!-- 
/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge60" class="edge">
+<title>/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#ff0000" d="M3879.7941,-431.7623C3871.3628,-406.9846 
3856.216,-362.4714 3846.3896,-333.5939"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3849.6904,-332.429 
3843.1555,-324.0896 3843.0635,-334.6841 3849.6904,-332.429"/>
+</g>
+<!-- 
/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv
 -->
+<g id="edge56" class="edge">
+<title>/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv</title>
+<path fill="none" stroke="#ff0000" d="M3895.1058,-431.9555C3914.2208,-394.0762 
3958.6254,-306.0818 3981.2367,-261.274"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3984.4629,-262.6496 
3985.8435,-252.1451 3978.2135,-259.4959 3984.4629,-262.6496"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge97" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3867.6702,-647.8532C3834.9135,-624.6082 
3782.7934,-582.255 3744,-540 3657.2405,-445.4989 3575,-434.2875 3575,-306 
3575,-306 3575,-306 3575,-162 3575,-119.3959 3571.7235,-102.5225 3542,-72 
3528.4164,-58.0513 3510.7769,-47.6146 3492.9687,-39.8372"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3494.2411,-36.5761 
3483.6615,-36.0081 3491.5777,-43.0497 3494.2411,-36.5761"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge98" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3880.2109,-647.8532C3852.9135,-624.6082 
3800.7934,-582.255 3762,-540 3675.2405,-445.4989 3593,-434.2875 3593,-306 
3593,-306 3593,-306 3593,-162 3593,-119.3959 3589.7235,-102.5225 3560,-72 
3543.3286,-54.8805 3520.5476,-43.0511 3497.951,-34.9357"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3498.8905,-31.5589 
3488.2964,-31.6804 3496.654,-38.192 3498.8905,-31.5589"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge100" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3820.6364,-650.2115C3816.0296,-649.4224 
3811.4581,-648.6777 3807,-648 3501.4269,-601.551 3398.3195,-674.4274 3120,-540 
3097.5562,-529.1597 3099.7198,-514.2492 3077,-504 3035.0259,-485.0649 
2923.464,-470.0398 2836.3075,-460.6953"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2836.6577,-457.2129 
2826.3447,-459.6404 2835.9205,-464.174 2836.6577,-457.2129"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv
 -->
+<g id="edge96" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/2633565gzh4jqh7c5zf6i0iy9yxqigcv&#45;glibc&#45;mesboot0&#45;2.2.5.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3820.8221,-649.752C3767.8713,-638.6045 
3697.5368,-623.7972 3642.6611,-612.2444"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3643.1087,-608.762 
3632.6022,-610.1268 3641.6666,-615.6119 3643.1087,-608.762"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge99" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3972.5431,-647.9372C4000.2308,-639.398 
4031.1652,-627.5878 4057,-612 4076.9195,-599.9813 4120.7233,-559.7615 4133,-540 
4159.3493,-497.5861 4172.7333,-440.2472 4178.7646,-406.3883"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="4182.2594,-406.7118 
4180.4716,-396.2689 4175.357,-405.5474 4182.2594,-406.7118"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv
 -->
+<g id="edge94" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3916.4447,-647.5238C3944.6647,-616.9159 
3992.6266,-554.0978 3966,-504 3959.4185,-491.617 3948.5907,-481.5593 
3936.9963,-473.63"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3938.789,-470.6225 
3928.468,-468.2295 3935.044,-476.5365 3938.789,-470.6225"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge101" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3931.3345,-647.887C3944.9959,-638.8374 
3959.7429,-626.668 3969,-612 4011.8868,-544.0456 4019.8206,-504.8921 3986,-432 
3964.6402,-385.9641 3917.2569,-350.6602 3881.6208,-329.2922"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3883.2372,-326.183 
3872.8369,-324.1618 3879.7068,-332.2275 3883.2372,-326.183"/>
+</g>
+<!-- 
/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv
 -->
+<g id="edge95" class="edge">
+<title>/gnu/store/slnyk8gbnvfwy1m1was8myivpss58idd&#45;gcc&#45;mesboot0&#45;2.95.3.drv&#45;&gt;/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M3892.0474,-647.7623C3883.9956,-623.0928 
3869.5584,-578.8598 3860.1301,-549.9731"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3863.3344,-548.5101 
3856.9043,-540.0896 3856.6799,-550.6821 3863.3344,-548.5101"/>
+</g>
+<!-- 
/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge77" class="edge">
+<title>/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3829.1428,-287.8168C3815.1806,-243.1034 
3784.4602,-127.4119 3710,-72 3676.8863,-47.3574 3573.5944,-32.8212 
3498.5044,-25.1499"/>
+<polygon fill="#696969" stroke="#696969" points="3498.4044,-21.6226 
3488.1063,-24.1127 3497.7095,-28.5881 3498.4044,-21.6226"/>
+</g>
+<!-- 
/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge78" class="edge">
+<title>/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3838.0344,-287.8168C3833.1806,-243.1034 
3802.4602,-127.4119 3728,-72 3692.8436,-45.8373 3578.5834,-31.0662 
3498.263,-23.8078"/>
+<polygon fill="#696969" stroke="#696969" points="3498.4207,-20.3083 
3488.1522,-22.9174 3497.8066,-27.2813 3498.4207,-20.3083"/>
+</g>
+<!-- 
/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv
 -->
+<g id="edge76" class="edge">
+<title>/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv</title>
+<path fill="none" stroke="#696969" d="M3876.8701,-287.8314C3897.9077,-278.2446 
3923.8983,-266.4008 3946.1396,-256.2655"/>
+<polygon fill="#696969" stroke="#696969" points="3947.7683,-259.3697 
3955.4166,-252.038 3944.8655,-252.9999 3947.7683,-259.3697"/>
+</g>
+<!-- 
/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge63" class="edge">
+<title>/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3955.3471,-215.7662C3936.9913,-206.3888 
3915.44,-193.9899 3898,-180 3847.9043,-139.8146 3858.6228,-102.3036 3802,-72 
3750.9483,-44.678 3595.8975,-29.7825 3498.2481,-22.8898"/>
+<polygon fill="#696969" stroke="#696969" points="3498.3215,-19.3866 
3488.1037,-22.1879 3497.8382,-26.3699 3498.3215,-19.3866"/>
+</g>
+<!-- 
/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv&#45;&gt;/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv
 -->
+<g id="edge61" class="edge">
+<title>/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv&#45;&gt;/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv</title>
+<path fill="none" stroke="#696969" d="M4053.1676,-222.1899C4094.6498,-212.4575 
4145.2493,-197.4512 4158,-180 4170.834,-162.4348 4170.0049,-137.3574 
4166.5777,-118.1332"/>
+<polygon fill="#696969" stroke="#696969" points="4169.9594,-117.2061 
4164.4767,-108.1401 4163.1091,-118.6463 4169.9594,-117.2061"/>
+</g>
+<!-- 
/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv
 -->
+<g id="node33" class="node">
+<title>/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv</title>
+<polygon fill="none" stroke="#000000" points="4149.5,-180 3958.5,-180 
3958.5,-144 4149.5,-144 4149.5,-180"/>
+<text text-anchor="middle" x="4054" y="-158.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">tcc&#45;boot0@0.9.26&#45;6.c004e9a</text>
+</g>
+<!-- 
/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv&#45;&gt;/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv
 -->
+<g id="edge62" class="edge">
+<title>/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv&#45;&gt;/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv</title>
+<path fill="none" stroke="#696969" d="M4009.8882,-215.8314C4016.753,-207.454 
4025.0301,-197.3531 4032.5511,-188.1749"/>
+<polygon fill="#696969" stroke="#696969" points="4035.2803,-190.3665 
4038.9114,-180.4133 4029.8659,-185.9297 4035.2803,-190.3665"/>
+</g>
+<!-- 
/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge65" class="edge">
+<title>/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M4101.9945,-82.3521C4075.8204,-78.962 
4044.361,-75.0581 4016,-72 3831.4827,-52.1039 3614.5377,-33.8852 
3498.4053,-24.55"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3498.4172,-21.0398 
3488.1694,-23.7292 3497.8576,-28.0174 3498.4172,-21.0398"/>
+</g>
+<!-- 
/gnu/store/msykyiih9lwrd86x00vs00i8s5ipjks4&#45;bootstrap&#45;mescc&#45;tools&#45;0.5.2.drv
 -->
+<g id="node34" class="node">
+<title>/gnu/store/msykyiih9lwrd86x00vs00i8s5ipjks4&#45;bootstrap&#45;mescc&#45;tools&#45;0.5.2.drv</title>
+<polygon fill="none" stroke="#000000" points="5172,-36 4978,-36 4978,0 5172,0 
5172,-36"/>
+<text text-anchor="middle" x="5075" y="-14.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bootstrap&#45;mescc&#45;tools@0.5.2</text>
+</g>
+<!-- 
/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv&#45;&gt;/gnu/store/msykyiih9lwrd86x00vs00i8s5ipjks4&#45;bootstrap&#45;mescc&#45;tools&#45;0.5.2.drv
 -->
+<g id="edge64" class="edge">
+<title>/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv&#45;&gt;/gnu/store/msykyiih9lwrd86x00vs00i8s5ipjks4&#45;bootstrap&#45;mescc&#45;tools&#45;0.5.2.drv</title>
+<path fill="none" stroke="#b8860b" d="M4216.2999,-85.4961C4366.4405,-73.6946 
4773.1074,-41.7295 4968.0158,-26.4092"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4968.2929,-29.8983 
4977.9879,-25.6254 4967.7443,-22.9199 4968.2929,-29.8983"/>
+</g>
+<!-- 
/gnu/store/cfw60j3987wrvb26f2bpbw5l5q6q53fj&#45;bootstrap&#45;mes&#45;0.drv -->
+<g id="node35" class="node">
+<title>/gnu/store/cfw60j3987wrvb26f2bpbw5l5q6q53fj&#45;bootstrap&#45;mes&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="4173.5,-36 4048.5,-36 4048.5,0 
4173.5,0 4173.5,-36"/>
+<text text-anchor="middle" x="4111" y="-14.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bootstrap&#45;mes@0</text>
+</g>
+<!-- 
/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv&#45;&gt;/gnu/store/cfw60j3987wrvb26f2bpbw5l5q6q53fj&#45;bootstrap&#45;mes&#45;0.drv
 -->
+<g id="edge66" class="edge">
+<title>/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv&#45;&gt;/gnu/store/cfw60j3987wrvb26f2bpbw5l5q6q53fj&#45;bootstrap&#45;mes&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M4146.8876,-71.8314C4141.4719,-63.7079 
4134.9758,-53.9637 4129.0079,-45.0118"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4131.7347,-42.7923 
4123.2755,-36.4133 4125.9104,-46.6753 4131.7347,-42.7923"/>
+</g>
+<!-- 
/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge69" class="edge">
+<title>/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4038.2139,-143.8018C4018.5345,-122.5002 
3982.7375,-88.0923 3944,-72 3865.5594,-39.4142 3626.5558,-25.7732 
3498.3492,-20.6783"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3498.3108,-17.1743 
3488.1823,-20.283 3498.0388,-24.169 3498.3108,-17.1743"/>
+</g>
+<!-- 
/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv
 -->
+<g id="edge67" class="edge">
+<title>/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/mw6swkryp89aml4jzac5lm8kmcv5k6gy&#45;mes&#45;boot&#45;0.19.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4080.4959,-143.8314C4093.6774,-134.7927 
4109.7847,-123.7476 4123.9711,-114.0198"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4126.2446,-116.7047 
4132.5125,-108.1628 4122.2859,-110.9316 4126.2446,-116.7047"/>
+</g>
+<!-- 
/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/msykyiih9lwrd86x00vs00i8s5ipjks4&#45;bootstrap&#45;mescc&#45;tools&#45;0.5.2.drv
 -->
+<g id="edge68" class="edge">
+<title>/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/msykyiih9lwrd86x00vs00i8s5ipjks4&#45;bootstrap&#45;mescc&#45;tools&#45;0.5.2.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4149.5943,-148.5175C4340.5729,-121.5823 
4768.079,-61.2876 4968.0459,-33.0846"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4968.5634,-36.5464 
4977.9766,-31.684 4967.5857,-29.615 4968.5634,-36.5464"/>
+</g>
+<!-- 
/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/cfw60j3987wrvb26f2bpbw5l5q6q53fj&#45;bootstrap&#45;mes&#45;0.drv
 -->
+<g id="edge70" class="edge">
+<title>/gnu/store/nvhjn6b5hi4mj7wnjxrmj0dmdigq9m2z&#45;tcc&#45;boot0&#45;0.9.26&#45;6.c004e9a.drv&#45;&gt;/gnu/store/cfw60j3987wrvb26f2bpbw5l5q6q53fj&#45;bootstrap&#45;mes&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M4061.2191,-143.7623C4071.0269,-118.9846 
4088.6467,-74.4714 4100.0774,-45.5939"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4103.4133,-46.6759 
4103.8395,-36.0896 4096.9047,-44.0995 4103.4133,-46.6759"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge88" class="edge">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3805.9704,-503.8776C3741.489,-472.785 
3631,-403.1132 3631,-306 3631,-306 3631,-306 3631,-162 3631,-119.3959 
3629.2669,-100.9395 3598,-72 3582.6492,-57.7919 3539.0253,-44.9674 
3498.1792,-35.3851"/>
+<polygon fill="#696969" stroke="#696969" points="3498.9548,-31.9722 
3488.425,-33.1439 3497.3873,-38.7944 3498.9548,-31.9722"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge89" class="edge">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M3816.916,-503.7515C3759.191,-472.5969 
3649,-402.9822 3649,-306 3649,-306 3649,-306 3649,-162 3649,-119.3959 
3647.2669,-100.9395 3616,-72 3598.7106,-55.9976 3545.5565,-41.7504 
3498.197,-31.9137"/>
+<polygon fill="#696969" stroke="#696969" points="3498.6905,-28.4425 
3488.194,-29.8825 3497.2975,-35.3025 3498.6905,-28.4425"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv
 -->
+<g id="edge90" class="edge">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/r50fj43103526ga6pi2f9jkk4gvaav7m&#45;diffutils&#45;mesboot&#45;2.7.drv</title>
+<path fill="none" stroke="#696969" d="M3917.0856,-503.9412C3948.4789,-494.5616 
3986.2165,-482.1107 4019,-468 4063.9924,-448.6344 4112.8935,-420.849 
4145.4813,-401.2863"/>
+<polygon fill="#696969" stroke="#696969" points="4147.477,-404.1698 
4154.2234,-396.0005 4143.855,-398.1796 4147.477,-404.1698"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv
 -->
+<g id="edge86" class="edge">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/x9shp86cz9f4rb5xvhs37zzxg1ngi4dr&#45;binutils&#45;mesboot0&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#696969" d="M3859.832,-503.8314C3863.6986,-495.8771 
3868.3206,-486.369 3872.5968,-477.5723"/>
+<polygon fill="#696969" stroke="#696969" points="3875.8249,-478.9371 
3877.0491,-468.4133 3869.5293,-475.8768 3875.8249,-478.9371"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv
 -->
+<g id="edge91" class="edge">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/57da9mdiqhyn72m8wv00pdvzqi2ng4xb&#45;make&#45;mesboot0&#45;3.80.drv</title>
+<path fill="none" stroke="#696969" d="M3818.7221,-503.8412C3806.0575,-494.8521 
3792.9184,-482.742 3786,-468 3779.2025,-453.5157 3782.9421,-447.7051 3786,-432 
3792.9281,-396.418 3809.9042,-358.1714 3822.3756,-333.2691"/>
+<polygon fill="#696969" stroke="#696969" points="3825.6304,-334.5917 
3827.0699,-324.0951 3819.3988,-331.403 3825.6304,-334.5917"/>
+</g>
+<!-- 
/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv
 -->
+<g id="edge87" class="edge">
+<title>/gnu/store/kcyh6k46ijm9nsq1as26rr0aq7rkx4f7&#45;gcc&#45;core&#45;mesboot&#45;2.95.3.drv&#45;&gt;/gnu/store/fglx0fz62bygkdxxg878j7x9pfl37zhh&#45;tcc&#45;boot&#45;0.9.27.drv</title>
+<path fill="none" stroke="#696969" d="M3938.1826,-503.9232C3956.8102,-495.9631 
3974.3591,-484.5016 3986,-468 4029.9017,-405.7668 4014.3712,-309.3113 
4002.8809,-262.0436"/>
+<polygon fill="#696969" stroke="#696969" points="4006.233,-261.0242 
4000.3706,-252.1991 3999.4501,-262.7539 4006.233,-261.0242"/>
+</g>
+<!-- 
/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge92" class="edge">
+<title>/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" d="M3218.6347,-503.7257C3229.2021,-476.7325 
3247,-424.3849 3247,-378 3247,-378 3247,-378 3247,-162 3247,-102.8142 
3307.8509,-62.7109 3356.3081,-40.1585"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3357.8231,-43.3149 
3365.5031,-36.0164 3354.948,-36.9326 3357.8231,-43.3149"/>
+</g>
+<!-- 
/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge93" class="edge">
+<title>/gnu/store/hnxdqmhjdvh1ra9ar4lxl25xf6a7bhzz&#45;mesboot&#45;headers&#45;0.19.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" d="M3129.3469,-506.4076C3124.4967,-505.5692 
3119.6868,-504.7601 3115,-504 3021.3768,-488.8164 2914.7773,-474.3786 
2836.0879,-464.2584"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2836.5116,-460.7842 
2826.1477,-462.9839 2835.6213,-467.7273 2836.5116,-460.7842"/>
+</g>
+<!-- 
/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge138" class="edge">
+<title>/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3976.4788,-1007.7857C4104.5606,-944.3249 4517,-729.4568 4517,-594 4517,-594 
4517,-594 4517,-162 4517,-74.5393 4426.371,-95.0417 4342,-72 4261.957,-50.1403 
3711.1133,-28.5154 3498.4845,-20.8855"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.4321,-17.3815 
3488.3134,-20.522 3498.182,-24.3771 3498.4321,-17.3815"/>
+</g>
+<!-- 
/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge139" class="edge">
+<title>/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3838.9624,-1009.8078C3834.2463,-1009.1693 3829.574,-1008.5626 3825,-1008 
3638.8559,-985.106 3419.6531,-968.1548 3300.9767,-959.805"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3301.0794,-956.3037 
3290.8595,-959.0969 3300.5907,-963.2866 3301.0794,-956.3037"/>
+</g>
+<!-- 
/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv
 -->
+<g id="edge140" class="edge">
+<title>/gnu/store/7v6fpp5msmjbhmprikrfcj047016gd54&#45;gcc&#45;mesboot1&#45;wrapper&#45;4.7.4.drv&#45;&gt;/gnu/store/7pllq0crksfkr7856y1pawcy4scc7l4q&#45;gcc&#45;mesboot1&#45;4.7.4.drv</title>
+<path fill="none" stroke="#ff0000" d="M3901.992,-1007.9555C3821.5356,-968.7262 
3630.8403,-875.746 3542.4576,-832.652"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3543.7366,-829.3818 
3533.2142,-828.1451 3540.6687,-835.6737 3543.7366,-829.3818"/>
+</g>
+<!-- 
/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge190" class="edge">
+<title>/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3644.2652,-1804.2984C3494.9488,-1785.4289 3215.1412,-1751.1541 2976,-1728 
2770.1208,-1708.0664 2714.3351,-1734.9431 2512,-1692 2465.1784,-1682.0627 
2146.8155,-1573.0022 2106,-1548 2086.1617,-1535.8478 2088.007,-1523.8724 
2068,-1512 2044.4153,-1498.0046 2016.7725,-1487.1755 1990.8401,-1479.0161"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1991.583,-1475.5837 
1980.9971,-1476.0186 1989.5437,-1482.2801 1991.583,-1475.5837"/>
+</g>
+<!-- 
/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge193" class="edge">
+<title>/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3857.7499,-1813.0833C4073.6896,-1801.8408 4577.1789,-1769.0417 4993,-1692 
5113.0052,-1669.7659 5141.0298,-1654.8363 5258,-1620 5357.411,-1590.3932 
5382.0808,-1582.2191 5480,-1548 5566.0339,-1517.9344 5598.1306,-1529.3769 
5672,-1476 5768.9607,-1405.9376 5805,-1361.6249 5805,-1242 5805,-1242 
5805,-1242 5805,-378 5805,-230.409 5810.663,-132.4069 5676,-72 
5593.0016,-34.7688 4129.9371,-38.3115 4039,-36 3845.2938,-31.0763 
3617.7951,-24.2504 3498.1862,-20.5808"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.1091,-17.0769 
3488.0063,-20.2681 3497.8941,-24.0736 3498.1091,-17.0769"/>
+</g>
+<!-- 
/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv
 -->
+<g id="edge192" class="edge">
+<title>/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3843.1359,-1799.9243C3899.0203,-1788.9606 3970.0833,-1775.0191 
4025.9519,-1764.0585"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4026.7051,-1767.4775 
4035.8442,-1762.1178 4025.3575,-1760.6085 4026.7051,-1767.4775"/>
+</g>
+<!-- 
/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv
 -->
+<g id="edge191" class="edge">
+<title>/gnu/store/5s4ya4h31ds85qqikz093kmxwhzifwzb&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;7.4.0.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M3644.3326,-1808.2683C3413.6699,-1787.2083 2851.2388,-1735.7724 2380,-1692 
2039.08,-1660.3327 1920.2922,-1770.9991 1613,-1620 1584.4661,-1605.9789 
1560.7313,-1577.8656 1545.8522,-1556.7707"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1548.5514,-1554.5162 
1540.0295,-1548.2213 1542.7658,-1558.4567 1548.5514,-1554.5162"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv
 -->
+<g id="edge230" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/rhqqd8kmr1fqc9fkzpbh0qca4mwb03xa&#45;texinfo&#45;6.6.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4200.0253,-1742.4593C4350.3175,-1735.4331 4664.135,-1718.1162 4770,-1692 
4774.2919,-1690.9412 4996.7662,-1596.1868 5100.1757,-1552.1018"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="5101.676,-1555.267 
5109.5022,-1548.1255 5098.9307,-1548.8278 5101.676,-1555.267"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv
 -->
+<g id="edge231" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4157.2683,-1727.9309C4263.2323,-1679.3165 4553.697,-1547.047 4653,-1512 
4693.0961,-1497.8489 4738.8358,-1485.1568 4776.2445,-1475.6384"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4777.2222,-1479.0016 
4786.0637,-1473.164 4775.5116,-1472.2138 4777.2222,-1479.0016"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge234" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4035.8156,-1745.3422C3785.1598,-1742.9333 3008.3434,-1732.4854 2366,-1692 
2029.5896,-1670.7968 1942.0871,-1683.2681 1611,-1620 1554.6332,-1609.2287 
1542.8171,-1597.33 1487,-1584 1402.9792,-1563.9345 1380.684,-1565.0512 
1296,-1548 1294.7252,-1547.7433 1293.4399,-1547.4833 1292.1461,-1547.2203"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1292.599,-1543.7404 
1282.0993,-1545.1571 1291.1908,-1550.5973 1292.599,-1543.7404"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge235" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4035.8997,-1743.5993C3736.1576,-1734.7553 2714.7449,-1703.8907 2646,-1692 
2541.2889,-1673.8883 2518.886,-1653.3835 2418,-1620 2417.4558,-1619.8199 
2106.5484,-1512.1669 2106,-1512 2066.4058,-1499.9512 2022.041,-1488.0682 
1984.7365,-1478.5301"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1985.4676,-1475.1047 
1974.9133,-1476.0309 1983.7416,-1481.8886 1985.4676,-1475.1047"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge236" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4125.2105,-1727.6867C4135.1909,-1700.6448 4152,-1648.2373 4152,-1602 
4152,-1602 4152,-1602 4152,-1530 4152,-1399.4596 4030.2391,-1411.0455 
3907,-1368 3861.37,-1352.0622 3526.0187,-1301.5063 3478,-1296 
3186.5983,-1262.5849 2837.6841,-1248.801 2685.8611,-1244.0863"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2685.8135,-1240.5832 
2675.7111,-1243.7755 2685.5993,-1247.58 2685.8135,-1240.5832"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge237" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4117.5346,-1727.7093C4115.071,-1673.4792 4099.7371,-1512.8242 4005,-1440 
3958.825,-1404.5054 3930.6051,-1430.9984 3879,-1404 3856.6119,-1392.2871 
3858.2211,-1377.96 3835,-1368 3772.6442,-1341.2544 3584.9992,-1325.4278 
3479.0085,-1318.3846"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3479.2204,-1314.8911 
3469.0132,-1317.7304 3478.7632,-1321.8762 3479.2204,-1314.8911"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge238" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4112.0451,-1727.9658C4091.998,-1668.3145 4025.4518,-1478.9659 3976,-1440 
3970.2542,-1435.4726 3897.3964,-1418.2281 3836.6902,-1404.4284"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3837.2047,-1400.9562 
3826.6783,-1402.1585 3835.6569,-1407.783 3837.2047,-1400.9562"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge239" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4035.8518,-1744.3333C3852.4186,-1740.0959 3395.6699,-1726.6818 3015,-1692 
2894.6567,-1681.0359 2587.2519,-1667.1777 2476,-1620 2452.26,-1609.9328 
2311.0212,-1495.3706 2294,-1476 2277.2282,-1456.9132 2262.7061,-1431.9172 
2252.9589,-1413.1122"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2256.0738,-1411.5159 
2248.4396,-1404.1694 2249.8262,-1414.6731 2256.0738,-1411.5159"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge241" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4179.0877,-1727.9838C4211.4143,-1718.073 4251.6312,-1705.1435 4287,-1692 
4298.9698,-1687.5519 4697.7437,-1515.584 4710,-1512 4806.3164,-1483.8347 
4988.0505,-1517.2506 4924,-1440 4896.4319,-1406.7504 4775.4109,-1412.1759 
4733,-1404 4489.2476,-1357.01 4429.348,-1339.7878 4185,-1296 
4086.1799,-1278.2912 4057.0888,-1292.2044 3962,-1260 3929.9823,-1249.1563 
3927.2204,-1234.2256 3895,-1224 3834.5319,-1204.8096 3669.9219,-1188.0301 
3559.5588,-1178.458"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3559.6494,-1174.9529 
3549.3861,-1177.5827 3559.0492,-1181.9272 3559.6494,-1174.9529"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge244" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4200.2491,-1741.7519C4365.5664,-1733.4201 4731.8262,-1713.8338 4857,-1692 
5089.8683,-1651.3813 5144.23,-1621.1846 5369,-1548 5537.9014,-1493.0061 
5693,-1491.6288 5693,-1314 5693,-1314 5693,-1314 5693,-162 5693,-11.7683 
5431.0888,-74.3133 4021,-36 3834.0702,-30.921 3615.6563,-24.5116 
3498.6259,-20.8724"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3498.4146,-17.3642 
3488.3103,-20.5506 3498.1962,-24.3608 3498.4146,-17.3642"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge245" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4200.0399,-1742.2556C4368.2711,-1734.2316 4747.2303,-1714.2866 4875,-1692 
5107.8683,-1651.3813 5162.23,-1621.1846 5387,-1548 5555.9014,-1493.0061 
5711,-1491.6288 5711,-1314 5711,-1314 5711,-1314 5711,-162 5711,-11.7683 
5449.0888,-74.3133 4039,-36 3845.3028,-30.7371 3617.8005,-24.0458 
3498.1886,-20.4882"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3498.1082,-16.9844 
3488.0085,-20.1853 3497.9,-23.9813 3498.1082,-16.9844"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge247" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4200.3167,-1742.6867C4372.2306,-1734.9652 4762.8777,-1714.697 4893,-1692 
5125.8683,-1651.3813 5180.23,-1621.1846 5405,-1548 5573.9014,-1493.0061 
5729,-1491.6288 5729,-1314 5729,-1314 5729,-1314 5729,-162 5729,-11.7683 
5467.0888,-74.3133 4057,-36 3857.049,-30.5672 3621.0748,-23.6122 
3498.2003,-20.1536"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3498.2032,-16.6524 
3488.1089,-19.8703 3498.0067,-23.6496 3498.2032,-16.6524"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge240" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#8b7765" d="M4200.2448,-1734.75C4260.957,-1725.5884 
4345.31,-1711.0583 4418,-1692 4757.4153,-1603.0099 5290.4704,-1591.3353 
5101,-1296 5059.5486,-1231.388 5014.7517,-1253.7849 4944,-1224 
4820.686,-1172.0876 4784.6159,-1171.7746 4663,-1116 4632.2731,-1101.9083 
4628.5905,-1088.9762 4596,-1080 4422.5046,-1032.2152 3952.6502,-1114.314 
3787,-1044 3765.5849,-1034.9099 3770.1516,-1017.6874 3749,-1008 
3671.3724,-972.4466 3431.5296,-960.1313 3300.9226,-955.9973"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3300.66,-952.4877 
3290.5573,-955.6791 3300.4452,-959.4844 3300.66,-952.4877"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge242" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4194.6314,-1727.9631C4236.1354,-1718.3533 4288.0958,-1705.6994 4334,-1692 
4342.5121,-1689.4597 4930.8883,-1483.2649 4936,-1476 4945.2071,-1462.9146 
4944.5674,-1453.5129 4936,-1440 4894.8949,-1375.1671 4381.81,-1173.0957 
4308,-1152 4301.7985,-1150.2275 4150.5073,-1126.6777 4053.639,-1111.269"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4053.9941,-1107.7815 
4043.5681,-1109.665 4052.8931,-1114.6944 4053.9941,-1107.7815"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge246" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4200.1039,-1730.3152C4245.3783,-1720.4682 4302.2464,-1706.8482 4352,-1692 
4360.5121,-1689.4597 4948.8883,-1483.2649 4954,-1476 4963.2071,-1462.9146 
4962.5674,-1453.5129 4954,-1440 4912.8949,-1375.1671 4399.81,-1173.0957 
4326,-1152 4319.5405,-1150.1538 4155.6706,-1124.681 4053.7656,-1109.3907"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4054.2078,-1105.9179 
4043.7997,-1107.8983 4053.171,-1112.8407 4054.2078,-1105.9179"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge243" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4200.2145,-1744.0093C4361.0239,-1739.4155 4711.5528,-1725.7648 4827,-1692 
4859.4449,-1682.5109 4862.6451,-1668.6328 4894,-1656 5031.6314,-1600.5488 
5404.2596,-1542.3115 5537,-1476 5616.6855,-1436.1925 5655,-1403.0754 5655,-1314 
5655,-1314 5655,-1314 5655,-1170 5655,-881.686 5357.3635,-952.598 5083,-864 
4360.053,-630.5445 4166.0383,-596.6286 3412,-504 3210.1336,-479.202 
2973.6115,-463.6099 2836.1913,-455.8772"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2836.2425,-452.3747 
2826.0628,-455.3114 2835.852,-459.3638 2836.2425,-452.3747"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv
 -->
+<g id="edge233" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4035.6605,-1744.6853C3758.1076,-1740.0094 2858.1132,-1722.7951 2570,-1692 
2480.1941,-1682.4011 2459.7116,-1666.4431 2370,-1656 2221.8964,-1638.7596 
1843.7383,-1659.6382 1700,-1620 1649.2333,-1606.0002 1596.4312,-1575.3306 
1563.1772,-1553.6979"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1565.0201,-1550.7206 
1554.7461,-1548.1333 1561.1642,-1556.5629 1565.0201,-1550.7206"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv
 -->
+<g id="edge229" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4044.6524,-1727.9555C3873.425,-1685.8312 3450.2739,-1581.7302 
3296.7783,-1543.9682"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3297.1777,-1540.4622 
3286.6311,-1541.4719 3295.5054,-1547.2595 3297.1777,-1540.4622"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv
 -->
+<g id="edge232" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4155.6638,-1727.7803C4171.8955,-1718.6388 4190.2617,-1706.4269 4204,-1692 
4242.3686,-1651.7084 4270.343,-1592.1745 4284.513,-1557.6153"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4287.8336,-1558.7381 
4288.3025,-1548.1536 4281.3354,-1556.1355 4287.8336,-1558.7381"/>
+</g>
+<!-- 
/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv
 -->
+<g id="edge248" class="edge">
+<title>/gnu/store/qcx5p89cac2ghvc4k6cq2c6dsm3xncp1&#45;glibc&#45;intermediate&#45;2.29.drv&#45;&gt;/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M4035.7409,-1740.0773C3854.5784,-1727.0336 3421.4361,-1695.8474 
3221.891,-1681.4802"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3221.9225,-1677.9735 
3211.697,-1680.7462 3221.4198,-1684.9554 3221.9225,-1677.9735"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge205" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1607.8916,-1514.7307C1665.0658,-1503.6647 1742.7222,-1488.6344 
1803.7386,-1476.8248"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="1804.6151,-1480.2202 
1813.7678,-1474.8836 1803.2849,-1473.3477 1804.6151,-1480.2202"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge208" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1561.648,-1511.8362C1624.2533,-1477.8592 1766.3991,-1404.8055 1895,-1368 
2004.6161,-1336.6279 2036.8195,-1352.3823 2149,-1332 2221.5683,-1318.8149 
2238.6987,-1310.5784 2311,-1296 2385.9111,-1280.8954 2471.8164,-1265.536 
2532.086,-1255.0797"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2533.0249,-1258.4694 
2542.2815,-1253.3153 2531.8311,-1251.5719 2533.0249,-1258.4694"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge209" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1607.8779,-1528.4725C1885.5237,-1522.8788 2804.0273,-1502.4526 2861,-1476 
2880.6866,-1466.8595 2874.9928,-1450.4804 2894,-1440 2972.7081,-1396.6012 
3005.4936,-1424.5196 3093,-1404 3178.7094,-1383.9018 3275.9521,-1354.7087 
3338.5348,-1335.0721"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3339.7871,-1338.3472 
3348.2743,-1332.0054 3337.6847,-1331.6704 3339.7871,-1338.3472"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge210" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1607.5777,-1528.6704C1816.9326,-1524.7429 2405.5208,-1511.1851 2894,-1476 
3179.9701,-1455.4016 3517.9063,-1415.4457 3671.106,-1396.4799"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3671.8779,-1399.9111 
3681.3708,-1395.2063 3671.0159,-1392.9643 3671.8779,-1399.9111"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge211" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1607.8375,-1526.6705C1701.6715,-1521.3898 1862.5689,-1508.1563 1997,-1476 
2066.1172,-1459.467 2142.4618,-1429.0686 2190.7965,-1408.2118"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2192.3051,-1411.3724 
2200.0795,-1404.1746 2189.5133,-1404.9532 2192.3051,-1411.3724"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge213" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1539.1135,-1511.9207C1565.675,-1466.4038 1642.3636,-1347.0775 1743,-1296 
1873.7736,-1229.6266 1925.8404,-1280.8771 2071,-1260 2161.2636,-1247.0181 
2182.3693,-1234.106 2273,-1224 2479.3028,-1200.9958 3097.2419,-1180.6055 
3346.7632,-1173.0808"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3347.0346,-1176.5744 
3356.9249,-1172.7754 3346.8242,-1169.5775 3347.0346,-1176.5744"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge216" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1450.4228,-1515.9155C1441.8381,-1514.4555 1433.2355,-1513.1049 1425,-1512 
1325.1323,-1498.6015 1064.487,-1518.2281 973,-1476 880.5498,-1433.3273 
811,-1415.8234 811,-1314 811,-1314 811,-1314 811,-162 811,-100.8731 
857.955,-93.9628 915,-72 1029.876,-27.7717 2910.3889,-19.5018 
3331.7123,-18.2128"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3331.9941,-21.712 
3341.9835,-18.1819 3331.973,-14.7121 3331.9941,-21.712"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge217" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1450.3188,-1513.0308C1447.8563,-1512.6684 1445.4124,-1512.3237 1443,-1512 
1343.1323,-1498.6015 1082.487,-1518.2281 991,-1476 898.5498,-1433.3273 
829,-1415.8234 829,-1314 829,-1314 829,-1314 829,-162 829,-100.8731 
875.955,-93.9628 933,-72 1047.3756,-27.9644 2912.039,-19.5746 
3331.6294,-18.23"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3331.8712,-21.7294 
3341.86,-18.1977 3331.849,-14.7294 3331.8712,-21.7294"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge207" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1450.4506,-1514.2024C1445.5694,-1513.4052 1440.723,-1512.6621 1436,-1512 
1390.6024,-1505.636 1055.9684,-1509.7995 1025,-1476 1014.1912,-1464.203 
1018.0302,-1454.4021 1025,-1440 1099.5865,-1285.8774 1184.2283,-1285.5624 
1344,-1224 1463.9001,-1177.8007 1498.9317,-1181.4676 1624,-1152 
1772.6531,-1116.9756 1809.703,-1107.1157 1960,-1080 2068.3095,-1060.4594 
2097.5357,-1067.7534 2205,-1044 2259.7851,-1031.8905 2270.7491,-1017.7665 
2326,-1008 2478.2217,-9 [...]
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3127.6119,-960.2416 
3137.4886,-956.4074 3127.3766,-953.2456 3127.6119,-960.2416"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge212" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1450.4522,-1514.1909C1445.5706,-1513.3965 1440.7237,-1512.6572 1436,-1512 
1389.4994,-1505.5303 1046.7519,-1510.5829 1015,-1476 955.2934,-1410.97 
1032.892,-1354.5108 1099,-1296 1191.01,-1214.5638 1220.2111,-1195.8313 
1335,-1152 1831.4488,-962.4347 1982.8736,-994.9823 2511,-936 
2900.9023,-892.4549 3009.0402,-980.5909 3393,-900 3435.9715,-890.9805 
3442.611,-875.4488 3485,-864 3585.3116,-836.907 3620.4637,-868.8567 3716,-828 
3740.193,-817.6537 3738.8104 [...]
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="4010.9206,-751.3059 
4020.473,-746.7231 4010.1476,-744.3487 4010.9206,-751.3059"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge214" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1513.6069,-1511.9043C1479.312,-1469.3381 1403.8382,-1361.5291 1459,-1296 
1489.2094,-1260.1129 2244.3331,-1156.7637 2291,-1152 2607.8788,-1119.6533 
3604.7832,-1103.2474 3894.3804,-1099.0821"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3894.4327,-1102.5818 
3904.3816,-1098.939 3894.3326,-1095.5825 3894.4327,-1102.5818"/>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge215" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1450.4557,-1514.1653C1445.5732,-1513.3773 1440.7252,-1512.6464 1436,-1512 
1386.8518,-1505.2766 1024.6328,-1512.4635 991,-1476 982.0648,-1466.3128 
983.3229,-1396.9659 995,-1368 1120.8449,-1055.8324 1919.8864,-611.0141 
2239,-504 2304.7127,-481.9634 2485.2281,-465.9382 2605.7239,-457.3057"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2606.0127,-460.7941 
2615.74,-456.5952 2605.5174,-453.8116 2606.0127,-460.7941"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv
 -->
+<g id="node42" class="node">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv</title>
+<polygon fill="none" stroke="#000000" points="1188,-1476 1034,-1476 1034,-1440 
1188,-1440 1188,-1476"/>
+<text text-anchor="middle" x="1111" y="-1454.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">libstdc++&#45;boot0@4.9.4</text>
+</g>
+<!-- 
/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv
 -->
+<g id="edge206" class="edge">
+<title>/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv&#45;&gt;/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8fbc8f" 
d="M1450.3937,-1514.5651C1445.5266,-1513.6779 1440.6989,-1512.8159 1436,-1512 
1332.3276,-1493.9993 1305.6353,-1494.2131 1202,-1476 1200.8897,-1475.8049 
1199.7721,-1475.607 1198.6483,-1475.4066"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="1198.8685,-1471.8893 
1188.4037,-1473.5438 1197.6162,-1478.7763 1198.8685,-1471.8893"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge218" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1169.4701,-1439.9891C1237.4597,-1419.6817 1353.3631,-1387.0226 1455,-1368 
1856.7254,-1292.8121 2346.1371,-1257.6791 2532.228,-1246.3226"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2532.6842,-1249.8015 
2542.4545,-1245.7039 2532.2614,-1242.8143 2532.6842,-1249.8015"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge219" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1188.4876,-1444.6257C1310.3322,-1424.2021 1554.3577,-1385.7461 1763,-1368 
2073.3666,-1341.6017 3049.7971,-1320.9201 3328.8432,-1315.434"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3328.9369,-1318.9329 
3338.8664,-1315.2376 3328.7997,-1311.9343 3328.9369,-1318.9329"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge220" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1188.1825,-1453.991C1267.7895,-1449.9716 1395.5443,-1443.8429 1506,-1440 
2351.3889,-1410.5877 3376.1736,-1392.279 3671.0263,-1387.3488"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3671.2655,-1390.8454 
3681.2058,-1387.179 3671.1488,-1383.8463 3671.2655,-1390.8454"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge221" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1188.2449,-1448.8387C1216.4594,-1445.7132 1248.6457,-1442.4042 1278,-1440 
1613.5225,-1412.5192 2016.0379,-1394.8732 2172.8589,-1388.5824"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2173.4233,-1392.0627 
2183.2758,-1388.1667 2173.1442,-1385.0683 2173.4233,-1392.0627"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge224" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1161.2097,-1439.9796C1257.7937,-1406.0794 1476.7543,-1332.9149 1667,-1296 
1725.3416,-1284.6795 2137.8054,-1229.282 2197,-1224 2621.783,-1186.0964 
3129.8451,-1174.5947 3346.5827,-1171.2734"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3346.7357,-1174.7716 
3356.6818,-1171.1213 3346.6302,-1167.7723 3346.7357,-1174.7716"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge227" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1087.8689,-1439.691C1033.8033,-1389.8334 905,-1245.4791 905,-1098 905,-1098 
905,-1098 905,-162 905,-9.1189 1085.7189,-94.0609 1237,-72 1446.2772,-41.4817 
2957.6813,-22.95 3331.5563,-18.8613"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.7969,-22.359 
3341.7582,-18.7502 3331.7207,-15.3594 3331.7969,-22.359"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge228" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1096.3527,-1439.691C1051.8033,-1389.8334 923,-1245.4791 923,-1098 923,-1098 
923,-1098 923,-162 923,-9.1189 1103.7189,-94.0609 1255,-72 1463.1809,-41.6415 
2959.8821,-23.1445 3331.6242,-18.9267"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.8097,-22.4249 
3341.7695,-18.812 3331.7305,-15.4254 3331.8097,-22.4249"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge222" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1120.7311,-1439.6531C1131.5413,-1420.372 1150.3519,-1389.8632 1172,-1368 
1279.4565,-1259.4756 1337.1668,-1266.0054 1484,-1224 1725.5518,-1154.8978 
2493.4619,-1011.2633 2517,-1008 2735.5169,-977.7052 2995.1076,-963.2073 
3127.2857,-957.3465"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3127.5165,-960.8399 
3137.3539,-956.906 3127.2104,-953.8466 3127.5165,-960.8399"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge223" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1114.5257,-1439.8727C1123.6557,-1397.238 1151.7565,-1289.292 1213,-1224 
1293.6025,-1138.0692 1603.9458,-1025.4954 1667,-1008 1901.1586,-943.0291 
1966.822,-956.0316 2209,-936 2692.5016,-896.0074 2818.8904,-962.5046 3300,-900 
3370.9921,-890.7769 3386.7987,-878.0257 3457,-864 3550.2892,-845.3615 
3578.0317,-858.9189 3668,-828 3699.9689,-817.0134 3702.8951,-802.5827 3735,-792 
3784.6155,-775.6453 3917.4589,-758.6834 4010.3983,-748.235"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="4010.8429,-751.7072 
4020.3928,-747.1191 4010.0662,-744.7504 4010.8429,-751.7072"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge225" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1131.293,-1439.8784C1169.9897,-1406.3008 1258.2293,-1334.3517 1345,-1296 
1377.541,-1281.6173 1933.7081,-1156.5014 1969,-1152 2161.9347,-1127.3917 
3545.2667,-1104.6062 3894.2257,-1099.2054"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3894.3012,-1102.7048 
3904.246,-1099.0507 3894.1931,-1095.7056 3894.3012,-1102.7048"/>
+</g>
+<!-- 
/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge226" class="edge">
+<title>/gnu/store/mz219csx49jbz2ykpzv7bzwcdhzrs029&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M1111.6307,-1439.8885C1112.5432,-1421.583 1114.7451,-1392.569 1120,-1368 
1143.6778,-1257.2961 1165.3913,-1221.183 1255,-1152 1527.5847,-941.5491 
1629.4794,-939.3241 1921,-756 2043.4013,-679.0274 2070.188,-653.9018 2192,-576 
2243.4379,-543.1041 2251.4581,-524.4188 2309,-504 2362.0473,-485.1761 
2503.5171,-469.2357 2605.8956,-459.6581"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2606.3542,-463.1307 
2615.9884,-458.7227 2605.708,-456.1606 2606.3542,-463.1307"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv
 -->
+<g id="edge249" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<path fill="none" stroke="#b8860b" d="M3286.75,-1528.19C3453.2371,-1521.7066 
4032.8325,-1498.8145 4511,-1476 4602.2605,-1471.6457 4707.2636,-1465.9877 
4776.1464,-1462.1876"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4776.6707,-1465.664 
4786.4623,-1461.6175 4776.2844,-1458.6747 4776.6707,-1465.664"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge250" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3193.3876,-1528.0197C3087.898,-1523.0243 2833.9175,-1507.9648 2755,-1476 
2706.5506,-1456.376 2692.1203,-1446.7225 2662,-1404 2632.9203,-1362.7534 
2619.064,-1304.5667 2613.0535,-1270.3157"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2616.4476,-1269.386 
2611.3684,-1260.088 2609.5408,-1270.524 2616.4476,-1269.386"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge251" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3281.3858,-1511.9156C3298.1356,-1503.0056 3316.6323,-1490.9353 3330,-1476 
3365.5075,-1436.3287 3386.7275,-1376.7349 3396.816,-1341.966"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3400.2742,-1342.5951 
3399.5931,-1332.0221 3393.5322,-1340.7121 3400.2742,-1342.5951"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge252" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3286.7344,-1521.0161C3335.7272,-1511.2619 3414.7816,-1494.5702 3482,-1476 
3556.1748,-1455.508 3640.0376,-1426.9139 3694.7882,-1407.4947"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3696.0793,-1410.7503 
3704.3268,-1404.0998 3693.7321,-1404.1556 3696.0793,-1410.7503"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge253" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#b8860b" d="M3193.324,-1529.214C3083.712,-1526.723 
2801.62,-1516.5554 2570,-1476 2475.8326,-1459.5118 2369.6,-1428.17 
2303.7155,-1407.1763"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2304.4863,-1403.748 
2293.8951,-1404.0285 2302.3495,-1410.414 2304.4863,-1403.748"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge256" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3284.4452,-1511.8722C3312.1692,-1500.1121 3344.8207,-1485.3009 3357,-1476 
3423.4373,-1425.264 3449.3818,-1410.5433 3478,-1332 3494.5104,-1286.6869 
3478.2057,-1230.3744 3465.2971,-1197.4828"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3468.469,-1195.9926 
3461.44,-1188.0651 3461.9912,-1198.6456 3468.469,-1195.9926"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge259" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3206.813,-1511.8463C3022.5674,-1406.4485 2135,-873.2066 2135,-738 2135,-738 
2135,-738 2135,-666 2135,-566.8261 2079,-549.1739 2079,-450 2079,-450 2079,-450 
2079,-162 2079,-109.3582 2108.6707,-95.0456 2156,-72 2208.6327,-46.3721 
3059.2327,-25.6097 3331.7514,-19.6951"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3332.0522,-23.1895 
3341.9743,-19.4744 3331.901,-16.1912 3332.0522,-23.1895"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge260" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3211.6953,-1511.8463C3040.5674,-1406.4485 2153,-873.2066 2153,-738 
2153,-738 2153,-738 2153,-666 2153,-566.8261 2097,-549.1739 2097,-450 2097,-450 
2097,-450 2097,-162 2097,-109.3582 2126.6707,-95.0456 2174,-72 
2226.1507,-46.6068 3061.7191,-25.9904 3331.6594,-19.8614"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3331.8709,-23.3576 
3341.7891,-19.6321 3331.7124,-16.3594 3331.8709,-23.3576"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge254" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3241.0929,-1511.9912C3243.1423,-1477.217 3247.4918,-1398.3951 3249,-1332 
3251.9853,-1200.5777 3229.0713,-1044.4784 3218.8044,-981.938"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3222.2523,-981.3352 
3217.1569,-972.0461 3215.3474,-982.4852 3222.2523,-981.3352"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge255" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3286.6312,-1513.3338C3288.1013,-1512.8751 3289.5603,-1512.4292 3291,-1512 
3355.4605,-1492.783 3377.8163,-1506.0394 3438,-1476 3460.6073,-1464.716 
3460.9436,-1453.9659 3482,-1440 3486.0177,-1437.3352 4092.2293,-1119.0041 
4096,-1116 4186.9154,-1043.5687 4183.4396,-978.925 4166,-864 4161.067,-831.4923 
4163.0237,-821.7393 4149,-792 4144.4063,-782.2583 4137.8586,-772.5818 
4131.3405,-764.1685"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="4133.9185,-761.7904 
4124.9058,-756.2206 4128.478,-766.1951 4133.9185,-761.7904"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge257" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3286.6879,-1513.5092C3288.1417,-1512.9998 3289.5818,-1512.4957 3291,-1512 
3337.1736,-1495.8603 3351.0807,-1497.5311 3395,-1476 3424.0829,-1461.7424 
3815.7426,-1202.8017 3937.8848,-1121.9268"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3940.1332,-1124.6358 
3946.5384,-1116.1963 3936.2683,-1118.7994 3940.1332,-1124.6358"/>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge258" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3226.3688,-1511.9188C3196.4971,-1472.3978 3122.8317,-1375.4933 3059,-1296 
3032.9195,-1263.5205 3031.445,-1250.1234 2999,-1224 2863.9828,-1115.2895 
2754.8606,-1184.257 2653,-1044 2585.529,-951.0957 2619.0703,-652.5493 2631,-576 
2636.1728,-542.8076 2635.0094,-531.7101 2654,-504 2661.7396,-492.7068 
2672.5237,-482.5791 2683.1808,-474.2297"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2685.3348,-476.9894 
2691.2531,-468.2016 2681.1464,-471.3807 2685.3348,-476.9894"/>
+</g>
+<!-- /gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv -->
+<g id="node46" class="node">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv</title>
+<polygon fill="none" stroke="#000000" points="2852,-1476 2764,-1476 2764,-1440 
2852,-1440 2852,-1476"/>
+<text text-anchor="middle" x="2808" y="-1454.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">m4@1.4.18</text>
+</g>
+<!-- 
/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv
 -->
+<g id="edge261" class="edge">
+<title>/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv&#45;&gt;/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv</title>
+<path fill="none" stroke="#b8860b" 
d="M3193.358,-1522.2263C3112.7465,-1508.7911 2947.7987,-1481.2998 
2862.2155,-1467.0359"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2862.6223,-1463.5555 
2852.1829,-1465.3638 2861.4715,-1470.4603 2862.6223,-1463.5555"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge273" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4217.7862,-1519.1216C4021.1324,-1491.1289 3485.5766,-1413.0976 3042,-1332 
2916.6756,-1309.0874 2771.902,-1278.0665 2685.5428,-1259.0743"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2686.0833,-1255.6095 
2675.5645,-1256.8762 2684.5773,-1262.4456 2686.0833,-1255.6095"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge274" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4282.1877,-1511.8255C4266.3631,-1490.8826 4237.4046,-1457.155 4204,-1440 
4119.3743,-1396.5402 4080.3902,-1441.593 3993,-1404 3968.5037,-1393.4623 
3969.8476,-1377.6802 3945,-1368 3862.0434,-1335.6816 3607.586,-1321.6712 
3479.4237,-1316.5358"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3479.4248,-1313.0333 
3469.2951,-1316.1379 3479.15,-1320.0279 3479.4248,-1313.0333"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge275" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4244.1993,-1511.9467C4188.2801,-1492.4944 4095.491,-1461.4491 4014,-1440 
3955.2749,-1424.5431 3888.1493,-1410.6963 3836.8145,-1400.8948"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3837.2423,-1397.4136 
3826.7653,-1398.9892 3835.9381,-1404.2911 3837.2423,-1397.4136"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge276" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4217.6389,-1529.1214C3938.8823,-1525.6881 2986.4212,-1511.5701 2684,-1476 
2604.2723,-1466.6226 2585.6754,-1455.9568 2507,-1440 2438.7468,-1426.157 
2360.6684,-1410.3717 2306.6527,-1399.4592"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2307.0129,-1395.9614 
2296.5179,-1397.4119 2305.6268,-1402.8228 2307.0129,-1395.9614"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge279" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4287.0441,-1511.898C4277.9164,-1492.5449 4261.5284,-1461.7167 4241,-1440 
4201.8775,-1398.613 4186.545,-1392.2191 4135,-1368 4095.9491,-1349.6514 
3801.844,-1276.556 3762,-1260 3731.5041,-1247.3283 3727.8859,-1235.6889 
3697,-1224 3653.1435,-1207.4023 3602.8267,-1195.1942 3559.3219,-1186.6276"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3559.7677,-1183.1491 
3549.2857,-1184.6916 3558.4418,-1190.0224 3559.7677,-1183.1491"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge282" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4372.0121,-1528.6807C4570.278,-1523.9208 5091.9994,-1502.1982 5230,-1404 
5408.1779,-1277.2126 5429,-1172.6834 5429,-954 5429,-954 5429,-954 5429,-162 
5429,-14.2598 5255.0158,-94.5063 5109,-72 5068.6933,-65.7873 3833.3896,-30.1869 
3498.1805,-20.4571"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.1516,-16.9549 
3488.0542,-20.1631 3497.9483,-23.9519 3498.1516,-16.9549"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge283" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4372.2384,-1528.8712C4573.5599,-1524.5154 5108.0628,-1503.5762 5248,-1404 
5426.1779,-1277.2126 5447,-1172.6834 5447,-954 5447,-954 5447,-954 5447,-162 
5447,-14.2598 5273.0158,-94.5063 5127,-72 5086.4447,-65.7489 3836.1021,-29.7465 
3498.349,-20.28"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3498.2418,-16.7757 
3488.1477,-19.9944 3498.0458,-23.773 3498.2418,-16.7757"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge277" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M4372.1322,-1514.691C4450.2376,-1499.146 
4559.8788,-1477.1878 4562,-1476 4600.1395,-1454.6436 4613.0009,-1444.6786 
4629,-1404 4668.0866,-1304.62 4506.0095,-1236.9079 4487,-1224 
4419.1176,-1177.9064 4393.8757,-1180.684 4317,-1152 4219.8183,-1115.7394 
4196.6505,-1100.6467 4095,-1080 3914.8693,-1043.4128 3863.8173,-1077.027 
3683,-1044 3624.8657,-1033.3815 3612.7278,-1020.6432 3555,-1008 
3469.1972,-989.2079 3369.8883,-974.2355 3300.6518,-964.8676"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3301.0368,-961.388 
3290.66,-963.5263 3300.1054,-968.3257 3301.0368,-961.388"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge278" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4372.2922,-1517.8834C4459.4817,-1503.9812 4590.4798,-1482.2899 4600,-1476 
4670.5962,-1429.3579 4674.4999,-1379.6843 4662,-1296 4619.9968,-1014.7961 
4514.313,-934.0205 4268,-792 4244.2406,-778.3007 4216.4801,-767.4026 
4190.8154,-759.0878"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4191.6841,-755.692 
4181.0945,-756.0271 4189.5818,-762.3689 4191.6841,-755.692"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge280" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4372.2763,-1514.4356C4444.3499,-1499.7395 4541.219,-1479.4487 4544,-1476 
4554.0435,-1463.5449 4549.8191,-1454.9043 4544,-1440 4496.5268,-1318.4076 
4453.0229,-1297.2767 4345,-1224 4307.9775,-1198.886 4292.1343,-1205.5885 
4251,-1188 4216.6341,-1173.3056 4210.0786,-1164.9008 4175,-1152 
4135.7754,-1137.5744 4090.9641,-1125.1608 4053.6214,-1115.886"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4054.3447,-1112.4597 
4043.7986,-1113.4755 4052.6763,-1119.258 4054.3447,-1112.4597"/>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge281" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M4372.0177,-1520.783C4465.279,-1509.1557 
4612.7162,-1489.1007 4635,-1476 4705.131,-1434.77 4721.4322,-1408.8923 
4748,-1332 4778.0247,-1245.1029 4711,-1002.258 4711,-954 4711,-954 4711,-954 
4711,-882 4711,-724.1753 4524.3642,-817.4645 4379,-756 4344.2048,-741.2875 
4338.6565,-729.1358 4302,-720 3998.4321,-644.3426 3907.452,-736.2963 3599,-684 
3542.8414,-674.4786 3531.9407,-658.7277 3476,-648 3308.9563,-615.9661 
3254.2373,-671.7767 3095,-612 3018.0915,- [...]
+<polygon fill="#ff0000" stroke="#ff0000" points="2836.6352,-465.3274 
2826.1141,-466.5745 2835.1165,-472.1607 2836.6352,-465.3274"/>
+</g>
+<!-- /gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv -->
+<g id="node47" class="node">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv</title>
+<polygon fill="none" stroke="#000000" points="4502,-1476 4408,-1476 4408,-1440 
4502,-1440 4502,-1476"/>
+<text text-anchor="middle" x="4455" y="-1454.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">expat@2.2.7</text>
+</g>
+<!-- 
/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv
 -->
+<g id="edge284" class="edge">
+<title>/gnu/store/yw6kfj4di6sg8adzbrhv4yf7xxf2khk7&#45;python&#45;minimal&#45;3.5.7.drv&#45;&gt;/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv</title>
+<path fill="none" stroke="#ff0000" 
d="M4335.3748,-1511.8314C4356.6787,-1502.2446 4382.9983,-1490.4008 
4405.5211,-1480.2655"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="4407.2326,-1483.3334 
4414.9156,-1476.038 4404.3601,-1476.95 4407.2326,-1483.3334"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv
 -->
+<g id="edge299" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/my4rsf2nhcxd9n106bjrdmw56k26cc2j&#45;perl&#45;boot0&#45;5.30.0.drv</title>
+<path fill="none" stroke="#8b7765" d="M3211.543,-1670.787C3369.4646,-1664.7644 
3698.8488,-1649.6254 3976,-1620 4002.5938,-1617.1573 4427.3329,-1558.3365 
4452,-1548 4476.5946,-1537.6939 4475.3109,-1522.0778 4500,-1512 
4612.8998,-1465.9157 4651.9794,-1497.5681 4772,-1476 4773.471,-1475.7357 
4774.956,-1475.4622 4776.4513,-1475.181"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4777.291,-1478.583 
4786.4302,-1473.2234 4775.9435,-1471.714 4777.291,-1478.583"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge302" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3024.2488,-1669.3026C2894.857,-1661.9131 2674.412,-1645.7078 2648,-1620 
2551.3193,-1525.8969 2584.2152,-1340.9233 2601.3625,-1270.3112"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2604.8183,-1270.9198 
2603.8591,-1260.3685 2598.0291,-1269.215 2604.8183,-1270.9198"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge303" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3147.8178,-1655.9247C3184.3739,-1633.0774 3247.336,-1591.4574 3295,-1548 
3326.2059,-1519.5482 3333.028,-1510.7656 3357,-1476 3377.659,-1446.0392 
3385.5048,-1438.8468 3396,-1404 3402.0223,-1384.0044 3403.9445,-1360.4672 
3404.4024,-1342.479"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3407.9037,-1342.3787 
3404.5223,-1332.338 3400.9042,-1342.2958 3407.9037,-1342.3787"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge304" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3211.6013,-1657.8657C3216.1271,-1657.2076 3220.6115,-1656.5813 3225,-1656 
3389.2288,-1634.2455 3441.5545,-1679.9244 3596,-1620 3620.8609,-1610.354 
3621.5698,-1598.4221 3644,-1584 3672.1049,-1565.9291 3689.2947,-1574.2247 
3710,-1548 3740.9626,-1508.7838 3750.1878,-1449.436 3752.904,-1414.5099"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3756.4254,-1414.2895 
3753.5765,-1404.0849 3749.4399,-1413.8389 3756.4254,-1414.2895"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge305" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3024.3591,-1672.3307C2881.9007,-1668.6269 2618.1841,-1656.8671 2532,-1620 
2464.806,-1591.2563 2468.2475,-1553.3699 2408,-1512 2379.8099,-1492.6428 
2368.0317,-1495.5859 2340,-1476 2312.2796,-1456.6316 2283.9289,-1430.3844 
2264.5273,-1411.2341"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2266.8464,-1408.6037 
2257.2964,-1404.0157 2261.9009,-1413.5577 2266.8464,-1408.6037"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge308" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3185.1345,-1655.9475C3287.203,-1624.3819 3477.5134,-1548.3352 3553,-1404 
3590.0753,-1333.1098 3593.982,-1292.7057 3553,-1224 3545.1232,-1210.7947 
3532.7753,-1200.6251 3519.4084,-1192.8667"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3520.9825,-1189.7395 
3510.5139,-1188.1088 3517.6807,-1195.9119 3520.9825,-1189.7395"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge311" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3024.2787,-1673.1486C2749.4049,-1670.1846 1948.8475,-1658.3144 1691,-1620 
1628.7277,-1610.7468 1615.5831,-1597.0758 1554,-1584 1456.6533,-1563.3306 
1425.1169,-1585.6575 1333,-1548 1307.3182,-1537.5013 1308.1457,-1521.2834 
1282,-1512 1170.5461,-1472.4269 855.6368,-1531.1284 751,-1476 
669.8158,-1433.2277 623,-1405.7624 623,-1314 623,-1314 623,-1314 623,-162 
623,-109.646 651.7389,-94.5239 699,-72 759.7844,-43.0311 2881.5294,-22.6498 
3331.6396,-18.6993"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3331.9905,-22.1965 
3341.9594,-18.609 3331.9292,-15.1967 3331.9905,-22.1965"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge312" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3024.4626,-1673.0622C2752.3218,-1669.9579 1964.4107,-1657.9523 1709,-1620 
1646.7277,-1610.7468 1633.5831,-1597.0758 1572,-1584 1474.6533,-1563.3306 
1443.1169,-1585.6575 1351,-1548 1325.3182,-1537.5013 1326.1457,-1521.2834 
1300,-1512 1188.5461,-1472.4269 873.6368,-1531.1284 769,-1476 
687.8158,-1433.2277 641,-1405.7624 641,-1314 641,-1314 641,-1314 641,-162 
641,-109.646 669.7389,-94.5239 717,-72 777.5541,-43.1408 2883.4851,-22.8043 
3331.682,-18.7449"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3331.9912,-22.2423 
3341.9592,-18.652 3331.9279,-15.2426 3331.9912,-22.2423"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge306" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3211.7094,-1665.8026C3321.9543,-1655.9418 3510.4542,-1638.4038 3672,-1620 
3794.9107,-1605.9976 3824.9929,-1597.1284 3948,-1584 4044.0089,-1573.7531 
4291.6956,-1584.7075 4381,-1548 4404.0531,-1538.5243 4401.5501,-1522.8277 
4424,-1512 4495.9144,-1477.3153 4533.974,-1520.8919 4600,-1476 
4631.6018,-1454.5135 4636.1032,-1440.6279 4647,-1404 4693.1617,-1248.8352 
4533.7611,-1213.4706 4384,-1152 4292.3341,-1114.3751 4270.0465,-1100.0063 
4173,-1080 3971.2859 [...]
+<polygon fill="#8b7765" stroke="#8b7765" points="3300.9092,-954.0005 
3290.7207,-956.9065 3300.4976,-960.9884 3300.9092,-954.0005"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge307" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3211.6132,-1671.4896C3347.3172,-1666.7997 3606.2754,-1653.897 3824,-1620 
3892.5981,-1609.3201 3907.4295,-1594.8552 3976,-1584 4073.1166,-1568.6257 
4328.059,-1589.9224 4417,-1548 4437.1854,-1538.4856 4432.3829,-1522.637 
4452,-1512 4524.8691,-1472.4879 4566.9743,-1523.3668 4635,-1476 
4836.3734,-1335.782 4697.529,-1105.3984 4520,-936 4479.4593,-897.316 
4364.4256,-814.2578 4313,-792 4279.184,-777.3639 4240.4639,-765.9166 
4205.8474,-757.4024"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4206.2662,-753.9034 
4195.7248,-754.9666 4204.6284,-760.7091 4206.2662,-753.9034"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge309" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3211.7334,-1670.1699C3339.0595,-1663.9487 3559.3736,-1649.279 3634,-1620 
3658.8244,-1610.2604 3657.3321,-1594.1295 3682,-1584 3900.6789,-1494.2026 
3974.5122,-1541.992 4209,-1512 4276.0401,-1503.4253 4466.1268,-1526.54 
4511,-1476 4590.9952,-1385.9026 4172.8513,-1186.9134 4024.5891,-1120.2546"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="4025.7787,-1116.9524 
4015.2217,-1116.0578 4022.9167,-1123.3406 4025.7787,-1116.9524"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge310" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3024.2725,-1669.8655C2898.8533,-1663.4786 2669.7492,-1648.8181 2476,-1620 
2135.0042,-1569.2806 1865.1073,-1721.5938 1731,-1404 1659.4612,-1234.5814 
1746.685,-1159.4557 1851,-1008 1897.1411,-941.0075 2309.0616,-540.0138 
2382,-504 2420.5765,-484.9525 2523.4695,-470.2137 2605.8611,-460.9821"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2606.2465,-464.461 
2615.8015,-459.8837 2605.4776,-457.5033 2606.2465,-464.461"/>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv
 -->
+<g id="edge301" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3133.4514,-1655.7623C3154.9019,-1630.4436 3193.811,-1584.5182 
3218.2051,-1555.7251"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3220.8803,-1557.982 
3224.6741,-1548.0896 3215.5394,-1553.457 3220.8803,-1557.982"/>
+</g>
+<!-- /gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv -->
+<g id="node49" class="node">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv</title>
+<polygon fill="none" stroke="#000000" points="2739,-1620 2657,-1620 2657,-1584 
2739,-1584 2739,-1620"/>
+<text text-anchor="middle" x="2698" y="-1598.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">flex@2.6.4</text>
+</g>
+<!-- 
/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv
 -->
+<g id="edge300" class="edge">
+<title>/gnu/store/djxlq3ilag624v2zr8ya3zivwcrpiji7&#45;linux&#45;libre&#45;headers&#45;4.19.56.drv&#45;&gt;/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M3024.2666,-1657.9314C2939.4114,-1643.3848 2817.5732,-1622.4983 
2749.3324,-1610.7998"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2749.7066,-1607.313 
2739.259,-1609.073 2748.5238,-1614.2124 2749.7066,-1607.313"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge262" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2763.9532,-1446.4572C2728.1813,-1436.0873 2681.9335,-1420.0617 2671,-1404 
2661.9966,-1390.7736 2665.8074,-1383.134 2671,-1368 2677.5783,-1348.8274 
2692.4217,-1351.1726 2699,-1332 2704.1926,-1316.866 2706.8832,-1309.9232 
2699,-1296 2691.7055,-1283.1166 2679.9755,-1272.9716 2667.3602,-1265.1245"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2668.9436,-1261.9978 
2658.5287,-1260.0537 2665.458,-1268.0683 2668.9436,-1261.9978"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge263" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2852.239,-1443.9166C2856.8724,-1442.5477 2861.5235,-1441.2172 2866,-1440 
3029.8837,-1395.4391 3224.3974,-1352.2512 3328.7982,-1329.8487"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3329.5708,-1333.2627 
3338.6162,-1327.7463 3328.105,-1326.4179 3329.5708,-1333.2627"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge264" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2852.044,-1454.6478C2999.5113,-1443.4241 3477.5045,-1407.0441 
3671.2732,-1392.2963"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3671.6923,-1395.7747 
3681.3978,-1391.5258 3671.161,-1388.7948 3671.6923,-1395.7747"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge265" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2763.6628,-1449.0024C2747.4505,-1445.8934 2728.9353,-1442.5531 2712,-1440 
2568.1428,-1418.3126 2398.4473,-1400.875 2306.8143,-1392.1268"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2307.1298,-1388.6411 
2296.8436,-1391.1799 2306.4679,-1395.6098 2307.1298,-1388.6411"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge268" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2847.4955,-1439.8569C2887.9057,-1421.4019 2952.59,-1392.1599 3009,-1368 
3047.8445,-1351.3632 3058.2061,-1348.7544 3097,-1332 3208.1877,-1283.9801 
3337.2516,-1224.235 3405.3094,-1192.4129"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3406.9258,-1195.5209 
3414.4995,-1188.1122 3403.9587,-1189.1808 3406.9258,-1195.5209"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge271" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2763.7923,-1444.0587C2580.2863,-1383.6463 1889,-1145.386 1889,-1098 
1889,-1098 1889,-1098 1889,-162 1889,-89.889 1955.4043,-94.2403 2024,-72 
2147.5976,-31.9269 3050.1598,-21.0143 3331.5264,-18.599"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3331.7004,-22.0977 
3341.6704,-18.5133 3331.6412,-15.098 3331.7004,-22.0977"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge272" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2763.9128,-1441.9615C2582.882,-1378.3311 1907,-1144.8551 1907,-1098 
1907,-1098 1907,-1098 1907,-162 1907,-89.889 1973.4043,-94.2403 2042,-72 
2164.54,-32.2698 3052.7708,-21.2032 3331.565,-18.6629"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3331.651,-22.1623 
3341.6192,-18.5725 3331.5881,-15.1626 3331.651,-22.1623"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge266" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2778.3059,-1439.9172C2766.2164,-1430.8022 2753.5621,-1418.5731 2747,-1404 
2740.4306,-1389.4108 2741.8074,-1383.134 2747,-1368 2753.5783,-1348.8274 
2764.321,-1349.2285 2775,-1332 2817.1007,-1264.0786 2853,-1249.9111 2853,-1170 
2853,-1170 2853,-1170 2853,-1098 2853,-1039.1102 3020.8305,-993.5809 
3127.6247,-970.5708"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3128.3887,-973.9867 
3137.4412,-968.4819 3126.9317,-967.14 3128.3887,-973.9867"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge267" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2819.6531,-1439.9323C2832.1236,-1421.1514 2852.9664,-1391.2997 2874,-1368 
2969.94,-1261.7236 2989.1686,-1223.8676 3113,-1152 3265.7973,-1063.3216 
3712.6492,-985.9459 3867,-900 3933.8292,-862.7881 3936.7211,-833.4619 4001,-792 
4018.9504,-780.4214 4039.7103,-769.4456 4058.1401,-760.451"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="4059.7606,-763.5554 
4067.2569,-756.0683 4056.7277,-757.2465 4059.7606,-763.5554"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge269" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2830.415,-1439.7932C2853.639,-1421.1604 
2891.2015,-1391.6642 2925,-1368 3071.6536,-1265.3194 3095.1175,-1208.4844 
3265,-1152 3379.768,-1113.8407 3734.2256,-1102.4603 3894.2069,-1099.2209"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3894.5296,-1102.7153 
3904.4587,-1099.0191 3894.3918,-1095.7167 3894.5296,-1102.7153"/>
+</g>
+<!-- 
/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge270" class="edge">
+<title>/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" 
d="M2775.9869,-1439.9229C2762.6166,-1430.8089 2748.1057,-1418.5791 2739,-1404 
2713.0025,-1362.3752 2731.1592,-1342.6765 2716,-1296 2705.1832,-1262.6943 
2707.9989,-1249.5014 2684,-1224 2587.4296,-1121.3835 2466.9615,-1177.8782 
2423,-1044 2358.0951,-846.3418 2558.2452,-539.6103 2593,-504 
2606.4847,-490.1834 2624.0512,-479.7276 2641.8284,-471.8817"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2643.2363,-475.0869 
2651.1235,-468.0128 2640.5463,-468.6244 2643.2363,-475.0869"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge285" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#696969" 
d="M4407.8215,-1445.1967C4368.0891,-1434.3674 4309.7742,-1418.3641 4259,-1404 
4203.7805,-1388.3783 4190.899,-1380.9821 4135,-1368 3954.7856,-1326.1468 
3908.8701,-1316.5112 3725,-1296 3522.8963,-1273.4548 2903.2254,-1251.6162 
2685.5615,-1244.4503"/>
+<polygon fill="#696969" stroke="#696969" points="2685.6132,-1240.9502 
2675.5037,-1244.1203 2685.3835,-1247.9465 2685.6132,-1240.9502"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge286" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#696969" 
d="M4407.9337,-1449.3346C4391.5081,-1446.3391 4372.9462,-1442.9861 4356,-1440 
4262.3105,-1423.4908 4236.3563,-1430.5387 4145,-1404 4105.209,-1392.4409 
4099.2547,-1377.8232 4059,-1368 3950.9526,-1341.6335 3627.6315,-1324.1093 
3479.5587,-1317.2502"/>
+<polygon fill="#696969" stroke="#696969" points="3479.3557,-1313.7373 
3469.2057,-1316.7748 3479.0346,-1320.7299 3479.3557,-1313.7373"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge287" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M4407.9169,-1453.1641C4290.7344,-1441.1282 3984.7957,-1409.7051 
3836.6984,-1394.494"/>
+<polygon fill="#696969" stroke="#696969" points="3837.0494,-1391.0117 
3826.7441,-1393.4716 3836.3342,-1397.9751 3837.0494,-1391.0117"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge288" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#696969" 
d="M4407.969,-1456.4712C4124.0981,-1447.2438 2640.334,-1399.0131 
2306.6695,-1388.1671"/>
+<polygon fill="#696969" stroke="#696969" points="2306.7805,-1384.669 
2296.672,-1387.8422 2306.553,-1391.6653 2306.7805,-1384.669"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge291" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#696969" 
d="M4414.9185,-1439.8843C4364.5331,-1417.2179 4280.7912,-1379.926 4249,-1368 
4199.2523,-1349.3378 4072.0159,-1310.849 4021,-1296 3961.3776,-1278.6459 
3945.8208,-1276.6576 3886,-1260 3830.7166,-1244.6059 3817.9044,-1236.9589 
3762,-1224 3695.174,-1208.5094 3619.2997,-1195.1891 3559.4605,-1185.6538"/>
+<polygon fill="#696969" stroke="#696969" points="3559.6651,-1182.1427 
3549.241,-1184.0372 3558.5713,-1189.0567 3559.6651,-1182.1427"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge294" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M4502.0463,-1445.4105C4642.918,-1407.9697 5051,-1292.2902 5051,-1170 
5051,-1170 5051,-1170 5051,-162 5051,7.2394 4848.5725,-95.6947 4681,-72 
4564.3723,-55.5089 3761.6821,-29.1528 3498.3916,-20.7012"/>
+<polygon fill="#696969" stroke="#696969" points="3498.2379,-17.1946 
3488.1308,-20.3722 3498.0135,-24.191 3498.2379,-17.1946"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge295" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M4502.0008,-1447.4004C4645.7371,-1412.2315 5069,-1294.5441 5069,-1170 
5069,-1170 5069,-1170 5069,-162 5069,7.2394 4866.5725,-95.6947 4699,-72 
4581.2899,-55.3558 3764.7239,-28.6627 3498.5932,-20.4706"/>
+<polygon fill="#696969" stroke="#696969" points="3498.3273,-16.9609 
3488.2246,-20.1522 3498.1124,-23.9576 3498.3273,-16.9609"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge289" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#696969" 
d="M4438.6394,-1439.716C4375.7703,-1369.9462 4148.4239,-1122.2614 4052,-1080 
3961.1325,-1040.1739 3704.7227,-1061.1258 3607,-1044 3547.1035,-1033.5032 
3534.1361,-1022.167 3475,-1008 3417.0991,-994.1289 3351.4662,-980.5596 
3300.5015,-970.493"/>
+<polygon fill="#696969" stroke="#696969" points="3300.9984,-967.0237 
3290.5108,-968.5273 3299.647,-973.8921 3300.9984,-967.0237"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge290" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#696969" 
d="M4453.9469,-1439.7368C4449.4848,-1371.1483 4428.7774,-1123.3137 4354,-936 
4322.4703,-857.0197 4299.2345,-838.4504 4228,-792 4209.0018,-779.6117 
4186.6918,-768.7107 4166.4958,-760.0066"/>
+<polygon fill="#696969" stroke="#696969" points="4167.6555,-756.6972 
4157.0811,-756.0393 4164.9372,-763.1479 4167.6555,-756.6972"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge292" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#696969" 
d="M4424.3731,-1439.8697C4385.1565,-1416.3052 4315.5162,-1373.2737 4259,-1332 
4157.5301,-1257.8966 4138.3607,-1231.4251 4041,-1152 4029.1696,-1142.349 
4016.1074,-1131.7979 4004.6822,-1122.6033"/>
+<polygon fill="#696969" stroke="#696969" points="4006.6798,-1119.7184 
3996.6932,-1116.1802 4002.2937,-1125.1739 4006.6798,-1119.7184"/>
+</g>
+<!-- 
/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge293" class="edge">
+<title>/gnu/store/0jnvw4npb5q2kx5pm2b5w47g86l52dba&#45;expat&#45;2.2.7.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#696969" 
d="M4467.852,-1439.8857C4502.8066,-1388.7843 4597,-1238.0836 4597,-1098 
4597,-1098 4597,-1098 4597,-954 4597,-859.5148 4331.7423,-749.5597 4242,-720 
4100.1702,-673.2835 3719.4454,-700.1894 3571,-684 3473.3777,-673.3534 
3450.2552,-661.5969 3353,-648 3213.8832,-628.5506 3168.3845,-666.6938 3039,-612 
2969.181,-582.4859 2974.0895,-539.2815 2907,-504 2879.9945,-489.7982 
2848.7643,-478.8796 2819.6973,-470.7011"/>
+<polygon fill="#696969" stroke="#696969" points="2820.501,-467.2925 
2809.932,-468.0318 2818.6552,-474.0448 2820.501,-467.2925"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge314" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2693.5398,-1583.9794C2688.9458,-1565.7446 2681.4278,-1536.7845 2674,-1512 
2649.8314,-1431.3558 2630.7246,-1414.7064 2615,-1332 2611.1062,-1311.5199 
2609.6396,-1288.0021 2609.1287,-1270.1441"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2612.627,-1270.019 
2608.9241,-1260.0923 2605.6285,-1270.1615 2612.627,-1270.019"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge315" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2739.2229,-1587.6459C2743.8385,-1586.297 2748.4983,-1585.0458 2753,-1584 
2864.4881,-1558.0994 2898.9414,-1582.7372 3008,-1548 3140.9603,-1505.6497 
3169.2252,-1478.8405 3287,-1404 3295.8603,-1398.3697 3341.3116,-1363.0751 
3372.8825,-1338.3972"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3375.2579,-1340.9828 
3380.9776,-1332.0645 3370.9448,-1335.4693 3375.2579,-1340.9828"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge316" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2739.4873,-1601.1743C2880.3734,-1598.0541 3339.6027,-1585.2063 3482,-1548 
3580.3252,-1522.3091 3678.509,-1449.2205 3725.4634,-1410.6029"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3727.9064,-1413.1234 
3733.3559,-1404.0375 3723.4298,-1407.7419 3727.9064,-1413.1234"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge317" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2656.9556,-1585.0031C2631.7882,-1574.502 2598.9491,-1560.6584 2570,-1548 
2498.9236,-1516.9208 2480.6874,-1510.08 2411,-1476 2366.3206,-1454.15 
2316.0419,-1427.424 2281.6331,-1408.7972"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2283.2629,-1405.6996 
2272.8041,-1404.007 2279.9246,-1411.8523 2283.2629,-1405.6996"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge320" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2739.2491,-1587.7555C2743.8598,-1586.386 2748.5112,-1585.1001 2753,-1584 
2847.9526,-1560.7289 2882.4599,-1591.5232 2970,-1548 2990.8318,-1537.6428 
2990.309,-1527.1084 3008,-1512 3156.0404,-1385.5715 3344.0622,-1248.1673 
3419.4811,-1193.9311"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3421.609,-1196.712 
3427.6904,-1188.0364 3417.5261,-1191.026 3421.609,-1196.712"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge323" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2656.721,-1598.4011C2455.3793,-1577.9119 1587,-1458.369 1587,-954 1587,-954 
1587,-954 1587,-162 1587,-82.7243 1664.8259,-93.9579 1741,-72 
1893.9208,-27.9191 3014.7509,-19.7199 3331.7373,-18.2873"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.7926,-21.7872 
3341.777,-18.243 3331.7616,-14.7872 3331.7926,-21.7872"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge324" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2656.9895,-1597.8369C2458.1615,-1575.7779 1605,-1453.9301 1605,-954 
1605,-954 1605,-954 1605,-162 1605,-82.7243 1682.8259,-93.9579 1759,-72 
1910.8149,-28.2379 3016.5902,-19.8403 3331.5399,-18.3194"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3331.9796,-21.8175 
3341.963,-18.2702 3331.9465,-14.8176 3331.9796,-21.8175"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge318" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2678.6956,-1583.8137C2623.0868,-1529.1333 2470.4115,-1361.5122 2533,-1224 
2593.551,-1090.9643 2647.5543,-1067.6422 2781,-1008 2841.0498,-981.1614 
3018.862,-965.8868 3127.0473,-958.8369"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3127.5376,-962.3128 
3137.2932,-958.1803 3127.0898,-955.3271 3127.5376,-962.3128"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv
 -->
+<g id="edge319" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/2lpg626q4x8v7hgqajywpq1rc8y72hzx&#45;binutils&#45;mesboot&#45;2.20.1a.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2721.5237,-1583.9173C2829.4013,-1501.0092 3272.2306,-1160.8758 3288,-1152 
3478.9557,-1044.5202 3545.0264,-1056.9863 3747,-972 3818.8756,-941.7562 
3840.5456,-940.7995 3907,-900 3974.5728,-858.5138 4044.7449,-796.9986 
4081.6515,-762.9509"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="4084.0623,-765.4886 
4089.0092,-756.1196 4079.2994,-760.3588 4084.0623,-765.4886"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge321" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2739.2882,-1587.9095C2743.8916,-1586.5112 2748.5306,-1585.1764 2753,-1584 
2831.4756,-1563.344 2859.9627,-1585.3592 2932,-1548 2952.6524,-1537.2895 
2952.9575,-1527.8362 2970,-1512 3004.8006,-1479.6626 3013.5306,-1471.6024 
3049,-1440 3103.5669,-1391.3822 3119.9263,-1382.2435 3173,-1332 
3254.0276,-1255.2933 3247.1825,-1199.8039 3348,-1152 3396.2238,-1129.134 
3736.5557,-1109.6706 3894.2003,-1101.7704"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3894.5013,-1105.2599 
3904.3149,-1101.2669 3894.1532,-1098.2685 3894.5013,-1105.2599"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge322" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2666.0048,-1583.824C2556.1485,-1518.7533 2203.2268,-1286.4124 2243,-1008 
2247.714,-975.0017 2250.8374,-966.6245 2264,-936 2307.8865,-833.8923 
2427.5332,-571.2728 2516,-504 2532.3748,-491.5481 2573.5387,-479.6742 
2614.7199,-470.2477"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2615.6204,-473.6328 
2624.6118,-468.0288 2614.0882,-466.8025 2615.6204,-473.6328"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv
 -->
+<g id="edge313" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/mx1cp910vh417c9d514x248bcpfaps34&#45;bison&#45;3.4.1.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2739.0691,-1593.2374C2755.2035,-1590.0086 2773.9181,-1586.5265 2791,-1584 
2945.6934,-1561.1201 2986.1795,-1570.0032 3141,-1548 3154.7783,-1546.0418 
3169.5682,-1543.5593 3183.406,-1541.0684"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="3184.079,-1544.5034 
3193.2856,-1539.2605 3182.8189,-1537.6177 3184.079,-1544.5034"/>
+</g>
+<!-- 
/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv
 -->
+<g id="edge325" class="edge">
+<title>/gnu/store/ygkmqss9q4aj0fk7530myks0f7073a8y&#45;flex&#45;2.6.4.drv&#45;&gt;/gnu/store/8zlic159qjimh10hh75rr84a95s15ps5&#45;m4&#45;1.4.18.drv</title>
+<path fill="none" stroke="#0000ff" 
d="M2711.9316,-1583.7623C2731.1896,-1558.5518 2766.0546,-1512.9103 
2788.0662,-1484.0952"/>
+<polygon fill="#0000ff" stroke="#0000ff" points="2790.8925,-1486.161 
2794.1815,-1476.0896 2785.3297,-1481.9117 2790.8925,-1486.161"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge363" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/lr9v0vyj8a0m7pcav2h5x3avcdymqw0p&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1708.8244,-1592.3059C1621.4513,-1581.582 1476.6704,-1563.7349 1352,-1548 
1332.6419,-1545.5568 1311.7827,-1542.8921 1292.2286,-1540.3802"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1292.5017,-1536.8865 
1282.1369,-1539.0824 1291.6088,-1543.8294 1292.5017,-1536.8865"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv
 -->
+<g id="edge364" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/5xh3f9lxl86imd56fk8n6wcqdcrzh2mb&#45;binutils&#45;cross&#45;boot0&#45;2.32.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1799.3415,-1583.8297C1811.2209,-1565.2258 1830.7911,-1535.7524 1850,-1512 
1857.7768,-1502.3838 1866.8846,-1492.3937 1875.2346,-1483.6596"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1877.8756,-1485.9638 
1882.3249,-1476.3485 1872.8505,-1481.0905 1877.8756,-1485.9638"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge365" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/88azrsd0d3axcp043yrd4pl78ifd5368&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1784.0133,-1583.9718C1777.8976,-1551.183 1770.2643,-1481.3632 1805,-1440 
1869.6076,-1363.0653 2147.3436,-1359.3974 2244,-1332 2287.4407,-1319.6866 
2295.6039,-1308.4699 2339,-1296 2403.2293,-1277.5437 2477.8264,-1263.1414 
2532.3137,-1253.8694"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2532.9661,-1257.3089 
2542.2467,-1252.198 2531.8045,-1250.406 2532.9661,-1257.3089"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv
 -->
+<g id="edge366" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/492grrzzhh8z7nv9vrh9vai6kk7zfj8i&#45;diffutils&#45;boot0&#45;3.7.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1867.1478,-1600.0317C2082.477,-1592.7103 2694.903,-1558.7417 3175,-1404 
3237.4402,-1383.8747 3307.3782,-1355.5061 3353.3465,-1336.0274"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3354.9501,-1339.1488 
3362.7805,-1332.012 3352.2086,-1332.708 3354.9501,-1339.1488"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge367" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/b1n16vi8ypfr1bsgrcgk67h6sixghy0c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1867.4354,-1600.2528C2158.0484,-1593.7098 3153.8456,-1569.9086 3295,-1548 
3412.6395,-1529.7411 3441.0301,-1516.4373 3553,-1476 3556.8642,-1474.6045 
3646.1975,-1434.4896 3704.4554,-1408.2924"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3706.1915,-1411.3494 
3713.8761,-1404.0557 3703.3203,-1404.9653 3706.1915,-1411.3494"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge368" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/56xfnvjd2qv05vx3j0s6b30h9dg3dqcj&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1829.7593,-1583.8801C1884.4213,-1559.9778 1983.0348,-1516.2247 2066,-1476 
2111.2289,-1454.0713 2162.2282,-1427.4658 2197.2607,-1408.8921"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2199.0652,-1411.8967 
2206.2544,-1404.1142 2195.7811,-1405.7149 2199.0652,-1411.8967"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv
 -->
+<g id="edge370" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/5lcadggb83v1dfyza323lcw8ih199v1l&#45;gcc&#45;mesboot&#45;wrapper&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1782.1426,-1583.8075C1773.1814,-1552.5304 1759.4422,-1487.3652 1783,-1440 
1803.7205,-1398.3395 1818.6701,-1391.2042 1859,-1368 1908.1865,-1339.7001 
2293.046,-1233.4524 2349,-1224 2538.6834,-1191.9564 3108.4216,-1176.9825 
3346.5611,-1171.9957"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3346.6902,-1175.4938 
3356.6154,-1171.7869 3346.5448,-1168.4954 3346.6902,-1175.4938"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge373" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1708.7833,-1591.8591C1592.6355,-1576.315 1389.9253,-1548.3424 1389,-1548 
1361.2513,-1537.7304 1361.09,-1521.2956 1333,-1512 1220.9279,-1474.9129 
902.0234,-1540.2649 803,-1476 704.2697,-1411.9254 679,-1359.6998 679,-1242 
679,-1242 679,-1242 679,-162 679,-83.1077 756.101,-93.5255 832,-72 
954.5997,-37.2299 2901.9895,-21.5517 3331.5956,-18.5459"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3331.786,-22.0448 
3341.7613,-18.4752 3331.7372,-15.045 3331.786,-22.0448"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge374" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/7wqw4023spvggi15vcxyxvivxa4rmmv8&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1708.6077,-1590.2404C1597.1512,-1574.454 1407.894,-1548.3308 1407,-1548 
1379.2513,-1537.7304 1379.09,-1521.2956 1351,-1512 1238.9279,-1474.9129 
920.0234,-1540.2649 821,-1476 722.2697,-1411.9254 697,-1359.6998 697,-1242 
697,-1242 697,-1242 697,-162 697,-83.1077 774.101,-93.5255 850,-72 
972.0998,-37.3717 2904.14,-21.6799 3331.69,-18.5833"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3331.8338,-22.0825 
3341.8083,-18.5104 3331.7833,-15.0827 3331.8338,-22.0825"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv
 -->
+<g id="edge369" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/lp6fycqqd8adndlfylh4mlihm0qakxzw&#45;glibc&#45;mesboot&#45;2.16.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1774.8137,-1583.9849C1768.2037,-1573.9221 1760.8114,-1560.8511 1757,-1548 
1734.1841,-1471.0705 1732.7267,-1438.5257 1771,-1368 1816.3181,-1284.4929 
1845.7707,-1269.8262 1929,-1224 1944.884,-1215.2542 2527.2616,-1011.7604 
2545,-1008 2600.54,-996.226 2959.2552,-971.0817 3127.339,-959.7488"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3127.6549,-963.2356 
3137.3973,-959.0718 3127.1848,-956.2514 3127.6549,-963.2356"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv
 -->
+<g id="edge371" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/q8f5yjxp0kcdn2mwqf83bvhal71cnr71&#45;gcc&#45;mesboot&#45;4.9.4.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1778.8423,-1583.5129C1774.2987,-1573.3118 1769.2998,-1560.2593 1767,-1548 
1751.9571,-1467.8145 1746.0444,-1426.4129 1803,-1368 1983.1674,-1183.2229 
2087.0252,-1191.8839 2342,-1152 2495.8732,-1127.9307 3588.1523,-1105.393 
3894.3702,-1099.4935"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3894.5667,-1102.9905 
3904.4976,-1099.2989 3894.4322,-1095.9917 3894.5667,-1102.9905"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv
 -->
+<g id="edge372" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/r0z9bix88pz0wf6sgcn9185iwcsdracs&#45;linux&#45;libre&#45;headers&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1708.9911,-1590.7962C1610.3894,-1576.6532 1453.1291,-1553.4997 1441,-1548 
1418.3,-1537.7072 1421.1288,-1521.2894 1398,-1512 1286.8102,-1467.3419 
967.4,-1529.1297 860,-1476 821.8878,-1457.1463 811.9556,-1443.8036 797,-1404 
725.8087,-1214.5279 867,-1156.4053 867,-954 867,-954 867,-954 867,-882 
867,-808.1193 2069.4573,-517.997 2142,-504 2301.0506,-473.3115 
2488.1725,-459.879 2605.7001,-454.127"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2605.9755,-457.6179 
2615.7966,-453.6434 2605.6406,-450.6259 2605.9755,-457.6179"/>
+</g>
+<!-- 
/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv
 -->
+<g id="edge362" class="edge">
+<title>/gnu/store/pc8nyx57nknv52mxkyvrncz3cw9n7dgb&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/h6pl88jbzlgan2majgy0z6kcphzp2x6q&#45;gcc&#45;cross&#45;boot0&#45;7.4.0.drv</title>
+<path fill="none" stroke="#8b7765" 
d="M1722.9777,-1583.9243C1686.8011,-1573.8675 1641.6116,-1561.3052 
1603.9527,-1550.8363"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1604.6212,-1547.3894 
1594.0491,-1548.0831 1602.7463,-1554.1337 1604.6212,-1547.3894"/>
+</g>
+</g>
+</svg>
diff --git a/website/static/blog/img/gcc-final-bag.svg 
b/website/static/blog/img/gcc-final-bag.svg
new file mode 100644
index 0000000..b04fcf4
--- /dev/null
+++ b/website/static/blog/img/gcc-final-bag.svg
@@ -0,0 +1,1537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
+<!-- Generated by graphviz version 2.40.1 (20161225.0304)
+ -->
+<!-- Title: Guix bag Pages: 1 -->
+<svg width="4142pt" height="1052pt"
+ viewBox="0.00 0.00 4142.00 1052.00" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 
1048)">
+<title>Guix bag</title>
+<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-1048 4138,-1048 
4138,4 -4,4"/>
+<!-- /gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv -->
+<g id="node1" class="node">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv</title>
+<polygon fill="none" stroke="#000000" points="1894,-1044 1812,-1044 1812,-1008 
1894,-1008 1894,-1044"/>
+<text text-anchor="middle" x="1853" y="-1022.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc@5.5.0</text>
+</g>
+<!-- /gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv -->
+<g id="node2" class="node">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv</title>
+<polygon fill="none" stroke="#000000" points="1372.5,-468 1283.5,-468 
1283.5,-432 1372.5,-432 1372.5,-468"/>
+<text text-anchor="middle" x="1328" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">texinfo@6.5</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv
 -->
+<g id="edge1" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.8566,-1025.6771C1608.8203,-1023.887 721.816,-1013.6944 682,-972 
574.1436,-859.0552 684.9882,-729.8377 818,-648 971.135,-553.7812 
1176.6624,-490.6382 1273.365,-464.1311"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1274.4831,-467.4543 
1283.2156,-461.4548 1272.6478,-460.6991 1274.4831,-467.4543"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv 
-->
+<g id="node3" class="node">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<polygon fill="none" stroke="#000000" points="1721.5,-396 1592.5,-396 
1592.5,-360 1721.5,-360 1721.5,-396"/>
+<text text-anchor="middle" x="1657" y="-374.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">perl&#45;boot0@5.28.0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv
 -->
+<g id="edge2" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.6994,-1025.6184C1611.8961,-1023.5748 753.584,-1012.4583 715,-972 
671.8064,-926.7082 691.7937,-910.6916 905,-720 946.6313,-682.765 
959.0419,-674.8833 1008,-648 1212.7076,-535.5932 1474.0323,-440.3633 
1592.9333,-399.4441"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1594.2951,-402.6773 
1602.619,-396.1227 1592.0244,-396.0558 1594.2951,-402.6773"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv 
-->
+<g id="node4" class="node">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv</title>
+<polygon fill="none" stroke="#000000" points="1803,-684 1669,-684 1669,-648 
1803,-648 1803,-684"/>
+<text text-anchor="middle" x="1736" y="-662.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bash&#45;static@4.4.23</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv
 -->
+<g id="edge3" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.8511,-1023.2573C1646.2364,-1011.7985 1034.7293,-965.2944 981,-900 
954.0244,-867.2179 880.4074,-828.9995 984,-720 1007.0072,-695.792 
1471.4119,-675.8574 1658.698,-668.7718"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1658.8883,-672.2672 
1668.7497,-668.3938 1658.6252,-665.2722 1658.8883,-672.2672"/>
+</g>
+<!-- 
/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv
 -->
+<g id="node5" class="node">
+<title>/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="864,-972 724,-972 724,-936 
864,-936 864,-972"/>
+<text text-anchor="middle" x="794" y="-950.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">ld&#45;wrapper&#45;boot3@0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv
 -->
+<g id="edge4" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1811.82,-1024.5759C1650.7134,-1018.8715 
1062.9362,-996.7822 878,-972 876.8913,-971.8514 875.7755,-971.6961 
874.654,-971.5346"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="874.8637,-968.0246 
864.4411,-969.9269 873.7751,-974.9394 874.8637,-968.0246"/>
+</g>
+<!-- /gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv 
-->
+<g id="node6" class="node">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv</title>
+<polygon fill="none" stroke="#000000" points="1100,-900 990,-900 990,-864 
1100,-864 1100,-900"/>
+<text text-anchor="middle" x="1045" y="-878.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils@2.31.1</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv
 -->
+<g id="edge5" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1811.8203,-1018.661C1680.4406,-995.2468 
1270.5145,-922.1907 1110.1967,-893.6192"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1110.4624,-890.1115 
1100.0034,-891.8026 1109.2342,-897.0029 1110.4624,-890.1115"/>
+</g>
+<!-- /gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv 
-->
+<g id="node7" class="node">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv</title>
+<polygon fill="none" stroke="#000000" points="2345,-900 2229,-900 2229,-864 
2345,-864 2345,-900"/>
+<text text-anchor="middle" x="2287" y="-878.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">libstdc++@5.5.0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv
 -->
+<g id="edge6" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1894.0057,-1021.8078C1948.0243,-1015.3969 2045.3784,-1000.7515 2124,-972 
2170.4819,-955.0018 2219.6678,-926.1441 2251.6975,-905.6924"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2253.7576,-908.5285 
2260.2601,-900.1638 2249.9606,-902.6478 2253.7576,-908.5285"/>
+</g>
+<!-- /gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv -->
+<g id="node8" class="node">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv</title>
+<polygon fill="none" stroke="#000000" points="2695.5,-900 2606.5,-900 
2606.5,-864 2695.5,-864 2695.5,-900"/>
+<text text-anchor="middle" x="2651" y="-878.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">zlib@1.2.11</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv
 -->
+<g id="edge7" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1894.2424,-1023.7948C2009.2986,-1017.3857 2332.0901,-997.5828 2435,-972 
2497.441,-956.4776 2565.2954,-925.7141 2607.9658,-904.5091"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2609.5721,-907.6191 
2616.9398,-900.0055 2606.4323,-901.3627 2609.5721,-907.6191"/>
+</g>
+<!-- /gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv -->
+<g id="node9" class="node">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<polygon fill="none" stroke="#000000" points="2209.5,-756 2124.5,-756 
2124.5,-720 2209.5,-720 2209.5,-756"/>
+<text text-anchor="middle" x="2167" y="-734.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc@2.28</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge8" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1869.1555,-1007.9843C1919.0599,-958.3848 2070.0464,-819.7435 
2135.91,-762.8473"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2138.5695,-765.1772 
2143.8792,-756.0089 2134.011,-759.8648 2138.5695,-765.1772"/>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge9" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1876.1288,-1007.9843C1934.2602,-958.4858 2085.0913,-820.3079 
2143.5524,-763.1959"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2146.1815,-765.5191 
2150.8514,-756.0089 2141.2702,-760.5312 2146.1815,-765.5191"/>
+</g>
+<!-- 
/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="node10" class="node">
+<title>/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<polygon fill="none" stroke="#000000" points="2575.5,-828 2362.5,-828 
2362.5,-792 2575.5,-792 2575.5,-828"/>
+<text text-anchor="middle" x="2469" y="-806.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;cross&#45;boot0&#45;wrapped@5.5.0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="edge10" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1894.1189,-1023.227C1983.4707,-1015.6507 2199.7038,-988.8111 2354,-900 
2386.2896,-881.4145 2419.4029,-854.5099 2441.7542,-834.9615"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2444.3132,-837.3705 
2449.4806,-828.1212 2439.6731,-832.1293 2444.3132,-837.3705"/>
+</g>
+<!-- 
/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="node11" class="node">
+<title>/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="2373,-468 2233,-468 2233,-432 
2373,-432 2373,-468"/>
+<text text-anchor="middle" x="2303" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">ld&#45;wrapper&#45;boot0@0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge11" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1894.0761,-1024.3279C1996.7121,-1019.7694 2272.4637,-1005.1787 2500,-972 
2809.1344,-926.9229 2991.02,-1070.4767 3188,-828 3264.4509,-733.8911 
3096.6672,-690.2018 2983,-648 2747.0103,-560.383 2657.8821,-640.3063 2427,-540 
2390.175,-524.0015 2353.6682,-495.5819 2329.9057,-474.9497"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2332.1661,-472.2764 
2322.3537,-468.2804 2327.5325,-477.5233 2332.1661,-472.2764"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="node12" class="node">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<polygon fill="none" stroke="#000000" points="2986.5,-396 2801.5,-396 
2801.5,-360 2986.5,-360 2986.5,-396"/>
+<text text-anchor="middle" x="2894" y="-374.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils&#45;cross&#45;boot0@2.31.1</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge12" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1894.3993,-1025.127C2026.1632,-1022.027 
2447.4917,-1009.6384 2794,-972 3045.0448,-944.731 3355,-1134.5215 3355,-882 
3355,-882 3355,-882 3355,-810 3355,-634.9064 3387.7019,-532.0377 3244,-432 
3153.867,-369.2542 3106.4813,-411.5727 2996.6877,-396.6194"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2996.9813,-393.1244 
2986.5732,-395.1045 2995.9444,-400.0472 2996.9813,-393.1244"/>
+</g>
+<!-- 
/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv -->
+<g id="node13" class="node">
+<title>/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<polygon fill="none" stroke="#000000" points="1857.5,-180 1724.5,-180 
1724.5,-144 1857.5,-144 1857.5,-180"/>
+<text text-anchor="middle" x="1791" y="-158.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">make&#45;boot0@4.2.1</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge13" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.9161,-1025.619C1623.2323,-1023.6573 838.6541,-1013.1336 597,-972 
461.0282,-948.8553 300,-1019.9275 300,-882 300,-882 300,-882 300,-450 
300,-249.9289 531.8089,-355.9158 720,-288 814.3913,-253.9353 835.5274,-235.3204 
934,-216 1082.1688,-186.9292 1532.4397,-170.054 1713.9461,-164.276"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1714.324,-167.766 
1724.2086,-163.9521 1714.1031,-160.7694 1714.324,-167.766"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv 
-->
+<g id="node14" class="node">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<polygon fill="none" stroke="#000000" points="2557,-252 2427,-252 2427,-216 
2557,-216 2557,-252"/>
+<text text-anchor="middle" x="2492" y="-230.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">diffutils&#45;boot0@3.6</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge14" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1894.2707,-1025.6288C2122.5695,-1023.4354 3232.7657,-1010.907 3573,-972 
3766.5559,-949.8662 4002,-1076.8173 4002,-882 4002,-882 4002,-882 4002,-522 
4002,-439.635 3979.8024,-406.7636 3912,-360 3800.7384,-283.2623 
2845.4555,-245.7428 2567.5432,-236.3853"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2567.2732,-232.8744 
2557.1618,-236.0383 2567.0392,-239.8705 2567.2732,-232.8744"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="node15" class="node">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<polygon fill="none" stroke="#000000" points="3405.5,-324 3260.5,-324 
3260.5,-288 3405.5,-288 3405.5,-324"/>
+<text text-anchor="middle" x="3333" y="-302.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">findutils&#45;boot0@4.6.0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge15" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1894.409,-1025.3612C2186.5776,-1020.5907 3926,-987.7487 3926,-882 3926,-882 
3926,-882 3926,-450 3926,-405.2786 3917.8422,-385.3506 3881,-360 
3871.5269,-353.4817 3566.5907,-326.2454 3415.7855,-313.1253"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3415.9054,-309.6226 
3405.6399,-312.2437 3415.2994,-316.5963 3415.9054,-309.6226"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv -->
+<g id="node16" class="node">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<polygon fill="none" stroke="#000000" points="1607.5,-324 1494.5,-324 
1494.5,-288 1607.5,-288 1607.5,-324"/>
+<text text-anchor="middle" x="1551" y="-302.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">file&#45;boot0@5.33</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge16" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.981,-1025.1103C1607.4593,-1020.5533 705.6236,-998.9909 653,-972 
607.6667,-948.7483 582,-932.9485 582,-882 582,-882 582,-882 582,-594 
582,-362.2436 825.6677,-425.4168 1048,-360 1128.0503,-336.4468 
1366.3843,-318.108 1483.9288,-310.2189"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1484.4883,-313.6895 
1494.2339,-309.5333 1484.0236,-306.705 1484.4883,-313.6895"/>
+</g>
+<!-- 
/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="node17" class="node">
+<title>/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="1022,-108 876,-108 876,-72 
1022,-72 1022,-108"/>
+<text text-anchor="middle" x="949" y="-86.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bootstrap&#45;binaries@0</text>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge17" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.8779,-1025.2346C1581.2287,-1020.7219 454.2498,-996.9324 302,-972 
163.7853,-949.366 0,-1022.0557 0,-882 0,-882 0,-882 0,-306 0,-214.5124 
46.1111,-186.743 127,-144 190.816,-110.2786 669.6361,-96.003 
865.7274,-91.6006"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="866.0575,-95.0942 
875.9776,-91.3737 865.9025,-88.0959 866.0575,-95.0942"/>
+</g>
+<!-- 
/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge18" class="edge">
+<title>/gnu/store/61xydz2k6j31ba2lv8wsaw9vkb9q21x5&#45;gcc&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" 
d="M1811.6463,-1025.1284C1582.1631,-1020.3604 471.0933,-996.743 320,-972 
181.7853,-949.366 18,-1022.0557 18,-882 18,-882 18,-882 18,-306 18,-214.5124 
64.1111,-186.743 145,-144 207.8177,-110.8061 672.7566,-96.4544 
865.6195,-91.8145"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="865.7928,-95.3114 
875.7068,-91.5747 865.6264,-88.3134 865.7928,-95.3114"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv
 -->
+<g id="edge28" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1372.6479,-435.872C1377.4736,-434.4966 
1382.3269,-433.1771 1387,-432 1452.4588,-415.5117 1527.8552,-400.7829 
1582.3089,-390.8895"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1583.0068,-394.3202 
1592.2258,-389.0991 1581.763,-387.4315 1583.0068,-394.3202"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge19" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" d="M1327.6493,-431.7046C1328.1673,-412.1862 
1331.6468,-381.2176 1347,-360 1434.2675,-239.3989 1612.0441,-190.9922 
1714.1891,-172.5474"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1714.8905,-175.9778 
1724.1355,-170.8028 1713.6812,-169.0831 1714.8905,-175.9778"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge20" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#ff0000" d="M1372.575,-447.2492C1527.0174,-437.6512 
2031.6431,-405.7038 2065,-396 2097.4585,-386.5575 2101.7694,-375.1269 2132,-360 
2165.9644,-343.0047 2251.2743,-300.8877 2287,-288 2329.2884,-272.7448 
2377.893,-259.7535 2417.1586,-250.3388"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2418.0073,-253.7347 
2426.9307,-248.0231 2416.3931,-246.9233 2418.0073,-253.7347"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge21" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1372.695,-446.9552C1433.5706,-442.9184 
1545.9755,-435.857 1642,-432 1728.7864,-428.5141 3125.9041,-431.887 3205,-396 
3224.7658,-387.032 3221.0257,-373.5272 3238,-360 3252.5107,-348.4361 
3269.8001,-337.8262 3285.6271,-329.1293"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3287.5879,-332.0492 
3294.7447,-324.237 3284.2782,-325.8811 3287.5879,-332.0492"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge22" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff0000" d="M1333.9634,-431.7701C1341.5304,-411.4163 
1356.4986,-378.8643 1380,-360 1396.4855,-346.7673 1443.6014,-332.3779 
1484.211,-321.7828"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1485.2876,-325.1199 
1494.1025,-319.2422 1483.5462,-318.34 1485.2876,-325.1199"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge26" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1283.4894,-443.8036C1260.9859,-440.2382 
1233.4859,-435.7382 1209,-432 1055.8544,-408.6198 884,-460.92 884,-306 884,-306 
884,-306 884,-234 884,-190.6742 906.2925,-144.6965 925.0076,-116.6604"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="928.0536,-118.4124 
930.9255,-108.2143 922.3208,-114.3956 928.0536,-118.4124"/>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge27" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1283.3946,-441.0727C1265.8423,-438.1032 
1245.5557,-434.8328 1227,-432 1073.8544,-408.6198 902,-460.92 902,-306 902,-306 
902,-306 902,-234 902,-191.0493 923.9081,-145.4924 938.1162,-117.3926"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="941.3695,-118.7158 
942.7722,-108.2143 935.1268,-115.549 941.3695,-118.7158"/>
+</g>
+<!-- 
/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv 
-->
+<g id="node18" class="node">
+<title>/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="2337.5,-36 2210.5,-36 2210.5,0 
2337.5,0 2337.5,-36"/>
+<text text-anchor="middle" x="2274" y="-14.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc&#45;bootstrap@0</text>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge23" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1283.4556,-445.6991C1200.0217,-437.2587 
1023.4376,-417.4684 966,-396 811.8978,-338.4015 661.9731,-178.9269 787,-72 
841.1749,-25.6679 1907.6772,-19.0878 2200.2942,-18.1542"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2200.3849,-21.654 
2210.3741,-18.1233 2200.3633,-14.6541 2200.3849,-21.654"/>
+</g>
+<!-- 
/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv -->
+<g id="node19" class="node">
+<title>/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="3472,-108 3352,-108 3352,-72 
3472,-72 3472,-108"/>
+<text text-anchor="middle" x="3412" y="-86.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;bootstrap@0</text>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge24" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1372.6947,-446.9491C1433.5701,-442.9054 
1545.9746,-435.8362 1642,-432 1818.9041,-424.9327 3061.5387,-431.4425 3235,-396 
3319.4185,-378.7512 3366.6947,-395.3485 3415,-324 3457.6694,-260.9759 
3436.2843,-164.887 3421.7419,-117.8729"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3424.9865,-116.5298 
3418.5904,-108.0834 3418.3233,-118.6749 3424.9865,-116.5298"/>
+</g>
+<!-- 
/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="node20" class="node">
+<title>/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<polygon fill="none" stroke="#000000" points="2344.5,-108 2203.5,-108 
2203.5,-72 2344.5,-72 2344.5,-108"/>
+<text text-anchor="middle" x="2274" y="-86.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">binutils&#45;bootstrap@0</text>
+</g>
+<!-- 
/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge25" class="edge">
+<title>/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M1325.7511,-431.8278C1324.0019,-413.475 
1322.6692,-384.425 1328,-360 1335.506,-325.6086 1337.8255,-314.4963 1361,-288 
1450.5353,-185.6309 1499.5046,-178.7127 1631,-144 1734.9908,-116.5481 
2044.732,-99.8973 2193.0663,-93.289"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2193.6263,-96.7678 
2203.4624,-92.8305 2193.3179,-89.7746 2193.6263,-96.7678"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge54" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#b8860b" d="M1668.1943,-359.9555C1691.792,-321.9173 
1746.7409,-233.3431 1774.4282,-188.7127"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="1777.4458,-190.4878 
1779.7433,-180.1451 1771.4975,-186.7976 1777.4458,-190.4878"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge55" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#b8860b" d="M1721.6095,-365.3641C1814.4612,-347.3522 
1991.0829,-313.6387 2142,-288 2236.459,-271.9527 2345.6122,-255.4324 
2416.5674,-244.9614"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2417.3695,-248.3811 
2426.7527,-243.4612 2416.3494,-241.4558 2417.3695,-248.3811"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge56" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1721.7815,-373.7584C1782.9209,-369.8455 
1877.1632,-364.0466 1959,-360 2448.4187,-335.7998 3036.3394,-315.6909 
3250.1554,-308.6708"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3250.4774,-312.1622 
3260.3574,-308.3364 3250.2481,-305.166 3250.4774,-312.1622"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge57" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#b8860b" d="M1630.2517,-359.8314C1616.9447,-350.7927 
1600.684,-339.7476 1586.3625,-330.0198"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="1587.9785,-326.8864 
1577.7397,-324.1628 1584.0453,-332.677 1587.9785,-326.8864"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge61" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1592.4538,-365.1282C1584.5269,-363.3719 
1576.5656,-361.6182 1569,-360 1489.2201,-342.9363 1455.2983,-371.5451 1389,-324 
1313.9181,-270.1558 1361.1995,-196.2506 1285,-144 1244.6602,-116.3387 
1118.1059,-102.094 1032.3027,-95.3423"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="1032.549,-91.851 
1022.3104,-94.5752 1032.0132,-98.8305 1032.549,-91.851"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge62" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1592.423,-361.1684C1590.5986,-360.7725 
1588.7882,-360.3825 1587,-360 1507.2201,-342.9363 1473.2983,-371.5451 1407,-324 
1331.9181,-270.1558 1379.1995,-196.2506 1303,-144 1260.5903,-114.9194 
1122.8917,-100.6675 1032.1962,-94.3614"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="1032.4155,-90.8683 
1022.2021,-93.6853 1031.943,-97.8523 1032.4155,-90.8683"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge58" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1592.1957,-361.4813C1546.6448,-349.2178 
1492.6712,-333.1027 1486,-324 1437.9861,-258.4866 1489.7074,-226.4256 1583,-144 
1636.0281,-97.1488 1657.0674,-91.8034 1725,-72 1812.171,-46.5882 
2071.3978,-29.1956 2199.9795,-21.884"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2200.3452,-25.369 
2210.1325,-21.3122 2199.9515,-18.3801 2200.3452,-25.369"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge59" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1716.438,-359.9252C1821.2061,-328.4035 
2045.8539,-262.3223 2238,-216 2315.8298,-197.2369 2511.6522,-154.6517 2591,-144 
2867.2329,-106.9184 3199.3189,-94.993 3341.6509,-91.418"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="3342.0649,-94.909 
3351.9762,-91.165 3341.8934,-87.9111 3342.0649,-94.909"/>
+</g>
+<!-- 
/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge60" class="edge">
+<title>/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1695.5961,-359.9843C1803.4793,-309.6272 
2107.9944,-167.4872 2226.23,-112.2978"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2227.8374,-115.4101 
2235.4185,-108.0089 2224.8766,-109.0671 2227.8374,-115.4101"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge66" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1803.2522,-657.8867C1878.1661,-648.1381 
1994.0058,-630.7378 2034,-612 2056.5702,-601.4256 2056.4033,-590.0361 2077,-576 
2104.6114,-557.1836 2114.8951,-558.0709 2143,-540 2165.4302,-525.5779 
2168.2157,-517.856 2191,-504 2210.0994,-492.385 2232.0734,-481.3308 
2251.4711,-472.2843"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2253.1401,-475.3692 
2260.7629,-468.0109 2250.2152,-469.0095 2253.1401,-475.3692"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge67" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#9400d3" d="M1803.2143,-660.1882C1984.3676,-643.9509 
2479.4136,-595.6329 2633,-540 2724.2949,-506.9307 2817.748,-438.9579 
2864.1114,-402.4556"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2866.2891,-405.1957 
2871.9427,-396.2353 2861.9353,-399.7143 2866.2891,-405.1957"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge68" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#9400d3" d="M1668.9393,-659.236C1563.7087,-644.7062 
1361.9276,-600.2293 1266,-468 1200.0645,-377.1127 1172.6332,-299.2336 1248,-216 
1278.6686,-182.1302 1571.4917,-168.6417 1713.9319,-164.0508"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1714.4519,-167.5363 
1724.3366,-163.7227 1714.2312,-160.5397 1714.4519,-167.5363"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge69" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#9400d3" d="M1744.1976,-647.7891C1754.6604,-626.8111 
1774.8392,-593.0498 1803,-576 1890.0066,-523.3224 1948.3551,-601.9797 2029,-540 
2070.648,-507.9914 2034.3798,-462.7023 2077,-432 2144.7474,-383.1968 
2387.6498,-450.3894 2451,-396 2489.5662,-362.8889 2494.5476,-299.2197 
2493.8505,-262.3292"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2497.3454,-262.1167 
2493.5049,-252.2425 2490.3495,-262.3565 2497.3454,-262.1167"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge70" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1803.0871,-663.6682C1921.1591,-658.8401 
2173.5351,-645.2795 2384,-612 2729.8533,-557.3124 2807.2134,-498.453 3151,-432 
3203.0869,-421.9317 3352.4311,-436.2419 3387,-396 3404.1614,-376.0222 
3384.7313,-349.9143 3364.5577,-330.9665"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3366.6506,-328.1426 
3356.8644,-324.0829 3361.9829,-333.3593 3366.6506,-328.1426"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge71" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#9400d3" d="M1718.7218,-647.973C1688.0864,-614.9979 
1624.2563,-541.5635 1590,-468 1569.3937,-423.7491 1559.0082,-367.4506 
1554.3223,-334.2116"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1557.7882,-333.7233 
1552.9954,-324.2745 1550.8498,-334.6498 1557.7882,-333.7233"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge72" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1668.8902,-661.5943C1443.4542,-644.8215 
721.1447,-576.5409 599,-396 534.5995,-300.8103 464.5485,-229.8117 541,-144 
587.2805,-92.0533 783.2995,-118.9813 852,-108 856.4512,-107.2885 
861.0191,-106.5082 865.6337,-105.6837"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="866.5808,-109.0683 
875.783,-103.8176 865.3149,-102.1837 866.5808,-109.0683"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge73" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1668.7601,-661.0236C1445.679,-643.3099 
737.8048,-574.5604 617,-396 552.5995,-300.8103 482.5485,-229.8117 559,-144 
603.2919,-94.2854 784.7306,-116.8128 865.3669,-108.4085"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="866.131,-111.8388 
875.597,-107.0801 865.2295,-104.897 866.131,-111.8388"/>
+</g>
+<!-- 
/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="node21" class="node">
+<title>/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<polygon fill="none" stroke="#000000" points="2024.5,-612 1811.5,-612 
1811.5,-576 2024.5,-576 2024.5,-612"/>
+<text text-anchor="middle" x="1918" y="-590.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;cross&#45;boot0&#45;wrapped@5.5.0</text>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="edge63" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1781.9263,-647.8314C1806.5923,-638.0734 
1837.1691,-625.977 1863.086,-615.7242"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1864.3927,-618.9713 
1872.404,-612.038 1861.8176,-612.4621 1864.3927,-618.9713"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv
 -->
+<g id="node22" class="node">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv</title>
+<polygon fill="none" stroke="#000000" points="1822,-540 1658,-540 1658,-504 
1822,-504 1822,-540"/>
+<text text-anchor="middle" x="1740" y="-518.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">glibc&#45;intermediate@2.28</text>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv
 -->
+<g id="edge64" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv</title>
+<path fill="none" stroke="#9400d3" d="M1731.8334,-647.7623C1730.0559,-623.201 
1731.0021,-579.2474 1733.715,-550.3541"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1737.2295,-550.4113 
1734.8392,-540.0896 1730.2712,-549.6491 1737.2295,-550.4113"/>
+</g>
+<!-- 
/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv
 -->
+<g id="edge65" class="edge">
+<title>/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv&#45;&gt;/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv</title>
+<path fill="none" stroke="#9400d3" d="M1741.1798,-647.7623C1744.3218,-623.201 
1745.8175,-579.2474 1744.7098,-550.3541"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1748.1898,-549.8864 
1744.1558,-540.0896 1741.1999,-550.2637 1748.1898,-549.8864"/>
+</g>
+<!-- 
/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv
 -->
+<g id="edge157" class="edge">
+<title>/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M857.0139,-935.9243C894.4725,-925.1792 
941.9022,-911.5739 979.7482,-900.7176"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="981.0033,-903.9988 
989.6506,-897.8771 979.0732,-897.2702 981.0033,-903.9988"/>
+</g>
+<!-- 
/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge159" class="edge">
+<title>/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M731.0189,-935.9806C595.1154,-893.2938 
276.2834,-771.7847 148,-540 78.1734,-413.8361 94.7681,-355.572 131,-216 
139.9401,-181.5609 136.5059,-163.9016 166,-144 222.9111,-105.5983 
675.5154,-94.1927 865.5024,-91.0779"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="865.7756,-94.5741 
875.7182,-90.9143 865.6634,-87.575 865.7756,-94.5741"/>
+</g>
+<!-- 
/gnu/store/xy0ib5jjbxihf46pc89lh3zbgw5nhdmi&#45;guile&#45;bootstrap&#45;2.0.drv 
-->
+<g id="node28" class="node">
+<title>/gnu/store/xy0ib5jjbxihf46pc89lh3zbgw5nhdmi&#45;guile&#45;bootstrap&#45;2.0.drv</title>
+<polygon fill="none" stroke="#000000" points="2441.5,-396 2302.5,-396 
2302.5,-360 2441.5,-360 2441.5,-396"/>
+<text text-anchor="middle" x="2372" y="-374.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">guile&#45;bootstrap@2.0</text>
+</g>
+<!-- 
/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/xy0ib5jjbxihf46pc89lh3zbgw5nhdmi&#45;guile&#45;bootstrap&#45;2.0.drv
 -->
+<g id="edge158" class="edge">
+<title>/gnu/store/22cfzmcwjlazjbkzf9ij3x641ywcgf1g&#45;ld&#45;wrapper&#45;boot3&#45;0.drv&#45;&gt;/gnu/store/xy0ib5jjbxihf46pc89lh3zbgw5nhdmi&#45;guile&#45;bootstrap&#45;2.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M800.4651,-935.8394C817.3643,-891.1776 
867.3558,-775.5946 950,-720 1281.5984,-496.9344 1450.3907,-661.8701 1831,-540 
1906.038,-515.973 1923.5088,-505.1346 1993,-468 2019.4264,-453.8783 
2021.9299,-442.4807 2050,-432 2149.3996,-394.8866 2181.5902,-414.8753 2286,-396 
2288.0523,-395.629 2290.1306,-395.2463 2292.2264,-394.8541"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2292.9652,-398.2764 
2302.1292,-392.9591 2291.6495,-391.4011 2292.9652,-398.2764"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge160" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.1364,-874.511C1291.6969,-849.3116 
1926.409,-767.8606 2114.2454,-744.3862"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2114.9238,-747.8288 
2124.4136,-743.1178 2114.0573,-740.8826 2114.9238,-747.8288"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge161" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.2993,-875.2956C1292.0009,-851.3192 
1926.0899,-769.943 2114.0795,-745.1974"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2114.8007,-748.6327 
2124.2573,-743.8554 2113.8856,-741.6928 2114.8007,-748.6327"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="edge162" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.1713,-880.3002C1271.4451,-874.8593 
1809.2293,-856.5403 2254,-828 2285.8746,-825.9547 2320.3691,-823.2748 
2352.2017,-820.61"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2352.7666,-824.0749 
2362.4368,-819.7462 2352.1778,-817.0997 2352.7666,-824.0749"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge163" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.2095,-869.961C1286.1954,-829.0151 
1888.2967,-693.1843 2069,-612 2150.1276,-575.5519 2232.8556,-510.2686 
2274.8251,-474.719"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2277.3333,-477.1796 
2282.663,-468.0229 2272.7864,-471.8574 2277.3333,-477.1796"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge164" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.0701,-880.8931C1317.2562,-876.3325 
2107.8486,-857.8211 2216,-828 2477.0811,-756.011 2526.6445,-688.6909 2753,-540 
2796.1047,-511.6849 2810.6078,-507.3029 2844,-468 2860.0642,-449.0923 
2873.4075,-424.2295 2882.2579,-405.428"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2885.4962,-406.7624 
2886.4671,-396.2122 2879.1289,-403.8542 2885.4962,-406.7624"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge165" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#00cdcd" d="M989.8374,-867.3145C959.4327,-858.117 
921.5651,-844.8109 890,-828 866.4632,-815.4648 864.4302,-806.4221 842,-792 
813.8951,-773.9291 799.5284,-779.7247 776,-756 663.7293,-642.7926 
531.9576,-563.5789 622,-432 771.7163,-213.2195 919.8296,-276.2322 1178,-216 
1277.9157,-192.6893 1572.9629,-173.9604 1714.0973,-166.0598"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1714.6081,-169.5369 
1724.3983,-165.4871 1714.2194,-162.5477 1714.6081,-169.5369"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge166" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.0005,-878.511C1302.1653,-865.3129 
2003.5374,-816.1286 2219,-756 2347.9221,-720.0221 2689.3743,-588.3259 2748,-468 
2755.008,-453.6164 2753.1597,-447.1452 2748,-432 2734.9706,-393.755 
2669.5206,-311.9762 2637,-288 2623.9696,-278.3932 2591.0662,-265.8621 
2559.8918,-255.29"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2560.8902,-251.9334 
2550.2964,-252.0773 2558.6677,-258.5712 2560.8902,-251.9334"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge167" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1100.3287,-880.9813C1358.3051,-876.1073 
2436.7506,-854.314 2585,-828 2996.7948,-754.9073 3218.3975,-761.8821 3421,-396 
3428.7508,-382.0027 3428.8137,-373.9623 3421,-360 3413.8165,-347.1638 
3402.1958,-337.0081 3389.7209,-329.1336"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3391.3933,-326.0572 
3380.992,-324.0415 3387.8661,-332.1036 3391.3933,-326.0572"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge168" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1024.9494,-863.7559C1001.4855,-841.0547 
963.6054,-799.8941 946,-756 891.5997,-620.3679 907.7018,-543.6392 1002,-432 
1004.1224,-429.4873 1092.9528,-361.2379 1096,-360 1164.8069,-332.0472 
1375.3097,-316.1426 1484.1953,-309.5819"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1484.632,-313.0622 
1494.4072,-308.9761 1484.2174,-306.0745 1484.632,-313.0622"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge169" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M989.9699,-871.762C946.5031,-862.2803 
884.9443,-846.8242 833,-828 654.6552,-763.3693 620.3182,-722.8143 446,-648 
325.714,-596.3754 268.0522,-628.9258 172,-540 122.7968,-494.4473 
131.6231,-462.8927 127,-396 118.9342,-279.2958 105.4456,-208.5606 203,-144 
204.7049,-142.8717 671.582,-109.2592 865.8229,-95.6442"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="866.2522,-99.1228 
875.9833,-94.9329 865.7633,-92.1399 866.2522,-99.1228"/>
+</g>
+<!-- 
/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge170" class="edge">
+<title>/gnu/store/4054h1fjk13n22jknc9m45r993nvqb77&#45;binutils&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M989.6442,-868.2411C950.4099,-858.6646 
896.9442,-844.6498 851,-828 672.6552,-763.3693 638.3182,-722.8143 464,-648 
343.714,-596.3754 286.0522,-628.9258 190,-540 140.7968,-494.4473 
149.6231,-462.8927 145,-396 136.9342,-279.2958 123.4456,-208.5606 221,-144 
222.6782,-142.8894 675.0797,-110.3035 865.8197,-96.2981"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="866.0862,-99.788 
875.8028,-95.5644 865.5731,-92.8068 866.0862,-99.788"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge204" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#696969" d="M2267.1287,-863.7623C2243.6962,-838.66 
2205.666,-793.3017 2183.6879,-764.4671"/>
+<polygon fill="#696969" stroke="#696969" points="2186.2112,-761.9974 
2177.4164,-756.0896 2180.6075,-766.1925 2186.2112,-761.9974"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge205" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#696969" d="M2276.4751,-863.7623C2257.9119,-838.4436 
2219.8544,-792.5182 2193.752,-763.7251"/>
+<polygon fill="#696969" stroke="#696969" points="2196.0774,-761.0829 
2186.733,-756.0896 2190.924,-765.8203 2196.0774,-761.0829"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="edge206" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<path fill="none" stroke="#696969" d="M2332.9263,-863.8314C2357.5923,-854.0734 
2388.1691,-841.977 2414.086,-831.7242"/>
+<polygon fill="#696969" stroke="#696969" points="2415.3927,-834.9713 
2423.404,-828.038 2412.8176,-828.4621 2415.3927,-834.9713"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge207" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M2287.6671,-863.9875C2290.1576,-796.7447 
2298.923,-560.0792 2301.9571,-478.1585"/>
+<polygon fill="#696969" stroke="#696969" points="2305.4574,-478.2121 
2302.33,-468.0894 2298.4622,-477.953 2305.4574,-478.2121"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge208" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#696969" d="M2345.1207,-878.4912C2511.288,-868.3358 
2977.2438,-838.945 2989,-828 3118.0329,-707.8708 3126.4183,-566.1229 3012,-432 
3000.4494,-418.4602 2984.7913,-408.1346 2968.6605,-400.3289"/>
+<polygon fill="#696969" stroke="#696969" points="2969.6894,-396.9529 
2959.1358,-396.019 2966.8035,-403.3304 2969.6894,-396.9529"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge209" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#696969" d="M2228.8711,-879.253C2072.5328,-870.0141 
1632.6829,-831.7408 1304,-684 1185.491,-630.731 1138.2395,-594.1193 1107,-468 
1080.1195,-359.4789 1191.9805,-233.6117 1218,-216 1258.1764,-188.8059 
1567.1816,-171.7938 1713.9993,-165.166"/>
+<polygon fill="#696969" stroke="#696969" points="1714.4501,-168.6495 
1724.284,-164.7068 1714.1378,-161.6564 1714.4501,-168.6495"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge210" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#696969" d="M2345.2685,-876.1689C2406.1852,-868.9862 
2504.0057,-854.365 2585,-828 2743.9851,-776.2477 2843.0324,-771.555 2893,-612 
2928.1334,-499.813 2803.3117,-425.2433 2750,-360 2746.4206,-355.6196 
2682.8694,-290.8791 2678,-288 2667.9681,-282.0684 2614.251,-266.7241 
2567.107,-253.9017"/>
+<polygon fill="#696969" stroke="#696969" points="2567.7321,-250.4449 
2557.1648,-251.2081 2565.9016,-257.2014 2567.7321,-250.4449"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge211" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#696969" d="M2345.124,-878.4558C2512.726,-868.1372 
2987.0603,-838.2026 3019,-828 3107.2368,-799.8143 3686.5359,-476.7043 3732,-396 
3739.8531,-382.0598 3742.5277,-372.0485 3732,-360 3721.6754,-348.1839 
3529.4957,-326.3731 3415.6785,-314.4043"/>
+<polygon fill="#696969" stroke="#696969" points="3415.9047,-310.9089 
3405.5944,-313.348 3415.1754,-317.8708 3415.9047,-310.9089"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge212" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#696969" d="M2228.7138,-881.5205C1997.4004,-879.3373 
1154.7838,-868.6135 1116,-828 1086.825,-797.4486 958.4406,-630.6809 1277,-360 
1307.5936,-334.0045 1413.2676,-319.0441 1484.0808,-311.7202"/>
+<polygon fill="#696969" stroke="#696969" points="1484.6638,-315.1793 
1494.2626,-310.6946 1483.9622,-308.2145 1484.6638,-315.1793"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge213" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M2228.8925,-880.6569C2002.8249,-875.1144 
1189.5457,-853.1268 1077,-828 975.3988,-805.3166 285.1878,-542.033 212,-468 
103.7132,-358.4627 194.3482,-206.7814 335,-144 424.9897,-103.8322 
678.9028,-117.4094 777,-108 805.7745,-105.24 837.3641,-101.8379 
865.5711,-98.7372"/>
+<polygon fill="#696969" stroke="#696969" points="866.2422,-102.1845 
875.7986,-97.6102 865.4754,-95.2266 866.2422,-102.1845"/>
+</g>
+<!-- 
/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge214" class="edge">
+<title>/gnu/store/55xhzjdc39pmy70c8bf49smm8a842xca&#45;libstdc++&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#696969" d="M2228.9599,-880.4925C2005.2497,-874.6912 
1206.4635,-852.8852 1095,-828 993.3988,-805.3166 303.1878,-542.033 230,-468 
121.7132,-358.4627 212.3482,-206.7814 353,-144 442.9897,-103.8322 
696.9028,-117.4094 795,-108 818.0826,-105.7859 842.9767,-103.1587 
865.9034,-100.6053"/>
+<polygon fill="#696969" stroke="#696969" points="866.3931,-104.0724 
875.9401,-99.4782 865.6119,-97.1162 866.3931,-104.0724"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge215" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2643.3887,-863.9274C2638.3743,-843.0825 
2631.0582,-809.4491 2609,-792 2578.706,-768.0359 2330.6047,-749.1226 
2219.8738,-741.566"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2219.8123,-738.0539 
2209.5987,-740.8704 2219.3394,-745.038 2219.8123,-738.0539"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge216" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2656.2101,-863.9274C2656.3743,-843.0825 
2649.0582,-809.4491 2627,-792 2595.8508,-767.3594 2334.4236,-748.0588 
2220.0601,-740.9534"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2219.9862,-737.4424 
2209.7908,-740.3238 2219.5578,-744.4292 2219.9862,-737.4424"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv
 -->
+<g id="edge217" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2606.4778,-864.3868C2581.6404,-854.5611 
2550.4887,-842.2373 2524.1217,-831.8064"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2525.231,-828.4813 
2514.6446,-828.0572 2522.6559,-834.9905 2525.231,-828.4813"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge218" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2695.5687,-880.4151C2810.7712,-875.8626 
3111.5187,-860.9088 3141,-828 3151.6761,-816.0827 3150.4274,-804.9276 3141,-792 
2925.0974,-495.9366 2642.1607,-768.8657 2356,-540 2335.7691,-523.8197 
2321.6125,-497.6698 2313.051,-477.7166"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2316.1959,-476.1585 
2309.1885,-468.2119 2309.7109,-478.7939 2316.1959,-476.1585"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge219" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2695.5283,-880.2985C2813.0157,-875.3905 
3124.6689,-859.5043 3158,-828 3287.3183,-705.7692 3332.0684,-567.7308 3217,-432 
3185.3904,-394.7144 3048.2069,-404.0917 3000,-396 2998.9185,-395.8185 
2997.8308,-395.6358 2996.7378,-395.4521"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2997.2218,-391.9844 
2986.7795,-393.776 2996.0599,-398.8873 2997.2218,-391.9844"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge220" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2655.0153,-863.7277C2658.2594,-845.0427 
2660.9666,-815.5056 2652,-792 2598.4856,-651.7138 2506.9876,-667.0669 2427,-540 
2399.2981,-495.9932 2424.0035,-462.6546 2382,-432 2305.7961,-376.3856 
2040.8405,-442.9269 1959,-396 1874.0641,-347.2982 1889.834,-295.0013 1832,-216 
1825.3609,-206.9309 1817.9705,-197.1147 1811.3129,-188.3704"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1814.0556,-186.1951 
1805.2028,-180.3745 1808.4935,-190.4453 1814.0556,-186.1951"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge221" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2695.5819,-879.4526C2816.5708,-872.2688 
3144.9152,-850.8781 3188,-828 3295.6208,-770.8532 3306.8688,-697.3667 3296,-576 
3289.9306,-508.2262 3299.3138,-471.6296 3244,-432 3166.6664,-376.5943 
3117.8026,-439.1136 3033,-396 3012.5476,-385.602 3016.4228,-370.4561 2996,-360 
2914.0487,-318.0425 2874.229,-365.4107 2792,-324 2771.2217,-313.536 
2774.6266,-298.7599 2754,-288 2722.0309,-271.3232 2632.451,-255.01 
2566.9106,-244.755"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2567.4359,-241.2947 
2557.0182,-243.2243 2566.3654,-248.2123 2567.4359,-241.2947"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge222" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2695.9047,-881.0096C2817.7394,-877.8459 
3152.2635,-865.86 3255,-828 3566.3797,-713.2518 3711.6694,-690.8217 3864,-396 
3871.3446,-381.7853 3874.7261,-371.8722 3864,-360 3856.5687,-351.7746 
3563.4069,-325.6617 3415.9392,-313.0078"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3415.8415,-309.4867 
3405.5792,-312.1204 3415.244,-316.4612 3415.8415,-309.4867"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge223" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2640.3055,-863.9577C2625.8012,-840.1657 
2599.988,-800.3312 2585,-792 2493.637,-741.2153 2220.0845,-765.627 2116,-756 
1819.9807,-728.6205 1737.5792,-763.0533 1451,-684 1358.5954,-658.5101 
1255,-689.8559 1255,-594 1255,-594 1255,-594 1255,-522 1255,-481.0242 
1255.2821,-467.9196 1275,-432 1285.8885,-412.1647 1327.387,-371.284 1347,-360 
1389.2452,-335.695 1442.6727,-322.0682 1484.2529,-314.585"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1485.023,-318.0039 
1494.2835,-312.8567 1483.8344,-311.1056 1485.023,-318.0039"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge224" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2606.161,-879.4403C2396.4805,-866.8615 
1512.4188,-810.0263 1242,-756 1032.7555,-714.1956 978.2875,-700.2226 784,-612 
560.2428,-510.3957 432.2816,-538.2966 312,-324 252.8474,-218.6122 
354.8006,-199.2959 482,-144 490.6322,-140.2474 733.8434,-112.8559 
865.8229,-98.5895"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="866.3385,-102.0543 
875.9054,-97.5019 865.5876,-95.0947 866.3385,-102.0543"/>
+</g>
+<!-- 
/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge225" class="edge">
+<title>/gnu/store/nm1nz4x5nsd5w4qy17i7sscvw3pmrprd&#45;zlib&#45;1.2.11.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2606.3782,-879.096C2398.8814,-865.8558 
1528.0257,-809.5482 1260,-756 1050.7555,-714.1956 996.2875,-700.2226 802,-612 
578.2428,-510.3957 450.2816,-538.2966 330,-324 270.8474,-218.6122 
372.8006,-199.2959 500,-144 508.389,-140.3532 738.3238,-114.3808 
865.8559,-99.8259"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="866.447,-103.2812 
875.9853,-98.6692 865.6528,-96.3264 866.447,-103.2812"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv
 -->
+<g id="edge172" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.4543,-736.5865C1986.1988,-731.7138 
1555.3658,-714.2344 1501,-684 1416.1426,-636.8084 1361.1929,-528.5911 
1339.0712,-477.5732"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1342.2097,-476.0092 
1335.0854,-468.1673 1335.7645,-478.7404 1342.2097,-476.0092"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv
 -->
+<g id="edge173" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.1107,-736.7851C2013.0961,-733.1526 
1718.7497,-720.2811 1629,-684 1569.152,-659.8065 1515,-658.5532 1515,-594 
1515,-594 1515,-594 1515,-522 1515,-466.7192 1568.7129,-424.9675 
1610.0688,-401.0138"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1611.9399,-403.9773 
1618.9466,-396.0302 1608.5133,-397.8733 1611.9399,-403.9773"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv
 -->
+<g id="edge175" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/injs9a7rmij5a0qaycrqpzf04xqz3yiq&#45;bash&#45;static&#45;4.4.23.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.4945,-730.8993C2052.1334,-718.8112 
1904.031,-694.0701 1813.0427,-678.8702"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1813.4978,-675.3978 
1803.0577,-677.2022 1812.3443,-682.3022 1813.4978,-675.3978"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge177" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2175.5074,-719.9843C2198.5955,-671.0919 
2262.5407,-535.6785 2290.0941,-477.33"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2293.3906,-478.5459 
2294.4958,-468.0089 2287.0608,-475.5568 2293.3906,-478.5459"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge178" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#ff0000" d="M2209.7311,-724.3812C2243.3074,-713.6122 
2291.2184,-698.0956 2333,-684 2554.2799,-609.3482 2629.5059,-613.7175 2812,-468 
2835.5977,-449.1578 2858.3942,-423.3179 2873.935,-404.1581"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2876.8353,-406.135 
2880.3368,-396.1354 2871.3638,-401.7689 2876.8353,-406.135"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge179" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.4012,-736.8285C1970.4954,-732.3565 
1448.7321,-715.0317 1381,-684 1217.2854,-608.9935 1164.4775,-562.5511 1096,-396 
1013.4682,-195.2661 1065.8122,-327.5633 1475,-216 1555.2771,-194.1128 
1649.5626,-179.373 1714.1166,-170.8971"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1714.747,-174.3448 
1724.2152,-169.5904 1713.8487,-167.4026 1714.747,-174.3448"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge180" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#ff0000" d="M2163.9776,-719.8947C2156.2636,-666.8663 
2141.8619,-510.6942 2224,-432 2306.0121,-353.4266 2391.1772,-470.3922 2477,-396 
2514.4914,-363.502 2507.5942,-299.3276 2499.5726,-262.2488"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2502.8889,-261.0587 
2497.2059,-252.117 2496.0724,-262.6511 2502.8889,-261.0587"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge181" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2209.8056,-728.9498C2257.2202,-718.7523 
2335.8485,-701.3287 2403,-684 2431.0158,-676.7704 3386.5977,-419.1151 3404,-396 
3413.6233,-383.2175 3411.1072,-374.3348 3404,-360 3398.0248,-347.9485 
3387.9308,-337.8585 3377.2007,-329.7863"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3379.1313,-326.8655 
3368.9291,-324.0077 3375.1224,-332.6039 3379.1313,-326.8655"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge182" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.4224,-736.6792C1979.5086,-731.925 
1511.09,-714.3411 1451,-684 1329.0522,-622.4252 1249.0053,-566.1156 1275,-432 
1281.5644,-398.1321 1277.6492,-382.2657 1304,-360 1330.8529,-337.3101 
1420.8041,-321.8732 1484.3786,-313.4961"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1484.8712,-316.9616 
1494.3418,-312.2122 1483.9764,-310.019 1484.8712,-316.9616"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge185" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.4055,-736.6093C1972.2641,-731.2473 
1456.98,-710.8673 1295,-684 1055.0411,-644.1985 993.4615,-628.7674 767,-540 
702.5919,-514.7536 682.4957,-511.8633 629,-468 510.7246,-371.0212 
404.6027,-251.9073 513,-144 560.4297,-96.7847 745.6384,-116.6602 812,-108 
829.2063,-105.7546 847.6962,-103.2234 865.3725,-100.784"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="866.2433,-104.197 
875.6701,-99.3611 865.2851,-97.2629 866.2433,-104.197"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge186" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.3883,-736.3504C1974.448,-730.6169 
1472.4809,-710.4528 1313,-684 1073.0411,-644.1985 1011.4615,-628.7674 785,-540 
720.5919,-514.7536 700.4957,-511.8633 647,-468 528.7246,-371.0212 
422.6027,-251.9073 531,-144 578.4297,-96.7847 763.6384,-116.6602 830,-108 
841.6476,-106.48 853.8834,-104.829 865.903,-103.1642"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="866.5105,-106.6135 
875.9309,-101.7651 865.5432,-99.6806 866.5105,-106.6135"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge183" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2209.6371,-733.4449C2291.0488,-724.6498 
2474.226,-704.3921 2628,-684 3312.106,-593.28 4134,-996.095 4134,-306 4134,-306 
4134,-306 4134,-162 4134,-25.7729 3975.3492,-94.5413 3841,-72 
3693.0887,-47.1832 2638.5054,-25.0746 2347.9525,-19.4036"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2348.008,-15.9041 
2337.9417,-19.2088 2347.8717,-22.9028 2348.008,-15.9041"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge184" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2209.7052,-729.7286C2268.7748,-719.2566 
2378.3154,-700.5792 2472,-684 2652.5156,-652.0544 4078,-489.3205 4078,-306 
4078,-306 4078,-306 4078,-234 4078,-157.0148 4002.9738,-168.5262 3930,-144 
3848.3599,-116.561 3604.1009,-100.3677 3482.3911,-93.6519"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3482.2444,-90.1388 
3472.0686,-93.0888 3481.863,-97.1284 3482.2444,-90.1388"/>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge187" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2209.6707,-731.7566C2271.7345,-721.8182 
2389.9154,-701.7118 2490,-684 2670.5156,-652.0544 4096,-489.3205 4096,-306 
4096,-306 4096,-306 4096,-234 4096,-157.0148 4020.9738,-168.5262 3948,-144 
3864.0519,-115.7854 3608.1607,-99.4612 3482.7058,-93.1051"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3482.6034,-89.5957 
3472.4412,-92.5926 3482.2543,-96.587 3482.6034,-89.5957"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv
 -->
+<g id="node23" class="node">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv</title>
+<polygon fill="none" stroke="#000000" points="2738.5,-468 2581.5,-468 
2581.5,-432 2738.5,-432 2738.5,-468"/>
+<text text-anchor="middle" x="2660" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gcc&#45;cross&#45;boot0@5.5.0</text>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv
 -->
+<g id="edge176" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2209.7408,-722.9819C2235.2282,-713.2976 
2267.8112,-699.6164 2295,-684 2318.1238,-670.7184 2319.5978,-660.7847 2343,-648 
2463.6997,-582.0612 2538.9606,-640.364 2633,-540 2648.6223,-523.327 
2655.2323,-497.9577 2658.0152,-478.3988"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2661.5199,-478.5604 
2659.2004,-468.2226 2654.5669,-477.7505 2661.5199,-478.5604"/>
+</g>
+<!-- /gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv -->
+<g id="node25" class="node">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv</title>
+<polygon fill="none" stroke="#000000" points="1948.5,-468 1855.5,-468 
1855.5,-432 1948.5,-432 1948.5,-468"/>
+<text text-anchor="middle" x="1902" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">bison@3.0.5</text>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv
 -->
+<g id="edge171" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv</title>
+<path fill="none" stroke="#ff0000" d="M2153.3099,-719.9088C2129.9177,-689.3298 
2080.2858,-625.8812 2034,-576 1999.873,-539.2221 1957.4539,-499.7281 
1930.0623,-474.9531"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1932.1852,-472.1549 
1922.4123,-468.0634 1927.5007,-477.3564 1932.1852,-472.1549"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv
 -->
+<g id="node26" class="node">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv</title>
+<polygon fill="none" stroke="#000000" points="1837.5,-468 1650.5,-468 
1650.5,-432 1837.5,-432 1837.5,-468"/>
+<text text-anchor="middle" x="1744" y="-446.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">linux&#45;libre&#45;headers@4.14.67</text>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv
 -->
+<g id="edge188" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv</title>
+<path fill="none" stroke="#ff0000" d="M2124.432,-736.5323C2008.2355,-732.1069 
1692.1353,-717.1097 1660,-684 1604.1786,-626.4859 1608.6923,-573.2762 1649,-504 
1656.5194,-491.0766 1668.4129,-480.9924 1681.2746,-473.224"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1683.2532,-476.1286 
1690.2916,-468.2095 1679.851,-470.0109 1683.2532,-476.1286"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv
 -->
+<g id="node29" class="node">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv</title>
+<polygon fill="none" stroke="#000000" points="2594,-540 2436,-540 2436,-504 
2594,-504 2594,-540"/>
+<text text-anchor="middle" x="2515" y="-518.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">gettext&#45;boot0@0.19.8.1</text>
+</g>
+<!-- 
/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv
 -->
+<g id="edge174" class="edge">
+<title>/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv&#45;&gt;/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv</title>
+<path fill="none" stroke="#ff0000" d="M2199.1533,-719.7908C2216.548,-709.6711 
2238.2496,-696.6077 2257,-684 2279.1293,-669.1203 2282.8707,-662.8797 2305,-648 
2361.9861,-609.6826 2430.6552,-569.5613 2473.5828,-545.1642"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2475.3638,-548.1779 
2482.3389,-540.2031 2471.913,-542.0875 2475.3638,-548.1779"/>
+</g>
+<!-- 
/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv
 -->
+<g id="edge202" class="edge">
+<title>/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/p1v7rvhgj2h4qcxhls11bwqnhj5fh8w7&#45;glibc&#45;2.28.drv</title>
+<path fill="none" stroke="#9400d3" d="M2393.1825,-791.9243C2339.0265,-779.0129 
2267.5484,-761.9718 2219.5682,-750.5328"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2220.2402,-747.095 
2209.7011,-748.1804 2218.6167,-753.9042 2220.2402,-747.095"/>
+</g>
+<!-- 
/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge200" class="edge">
+<title>/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#9400d3" d="M2575.5837,-796.0986C2624.806,-787.7132 
2683.4194,-774.8969 2734,-756 2855.9244,-710.4491 2923.3856,-724.4064 2989,-612 
3029.3299,-542.9095 3029.2327,-501.1472 2989,-432 2981.4806,-419.0766 
2969.5871,-408.9924 2956.7254,-401.224"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2958.149,-398.0109 
2947.7084,-396.2095 2954.7468,-404.1286 2958.149,-398.0109"/>
+</g>
+<!-- 
/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge203" class="edge">
+<title>/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2362.3621,-806.103C2198.9959,-799.5082 
1877.0909,-784.0473 1605,-756 1381.669,-732.9789 1320.8727,-745.6904 1105,-684 
1066.73,-673.0635 1060.7695,-660.5563 1023,-648 955.8888,-625.6892 
931.8005,-642.5151 868,-612 673.5459,-518.9946 513.7965,-418.3765 588,-216 
632.9187,-93.4925 732.7433,-131.9999 861,-108 862.4849,-107.7221 
863.9834,-107.4395 865.4925,-107.1529"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="866.413,-110.54 
875.5704,-105.2115 865.0889,-103.6664 866.413,-110.54"/>
+</g>
+<!-- 
/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv
 -->
+<g id="edge201" class="edge">
+<title>/gnu/store/6w4jrzj62aan4xpsz5lbby11f8iabivc&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2570.7778,-791.9155C2667.8655,-768.6721 
2808.8183,-717.9083 2875,-612 2916.268,-545.9603 2812.7338,-497.2585 
2735.4105,-471.3019"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2736.2393,-467.8902 
2725.6464,-468.0966 2734.056,-474.541 2736.2393,-467.8902"/>
+</g>
+<!-- 
/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge144" class="edge">
+<title>/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2373.1163,-441.4579C2476.7306,-428.8349 
2671.3671,-405.1228 2791.1482,-390.5302"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2791.9233,-393.9617 
2801.4266,-389.278 2791.0767,-387.0131 2791.9233,-393.9617"/>
+</g>
+<!-- 
/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge146" class="edge">
+<title>/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2232.7509,-445.9446C2055.5898,-435.5943 
1599.855,-408.1603 1532,-396 1419.8664,-375.9045 1387.5565,-375.6145 1286,-324 
1169.0302,-264.552 1162.5162,-214.7261 1052,-144 1034.477,-132.786 
1014.3736,-121.851 996.6057,-112.7871"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="998.0586,-109.6 
987.5532,-108.2263 994.909,-115.8514 998.0586,-109.6"/>
+</g>
+<!-- 
/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/xy0ib5jjbxihf46pc89lh3zbgw5nhdmi&#45;guile&#45;bootstrap&#45;2.0.drv
 -->
+<g id="edge145" class="edge">
+<title>/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv&#45;&gt;/gnu/store/xy0ib5jjbxihf46pc89lh3zbgw5nhdmi&#45;guile&#45;bootstrap&#45;2.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2320.4116,-431.8314C2328.521,-423.3694 
2338.3156,-413.1489 2347.182,-403.8971"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2349.9618,-406.0549 
2354.354,-396.4133 2344.9079,-401.2115 2349.9618,-406.0549"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge78" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2869.1341,-359.775C2841.8449,-340.3169 
2796.2802,-309.3994 2754,-288 2674.1692,-247.5949 2653.3626,-235.3211 2566,-216 
2434.4433,-186.905 2036.1855,-170.333 1867.6469,-164.4586"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1867.7247,-160.9593 
1857.6098,-164.112 1867.483,-167.9551 1867.7247,-160.9593"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge79" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2842.292,-359.9427C2817.8721,-350.5634 
2788.728,-338.1123 2764,-324 2740.8396,-310.7823 2740.1264,-299.3591 2716,-288 
2668.8935,-265.8215 2611.7845,-252.2364 2567.0206,-244.2396"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2567.5361,-240.7769 
2557.0856,-242.5198 2566.3421,-247.6743 2567.5361,-240.7769"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge80" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2986.5642,-362.8186C3064.6871,-350.0058 
3175.4954,-331.8322 3250.5959,-319.515"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3251.1877,-322.9648 
3260.4893,-317.8924 3250.0547,-316.0571 3251.1877,-322.9648"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge81" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2801.3544,-372.1465C2743.0088,-368.5146 
2666.1086,-363.8272 2598,-360 2227.7622,-339.1955 1783.6976,-317.3037 
1617.8072,-309.2319"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1617.9147,-305.7331 
1607.7565,-308.7432 1617.5747,-312.7248 1617.9147,-305.7331"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge85" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2871.7531,-359.8542C2851.6352,-340.1776 
2821.1846,-308.8032 2790,-288 2724.4551,-244.2751 2703.7846,-237.5569 2628,-216 
2322.2911,-129.0411 1328.0431,-99.0771 1032.5267,-91.8762"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1032.3929,-88.372 
1022.3113,-91.6296 1032.2239,-95.37 1032.3929,-88.372"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge86" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2884.9336,-359.8542C2869.6352,-340.1776 
2839.1846,-308.8032 2808,-288 2742.4551,-244.2751 2721.7846,-237.5569 2646,-216 
2337.8468,-128.3458 1330.1002,-98.6016 1032.4517,-91.7078"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1032.2429,-88.2022 
1022.1653,-91.4721 1032.0825,-95.2004 1032.2429,-88.2022"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge82" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2977.7279,-359.9519C3041.3518,-340.7414 
3118,-303.2316 3118,-234 3118,-234 3118,-234 3118,-162 3118,-84.2062 
2553.621,-37.3501 2347.8913,-22.8543"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2348.0029,-19.3536 
2337.7831,-22.1478 2347.5148,-26.3366 2348.0029,-19.3536"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge83" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2986.7063,-367.3742C3032.2086,-359.608 
3086.8128,-346.367 3132,-324 3188.6466,-295.9608 3327.1009,-169.4648 
3385.416,-115.033"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3387.8593,-117.5401 
3392.7713,-108.1527 3383.0774,-112.428 3387.8593,-117.5401"/>
+</g>
+<!-- 
/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge84" class="edge">
+<title>/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M2896.0321,-359.7611C2897.33,-340.8406 
2897.0658,-310.8765 2886,-288 2865.739,-246.1141 2850.9521,-238.0876 2810,-216 
2661.8635,-136.1025 2463.9498,-106.5057 2354.8036,-95.8127"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2354.809,-92.2975 
2344.5228,-94.8358 2354.1469,-99.2662 2354.809,-92.2975"/>
+</g>
+<!-- 
/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge32" class="edge">
+<title>/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M1724.2929,-156.6177C1571.97,-143.9163 
1199.1581,-112.0527 1032.1806,-97.4821"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1032.4753,-93.9946 
1022.2086,-96.6111 1031.8661,-100.9681 1032.4753,-93.9946"/>
+</g>
+<!-- 
/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge33" class="edge">
+<title>/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M1724.2533,-155.9543C1571.8704,-142.6106 
1198.968,-110.7181 1032.062,-96.7487"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1032.3515,-93.2608 
1022.0946,-95.9153 1031.7682,-100.2364 1032.3515,-93.2608"/>
+</g>
+<!-- 
/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge29" class="edge">
+<title>/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M1836.2785,-143.9736C1886.1423,-124.5445 
1968.9518,-93.5193 2042,-72 2094.4792,-56.5401 2154.6749,-42.6379 
2200.5971,-32.812"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2201.4119,-36.2171 
2210.4666,-30.7159 2199.9576,-29.3698 2201.4119,-36.2171"/>
+</g>
+<!-- 
/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge30" class="edge">
+<title>/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M1857.685,-158.0693C1923.7573,-154.2361 
2027.8453,-148.3623 2118,-144 2584.9247,-121.4072 3146.9055,-99.8951 
3341.5849,-92.6095"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3341.8172,-96.1033 
3351.6795,-92.2321 3341.5557,-89.1082 3341.8172,-96.1033"/>
+</g>
+<!-- 
/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge31" class="edge">
+<title>/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M1857.652,-152.0643C1945.2932,-138.9998 
2099.1512,-116.0644 2193.2844,-102.0321"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2193.9556,-105.4708 
2203.3303,-100.5346 2192.9235,-98.5473 2193.9556,-105.4708"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge35" class="edge">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8b7765" d="M2426.9949,-227.3233C2297.1918,-213.9912 
2006.4699,-184.131 1867.6387,-169.8716"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1867.8115,-166.371 
1857.5062,-168.8309 1867.0962,-173.3344 1867.8115,-166.371"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge39" class="edge">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M2426.6517,-221.4658C2325.8757,-201.5632 
2126.6536,-163.042 1956,-144 1614.3424,-105.877 1204.9506,-94.5091 
1032.238,-91.2495"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1032.2636,-87.7495 
1022.2007,-91.0642 1032.1343,-94.7483 1032.2636,-87.7495"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge40" class="edge">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M2426.7455,-219.1287C2328.8403,-198.676 
2138.1964,-162.3215 1974,-144 1625.8879,-105.1568 1207.4583,-94.0891 
1032.3389,-91.0733"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1032.2231,-87.571 
1022.1657,-90.9025 1032.1055,-94.57 1032.2231,-87.571"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge36" class="edge">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M2478.923,-215.5807C2455.9338,-183.9611 
2405.7825,-118.2935 2354,-72 2341.7027,-61.0063 2327.034,-50.4829 
2313.6359,-41.6937"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2315.358,-38.6401 
2305.0526,-36.1808 2311.5751,-44.5299 2315.358,-38.6401"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge37" class="edge">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M2557.0592,-223.8168C2724.4917,-197.61 
3169.2007,-128.0034 3341.9761,-100.9603"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3342.6348,-104.3999 
3351.9733,-99.3955 3341.5523,-97.4841 3342.6348,-104.3999"/>
+</g>
+<!-- 
/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge38" class="edge">
+<title>/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M2464.3901,-215.7623C2425.1596,-189.8485 
2353.2489,-142.3479 2309.915,-113.7237"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2311.6588,-110.6809 
2301.3857,-108.0896 2307.8006,-116.5217 2311.6588,-110.6809"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge41" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8b7765" d="M3260.1994,-293.5776C3198.3559,-282.9131 
3107.2664,-266.9418 3028,-252 2947.8276,-236.8875 2928.9557,-226.1083 2848,-216 
2658.0682,-192.2846 2077.2222,-171.405 1867.5224,-164.4523"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1867.6317,-160.9541 
1857.5216,-164.1219 1867.4005,-167.9503 1867.6317,-160.9541"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge42" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#8b7765" d="M3260.2038,-299.7677C3101.9709,-286.221 
2728.0344,-254.2075 2567.4346,-240.4581"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2567.4313,-236.9451 
2557.1692,-239.5793 2566.8342,-243.9196 2567.4313,-236.9451"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge46" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M3260.1122,-288.4956C3227.0572,-279.0389 
3187.9374,-266.3609 3154,-252 3060.6053,-212.4793 3051.0055,-170.0648 2953,-144 
2858.7537,-118.935 1399.1505,-96.535 1032.1869,-91.2005"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1032.2172,-87.7006 
1022.1674,-91.0551 1032.1155,-94.6999 1032.2172,-87.7006"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge47" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M3274.3245,-287.8953C3243.4158,-278.5055 
3205.2245,-266.0592 3172,-252 3078.6053,-212.4793 3069.0055,-170.0648 2971,-144 
2876.2568,-118.8029 1401.7228,-96.2989 1032.3615,-91.1175"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="1032.3259,-87.6168 
1022.278,-90.9765 1032.228,-94.6161 1032.3259,-87.6168"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge43" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M3332.5163,-287.7849C3330.2235,-242.48 
3317.3481,-124.5879 3246,-72 3209.9874,-45.4565 2568.4506,-25.8765 
2347.8132,-19.9022"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2347.7195,-16.3986 
2337.6289,-19.6281 2347.5311,-23.396 2347.7195,-16.3986"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge44" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M3342.9592,-287.8282C3348.3955,-277.502 
3355.0141,-264.2295 3360,-252 3378.7162,-206.0926 3395.2422,-150.7485 
3404.4052,-118.0733"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="3407.8153,-118.8733 
3407.1149,-108.3017 3401.0699,-117.0027 3407.8153,-118.8733"/>
+</g>
+<!-- 
/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge45" class="edge">
+<title>/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8b7765" d="M3290.7257,-287.9682C3268.6553,-278.1024 
3241.4388,-265.2187 3218,-252 3142.6271,-209.4921 3137.9068,-171.9155 3056,-144 
2990.9001,-121.8127 2540.9763,-100.9934 2354.5915,-93.2171"/>
+<polygon fill="#8b7765" stroke="#8b7765" points="2354.712,-89.7192 
2344.5754,-92.8012 2354.4215,-96.7132 2354.712,-89.7192"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge48" class="edge">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1565.6881,-287.8025C1582.6844,-267.7843 
1612.4099,-235.8285 1644,-216 1665.5549,-202.4704 1690.9998,-191.6154 
1714.6084,-183.2878"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1715.919,-186.5386 
1724.2471,-179.9893 1713.6525,-179.9157 1715.919,-186.5386"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge52" class="edge">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1533.9001,-287.7809C1506.0305,-253.0309 
1448.437,-177.744 1379,-144 1319.2847,-114.9805 1139.9403,-100.5265 
1032.6,-94.2013"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1032.6287,-90.6973 
1022.4434,-93.6144 1032.2248,-97.6856 1032.6287,-90.6973"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge53" class="edge">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1544.127,-287.7809C1524.0305,-253.0309 
1466.437,-177.744 1397,-144 1335.0479,-113.8934 1144.3362,-99.464 
1032.6558,-93.5244"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1032.602,-90.017 
1022.4337,-92.9927 1032.2384,-97.0075 1032.602,-90.017"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge49" class="edge">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1551.3522,-287.8658C1552.3585,-269.0308 
1555.7874,-239.1355 1567,-216 1585.6726,-177.4718 1594.2577,-165.9794 1631,-144 
1726.5717,-86.8286 2052.097,-43.4031 2199.9087,-26.1412"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2200.7081,-29.5721 
2210.2385,-24.9438 2199.9019,-22.6187 2200.7081,-29.5721"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge50" class="edge">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1607.5336,-294.346C1755.8187,-264.25 
2168.5023,-183.5267 2516,-144 2822.3179,-109.1574 3190.2777,-95.918 
3341.6837,-91.7003"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3341.8736,-95.1965 
3351.7739,-91.4237 3341.6817,-88.1992 3341.8736,-95.1965"/>
+</g>
+<!-- 
/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge51" class="edge">
+<title>/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1556.5918,-287.9853C1563.3826,-268.4235 
1576.4153,-237.149 1596,-216 1638.2596,-170.3648 1656.9303,-163.4733 1716,-144 
1802.4838,-115.4892 2060.6741,-99.8066 2193.3426,-93.4318"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2193.6277,-96.9223 
2203.4507,-92.9525 2193.2961,-89.9302 2193.6277,-96.9223"/>
+</g>
+<!-- 
/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge34" class="edge">
+<title>/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M3351.8958,-80.4574C3330.5095,-77.3513 
3306.2247,-74.1527 3284,-72 2934.5476,-38.151 2514.8695,-24.2361 
2347.8182,-19.7649"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2347.7496,-16.262 
2337.6606,-19.4964 2347.5646,-23.2595 2347.7496,-16.262"/>
+</g>
+<!-- 
/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge74" class="edge">
+<title>/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#b8860b" d="M1978.5658,-575.9532C2006.2239,-566.734 
2038.9854,-554.4115 2067,-540 2142.3122,-501.2571 2144.1973,-460.3631 2224,-432 
2275.9512,-413.5358 2616.3322,-392.9044 2790.9793,-383.3681"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2791.4203,-386.8494 
2801.2155,-382.8115 2791.0402,-379.8597 2791.4203,-386.8494"/>
+</g>
+<!-- 
/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge77" class="edge">
+<title>/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#b8860b" d="M1811.3441,-585.6434C1579.2378,-566.7584 
1034.8908,-518.4858 857,-468 727.8311,-431.3416 602,-440.27 602,-306 602,-306 
602,-306 602,-234 602,-177.1109 763.1193,-130.8893 865.781,-107.2121"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="866.8613,-110.5558 
875.8342,-104.9222 865.3066,-103.7306 866.8613,-110.5558"/>
+</g>
+<!-- 
/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv
 -->
+<g id="edge76" class="edge">
+<title>/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv</title>
+<path fill="none" stroke="#b8860b" d="M1873.0831,-575.8314C1849.065,-566.1162 
1819.3166,-554.0831 1794.0408,-543.8592"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="1795.1767,-540.5432 
1784.5939,-540.038 1792.5518,-547.0325 1795.1767,-540.5432"/>
+</g>
+<!-- 
/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv
 -->
+<g id="edge75" class="edge">
+<title>/gnu/store/2ifqc7zyn8pi44zd3533kf40nxfw7wc8&#45;gcc&#45;cross&#45;boot0&#45;wrapped&#45;5.5.0.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv</title>
+<path fill="none" stroke="#b8860b" d="M2024.8428,-581.2457C2042.2617,-579.356 
2060.1233,-577.5321 2077,-576 2135.3413,-570.7038 2552.6727,-569.9819 2603,-540 
2626.3186,-526.1082 2641.634,-498.5662 2650.4587,-477.5901"/>
+<polygon fill="#b8860b" stroke="#b8860b" points="2653.7498,-478.7849 
2654.169,-468.1983 2647.2395,-476.2128 2653.7498,-478.7849"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv
 -->
+<g id="edge108" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/xkgcynp4bxjmygi1xzqygmywb5xg7ivw&#45;texinfo&#45;6.5.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1657.6159,-507.6028C1575.9213,-493.3261 
1453.0668,-471.8563 1382.7036,-459.5599"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1383.1675,-456.088 
1372.7142,-457.8141 1381.9624,-462.9834 1383.1675,-456.088"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv
 -->
+<g id="edge109" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1684.1233,-503.902C1667.6378,-495.6643 
1651.4852,-484.0564 1642,-468 1630.868,-449.1559 1636.1217,-424.4362 
1643.3165,-405.6724"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1646.6492,-406.7762 
1647.3,-396.2014 1640.1967,-404.0623 1646.6492,-406.7762"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge111" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.1269,-515.2293C1917.7994,-506.7671 
2080.4467,-490.5981 2219,-468 2220.2834,-467.7907 2221.5768,-467.5747 
2222.878,-467.3529"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2223.7443,-470.7535 
2232.9718,-465.5473 2222.5117,-463.8629 2223.7443,-470.7535"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge112" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.2712,-504.4467C1871.2868,-493.9522 
1934.7188,-480.3075 1991,-468 2063.0537,-452.2434 2080.0252,-442.7089 2153,-432 
2379.3575,-398.7826 2647.7587,-385.6724 2791.2849,-380.7525"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2791.5241,-384.2465 
2801.4007,-380.4123 2791.2887,-377.2505 2791.5241,-384.2465"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge113" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1689.9296,-503.9097C1670.1176,-495.123 
1648.0533,-483.1457 1631,-468 1591.8597,-433.2382 1563.7181,-408.2596 1584,-360 
1588.4293,-349.4607 1722.6661,-223.8256 1731,-216 1741.3391,-206.2915 
1752.8805,-195.8198 1763.0578,-186.7056"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1765.4013,-189.3053 
1770.532,-180.0357 1760.7405,-184.0826 1765.4013,-189.3053"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge114" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.0569,-510.7588C1864.2997,-502.7593 
1915.6741,-489.4959 1958,-468 1980.2229,-456.7138 1978.2447,-442.1701 2001,-432 
2103.0854,-386.3745 2147.6587,-441.0485 2250,-396 2273.1257,-385.8206 
2271.7458,-371.9653 2294,-360 2341.5447,-334.4368 2364.4485,-352.9661 2410,-324 
2436.0642,-307.4258 2459.0902,-280.4495 2474.0543,-260.3463"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2476.923,-262.3523 
2479.9593,-252.2018 2471.2558,-258.2434 2476.923,-262.3523"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge115" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.2118,-511.536C1892.5811,-502.0154 
1996.417,-486.6263 2086,-468 2148.0587,-455.0966 2161.2721,-441.1099 2224,-432 
2283.52,-423.356 3258.3503,-432.6995 3306,-396 3324.5995,-381.6748 
3330.8198,-355.0132 3332.7013,-334.4126"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3336.2033,-334.4881 
3333.3322,-324.2897 3329.2168,-334.0526 3336.2033,-334.4881"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge116" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1689.9296,-503.9097C1670.1176,-495.123 
1648.0533,-483.1457 1631,-468 1590.1224,-431.6952 1567.8236,-369.732 
1557.7537,-333.8777"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1561.0949,-332.8243 
1555.123,-324.073 1554.3341,-334.6384 1561.0949,-332.8243"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge119" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1657.7263,-516.9277C1428.0942,-501.3721 
793.7536,-451.9847 720,-396 684.8408,-369.3115 678,-350.1412 678,-306 678,-306 
678,-306 678,-234 678,-190.048 794.7853,-139.3485 875.3101,-111.3584"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="876.6141,-114.6115 
884.9402,-108.0596 874.3456,-107.9892 876.6141,-114.6115"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge120" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1657.6457,-516.3613C1431.1587,-500.2023 
810.8808,-451.3222 738,-396 702.8408,-369.3115 696,-350.1412 696,-306 696,-306 
696,-306 696,-234 696,-190.2267 811.8377,-139.7605 886.7497,-111.7009"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="888.4171,-114.8157 
896.5782,-108.0596 885.9851,-108.2517 888.4171,-114.8157"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge122" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1657.9275,-515.7667C1434.3802,-499.0306 
828.008,-450.6596 756,-396 720.8408,-369.3115 714,-350.1412 714,-306 714,-306 
714,-306 714,-234 714,-190.316 829.3654,-139.9665 898.7481,-111.873"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="900.248,-115.0421 
908.2163,-108.0596 897.6328,-108.549 900.248,-115.0421"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge117" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1657.7099,-519.297C1468.9688,-512.7196 
1009.4585,-494.4558 857,-468 625.9413,-427.9049 241.7219,-489.9121 361,-288 
462.1756,-116.7316 561.2627,-124.9735 753,-72 893.019,-33.3153 
1914.8334,-21.2451 2200.1747,-18.6106"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2200.4452,-22.1084 
2210.4129,-18.5172 2200.3813,-15.1087 2200.4452,-22.1084"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge118" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.3048,-518.1031C1993.2087,-510.1293 
2398.6788,-490.7701 2739,-468 2838.7642,-461.325 3540.4473,-425.4469 3636,-396 
3713.2314,-372.1993 3794,-386.8156 3794,-306 3794,-306 3794,-306 3794,-234 
3794,-167.5336 3592.5284,-122.2904 3482.1568,-102.0497"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3482.5588,-98.5656 
3472.0951,-100.2272 3481.3112,-105.4535 3482.5588,-98.5656"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge121" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.3138,-518.5513C1995.5595,-510.8741 
2410.1215,-491.2088 2757,-468 2856.7642,-461.325 3558.4473,-425.4469 3654,-396 
3731.2314,-372.1993 3812,-386.8156 3812,-306 3812,-306 3812,-306 3812,-234 
3812,-165.3601 3597.1362,-119.3541 3482.2989,-100.1443"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="3482.619,-96.65 
3472.1831,-98.4783 3481.4814,-103.5569 3482.619,-96.65"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv
 -->
+<g id="edge110" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1822.0483,-515.5788C1994.4236,-502.0886 
2392.946,-470.8999 2571.1211,-456.9557"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="2571.5488,-460.4331 
2581.2452,-456.1634 2571.0026,-453.4544 2571.5488,-460.4331"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv
 -->
+<g id="edge107" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1780.8794,-503.8314C1802.546,-494.2018 
1829.3363,-482.295 1852.2078,-472.1299"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1853.6979,-475.2978 
1861.4145,-468.038 1850.8549,-468.9011 1853.6979,-475.2978"/>
+</g>
+<!-- 
/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv
 -->
+<g id="edge123" class="edge">
+<title>/gnu/store/pnhkpm3v1zc6m2l2aww1vlh1hfcmnmbr&#45;glibc&#45;intermediate&#45;2.28.drv&#45;&gt;/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv</title>
+<path fill="none" stroke="#ff00ff" d="M1741.0094,-503.8314C1741.4372,-496.131 
1741.9459,-486.9743 1742.4213,-478.4166"/>
+<polygon fill="#ff00ff" stroke="#ff00ff" points="1745.9169,-478.592 
1742.977,-468.4133 1738.9276,-478.2037 1745.9169,-478.592"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge87" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#ff0000" d="M2718.746,-431.9243C2751.1525,-421.9531 
2791.5639,-409.5188 2825.412,-399.104"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2826.7013,-402.3693 
2835.2298,-396.0831 2824.6427,-395.6788 2826.7013,-402.3693"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge90" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#ff0000" d="M2634.6441,-431.8519C2606.2966,-412.1732 
2558.5119,-380.797 2514,-360 2290.9869,-255.8029 2002.8445,-197.4911 
1867.5501,-174.14"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1868.1304,-170.6885 
1857.6834,-172.4525 1866.9502,-177.5883 1868.1304,-170.6885"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge91" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#ff0000" d="M2668.3779,-431.734C2675.6936,-413.054 
2683.7427,-383.5209 2674,-360 2665.3409,-339.095 2620.4045,-301.1634 2602,-288 
2584.9026,-275.7715 2564.6167,-264.9382 2546.1506,-256.2448"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2547.5189,-253.0218 
2536.971,-252.0254 2544.5953,-259.3821 2547.5189,-253.0218"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge92" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2738.5132,-438.2689C2755.7763,-435.9531 
2773.9832,-433.7128 2791,-432 2853.1475,-425.7446 3309.2706,-441.5593 3352,-396 
3367.7497,-379.2073 3359.7345,-352.7854 3349.7263,-332.9055"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3352.7505,-331.1401 
3344.9077,-324.0168 3346.5966,-334.4761 3352.7505,-331.1401"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge93" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#ff0000" d="M2627.915,-431.9877C2587.8979,-410.5267 
2516.7254,-375.6164 2451,-360 2292.7387,-322.3969 1798.2261,-310.2582 
1617.7677,-307.0218"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1617.678,-303.5198 
1607.618,-306.8433 1617.5548,-310.5187 1617.678,-303.5198"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge96" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2581.2547,-444.9913C2523.4615,-441.1463 
2443.2651,-435.8593 2373,-432 2018.5069,-412.5294 1924.3742,-459.1039 1575,-396 
1562.1887,-393.686 1363.7265,-329.6545 1352,-324 1221.7586,-261.1985 
1209.517,-210.2589 1081,-144 1057.0414,-131.6478 1029.5798,-120.506 
1005.8785,-111.5952"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1006.908,-108.244 
996.3151,-108.0418 1004.4699,-114.8057 1006.908,-108.244"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge97" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2581.3599,-443.9702C2527.7554,-440.2484 
2455.2286,-435.5278 2391,-432 2036.5069,-412.5294 1942.3742,-459.1039 1593,-396 
1580.1887,-393.686 1381.7265,-329.6545 1370,-324 1239.7586,-261.1985 
1227.517,-210.2589 1099,-144 1074.8285,-131.538 1047.0913,-120.308 
1022.0494,-111.3581"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="1023.1916,-108.0498 
1012.5968,-108.0418 1020.8742,-114.6551 1023.1916,-108.0498"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge89" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2738.842,-438.0273C2756.003,-435.7403 
2774.085,-433.5727 2791,-432 3117.0957,-401.6802 3206.8073,-464.8063 3527,-396 
3633.9152,-373.0249 3756,-415.3559 3756,-306 3756,-306 3756,-306 3756,-162 
3756,-33.3988 3607.512,-95.0864 3481,-72 3261.7687,-31.9939 2574.9331,-21.1972 
2347.7663,-18.6826"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2347.6586,-15.1813 
2337.6212,-18.5724 2347.5826,-22.1809 2347.6586,-15.1813"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge94" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2738.5061,-438.1981C2755.7697,-435.8865 
2773.9785,-433.6659 2791,-432 3063.0577,-405.3743 3137.6904,-453.1833 3405,-396 
3515.1797,-372.4302 3642,-418.6726 3642,-306 3642,-306 3642,-306 3642,-234 
3642,-157.5532 3549.5894,-120.1632 3481.9199,-103.0318"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3482.6734,-99.6131 
3472.1294,-100.649 3481.018,-106.4146 3482.6734,-99.6131"/>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge95" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#ff0000" d="M2738.5106,-438.2434C2755.7739,-435.9292 
2773.9815,-433.6959 2791,-432 2855.1399,-425.6084 3314.6199,-428.9821 3370,-396 
3414.677,-369.3923 3443.0256,-331.8014 3415,-288 3332.6892,-159.3556 
3251.0236,-181.596 3103,-144 2963.0435,-108.4529 2534.8435,-95.4768 
2354.942,-91.5104"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="2354.8231,-88.0071 
2344.7495,-91.2895 2354.6713,-95.0055 2354.8231,-88.0071"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv
 -->
+<g id="node24" class="node">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv</title>
+<polygon fill="none" stroke="#000000" points="3196,-396 3042,-396 3042,-360 
3196,-360 3196,-396"/>
+<text text-anchor="middle" x="3119" y="-374.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">libstdc++&#45;boot0@4.9.4</text>
+</g>
+<!-- 
/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv
 -->
+<g id="edge88" class="edge">
+<title>/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv&#45;&gt;/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv</title>
+<path fill="none" stroke="#ff0000" d="M2738.644,-437.6637C2820.1282,-424.8819 
2947.1614,-404.9551 3031.7037,-391.6935"/>
+<polygon fill="#ff0000" stroke="#ff0000" points="3032.4604,-395.1177 
3041.7971,-390.1103 3031.3755,-388.2023 3032.4604,-395.1177"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge98" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3072.1093,-359.9785C3022.8093,-341.2353 
2942.8528,-311.414 2873,-288 2769.0239,-253.1481 2744.8913,-235.625 2637,-216 
2490.5206,-189.3559 2047.1541,-171.0978 1867.6655,-164.6125"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1867.634,-161.1092 
1857.5148,-164.2482 1867.3828,-168.1047 1867.634,-161.1092"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge99" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3059.739,-359.9483C2994.541,-340.4972 
2886.455,-309.4531 2792,-288 2715.8622,-270.7072 2627.8414,-255.4111 
2566.9227,-245.5539"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2567.4363,-242.0916 
2557.0073,-243.9588 2566.3245,-249.0027 2567.4363,-242.0916"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge100" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3172.725,-359.9243C3202.1073,-350.0387 
3238.6852,-337.7321 3269.4758,-327.3726"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3270.8911,-330.5893 
3279.2529,-324.0831 3268.6588,-323.9548 3270.8911,-330.5893"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge101" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3041.7279,-365.3921C3026.6002,-363.2918 
3010.8292,-361.3582 2996,-360 2723.049,-335.0014 1864.391,-313.3603 
1617.8151,-307.5373"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1617.652,-304.0326 
1607.5723,-307.2963 1617.4872,-311.0307 1617.652,-304.0326"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge105" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3079.4799,-359.953C3041.1584,-340.647 
2981.5172,-309.8588 2928,-288 2832.7572,-249.0987 2807.7701,-241.1081 2708,-216 
2531.5544,-171.5957 2485.8838,-163.6424 2305,-144 2055.8755,-116.9473 
1287.9253,-97.7613 1032.5182,-91.8883"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1032.2731,-88.3819 
1022.1955,-91.6518 1032.1126,-95.38 1032.2731,-88.3819"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge106" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3092.7475,-359.953C3059.1584,-340.647 
2999.5172,-309.8588 2946,-288 2850.7572,-249.0987 2825.7701,-241.1081 2726,-216 
2549.5544,-171.5957 2503.8838,-163.6424 2323,-144 2071.2801,-116.6655 
1289.8676,-97.3624 1032.2592,-91.7091"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1032.2915,-88.2091 
1022.2174,-91.4898 1032.1386,-95.2074 1032.2915,-88.2091"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge102" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3126.8423,-359.8781C3143.7546,-317.716 
3178.5229,-211.5074 3132,-144 3080.9924,-69.985 3030.6777,-91.8147 2943,-72 
2831.34,-46.7655 2496.9827,-28.4562 2347.5553,-21.307"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2347.7078,-17.8104 
2337.553,-20.832 2347.3756,-24.8025 2347.7078,-17.8104"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge103" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3151.4095,-359.8123C3168.5956,-349.8029 
3189.8502,-336.8356 3208,-324 3228.6294,-309.4107 3230.8703,-301.8547 3252,-288 
3281.256,-268.8169 3296.9553,-276.4267 3322,-252 3361.1557,-213.8105 
3354.2718,-191.7201 3381,-144 3385.888,-135.273 3391.2925,-125.7999 
3396.2015,-117.2601"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3399.3243,-118.8511 
3401.286,-108.4394 3393.2596,-115.3553 3399.3243,-118.8511"/>
+</g>
+<!-- 
/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge104" class="edge">
+<title>/gnu/store/7rwqjjwxl91b1wzijvrvszhhw6lssz72&#45;libstdc++&#45;boot0&#45;4.9.4.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M3113.0978,-359.8663C3097.1718,-314.2217 
3048.5768,-194.6204 2962,-144 2910.6869,-113.9978 2525.5057,-98.061 
2354.9063,-92.4116"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2354.8336,-88.9074 
2344.7244,-92.0782 2354.6045,-95.9037 2354.8336,-88.9074"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv
 -->
+<g id="edge124" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1855.2319,-434.5554C1852.4501,-433.6799 
1849.6903,-432.8222 1847,-432 1809.0793,-420.411 1766.6523,-408.2743 
1731.526,-398.449"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1732.3947,-395.0578 
1721.8219,-395.7415 1730.5134,-401.8003 1732.3947,-395.0578"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge125" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1895.0565,-431.9843C1876.2514,-383.1929 
1824.2374,-248.2377 1801.6732,-189.6927"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1804.8031,-188.0811 
1797.9409,-180.0089 1798.2715,-190.5986 1804.8031,-188.0811"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge126" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1948.782,-435.4592C1953.5605,-434.1955 
1958.3616,-433.0142 1963,-432 2072.2366,-408.1155 2108.7304,-438.8777 2212,-396 
2236.6282,-385.7743 2236.2817,-372.1883 2260,-360 2307.2583,-335.7149 
2326.8403,-348.476 2374,-324 2376.3915,-322.7588 2426.0648,-284.6933 
2460.1921,-258.4701"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2462.6997,-260.9571 
2468.4953,-252.088 2458.4338,-255.4071 2462.6997,-260.9571"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge127" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1948.5272,-446.6849C2005.6186,-442.7135 
2105.3857,-436.0857 2191,-432 2251.2424,-429.1251 3223.6519,-425.9515 3276,-396 
3299.5593,-382.5203 3314.8393,-354.918 3323.5901,-333.8152"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3326.9046,-334.9487 
3327.2634,-324.36 3320.3796,-332.4138 3326.9046,-334.9487"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge128" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1871.6702,-431.7977C1827.8723,-405.5133 
1752.0994,-360.0422 1752,-360 1708.7664,-341.6477 1657.6165,-328.0104 
1617.7355,-319.0314"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1618.3702,-315.5873 
1607.8507,-316.849 1616.8609,-322.4227 1618.3702,-315.5873"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge132" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1855.2396,-436.3422C1849.4525,-434.6612 
1843.6126,-433.1378 1838,-432 1556.5727,-374.951 1448.1332,-470.2227 1201,-324 
1098.3623,-263.2718 1091.1912,-223.1666 1002,-144 991.302,-134.5044 
979.4791,-124.1684 969.591,-115.1049"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="971.8342,-112.411 
962.1342,-108.1493 967.0595,-117.5298 971.8342,-112.411"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge133" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1855.5879,-431.9165C1574.4668,-375.044 
1466.0125,-470.1513 1219,-324 1116.3623,-263.2718 1109.1912,-223.1666 1020,-144 
1009.0902,-134.3164 997.0104,-123.7587 985.8608,-114.568"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="987.9102,-111.7239 
977.9366,-108.1493 983.5042,-117.1633 987.9102,-111.7239"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge129" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1855.4042,-433.8607C1852.5791,-433.1598 
1849.7627,-432.5303 1847,-432 1413.3842,-348.7757 1227.9884,-510.4439 870,-252 
826.1614,-220.3514 797.1316,-195.3703 814,-144 826.3965,-106.2483 
831.8902,-90.6056 867,-72 926.274,-40.5891 1918.6212,-23.3394 
2200.106,-19.0627"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2200.2669,-22.5608 
2210.2129,-18.9101 2200.1611,-15.5616 2200.2669,-22.5608"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge130" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1948.6397,-446.9988C2011.2532,-443.0599 
2125.9657,-436.1601 2224,-432 2292.9669,-429.0734 3405.3643,-428.9895 3466,-396 
3508.6667,-372.7867 3528,-354.5727 3528,-306 3528,-306 3528,-306 3528,-234 
3528,-189.8588 3514.0468,-178.0855 3486,-144 3476.5673,-132.5364 
3464.1751,-122.2533 3452.2356,-113.8138"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="3453.9111,-110.7211 
3443.6706,-108.004 3449.9815,-116.5141 3453.9111,-110.7211"/>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge131" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1948.6781,-433.5018C1950.4694,-432.977 
1952.2479,-432.4741 1954,-432 2033.5937,-410.4626 2066.7985,-440.8349 2136,-396 
2234.0177,-332.4953 2263.1427,-180.8912 2271.1699,-118.0404"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="2274.6516,-118.4019 
2272.3605,-108.0577 2267.7008,-117.5728 2274.6516,-118.4019"/>
+</g>
+<!-- /gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv -->
+<g id="node27" class="node">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv</title>
+<polygon fill="none" stroke="#000000" points="2056,-396 1968,-396 1968,-360 
2056,-360 2056,-396"/>
+<text text-anchor="middle" x="2012" y="-374.3" 
font-family="Helvetica,sans-Serif" font-size="14.00" 
fill="#000000">m4@1.4.18</text>
+</g>
+<!-- 
/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv
 -->
+<g id="edge134" class="edge">
+<title>/gnu/store/7wphgxzn727j8rcjapdnfamgcrm6kygv&#45;bison&#45;3.0.5.drv&#45;&gt;/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv</title>
+<path fill="none" stroke="#00cdcd" d="M1929.7576,-431.8314C1943.697,-422.7074 
1960.7598,-411.539 1975.7231,-401.7449"/>
+<polygon fill="#00cdcd" stroke="#00cdcd" points="1977.801,-404.5679 
1984.2512,-396.1628 1973.9674,-398.711 1977.801,-404.5679"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv
 -->
+<g id="edge147" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/ibidyh5zsh1rbf2grx56vzhim76nrx0i&#45;perl&#45;boot0&#45;5.28.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1722.0462,-431.8314C1711.3305,-422.9632 
1698.2811,-412.1637 1686.691,-402.5718"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1688.8822,-399.8422 
1678.9467,-396.1628 1684.4192,-405.2349 1688.8822,-399.8422"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge148" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#9400d3" d="M1746.9401,-431.9843C1754.8861,-383.2939 
1776.8354,-248.7961 1786.4212,-190.0573"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1789.9046,-190.4421 
1788.0611,-180.0089 1782.996,-189.3146 1789.9046,-190.4421"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge149" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#9400d3" d="M1837.7172,-433.4212C1840.847,-432.9317 
1843.9479,-432.4565 1847,-432 1975.0132,-412.853 2012.1088,-433.4825 2136,-396 
2170.2442,-385.6397 2175.6399,-375.2586 2208,-360 2288.4153,-322.0822 
2383.0089,-280.7592 2440.1885,-256.1341"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2441.5779,-259.3466 
2449.3813,-252.1802 2438.8121,-252.9162 2441.5779,-259.3466"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge150" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1837.6683,-433.0287C1840.8121,-432.6514 
1843.9292,-432.3064 1847,-432 2000.8435,-416.6508 3095.1276,-455.0838 3238,-396 
3238.0682,-395.9718 3278.1657,-357.9738 3306.2383,-331.3666"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3308.9438,-333.6246 
3313.794,-324.2051 3304.1284,-328.544 3308.9438,-333.6246"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge151" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#9400d3" d="M1746.6537,-431.8106C1748.4967,-411.7996 
1748.1101,-379.8503 1731,-360 1715.8998,-342.4816 1662.3166,-327.8046 
1617.507,-318.195"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1618.0161,-314.7258 
1607.5111,-316.1025 1616.5818,-321.5773 1618.0161,-314.7258"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge155" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1650.2678,-444.5618C1525.6994,-436.3323 
1312.9209,-419.1823 1239,-396 1175.2356,-376.0029 1157.013,-368.3225 1107,-324 
1036.7328,-261.7278 979.5575,-164.6181 957.7481,-117.4973"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="960.8925,-115.954 
953.6391,-108.2315 954.4935,-118.7918 960.8925,-115.954"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge156" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1650.4219,-443.7406C1530.1632,-435.2235 
1328.5446,-418.4371 1257,-396 1193.2356,-376.0029 1175.013,-368.3225 1125,-324 
1054.4387,-261.4673 997.0793,-163.8049 968.2437,-116.9085"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="971.1069,-114.8845 
962.8614,-108.2315 965.1584,-118.5744 971.1069,-114.8845"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge152" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1650.2381,-444.6081C1476.7003,-434.3279 
1118.029,-411.5635 1063,-396 890.5608,-347.23 683.8266,-184.8917 823,-72 
876.8757,-28.2982 1911.1922,-19.8252 2199.7901,-18.3092"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2200.1626,-21.8075 
2210.1445,-18.2562 2200.1267,-14.8076 2200.1626,-21.8075"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge153" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1837.6673,-433.0185C1840.8114,-432.6441 
1843.9289,-432.3025 1847,-432 1932.3327,-423.596 3313.0916,-433.913 3390,-396 
3493.0834,-345.1837 3481.3044,-253.9969 3448,-144 3445.0436,-134.2355 
3439.6748,-124.6229 3433.97,-116.2762"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3436.7129,-114.0973 
3427.9905,-108.0831 3431.0586,-118.2239 3436.7129,-114.0973"/>
+</g>
+<!-- 
/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge154" class="edge">
+<title>/gnu/store/pc1yb2xdv9s0vsi3m361f72jij8arv5y&#45;linux&#45;libre&#45;headers&#45;4.14.67.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M1837.7425,-433.5795C1840.8651,-433.0448 
1843.9576,-432.517 1847,-432 1943.813,-415.5472 1982.1982,-448.795 2065,-396 
2173.422,-326.8694 2239.9437,-179.1562 2263.9013,-117.7083"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2267.2053,-118.8669 
2267.5066,-108.2763 2260.6667,-116.3675 2267.2053,-118.8669"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge135" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#9400d3" d="M1988.2181,-359.8014C1975.7247,-349.789 
1960.4635,-336.8222 1948,-324 1905.2325,-280.0014 1905.8674,-258.902 1862,-216 
1851.1307,-205.3699 1838.1565,-194.9515 1826.2903,-186.1457"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1828.0379,-183.089 
1817.8916,-180.0387 1823.9212,-188.7505 1828.0379,-183.089"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge136" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#9400d3" d="M2056.1175,-360.3934C2082.2794,-349.9097 
2116.0711,-336.294 2146,-324 2184.3283,-308.2558 2192.4222,-300.2694 2232,-288 
2293.1221,-269.0518 2364.399,-254.776 2416.8498,-245.6763"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2417.4828,-249.1189 
2426.7487,-243.9815 2416.3014,-242.2193 2417.4828,-249.1189"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge137" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2056.4364,-375.0008C2111.9907,-371.2888 
2210.0063,-364.8632 2294,-360 2649.5919,-339.4114 3073.8621,-318.5001 
3250.0101,-309.9797"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3250.4196,-313.4641 
3260.2389,-309.4853 3250.0816,-306.4722 3250.4196,-313.4641"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge138" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#9400d3" d="M1967.7974,-371.0963C1886.5844,-358.4123 
1713.2132,-331.3348 1617.647,-316.4091"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1617.939,-312.9123 
1607.5186,-314.8272 1616.8587,-319.8285 1617.939,-312.9123"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge142" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2002.671,-359.8107C1984.5154,-314.0357 
1942.1639,-194.1535 1858,-144 1787.833,-102.1873 1243.1994,-92.7165 
1032.1221,-90.5994"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1032.0571,-87.0987 
1022.0235,-90.5012 1031.989,-94.0984 1032.0571,-87.0987"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge143" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2011.428,-359.8107C2002.5154,-314.0357 
1960.1639,-194.1535 1876,-144 1804.9053,-101.6344 1246.7151,-92.4718 
1032.3617,-90.5193"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="1032.141,-87.0173 
1022.1106,-90.429 1032.0793,-94.017 1032.141,-87.0173"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge139" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2018.4526,-359.942C2025.3364,-341.4277 
2037.0199,-312.0244 2050,-288 2104.9619,-186.2735 2113.5849,-154.1015 2195,-72 
2206.3232,-60.5813 2220.3781,-50.0774 2233.48,-41.429"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2235.3839,-44.366 
2241.914,-36.0227 2231.6063,-38.4728 2235.3839,-44.366"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge140" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2036.7715,-359.9075C2068.9344,-336.6759 
2123.5976,-298.1418 2146,-288 2259.9222,-236.4263 2295.8074,-242.591 2418,-216 
2603.0585,-175.7284 2650.2527,-168.8874 2838,-144 3018.9535,-120.0132 
3233.3845,-102.7979 3341.767,-94.8791"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="3342.1997,-98.357 
3351.9199,-94.1418 3341.6927,-91.3753 3342.1997,-98.357"/>
+</g>
+<!-- 
/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv
 -->
+<g id="edge141" class="edge">
+<title>/gnu/store/9r9n9kfd9b177yvwmd7hsb5fvwc1xqna&#45;m4&#45;1.4.18.drv&#45;&gt;/gnu/store/zx6v3sarfxmnzx2579y7jh0yv67vd0p2&#45;binutils&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#9400d3" d="M2025.9607,-359.9047C2057.4176,-319.5411 
2136.9632,-219.7398 2212,-144 2221.9269,-133.9801 2233.4276,-123.6501 
2243.8082,-114.7422"/>
+<polygon fill="#9400d3" stroke="#9400d3" points="2246.1184,-117.3722 
2251.4834,-108.2361 2241.592,-112.0325 2246.1184,-117.3722"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv
 -->
+<g id="edge190" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/kzg1zp001xv6aa8n29nzgshwsj41f3x6&#45;ld&#45;wrapper&#45;boot0&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2461.7771,-503.9243C2432.6694,-494.0387 
2396.4334,-481.7321 2365.9306,-471.3726"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2366.8392,-467.9849 
2356.2448,-468.0831 2364.5881,-474.6131 2366.8392,-467.9849"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv
 -->
+<g id="edge191" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/82jlifq9i8rwj2x4q1rg53lsdid8ln0v&#45;binutils&#45;cross&#45;boot0&#45;2.31.1.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2521.4533,-503.8694C2529.8923,-482.9687 
2546.7659,-449.2816 2573,-432 2608.1874,-408.8204 2711.3013,-394.3223 
2791.2665,-386.2569"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2791.7849,-389.7228 
2801.3926,-385.2572 2791.0971,-382.7567 2791.7849,-389.7228"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv
 -->
+<g id="edge192" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/vsi3zjm4wnkxp3w3glfmqwn9cxmbgv2x&#45;make&#45;boot0&#45;4.2.1.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2513.0271,-503.7407C2508.4255,-470.258 
2493.8904,-398.91 2451,-360 2448.983,-358.1702 2076.6069,-252.7878 2074,-252 
1998.8876,-229.3027 1913.0607,-201.783 1855.8072,-183.1971"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="1856.7573,-179.8257 
1846.1652,-180.0638 1854.5939,-186.483 1856.7573,-179.8257"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv
 -->
+<g id="edge193" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/zr5i8lbl3w2ll42l7x7g6bc1ak30p35l&#45;diffutils&#45;boot0&#45;3.6.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2516.9472,-503.7687C2519.4161,-485.1164 
2524.6611,-455.605 2535,-432 2542.8153,-414.1568 2554.1784,-414.5894 2560,-396 
2564.7817,-380.7312 2563.5009,-375.6123 2560,-360 2551.6683,-322.8444 
2528.9591,-285.0391 2512.0624,-260.6659"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2514.7804,-258.4482 
2506.1376,-252.3201 2509.0724,-262.5004 2514.7804,-258.4482"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv
 -->
+<g id="edge194" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/jdf9x9xlbrdn6g3af86z6nkpj60bpl4c&#45;findutils&#45;boot0&#45;4.6.0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2594.3481,-506.7147C2696.4481,-487.4164 
2879.4447,-454.0765 3037,-432 3110.7111,-421.6717 3320.278,-451.387 3370,-396 
3386.2935,-377.8501 3372.441,-351.5469 3357.2628,-332.0595"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3359.8212,-329.6604 
3350.7607,-324.1687 3354.4189,-334.112 3359.8212,-329.6604"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv
 -->
+<g id="edge195" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/3kng9qpqz1g3i3swdakpibxxqh8sx465&#45;file&#45;boot0&#45;5.33.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2495.1843,-503.7035C2470.6726,-482.305 
2426.6845,-447.8018 2382,-432 2204.1155,-369.0944 2145.5325,-424.3837 1959,-396 
1950.5054,-394.7074 1730.9561,-345.998 1617.5172,-320.7905"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="1618.0659,-317.3271 
1607.5448,-318.5743 1616.5473,-324.1604 1618.0659,-317.3271"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge198" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2435.6022,-520.1645C2197.6732,-514.279 
1493.3881,-494.6928 1266,-468 1223.97,-463.0662 922.249,-425.595 892,-396 
833.9748,-339.2293 845.5533,-295.6946 861,-216 867.5644,-182.1321 
871.5313,-173.1381 890,-144 896.5194,-133.7143 905.1152,-123.6023 
913.802,-114.9604"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="916.2196,-117.4913 
921.0767,-108.0754 911.4079,-112.4072 916.2196,-117.4913"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv
 -->
+<g id="edge199" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/nz642hld6jwi0c4agxf4bvybx94xbj90&#45;bootstrap&#45;binaries&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2435.9172,-519.973C2200.8124,-513.8634 
1508.9804,-494.4101 1284,-468 1241.97,-463.0662 940.249,-425.595 910,-396 
851.9748,-339.2293 863.5533,-295.6946 879,-216 885.5644,-182.1321 
889.5313,-173.1381 908,-144 914.389,-133.9201 922.7722,-124.0069 
930.4065,-115.4807"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="932.9988,-117.8323 
937.1285,-108.0754 927.8157,-113.1274 932.9988,-117.8323"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge196" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/n70scia0nsr52js27rgy8lwzyvd21bc3&#45;glibc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2594.0979,-520.6986C2851.5503,-515.5538 
3662.8414,-491.9336 3904,-396 3971.348,-369.2087 4040,-378.4812 4040,-306 
4040,-306 4040,-306 4040,-162 4040,27.1663 3811.6543,-95.8696 3624,-72 
3373.962,-40.1952 2592.304,-23.7335 2347.8391,-19.2687"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2347.7024,-15.7657 
2337.6406,-19.0837 2347.5754,-22.7646 2347.7024,-15.7657"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv
 -->
+<g id="edge197" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/l1kpxjgh0rhckaxpxk05asrhss9yvxm9&#45;gcc&#45;bootstrap&#45;0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2594.1596,-518.9321C2901.94,-505.9707 
4002,-449.6003 4002,-306 4002,-306 4002,-306 4002,-234 4002,-128.0552 
3638.4177,-99.7072 3482.0848,-92.415"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3482.2407,-88.9185 
3472.0932,-91.9645 3481.9254,-95.9114 3482.2407,-88.9185"/>
+</g>
+<!-- 
/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv
 -->
+<g id="edge189" class="edge">
+<title>/gnu/store/v2h6x68rylyqmcnjkc9z3qi8jv1ff78c&#45;gettext&#45;boot0&#45;0.19.8.1.drv&#45;&gt;/gnu/store/30q5ap6r38m0g1xgk48kpd9frb5n7v0v&#45;gcc&#45;cross&#45;boot0&#45;5.5.0.drv</title>
+<path fill="none" stroke="#8fbc8f" d="M2551.5896,-503.8314C2570.7239,-494.3302 
2594.3229,-482.6121 2614.6122,-472.5374"/>
+<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2616.2735,-475.6203 
2623.6735,-468.038 2613.1603,-469.3506 2616.2735,-475.6203"/>
+</g>
+</g>
+</svg>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]