all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Ludovic Courtès" <ludo@gnu.org>
To: guix-devel <guix-devel@gnu.org>
Subject: How long to compute a package derivation?
Date: Sun, 24 Nov 2019 22:44:12 +0100	[thread overview]
Message-ID: <87h82tx843.fsf@inria.fr> (raw)

[-- Attachment #1: Type: text/plain, Size: 1608 bytes --]

Hello Guix!

I wanted to time ‘package-derivation’ for each package, to see if there
were any outliers.  I came up with the attached script, which led to the
attached result; here’s an excerpt, showing the most “expensive” package
derivations (measurements performed on an i7 laptop with only one run
each, so take with a grain of salt):

--8<---------------cut here---------------start------------->8---
   4.93 ("pigx" . "0.0.3")
   4.55 ("wine64-staging" . "4.18")
   3.96 ("pigx-scrnaseq" . "0.0.8")
   3.88 ("pigx-chipseq" . "0.0.41")
   3.84 ("dxvk" . "1.4.4")
   3.68 ("pigx-rnaseq" . "0.0.10")
   3.67 ("wine64" . "4.0.2")
   3.42 ("pigx-bsseq" . "0.0.10")
   3.03 ("emacs-tide" . "3.2.3")
   2.95 ("diffoscope" . "129")
   2.91 ("kdenlive" . "18.08.1")
   2.89 ("libkomparediff2" . "19.04.1")
   2.83 ("kdevelop" . "5.1.2")
--8<---------------cut here---------------end--------------->8---
 
That doesn’t necessarily reveal anything surprising.  For example, pigx
has 1,316 nodes in its package graph, which map to almost 5K nodes in
the derivation graph, so no wonder it takes time.

For “win64” and “win64-staging”, I found that we’re dragging all of the
i686 nodes, hence the cost: <https://issues.guix.gnu.org/issue/38336>.

Now, this list gives us timing, but not outliers.  What would be
interesting to see is the time normalized by the number of nodes in the
package graph, for instance.

Anyway, perhaps if you look at the ranking of your favorite packages,
you’ll find that something’s fishy, who knows.

Thanks,
Ludo’.


[-- Attachment #2: the script --]
[-- Type: text/plain, Size: 2570 bytes --]

(use-modules (guix inferior)
             (srfi srfi-1)
             (srfi srfi-19)
             (ice-9 match)
             (ice-9 format)
             (guix store)
             (guix progress))

(define %timings (make-hash-table))

;; (define (package->derivation* package system . args)
;;   (lambda (store)
;;     (values (let ((start (current-time))
;;                   (drv   (apply package-derivation store
;;                                 package system args))
;;                   (stop  (current-time)))
;;               (hashq-set! %timings package
;;                           (time-difference stop start))
;;               drv)
;;             store)))

(define %inferior-directory
  (string-append (getenv "HOME") "/.config/guix/current"))

(define (all-packages)
  (let* ((inferior (open-inferior %inferior-directory))
         (packages (inferior-available-packages inferior)))
    (close-inferior inferior)
    packages))

(define (time-package-derivation name version)
  (with-store store
    (let* ((inferior (open-inferior %inferior-directory))
           (_        (inferior-eval '(begin
                                       (use-modules (guix grafts))
                                       (%graft? #f))
                                    inferior))
           (package  (car (lookup-inferior-packages inferior name version)))
           (start    (current-time))
           (drv      (inferior-package-derivation store package))
           (stop     (current-time)))
      (close-inferior inferior)
      (hash-set! %timings (cons name version)
                 (time-difference stop start)))))

(define* (display-timings #:optional (port (current-output-port)))
  (define alist
    (hash-map->list cons %timings))

  (for-each (match-lambda
              ((package . duration)
               (format port "~5,2f ~s~%"
                       (+ (time-second duration)
                          (/ (time-nanosecond duration) 1e9))
                       package)))
            (sort alist (match-lambda*
                          (((_ . d1) (_ . d2))
                           (time>? d1 d2))))))

(define (run-benchmark)
  (let ((packages (all-packages)))
    (call-with-progress-reporter (progress-reporter/bar (length packages))
      (lambda (report)
        (for-each (match-lambda
                    ((name . version)
                     (time-package-derivation name version)
                     (report)))
                  packages)
        (display-timings)))))

(sigaction SIGINT (lambda (_) (display-timings)))
(run-benchmark)

[-- Attachment #3: the timings --]
[-- Type: text/plain, Size: 400443 bytes --]

#+begin_example
  $ guile ~/src/guix-debugging/prof-packages.scm
  [##############################################################################] 4.93 ("pigx" . "0.0.3")
   4.55 ("wine64-staging" . "4.18")
   3.96 ("pigx-scrnaseq" . "0.0.8")
   3.88 ("pigx-chipseq" . "0.0.41")
   3.84 ("dxvk" . "1.4.4")
   3.68 ("pigx-rnaseq" . "0.0.10")
   3.67 ("wine64" . "4.0.2")
   3.42 ("pigx-bsseq" . "0.0.10")
   3.03 ("emacs-tide" . "3.2.3")
   2.95 ("diffoscope" . "129")
   2.91 ("kdenlive" . "18.08.1")
   2.89 ("libkomparediff2" . "19.04.1")
   2.83 ("kdevelop" . "5.1.2")
   2.83 ("baloo" . "5.55.0")
   2.83 ("kdelibs4support" . "5.55.0")
   2.70 ("rcas-web" . "0.1.0")
   2.69 ("gnome" . "3.30.2")
   2.68 ("kdesignerplugin" . "5.55.0")
   2.66 ("kross" . "5.55.0")
   2.66 ("r-affycoretools" . "1.56.0")
   2.65 ("kdeconnect" . "1.3.5")
   2.65 ("kded" . "5.55.0")
   2.64 ("krita" . "4.2.5")
   2.64 ("ktouch" . "19.08.1")
   2.63 ("kpmcore" . "3.3.0")
   2.62 ("r-liger" . "0.4.2")
   2.62 ("kxmlrpcclient" . "5.55.0")
   2.60 ("kemoticons" . "5.55.0")
   2.60 ("r-inspect" . "1.14.0")
   2.60 ("kscreenlocker" . "5.15.1")
   2.60 ("khtml" . "5.55.0")
   2.59 ("kde-frameworkintegration" . "5.55.0")
   2.59 ("kbookmarks" . "5.55.0")
   2.57 ("kcachegrind" . "19.04.1")
   2.57 ("kdesu" . "5.55.0")
   2.57 ("krunner" . "5.55.0")
   2.57 ("r-diffbind" . "2.12.0")
   2.57 ("kactivities" . "5.55.0")
   2.57 ("kpeople" . "5.55.0")
   2.56 ("kdewebkit" . "5.55.0")
   2.56 ("r-timeseriesexperiment" . "1.2.0")
   2.56 ("ktexteditor" . "5.55.0")
   2.55 ("kinit" . "5.55.0")
   2.55 ("r-systempiper" . "1.18.2")
   2.55 ("r-flowmeans" . "1.44.0")
   2.55 ("libksysguard" . "5.15.1")
   2.54 ("ktextwidgets" . "5.55.0")
   2.53 ("r-abseqr" . "1.2.0")
   2.53 ("r-rcas" . "1.10.1")
   2.52 ("r-chipexoqual" . "1.8.0")
   2.51 ("kdeclarative" . "5.55.0")
   2.51 ("hedgewars" . "1.0.0")
   2.51 ("fdroidserver" . "1.1.1")
   2.50 ("mate" . "1.22.0")
   2.50 ("kcmutils" . "5.55.0")
   2.50 ("knotifyconfig" . "5.55.0")
   2.50 ("r-clusterprofiler" . "3.12.0")
   2.49 ("r-dexseq" . "1.30.0")
   2.49 ("kio" . "5.55.0")
   2.49 ("kxmlgui" . "5.55.0")
   2.48 ("r-xbseq" . "1.16.0")
   2.48 ("next" . "1.3.4")
   2.46 ("r-reportingtools" . "2.24.0")
   2.46 ("emacs-elpy" . "1.31.0")
   2.43 ("kglobalaccel" . "5.55.0")
   2.42 ("arcan-wayland" . "0.5.5.2-1.b4dd1fb")
   2.39 ("nmoldyn" . "3.0.11")
   2.39 ("r-radiant-data" . "1.0.6")
   2.38 ("r-ggraph" . "2.0.0")
   2.37 ("arcan-sdl" . "0.5.5.2-1.b4dd1fb")
   2.36 ("r-enrichplot" . "1.4.0")
   2.36 ("ungoogled-chromium" . "78.0.3904.97-0.acaf163")
   2.36 ("r-cicero-monocle3" . "1.3.2-1.fa2fb65")
   2.36 ("arc-theme" . "20190917")
   2.35 ("emacs-ox-pandoc" . "20180510")
   2.35 ("r-harmony" . "1.0-1.4d16538")
   2.35 ("numix-theme" . "2.6.7")
   2.35 ("r-irkernel" . "1.0.2")
   2.34 ("r-velocyto" . "0.6-1.d779034")
   2.34 ("pplacer" . "1.1.alpha19")
   2.34 ("emacs-edbi-sqlite" . "0.1.1-1.52cb9ca")
   2.34 ("raincat" . "1.2.1")
   2.34 ("openshot" . "2.4.4")
   2.33 ("r-soupx" . "0.3.1-1.a3354be")
   2.33 ("ungoogled-chromium-wayland" . "78.0.3904.97-0.acaf163")
   2.32 ("r-deseq2" . "1.24.0")
   2.32 ("gaupol" . "1.6")
   2.32 ("ghc-sdl2-mixer" . "1.1.0")
   2.32 ("r-scde" . "1.99.2")
   2.31 ("caja-extensions" . "1.22.0")
   2.31 ("r-rgl" . "0.100.30")
   2.30 ("virt-manager" . "2.2.1")
   2.30 ("tetoolkit" . "2.0.3")
   2.29 ("ngless" . "0.9.1")
   2.29 ("r-linnorm" . "2.8.0")
   2.29 ("icecat" . "68.2.0-guix0-preview3")
   2.29 ("arcan" . "0.5.5.2-1.b4dd1fb")
   2.29 ("ardour" . "5.12")
   2.28 ("r-feature" . "1.2.13")
   2.28 ("ghc-sdl2-image" . "2.0.0")
   2.26 ("ffmpegthumbnailer" . "2.2.0")
   2.26 ("audacity" . "2.3.2")
   2.25 ("r-absfiltergsea" . "1.5.1")
   2.24 ("spacefm" . "1.0.6")
   2.23 ("geierlein" . "0.9.13")
   2.22 ("qucs-s" . "0.0.21")
   2.22 ("wine-staging" . "4.18")
   2.21 ("trezor-agent" . "0.10.0")
   2.21 ("gnome-tweaks" . "3.30.2")
   2.21 ("r-learnr" . "0.10.0")
   2.20 ("r-biosigner" . "1.12.0")
   2.20 ("vapoursynth" . "48")
   2.19 ("r-scone" . "1.8.0")
   2.19 ("python-pygenometracks" . "2.0")
   2.19 ("r-flexdashboard" . "0.5.1.1")
   2.19 ("kodi" . "18.4")
   2.19 ("xpra" . "2.5.3")
   2.18 ("r-rqc" . "1.18.0")
   2.18 ("calibre" . "3.42.0")
   2.17 ("r-acc" . "1.3.3")
   2.17 ("lxde" . "0.99.2")
   2.17 ("python2-kivy" . "1.10.1")
   2.17 ("atril" . "1.22.0")
   2.16 ("ruby-iruby" . "0.3")
   2.16 ("clipper" . "1.2.1")
   2.16 ("kmediaplayer" . "5.55.0")
   2.16 ("jami" . "20190319.4.a16a99f")
   2.16 ("r-tidyverse" . "1.2.1")
   2.16 ("r-biocstyle" . "2.12.0")
   2.15 ("vlc" . "3.0.8")
   2.15 ("kodi-wayland" . "18.4")
   2.15 ("python-rpy2" . "3.0.4-1.19868a8")
   2.15 ("r-knitrbootstrap" . "1.0.2")
   2.15 ("kdevplatform" . "5.1.2")
   2.14 ("r-monocle3" . "0.1.2")
   2.13 ("plasma-framework" . "5.55.0")
   2.13 ("r-pore" . "0.24")
   2.13 ("imp" . "2.6.2")
   2.13 ("hugin" . "2019.0.0")
   2.13 ("python-hic2cool" . "0.4.2")
   2.12 ("mate-control-center" . "1.22.0")
   2.12 ("gess" . "1.0")
   2.12 ("bs1770gain" . "0.6.0")
   2.12 ("synfigstudio" . "1.2.2")
   2.12 ("r-kableextra" . "1.1.0")
   2.12 ("freecad" . "0.18.4")
   2.12 ("poretools" . "0.6.0-1.e426b1f")
   2.11 ("bap" . "1.6.0")
   2.11 ("libreoffice" . "6.3.3.2")
   2.11 ("emacs-skeletor" . "1.6.1-1.47c5b76")
   2.11 ("knewstuff" . "5.55.0")
   2.11 ("python2-plastid" . "0.4.8")
   2.10 ("guix-jupyter" . "0.1.0")
   2.10 ("couger" . "1.8.2")
   2.10 ("umi-tools" . "1.0.0")
   2.10 ("r-epi" . "2.38")
   2.10 ("linuxdcpp" . "1.1.0")
   2.10 ("python-scanpy" . "1.4")
   2.10 ("gnome-shell" . "3.30.2")
   2.10 ("qemu" . "4.1.0")
   2.09 ("python2-biom-format" . "2.1.7")
   2.09 ("r-parcor" . "0.2-6")
   2.09 ("engrampa" . "1.22.0")
   2.08 ("tadbit" . "0.2.0")
   2.08 ("ribodiff" . "0.2.2")
   2.08 ("renpy" . "7.3.5")
   2.08 ("r-rmetasim" . "3.1.7")
   2.08 ("r-abcrf" . "1.8.1")
   2.07 ("python-pybedtools" . "0.8.0")
   2.07 ("r-fivethirtyeight" . "0.1.0")
   2.07 ("grit" . "2.0.5")
   2.07 ("r-abn" . "2.1")
   2.07 ("wlstream" . "0.0-1.182076a")
   2.07 ("kactivities-stats" . "5.55.0")
   2.07 ("kwallet" . "5.55.0")
   2.06 ("dvdstyler" . "3.0.4")
   2.06 ("virt-viewer" . "7.0")
   2.06 ("ghc-sdl2" . "2.4.1.0")
   2.05 ("deja-dup" . "34.3")
   2.05 ("pbtranscript-tofu" . "2.2.3.8f5467f")
   2.05 ("r-bayesplot" . "1.7.0")
   2.05 ("supertux" . "0.6.0")
   2.05 ("python2-pybedtools" . "0.8.0")
   2.05 ("r-bookdown" . "0.15")
   2.05 ("python-bbknn" . "1.3.1")
   2.05 ("pyicoteo" . "2.0.7")
   2.05 ("python2-checkm-genome" . "1.0.13")
   2.05 ("qucs" . "0.0.19-0.b4f27d9")
   2.05 ("miso" . "0.5.4")
   2.04 ("wxsvg" . "1.5.12")
   2.04 ("wine" . "4.0.2")
   2.04 ("python-hicexplorer" . "2.1.4")
   2.03 ("r-bayesm" . "3.1-4")
   2.03 ("roguebox-adventures" . "2.2.1")
   2.03 ("r-adaptivesparsity" . "1.6")
   2.03 ("faudio" . "19.11")
   2.03 ("fio" . "3.14")
   2.03 ("readymedia" . "1.2.1")
   2.03 ("r-rcpparmadillo" . "0.9.800.1.0")
   2.03 ("python2-widgetsnbextension" . "3.4.2")
   2.03 ("aubio" . "0.4.9")
   2.02 ("nautilus" . "3.30.5")
   2.02 ("r-reprex" . "0.3.0")
   2.02 ("kservice" . "5.55.0")
   2.01 ("r-compositions" . "1.40-3")
   2.01 ("gnunet-gtk" . "0.10.1")
   2.01 ("spice-gtk" . "0.37")
   2.01 ("pcmanfm" . "1.3.1")
   2.01 ("python-androguard" . "3.2.1")
   2.01 ("r-extremes" . "2.0-10")
   2.01 ("kparts" . "5.55.0")
   2.00 ("python2-htseq" . "0.9.1")
   2.00 ("emacs-org-web-tools" . "1.0")
   2.00 ("clementine" . "1.3.1-2.4619a4c")
   2.00 ("r-etm" . "1.0.5")
   2.00 ("python-biom-format" . "2.1.7")
   2.00 ("ocaml-tsdl" . "0.9.6")
   1.99 ("rhythmbox" . "3.4.3")
   1.99 ("idr" . "2.0.3")
   1.99 ("lightdm-gtk-greeter" . "2.0.2")
   1.99 ("r-lmoments" . "1.3-1")
   1.99 ("python-plastid" . "0.4.8")
   1.99 ("megaglest" . "3.13.0")
   1.98 ("spice" . "0.14.2")
   1.98 ("htseq" . "0.9.1")
   1.98 ("pepr" . "1.0.9")
   1.98 ("onionshare" . "2.2")
   1.98 ("dolphin-emu" . "5.0-7.a974540")
   1.98 ("r-variantfiltering" . "1.20.0")
   1.98 ("slingshot" . "0.9")
   1.98 ("gnunet" . "0.10.1")
   1.97 ("flightgear" . "2018.3.2")
   1.97 ("python2-renpy" . "7.3.5")
   1.97 ("python2-ipywidgets" . "5.2.2")
   1.97 ("r-riboprofiling" . "1.14.0")
   1.97 ("opencv" . "3.4.3")
   1.97 ("python2-ipython" . "5.8.0")
   1.97 ("u-boot-vexpress-ca9x4" . "2019.04")
   1.96 ("blender" . "2.79b")
   1.96 ("python-slurm-magic" . "0.0-0.73dd1a2")
   1.96 ("libring" . "20190319.4.a16a99f")
   1.96 ("emacs-docker-compose-mode" . "1.1.0")
   1.96 ("lollypop" . "1.2.7")
   1.96 ("ocaml-utop" . "2.4.2")
   1.96 ("openmw" . "0.45.0")
   1.95 ("r-seurat" . "3.1.1")
   1.95 ("picard" . "2.1.3")
   1.95 ("openttd" . "1.9.3")
   1.95 ("boinc-client" . "7.16.1")
   1.95 ("python2-jupyter-console" . "5.2.0")
   1.95 ("python-ipython-documentation" . "7.9.0")
   1.94 ("python-keras" . "2.2.4")
   1.94 ("eolie" . "0.9.63")
   1.94 ("avogadro" . "1.2.0")
   1.94 ("red-eclipse" . "1.6.0")
   1.94 ("kdbusaddons" . "5.55.0")
   1.94 ("kfilemetadata" . "5.55.0")
   1.94 ("gnome-maps" . "3.30.3.1")
   1.94 ("python-jupyter-protocol" . "0.1.1")
   1.93 ("libextractor" . "1.9")
   1.93 ("pianobar" . "2016.06.02")
   1.93 ("tbsp" . "1.0.0-1.ec8fff4")
   1.93 ("gparted" . "1.0.0")
   1.93 ("looking-glass-client" . "a12-182c475")
   1.93 ("python-jupyter-kernel-test" . "0.3")
   1.93 ("tome4" . "1.6.0")
   1.93 ("r-graphlayouts" . "0.5.0")
   1.93 ("mame" . "0.215")
   1.93 ("python2-xsge" . "2018.02.26")
   1.92 ("r-flextable" . "0.5.6")
   1.92 ("u-boot-wandboard" . "2019.04")
   1.92 ("ocaml-markup" . "0.8.1")
   1.92 ("python2-statsmodels" . "0.9.0")
   1.92 ("python-kivy" . "1.10.1")
   1.92 ("python-velocyto" . "0.17.17")
   1.92 ("sway" . "1.2")
   1.92 ("ocaml-expect" . "0.0.6")
   1.92 ("mgba" . "0.7.3")
   1.92 ("python-loompy" . "2.0.3")
   1.92 ("python-wxpython" . "4.0.7.post1")
   1.92 ("python2-fastlmm" . "0.2.21")
   1.91 ("impressive" . "0.12.0")
   1.91 ("python-matplotlib-documentation" . "3.1.1")
   1.91 ("aegisub" . "3.2.2")
   1.91 ("mygui" . "3.2.2")
   1.91 ("guile-chickadee" . "0.4.0")
   1.91 ("teeworlds" . "0.7.2")
   1.91 ("handbrake" . "1.2.2")
   1.91 ("u-boot-cubieboard" . "2019.04")
   1.91 ("u-boot-puma-rk3399" . "2019.04")
   1.91 ("maven" . "3.6.1")
   1.91 ("r-yarn" . "1.10.0")
   1.90 ("fifengine" . "0.4.2")
   1.90 ("jupyter" . "1.0.0")
   1.90 ("r-yapsa" . "1.10.0")
   1.90 ("python2-scikit-image" . "0.14.2")
   1.90 ("u-boot-mx6cuboxi" . "2019.04")
   1.90 ("qsynth" . "0.5.7")
   1.90 ("fizmo" . "0.8.5")
   1.90 ("python-pyside-2-tools" . "v5.11.2-1.f1b7755")
   1.90 ("abbaye" . "2.0.1")
   1.90 ("python2-seaborn" . "0.9.0")
   1.90 ("zbar" . "0.23")
   1.90 ("qbittorrent" . "4.1.9.1")
   1.90 ("python2-shapely" . "1.6.4.post2")
   1.90 ("folks" . "0.11.4")
   1.90 ("python2-pygame-sdl2" . "2.1.0-for-renpy-7.3.5")
   1.90 ("r-a4" . "1.32.0")
   1.90 ("papagayo" . "2.0b1-1.e143684b3")
   1.90 ("python2-wxpython" . "3.0.2.0")
   1.90 ("frotz-sdl" . "2.45pre")
   1.90 ("r-bigmelon" . "1.10.0")
   1.90 ("ocaml-tyxml" . "4.3.0")
   1.90 ("ocaml-merlin" . "3.2.2")
   1.89 ("wlroots" . "0.7.0")
   1.89 ("openscenegraph" . "3.6.4")
   1.89 ("electron-cash" . "4.0.7")
   1.89 ("openscenegraph" . "3.4.1")
   1.89 ("roary" . "3.12.0")
   1.89 ("r-circus" . "0.1.5")
   1.89 ("coq-equations" . "1.2")
   1.89 ("u-boot-cubietruck" . "2019.04")
   1.89 ("darktable" . "2.6.2")
   1.89 ("moc" . "2.5.2")
   1.89 ("colobot" . "0.1.12-alpha")
   1.89 ("aseba" . "1.6.0-0.3b35de8")
   1.89 ("freerdp" . "2.0.0-rc4")
   1.89 ("balsa" . "2.5.7")
   1.89 ("qjackctl" . "0.5.9")
   1.88 ("r-rmarkdown" . "1.17")
   1.88 ("lightdm" . "1.24.0")
   1.88 ("gimp-resynthesizer" . "2.0.3")
   1.88 ("r-cistopic" . "0.2.1-0.29abd8d")
   1.88 ("u-boot-novena" . "2019.04")
   1.88 ("emacs-edbi" . "0.1.3-1.6f50aaf")
   1.88 ("python2-matplotlib-documentation" . "3.1.1")
   1.88 ("easyrpg-player" . "0.6.0")
   1.88 ("emacs-tuareg" . "2.2.0")
   1.88 ("edgar" . "1.31")
   1.88 ("python-jupyter-console" . "6.0.0")
   1.88 ("evolution" . "3.30.5")
   1.88 ("gzdoom" . "3.7.2")
   1.88 ("golly" . "3.2")
   1.87 ("0ad" . "0.0.23b-alpha")
   1.87 ("pcsxr" . "1.9.95")
   1.87 ("retux" . "1.3.6")
   1.87 ("network-manager-openconnect" . "1.2.6")
   1.87 ("ocaml-yojson" . "1.7.0")
   1.87 ("pioneer" . "20190203")
   1.87 ("python2-numpy-documentation" . "1.17.3")
   1.87 ("orca" . "3.30.2")
   1.87 ("python-pari-jupyter" . "1.3.2")
   1.87 ("ocaml-craml" . "1.0.0")
   1.87 ("ocaml-lwt-log" . "1.1.1")
   1.87 ("python2-pysnptools" . "0.3.13")
   1.87 ("emacs-slack" . "0.0.2-6.10fbb81")
   1.87 ("r-gqtlstats" . "1.16.0")
   1.87 ("gnome-todo" . "3.28.1")
   1.87 ("cataclysm-dda" . "0.D")
   1.86 ("freedink" . "109.6")
   1.86 ("kicad" . "5.1.4")
   1.86 ("econnman" . "1.1")
   1.86 ("r-scdd" . "1.8.0")
   1.86 ("evolution-data-server" . "3.30.5")
   1.86 ("warzone2100" . "3.2.3")
   1.86 ("snd" . "19.6")
   1.86 ("wxwidgets" . "3.1.0")
   1.86 ("r-cicero" . "1.2.0")
   1.86 ("ocaml-ocb-stubblr" . "0.1.1")
   1.86 ("python-statsmodels" . "0.9.0")
   1.86 ("mupen64plus-video-arachnoid" . "2.0.0")
   1.86 ("denemo" . "2.1")
   1.86 ("flare-game" . "1.11")
   1.86 ("arx-libertatis" . "1.1.2")
   1.86 ("r-ztable" . "0.2.0")
   1.86 ("ocaml-cstruct" . "4.0.0")
   1.86 ("u-boot-rock64-rk3328" . "2019.10")
   1.86 ("ocaml-piqi" . "0.7.6")
   1.86 ("alsa-modular-synth" . "2.1.2")
   1.86 ("python-patsy" . "0.4.1")
   1.86 ("ioquake3" . "1.3.6-1.95b9cab")
   1.85 ("rage" . "0.3.1")
   1.85 ("demlo" . "3.8-0.fe9ec4c")
   1.85 ("xchm" . "1.30")
   1.85 ("flare-engine" . "1.11")
   1.85 ("mupen64plus-ui-console" . "2.5")
   1.85 ("python-ipywidgets" . "5.2.2")
   1.85 ("xfce4-mpc-plugin" . "0.5.2")
   1.85 ("guile-gnunet" . "0.0-1.d12167a")
   1.85 ("python2-scikit-learn" . "0.20.4")
   1.85 ("gnome-disk-utility" . "3.30.2")
   1.85 ("terminology" . "1.5.0")
   1.85 ("r-annotatr" . "1.10.0")
   1.85 ("python-widgetsnbextension" . "3.4.2")
   1.85 ("xfce" . "4.14.0")
   1.85 ("lxqt-config" . "0.14.1")
   1.85 ("jalv" . "1.6.4")
   1.85 ("ocaml-lambda-term" . "2.0.2")
   1.84 ("bambam" . "0.6")
   1.84 ("coq" . "8.9.1")
   1.84 ("ogre" . "1.10.11")
   1.84 ("evisum" . "0.2.6")
   1.84 ("gajim" . "1.1.3")
   1.84 ("lxqt-panel" . "0.14.1")
   1.84 ("ocaml-alcotest" . "0.8.5")
   1.84 ("python-pygame" . "1.9.4")
   1.84 ("python-trezor" . "0.11.3")
   1.84 ("yamagi-quake2" . "7.10")
   1.84 ("you-get" . "0.4.1355")
   1.84 ("openrct2" . "0.2.4")
   1.84 ("xfburn" . "0.6.1")
   1.84 ("python-efl" . "1.23.0")
   1.84 ("maven-embedder" . "3.6.1")
   1.84 ("mate-media" . "1.22.0")
   1.84 ("crawl-tiles" . "0.24.0")
   1.84 ("pybitmessage" . "0.6.3.2")
   1.84 ("ocaml-piqilib" . "0.6.14")
   1.84 ("pencil2d" . "0.6.4")
   1.83 ("fenics" . "2018.1.0.post1")
   1.83 ("mpd" . "0.21.14")
   1.83 ("gamine" . "1.6")
   1.83 ("starfighter" . "2.0.0.3")
   1.83 ("python2-graphite-web" . "1.0.2")
   1.83 ("r-lumi" . "2.36.0")
   1.83 ("ocaml-rresult" . "0.5.0")
   1.83 ("coq-interval" . "3.4.0")
   1.83 ("ephoto" . "1.5")
   1.83 ("mupen64plus-rsp-hle" . "2.5")
   1.83 ("quakespasm" . "0.93.1")
   1.83 ("ocaml-uri" . "2.2.0")
   1.83 ("emacs-ivy-pass" . "0.1-1.5b523de")
   1.83 ("meandmyshadow" . "0.5a")
   1.83 ("openmolar" . "1.0.15-gd81f9e5")
   1.82 ("qqc2-desktop-style" . "5.55.0")
   1.82 ("crispy-doom" . "5.6.3")
   1.82 ("sooperlooper" . "1.7.3")
   1.82 ("gdm" . "3.30.3")
   1.82 ("chocolate-doom" . "3.0.0")
   1.82 ("lxqt-openssh-askpass" . "0.14.1")
   1.82 ("python2-sge-pygame" . "1.5.1")
   1.82 ("python-numpy-documentation" . "1.17.3")
   1.82 ("r-shinyjs" . "1.0")
   1.82 ("r-watermelon" . "1.28.0")
   1.82 ("python-ipykernel" . "5.1.3")
   1.82 ("marco" . "1.22.0")
   1.82 ("emacs-matrix-client" . "0.0.0-4.a062366")
   1.82 ("pragha" . "1.3.4")
   1.82 ("python-scikit-learn" . "0.20.4")
   1.82 ("gnome-calendar" . "3.30.1")
   1.82 ("python-faiss" . "1.5.0")
   1.82 ("suil" . "0.10.6")
   1.82 ("uget" . "2.0.8")
   1.82 ("r-geometry" . "0.4.4")
   1.82 ("emacs-company-lsp" . "2.1.0")
   1.82 ("xfce4-notifyd" . "0.4.4")
   1.82 ("filezilla" . "3.42.1")
   1.82 ("xarcan" . "0.5.4-1.8e6ee02")
   1.82 ("python-seaborn" . "0.9.0")
   1.82 ("edi" . "0.6.0")
   1.82 ("poedit" . "2.2.4")
   1.82 ("r-mlinterfaces" . "1.64.1")
   1.81 ("emacs-ag" . "0.48")
   1.81 ("xonotic" . "0.8.2")
   1.81 ("r-erma" . "1.0.0")
   1.81 ("proof-general" . "4.2")
   1.81 ("octave" . "5.1.0")
   1.81 ("qtgamepad" . "5.11.3")
   1.81 ("shotwell" . "0.30.7")
   1.81 ("lxqt-about" . "0.14.1")
   1.81 ("emacs-helm-pass" . "0.3")
   1.81 ("emacs-pass" . "1.8")
   1.81 ("r-devtools" . "2.2.1")
   1.81 ("gource" . "0.49")
   1.81 ("wxwidgets-gtk2" . "3.1.0")
   1.80 ("emacs-picpocket" . "40")
   1.80 ("ocaml-zed" . "2.0.3")
   1.80 ("love" . "11.3")
   1.80 ("udiskie" . "1.7.7")
   1.80 ("emacs-elfeed-org" . "0.1-1.77b6bbf")
   1.80 ("wxmaxima" . "19.09.0")
   1.80 ("sound-juicer" . "3.24.0")
   1.80 ("r-svdialogs" . "1.0.0")
   1.80 ("curseradio" . "0-1.1bd4bd0")
   1.80 ("abiword" . "3.0.2")
   1.80 ("mlt" . "6.18.0")
   1.80 ("r-afex" . "0.25-1")
   1.80 ("opam" . "2.0.5")
   1.80 ("python-poppler-qt5" . "0.24.2")
   1.80 ("network-manager-vpnc" . "1.2.6")
   1.80 ("gcompris-qt" . "0.96")
   1.80 ("python2-pygame" . "1.9.4")
   1.79 ("easytag" . "2.4.3")
   1.79 ("r-illuminahumanmethylationepicmanifest" . "0.3.0")
   1.79 ("r-allelicimbalance" . "1.22.0")
   1.79 ("guile-sly" . "0.1")
   1.79 ("mkvtoolnix" . "37.0.0")
   1.79 ("emacs-repo" . "0.1.3")
   1.79 ("devhelp" . "3.30.1")
   1.79 ("lekha" . "0.2.1")
   1.79 ("mate-netbook" . "1.22.0")
   1.79 ("emulation-station" . "2.0.1")
   1.79 ("r-illuminahumanmethylation450kanno-ilmn12-hg19" . "0.6.0")
   1.79 ("coq-bignums" . "8.9.0")
   1.79 ("lxqt-policykit" . "0.14.1")
   1.79 ("ocaml-topkg" . "1.0.0")
   1.79 ("ocaml-qtest" . "2.9")
   1.79 ("qtractor" . "0.9.11")
   1.79 ("ocaml-fpath" . "0.7.2")
   1.79 ("wxwidgets" . "2.8.12")
   1.79 ("mupen64plus-video-glide64" . "2.0.0")
   1.78 ("emacs-lsp-ui" . "6.0")
   1.78 ("sdl2-gfx" . "1.0.4")
   1.78 ("u-boot-rockpro64-rk3399" . "2019.10")
   1.78 ("qtdatavis3d" . "5.11.3")
   1.78 ("python-pyqt-without-qtwebkit" . "5.11.3")
   1.78 ("coq-mathcomp" . "1.8.0")
   1.78 ("ocaml-hex" . "1.4.0")
   1.78 ("wpa-supplicant-gui" . "2.9")
   1.78 ("python2-patsy" . "0.4.1")
   1.78 ("eog-plugins" . "3.26.4")
   1.78 ("guile-sdl2" . "0.4.0")
   1.78 ("r-seqgl" . "1.1.4")
   1.78 ("scribus" . "1.5.5")
   1.78 ("gnucash" . "3.7")
   1.78 ("python2-pyqt" . "5.11.3")
   1.78 ("python-shiboken-2" . "v5.11.3-1.4018787")
   1.78 ("ibus-rime" . "1.4.0")
   1.77 ("ocaml-qcheck" . "0.11")
   1.77 ("gnome-settings-daemon" . "3.30.2")
   1.77 ("ibus-libpinyin" . "1.11.1")
   1.77 ("libzapojit" . "0.0.3")
   1.77 ("avidemux" . "2.7.4")
   1.77 ("r-a4classif" . "1.32.0")
   1.77 ("arachne-pnr" . "0.0-2-840bdfdeb")
   1.77 ("genimage" . "10")
   1.77 ("ocaml-mtime" . "1.1.0")
   1.77 ("gens-gs" . "7")
   1.77 ("u-boot-bananapi-m2-ultra" . "2019.04")
   1.77 ("mate-utils" . "1.22.0")
   1.77 ("ocaml-uuidm" . "0.9.6")
   1.77 ("r-wavcluster" . "2.18.0")
   1.77 ("emacs-docker" . "1.3.0")
   1.77 ("beast" . "0.10.0")
   1.77 ("emacs-annalist" . "1.0.0-1.e060153")
   1.77 ("giac" . "1.5.0-69")
   1.77 ("ocaml-base64" . "3.2.0")
   1.77 ("gnome-planner" . "0.14.6")
   1.77 ("r-xkcd" . "0.0.6")
   1.77 ("tipp10" . "2.1.0")
   1.77 ("quadrapassel" . "3.31.3")
   1.77 ("vinagre" . "3.22.0")
   1.77 ("r-methylumi" . "2.30.0")
   1.77 ("qjackrcd" . "1.2.2")
   1.77 ("milkytracker" . "1.02.00")
   1.77 ("motion" . "4.2.2")
   1.77 ("python-shapely" . "1.6.4.post2")
   1.77 ("r-biovizbase" . "1.32.0")
   1.77 ("lximage-qt" . "0.14.1")
   1.77 ("fifechan" . "0.1.5")
   1.77 ("mupen64plus-video-glide64mk2" . "2.5")
   1.76 ("r-hierfstat" . "0.04-22")
   1.76 ("emacs-counsel-dash" . "0.1.3-3.7027868")
   1.76 ("sdl2-ttf" . "2.0.15")
   1.76 ("openscad" . "2019.05")
   1.76 ("wesnoth-server" . "1.14.9")
   1.76 ("emacs-org-sidebar" . "0.2")
   1.76 ("emacs-evil-multiedit" . "1.3.9")
   1.76 ("mate-panel" . "1.22.0")
   1.76 ("guile-gnome" . "2.16.5")
   1.76 ("xfce4-cpugraph-plugin" . "1.1.0")
   1.76 ("ocaml-ctypes" . "0.14.0")
   1.76 ("python2-scipy" . "1.2.2")
   1.76 ("seahorse" . "3.30.1.1")
   1.76 ("emacs-groovy-modes" . "2.0")
   1.76 ("r-destiny" . "2.14.0")
   1.76 ("python-pyqt+qscintilla" . "5.11.3")
   1.76 ("pwsafe" . "3.50.0")
   1.76 ("qsyncthingtray" . "0.5.8")
   1.76 ("qmidiarp" . "0.6.5")
   1.76 ("screengrab" . "1.101")
   1.76 ("r-ddalpha" . "1.3.10")
   1.76 ("xf86-input-libinput" . "0.28.2")
   1.76 ("mutter" . "3.30.2")
   1.76 ("emacs-helpful" . "0.17")
   1.76 ("utox" . "0.17.1")
   1.76 ("ocaml-stringext" . "1.6.0")
   1.75 ("python-cairosvg" . "2.4.2")
   1.75 ("mupen64plus-rsp-z64" . "2.0.0")
   1.75 ("kholidays" . "17.12.1")
   1.75 ("kitty" . "0.14.6")
   1.75 ("emacs-helm-lsp" . "0.1-1.3a58ca4")
   1.75 ("r-genomicinteractions" . "1.18.1")
   1.75 ("sbcl-cl-cffi-gtk-gdk" . "0.11.2-1.29443c5")
   1.75 ("gst-plugins-good" . "1.16.0")
   1.75 ("amule" . "2.3.2")
   1.75 ("speedcrunch" . "0.12.0")
   1.75 ("ocaml-jsonm" . "1.0.1")
   1.75 ("gsegrafix" . "1.0.6")
   1.75 ("emacs-evil-collection" . "0.0.3-13.eb36c82")
   1.75 ("u-boot-pine64-plus" . "2019.04")
   1.75 ("emacs-ob-ipython" . "20150704.8807064693")
   1.75 ("python-pyside-2" . "v5.11.3-1.4018787")
   1.75 ("guile-studio" . "0.0.1-3.98fbbbd")
   1.75 ("emacs-password-store" . "1.7.3")
   1.75 ("notifymuch" . "0.1-1.9d4aaf5")
   1.75 ("freedink-dfarc" . "3.14")
   1.75 ("emacs-company-jedi" . "0.04")
   1.75 ("python-scikit-image" . "0.14.2")
   1.75 ("deeptools" . "3.1.3")
   1.75 ("python-pyqt" . "5.11.3")
   1.75 ("python-sge-pygame" . "1.5.1")
   1.75 ("florence" . "0.6.3")
   1.74 ("zathura-cb" . "0.1.8")
   1.74 ("r-quantro" . "1.18.0")
   1.74 ("ghostwriter" . "1.7.4")
   1.74 ("python-qtconsole" . "4.4.3")
   1.74 ("mate-applets" . "1.22.0")
   1.74 ("emacs-lsp-ivy" . "0.1-2.caf1e1d")
   1.74 ("hydrogen" . "1.0.0-beta1")
   1.74 ("gimp" . "2.10.14")
   1.74 ("weston" . "6.0.1")
   1.74 ("monero" . "0.15.0.0")
   1.74 ("erlang" . "21.0.5")
   1.74 ("emacs-shroud" . "1.83.4")
   1.74 ("python-matplotlib-venn" . "0.11.5")
   1.74 ("emacs-helm-dash" . "1.3.0-2.7f853bd")
   1.74 ("emacs-org-trello" . "0.8.0")
   1.74 ("r-mutationalpatterns" . "1.10.0")
   1.74 ("xfce4-kbdleds-plugin" . "0.0.6")
   1.74 ("r-phastcons100way-ucsc-hg19" . "3.7.2")
   1.74 ("abcde" . "2.9.3")
   1.74 ("ocaml-odoc" . "1.4.1")
   1.74 ("ocaml-dose3" . "5.0.1")
   1.74 ("gpsbabel" . "1.5.4")
   1.74 ("keepassxc" . "2.5.1")
   1.74 ("wireshark" . "3.0.6")
   1.74 ("ocaml-integers" . "0.3.0")
   1.74 ("xfce4-calculator-plugin" . "0.7.0")
   1.73 ("qtwayland" . "5.11.3")
   1.73 ("lxqt-sudo" . "0.14.1")
   1.73 ("emacs-academic-phrases" . "0.1-1.0823ed8")
   1.73 ("gfbgraph" . "0.2.3")
   1.73 ("mumble" . "1.2.19")
   1.73 ("luminance-hdr" . "2.4.0")
   1.73 ("xfce4-screensaver" . "0.1.8")
   1.73 ("hplip" . "3.19.11")
   1.73 ("nestopia-ue" . "1.48")
   1.73 ("u-boot-pinebook" . "2019.04")
   1.73 ("emacs-nix-mode" . "1.4.1")
   1.73 ("emacs-elisp-refs" . "1.3")
   1.73 ("networkmanager-qt" . "5.55.0")
   1.73 ("cl-cffi-gtk" . "0.11.2-1.29443c5")
   1.73 ("tiled" . "1.2.5")
   1.73 ("qtwebkit" . "5.212.0-alpha3")
   1.73 ("mate-user-guide" . "1.22.0")
   1.73 ("ingen" . "0.0.0-2.cc4a4db33")
   1.73 ("elixir" . "1.9.4")
   1.73 ("efl" . "1.23.2")
   1.73 ("leela-zero" . "0.17")
   1.73 ("ffmpeg" . "3.4.6")
   1.73 ("weasyprint" . "50")
   1.73 ("r-pegas" . "0.12")
   1.73 ("python2-ipykernel" . "5.1.0")
   1.73 ("laby" . "0.6.4")
   1.73 ("ocaml-uutf" . "1.0.1")
   1.73 ("emacs-all-the-icons" . "3.2.0")
   1.73 ("emacs-org-ref" . "1.1.1-1.8c9b5d7")
   1.73 ("emacs-org-ql" . "0.3.2")
   1.73 ("solfege" . "3.22.2")
   1.72 ("lmms" . "1.2.1")
   1.72 ("ocaml-react" . "1.2.1")
   1.72 ("snorenotify" . "0.7.0")
   1.72 ("surf" . "2.0")
   1.72 ("ocaml-fmt" . "0.8.5")
   1.72 ("aisleriot" . "3.22.9")
   1.72 ("blender" . "2.80")
   1.72 ("qtpurchasing" . "5.11.3")
   1.72 ("prison" . "5.55.0")
   1.72 ("r-gviz" . "1.28.3")
   1.72 ("fcitx-configtool" . "0.4.10")
   1.72 ("maven-compat" . "3.6.1")
   1.72 ("r-adegenet" . "2.1.1")
   1.72 ("zathura-pdf-mupdf" . "0.3.5")
   1.72 ("gnome-clocks" . "3.30.1")
   1.72 ("pluma" . "1.22.0")
   1.72 ("lxqt-archiver" . "0.0.96")
   1.72 ("xygrib" . "1.2.6.1")
   1.72 ("skopeo" . "0.1.40")
   1.72 ("cbatticon" . "1.6.9")
   1.72 ("emacs-org-jira" . "4.3.1")
   1.72 ("emacs-github-review" . "0.1-2.a13a3b4")
   1.72 ("nomad" . "0.1.1-alpha")
   1.72 ("maven-wagon-http-shared" . "3.1.0")
   1.72 ("qtpass" . "1.2.3")
   1.72 ("python2-matplotlib" . "2.2.4")
   1.72 ("python2-pyqt" . "4.12")
   1.72 ("simple-scan" . "3.34.1")
   1.72 ("padthv1" . "0.9.11")
   1.72 ("the-butterfly-effect" . "0.9.3.1")
   1.72 ("modemmanager-qt" . "5.55.0")
   1.72 ("pingus" . "0.7.6")
   1.71 ("obconf-qt" . "0.14.1")
   1.71 ("lightgbm" . "2.0.12")
   1.71 ("aria-maestosa" . "1.4.13")
   1.71 ("mupen64plus-video-rice" . "2.5")
   1.71 ("quaternion" . "0.0.9.4c")
   1.71 ("bitcoin-core" . "0.18.1")
   1.71 ("lxqt-globalkeys" . "0.14.3")
   1.71 ("emacs-xwidgets" . "26.3")
   1.71 ("assword" . "0.11")
   1.71 ("emacs-dash-docs" . "1.4.0-1.111fd9b")
   1.71 ("sdl2-image" . "2.0.4")
   1.71 ("chroma" . "1.17")
   1.71 ("python-anndata" . "0.6.18")
   1.71 ("qmidiroute" . "0.4.0")
   1.71 ("gst-libav" . "1.16.0")
   1.71 ("geeqie" . "1.4-1.c220dde")
   1.71 ("sdl2" . "2.0.10")
   1.71 ("gnome-online-accounts" . "3.30.2")
   1.71 ("wxwidgets" . "3.0.4")
   1.71 ("cube" . "4.3.5")
   1.71 ("lxqt-powermanagement" . "0.14.1")
   1.71 ("r-mast" . "1.10.0")
   1.71 ("kiki" . "1.0.2")
   1.71 ("tuxpaint" . "0.9.23")
   1.71 ("emacs-exwm-x" . "1.9.0")
   1.71 ("terminator" . "1.91")
   1.70 ("emacs-epc" . "0.1.1-1.e1bfa5c")
   1.70 ("kcoreaddons" . "5.55.0")
   1.70 ("gnome-control-center" . "3.30.3")
   1.70 ("samplv1" . "0.9.11")
   1.70 ("emacs-json-reformat" . "0.0.6")
   1.70 ("kiconthemes" . "5.55.0")
   1.70 ("pspp" . "1.2.0")
   1.70 ("freeciv" . "2.6.0")
   1.70 ("termite" . "15")
   1.70 ("musescore" . "3.3")
   1.70 ("waybar" . "0.8.0")
   1.70 ("cutter" . "1.8.3")
   1.70 ("emacs-all-the-icons-dired" . "1.0-1.980b774")
   1.70 ("pinentry-efl" . "1.1.0")
   1.70 ("emacs-ccls" . "0.1-3.b1acc33")
   1.70 ("zathura-djvu" . "0.2.8")
   1.70 ("uim-gtk" . "1.8.8")
   1.70 ("stellarium" . "0.19.1")
   1.70 ("xfce4-datetime-plugin" . "0.8.0")
   1.70 ("lxqt-session" . "0.14.1")
   1.70 ("emacs-zotxt" . "20180518")
   1.70 ("flatpak" . "1.4.3")
   1.70 ("muse-sequencer" . "3.0.0")
   1.70 ("breeze-icons" . "5.55.0")
   1.70 ("lxqt-themes" . "0.14.0")
   1.70 ("emacs-json-mode" . "1.7.0")
   1.70 ("emacs-equake" . "0.85-2.7eddc02")
   1.70 ("emacs-helm-org-contacts" . "20180707-1.0af703b")
   1.70 ("dotherside" . "0.6.4")
   1.70 ("python-iml" . "0.6.2")
   1.70 ("emacs-org-make-toc" . "0.3")
   1.70 ("xfce4-netload-plugin" . "1.3.2")
   1.70 ("emacspeak" . "50.0")
   1.70 ("robocut" . "1.0.11")
   1.70 ("telegram-purple" . "1.4.2")
   1.70 ("ksyntaxhighlighting" . "5.55.0")
   1.70 ("brdf-explorer" . "1.0.0-1.5b2cd46f3")
   1.70 ("xfce4-mount-plugin" . "1.1.3")
   1.70 ("emacs-python-environment" . "0.0.2")
   1.70 ("mate-screensaver" . "1.22.0")
   1.70 ("emacs-mew" . "6.8")
   1.70 ("bitcoin-abc" . "0.20.4")
   1.69 ("kimageformats" . "5.55.0")
   1.69 ("coq-coquelicot" . "3.0.2")
   1.69 ("mupen64plus-input-sdl" . "2.5")
   1.69 ("linsmith" . "0.99.31")
   1.69 ("emacs-simple-mpc" . "0-1.bee8520")
   1.69 ("adanaxisgpl" . "1.2.5")
   1.69 ("r-aucell" . "1.6.1")
   1.69 ("u-boot-a20-olinuxino-lime2" . "2019.04")
   1.69 ("zenity" . "3.32.0")
   1.69 ("mupen64plus-audio-sdl" . "2.5")
   1.69 ("xfwm4" . "4.14.0")
   1.69 ("mate-settings-daemon" . "1.22.0")
   1.69 ("gnome-klotski" . "3.22.3")
   1.69 ("qtcanvas3d" . "5.11.3")
   1.69 ("r-msnid" . "1.18.1")
   1.69 ("guile-sdl" . "0.5.2")
   1.69 ("fmit" . "1.2.13")
   1.69 ("tilda" . "1.4.1")
   1.69 ("phonon-backend-gstreamer" . "4.9.0")
   1.69 ("r-penalized" . "0.9-51")
   1.69 ("drumkv1" . "0.9.11")
   1.69 ("hexchat" . "2.14.2")
   1.69 ("emacs-loop" . "1.3")
   1.69 ("evince" . "3.34.1")
   1.69 ("csound" . "6.13.0")
   1.69 ("electrum" . "3.3.8")
   1.69 ("karchive" . "5.55.0")
   1.69 ("qjson" . "0.9.0")
   1.69 ("mate-session-manager" . "1.22.0")
   1.69 ("v4l-utils" . "1.16.6")
   1.69 ("xfce4-verve-plugin" . "2.0.0")
   1.69 ("bluez-qt" . "5.55.0")
   1.69 ("python2-pywavelets" . "1.0.1")
   1.69 ("qtgraphicaleffects" . "5.11.3")
   1.69 ("guile-gi" . "0.2.0")
   1.68 ("kwindowsystem" . "5.55.0")
   1.68 ("python-scipy" . "1.3.2")
   1.68 ("libringclient" . "20190319.4.a16a99f")
   1.68 ("r-xcms" . "3.6.2")
   1.68 ("emacs-helm-org-rifle" . "1.7.0")
   1.68 ("emacs-string-inflection" . "1.0.6")
   1.68 ("powertabeditor" . "2.0.0-alpha10")
   1.68 ("xfce4-genmon-plugin" . "4.0.2")
   1.68 ("chromium-bsu" . "0.9.16.1")
   1.68 ("pan" . "0.145")
   1.68 ("xfce4-weather-plugin" . "0.10.0")
   1.68 ("webkitgtk" . "2.26.2")
   1.68 ("emacs-hy-mode" . "1.0.3")
   1.68 ("emacs-deadgrep" . "0.8-2.3fc7ca1")
   1.68 ("emacs-ws-butler" . "0.6")
   1.68 ("bluez-alsa" . "1.2.0")
   1.68 ("emacs-md4rd" . "0.3.1")
   1.68 ("xfce4-volumed-pulse" . "0.2.3")
   1.68 ("gitg" . "3.32.1")
   1.68 ("thunar" . "1.8.10")
   1.68 ("cinnamon-desktop" . "3.4.2")
   1.68 ("lablgtk" . "2.18.6")
   1.68 ("knotifications" . "5.55.0")
   1.68 ("claws-mail" . "3.17.4")
   1.67 ("emacs-pubmed" . "0.2.1")
   1.67 ("grantlee" . "5.1.0")
   1.67 ("mcrl2" . "201908.0")
   1.67 ("mate-terminal" . "1.22.0")
   1.67 ("fritzing" . "0.9.3b")
   1.67 ("kdnssd" . "5.55.0")
   1.67 ("gpodder" . "3.10.11")
   1.67 ("librepcb" . "0.1.2")
   1.67 ("zathura" . "0.4.3")
   1.67 ("r-chemometricswithr" . "0.1.13")
   1.67 ("jalv-select" . "1.3")
   1.67 ("kitemmodels" . "5.55.0")
   1.67 ("mupen64plus-core" . "2.5")
   1.67 ("workrave" . "1.10.34")
   1.67 ("kauth" . "5.55.0")
   1.67 ("bigloo" . "4.3e1")
   1.67 ("emacs-evil-mc" . "0.0.3-2.1cabb86")
   1.67 ("ibus" . "1.5.20")
   1.67 ("qview" . "2.0")
   1.67 ("guix-data-service" . "0.0.1-4.5e2bc7c")
   1.67 ("emacs-jedi" . "0.2.7")
   1.67 ("qtscript" . "5.11.3")
   1.67 ("owncloud-client" . "2.5.3.11470")
   1.67 ("emacs-prodigy-el" . "0.7.0-2.0a12eec")
   1.67 ("xfce4-timer-plugin" . "1.7.0")
   1.67 ("btanks" . "0.9.8083")
   1.67 ("toxic" . "0.8.3")
   1.67 ("caribou" . "0.4.21")
   1.67 ("emacs-org-super-agenda" . "1.1.1-3.a87ca11")
   1.67 ("emacs-helm-bibtex" . "2.0.0-1.8ed898f")
   1.67 ("emacs-dired-rsync" . "0.4")
   1.67 ("ocaml-astring" . "0.8.3")
   1.67 ("qtwebglplugin" . "5.11.3")
   1.67 ("python-matplotlib" . "3.1.1")
   1.67 ("libxfce4ui" . "4.14.1")
   1.67 ("rednotebook" . "2.11.1")
   1.67 ("emacs-lpy" . "0.1.0-3.43b401f")
   1.66 ("epiphany" . "3.30.4")
   1.66 ("kirigami" . "5.55.0")
   1.66 ("emacs-browse-at-remote" . "0.10.0")
   1.66 ("osm-gps-map" . "1.1.0")
   1.66 ("r-mlbench" . "2.1-1")
   1.66 ("yad" . "5.0")
   1.66 ("emacs-tagedit" . "1.4.0")
   1.66 ("goffice" . "0.8.17")
   1.66 ("hop" . "3.2.0-pre1")
   1.66 ("xfdesktop" . "4.14.1")
   1.66 ("qwt" . "6.1.4")
   1.66 ("emacs-pyim" . "1.8")
   1.66 ("qtserialbus" . "5.11.3")
   1.66 ("cool-retro-term" . "1.1.1")
   1.66 ("lyx" . "2.3.3")
   1.66 ("sakura" . "3.7.0")
   1.66 ("xscreensaver" . "5.43")
   1.66 ("kjs" . "5.55.0")
   1.66 ("kconfigwidgets" . "5.55.0")
   1.66 ("meld" . "3.20.1")
   1.66 ("xfce4-places-plugin" . "1.8.1")
   1.66 ("emacs-suggest" . "0.7")
   1.66 ("vimb" . "3.5.0")
   1.66 ("polkit-gnome" . "0.105")
   1.66 ("emacs-ample-regexps" . "0.1-1.cbe91e1")
   1.66 ("emacs-butler" . "0.2.4")
   1.65 ("ffms2" . "2.23")
   1.65 ("kapidox" . "5.55.0")
   1.65 ("pdfpc" . "4.3.4")
   1.65 ("r-topgo" . "2.36.0")
   1.65 ("kcompletion" . "5.55.0")
   1.65 ("emacs-dired-sidebar" . "0.0.1-0.06bd0d4")
   1.65 ("spatialite-gui" . "1.7.1")
   1.65 ("r-densityclust" . "0.3")
   1.65 ("synthv1" . "0.9.11")
   1.65 ("sfxr" . "1.2.1")
   1.65 ("tracker" . "2.0.4")
   1.65 ("emacs-unpackaged-el" . "0-3.746801a")
   1.65 ("pinball" . "0.3.1")
   1.65 ("python2-cairocffi" . "0.9.0")
   1.65 ("leocad" . "18.02")
   1.65 ("emacs-s" . "1.12.0")
   1.65 ("kcrash" . "5.55.0")
   1.65 ("phonon" . "4.10.1")
   1.65 ("cdemu-client" . "3.2.3")
   1.65 ("mousepad" . "0.4.2")
   1.65 ("asunder" . "2.9.5")
   1.65 ("prboom-plus" . "2.5.1.4")
   1.65 ("emacs-mustache" . "0.23")
   1.65 ("emacs-cdlatex" . "4.7")
   1.65 ("qtxmlpatterns" . "5.11.3")
   1.64 ("emacs-dumb-jump" . "0.5.3")
   1.64 ("xfce4-settings" . "4.14.0")
   1.64 ("python-pywavelets" . "1.0.1")
   1.64 ("r-webbioc" . "1.56.0")
   1.64 ("emacs-cider" . "0.21.0")
   1.64 ("sfml" . "2.5.1")
   1.64 ("cvassistant" . "3.1.0")
   1.64 ("cli-visualizer" . "1.6")
   1.64 ("vte" . "0.36.5")
   1.64 ("emacs-zerodark-theme" . "4.6")
   1.64 ("emacs-evil-exchange" . "0.41-1.4769153")
   1.64 ("gnome-default-applications" . "0")
   1.64 ("emacs-org-contrib" . "20190904")
   1.64 ("mars" . "0.7.5.1.c855d04")
   1.64 ("einstein" . "2.0")
   1.64 ("qtcharts" . "5.11.3")
   1.64 ("emacs-company-quickhelp" . "2.2.0-1.479676c")
   1.64 ("gedit" . "3.30.2")
   1.64 ("quassel" . "0.13.1")
   1.64 ("libgnomeui" . "2.24.5")
   1.64 ("libfive" . "0-2.9d857d1")
   1.64 ("volumeicon" . "0.5.1")
   1.63 ("emacs-mocker" . "0.3.1")
   1.63 ("fillets-ng" . "1.0.1")
   1.63 ("thunar-volman" . "0.9.5")
   1.63 ("flameshot" . "0.5.1")
   1.63 ("byzanz" . "0.2-1.f7af3a5")
   1.63 ("ocaml-graph" . "1.8.8")
   1.63 ("yelp" . "3.30.0")
   1.63 ("screen-message" . "0.25")
   1.63 ("lxqt-build-tools" . "0.6.0")
   1.63 ("clutter-gst" . "3.0.27")
   1.63 ("emacs-magit-todos" . "1.4")
   1.63 ("r-variancepartition" . "1.14.1")
   1.63 ("libkscreen" . "5.15.1")
   1.63 ("lxqt" . "0.14.1")
   1.63 ("gzochi" . "0.12")
   1.63 ("r-rcppprogress" . "0.4.1")
   1.63 ("gcompris" . "17.05")
   1.63 ("dconf-editor" . "3.30.2")
   1.63 ("agg" . "2.5")
   1.63 ("xfce4-pulseaudio-plugin" . "0.4.2")
   1.63 ("maven-wagon-http" . "3.1.0")
   1.63 ("eog" . "3.28.4")
   1.63 ("sox" . "14.4.2")
   1.63 ("xdot" . "1.1")
   1.62 ("emacs-posframe" . "0.5.0")
   1.62 ("attica" . "5.55.0")
   1.62 ("profanity" . "0.7.1")
   1.62 ("rosegarden" . "18.12")
   1.62 ("libqtxdg" . "3.4.0")
   1.62 ("mate-calc" . "1.22.0")
   1.62 ("emacs-frog-jump-buffer" . "0.1.4-1.2d7b342")
   1.62 ("ao" . "1.2.2-5-g20dc8ed")
   1.62 ("ripit" . "3.9.0")
   1.62 ("five-or-more" . "3.30.0")
   1.62 ("xfce4-stopwatch-plugin" . "0.3.1")
   1.62 ("racket" . "7.3")
   1.62 ("darkice" . "1.3")
   1.62 ("emacs-org2web" . "0.9.1")
   1.62 ("enigma" . "1.21")
   1.62 ("kcodecs" . "5.55.0")
   1.62 ("pidgin" . "2.13.0")
   1.62 ("homebank" . "5.2.8")
   1.62 ("xfce4-xkb-plugin" . "0.8.1")
   1.62 ("zathura-ps" . "0.2.6")
   1.62 ("kobodeluxe" . "0.5.1")
   1.62 ("libmatekbd" . "1.22.0")
   1.61 ("ki18n" . "5.55.0")
   1.61 ("emacs-origami-el" . "1.0-1.1f38085")
   1.61 ("ghc-sdl" . "0.6.7.0")
   1.61 ("kconfig" . "5.55.0")
   1.61 ("sdl-mixer" . "1.2.12")
   1.61 ("emacs-lispyville" . "0.1-1.d28b937")
   1.61 ("libbonoboui" . "2.24.5")
   1.61 ("emacs-commander" . "0.7.0")
   1.61 ("maven-wagon-file" . "3.1.0")
   1.61 ("libosinfo" . "1.5.0")
   1.61 ("gimp-fourier" . "0.4.3-2")
   1.61 ("emacs-helm-company" . "0.2.5")
   1.61 ("r-ioniser" . "2.8.0")
   1.61 ("chromaprint" . "1.4.3")
   1.61 ("emacs-elmacro" . "1.1.0-1.89b9b0f")
   1.61 ("gtksourceviewmm" . "3.18.0")
   1.61 ("emacs-lispy" . "0.27.0")
   1.61 ("emacs-frog-menu" . "0.2.9-1.740bbc8")
   1.61 ("extra-cmake-modules" . "5.55.0")
   1.61 ("ghex" . "3.18.3")
   1.61 ("qgpgme" . "1.13.1")
   1.61 ("r-yamss" . "1.10.0")
   1.61 ("ri-li" . "2.0.1")
   1.61 ("xfce4-mailwatch-plugin" . "1.2.0")
   1.61 ("r-wiggleplotr" . "1.8.0")
   1.61 ("wxwidgets-gtk2" . "3.0.4")
   1.61 ("marble-marcher" . "0-1.e580460")
   1.60 ("telepathy-mission-control" . "5.16.5")
   1.60 ("allegro" . "5.0.11")
   1.60 ("heimdall" . "1.4.2")
   1.60 ("gxmessage" . "3.4.3")
   1.60 ("emacs-org-edit-latex" . "0.8.0")
   1.60 ("emacs-ts" . "0.1-2.395649a")
   1.60 ("libdazzle" . "3.33.90")
   1.60 ("qtserialport" . "5.11.3")
   1.60 ("r-depecher" . "1.0.3")
   1.60 ("4dtris" . "0.4.3")
   1.60 ("sdl-net" . "1.2.8")
   1.60 ("emacs-dante" . "1.5-3.38b5894")
   1.60 ("libgnome" . "2.32.1")
   1.60 ("kplotting" . "5.55.0")
   1.60 ("gnome-terminal" . "3.30.3")
   1.60 ("emacs-helm-exwm" . "20180703-2.56266f2")
   1.60 ("oxygen-icons" . "5.55.0")
   1.60 ("ocaml-batteries" . "2.10.0")
   1.60 ("r-rcistarget" . "1.4.0")
   1.60 ("xfce4-power-manager" . "1.6.5")
   1.60 ("emacs-robot-mode" . "0.0.0-1.32846e7")
   1.60 ("freegish" . "0-1.8795cd7ad")
   1.60 ("bennu-game-development-modules" . "348")
   1.60 ("r-txdb-celegans-ucsc-ce6-ensgene" . "3.2.2")
   1.60 ("r-fdb-infiniummethylation-hg19" . "2.2.0")
   1.60 ("qtx11extras" . "5.11.3")
   1.60 ("pipewalker" . "0.9.4")
   1.60 ("grilo-plugins" . "0.3.3")
   1.60 ("gnome-bluetooth" . "3.28.0")
   1.60 ("ltris" . "1.0.19")
   1.60 ("goffice" . "0.10.46")
   1.60 ("xfce4-fsguard-plugin" . "1.1.1")
   1.60 ("qtscxml" . "5.11.3")
   1.60 ("cava" . "0.6.1")
   1.60 ("python-ipython" . "7.9.0")
   1.60 ("r-txdb-mmusculus-ucsc-mm10-knowngene" . "3.4.7")
   1.59 ("pinentry-qt" . "1.1.0")
   1.59 ("xmp" . "4.1.0")
   1.59 ("r-gqtlbase" . "1.16.0")
   1.59 ("r-simpleaffy" . "2.60.0")
   1.59 ("qtquickcontrols" . "5.11.3")
   1.59 ("r-genelendatabase" . "1.18.0")
   1.59 ("openal" . "1.19.1")
   1.59 ("sdl-gfx" . "2.0.26")
   1.59 ("r-rjava" . "0.9-11")
   1.59 ("r-anota" . "1.32.0")
   1.59 ("qtsvg" . "5.11.3")
   1.59 ("qca" . "2.2.1")
   1.59 ("lxpanel" . "0.9.3")
   1.59 ("cl-webkit" . "2.4-1.cd2a900")
   1.59 ("inxi" . "3.0.34-1")
   1.59 ("dconf" . "0.32.0")
   1.59 ("gxtuner" . "2.4")
   1.59 ("ristretto" . "0.10.0")
   1.59 ("emacs-exwm" . "0.23")
   1.59 ("ghc-sdl-mixer" . "0.6.3.0")
   1.59 ("kidletime" . "5.55.0")
   1.59 ("sddm" . "0.18.1")
   1.59 ("kjobwidgets" . "5.55.0")
   1.59 ("qtkeychain" . "0.9.1")
   1.59 ("soundconverter" . "3.0.1")
   1.58 ("xfce4-appfinder" . "4.14.0")
   1.58 ("girara" . "0.3.2")
   1.58 ("r-homo-sapiens" . "1.3.1")
   1.58 ("godot" . "3.0.6")
   1.58 ("r-ggextra" . "0.9")
   1.58 ("rsound" . "1.1")
   1.58 ("r-motifstack" . "1.28.0")
   1.58 ("itk-snap" . "3.8.0")
   1.58 ("grisbi" . "1.2.2")
   1.58 ("r-variantannotation" . "1.30.1")
   1.58 ("emacs-lsp-mode" . "6.1")
   1.58 ("qtsensors" . "5.11.3")
   1.58 ("qlogo" . "0.92")
   1.58 ("r-edaseq" . "2.18.0")
   1.58 ("font-abattis-cantarell" . "0.111")
   1.58 ("emacs-clojure-mode" . "5.6.1")
   1.58 ("pumpa" . "0.9.3")
   1.58 ("r-zfpkm" . "1.6.0")
   1.58 ("libmateweather" . "1.22.0")
   1.58 ("network-manager-applet" . "1.8.24")
   1.58 ("dino" . "0.0-4.8e14ac6")
   1.58 ("libpeas" . "1.22.0")
   1.58 ("multiqc" . "1.5")
   1.58 ("klavaro" . "3.09")
   1.58 ("synfig" . "1.2.2")
   1.58 ("qtlocation" . "5.11.3")
   1.58 ("r-scran" . "1.12.1")
   1.58 ("libnotify" . "0.7.7")
   1.58 ("libgweather" . "3.28.3")
   1.58 ("pioneers" . "15.5")
   1.58 ("r-strucchange" . "1.5-2")
   1.58 ("ghc-sdl-image" . "0.6.2.0")
   1.58 ("qtspeech" . "5.11.3")
   1.57 ("scintilla" . "4.2.1")
   1.57 ("libwnck" . "3.30.0")
   1.57 ("python2-warpedlmm" . "0.21")
   1.57 ("meritous" . "1.5")
   1.57 ("sonata" . "1.7b1")
   1.57 ("quazip" . "0.8.1")
   1.57 ("maven-plugin-api" . "3.6.1")
   1.57 ("r-gkmsvm" . "0.79.0")
   1.57 ("scanmem" . "0.17")
   1.57 ("knights" . "025")
   1.57 ("polybar" . "3.4.1")
   1.57 ("r-bumphunter" . "1.26.0")
   1.57 ("gcr" . "3.28.1")
   1.57 ("qtwebsockets" . "5.11.3")
   1.57 ("timidity++" . "2.14.0")
   1.57 ("alsa-plugins" . "1.1.9")
   1.57 ("gnome-system-monitor" . "3.30.0")
   1.57 ("emacs-ert-runner" . "0.7.0-1.90b8fdd")
   1.57 ("libcanberra" . "0.30")
   1.57 ("gmtp" . "1.3.11")
   1.57 ("r-qdnaseq" . "1.20.0")
   1.57 ("hyperrogue" . "11.2d")
   1.57 ("kdevelop-pg-qt" . "2.0.0")
   1.57 ("r-vim" . "4.8.0")
   1.57 ("higan" . "106")
   1.57 ("r-rhisat2" . "1.0.3")
   1.57 ("r-varianttools" . "1.26.0")
   1.57 ("r-heatmaply" . "0.16.0")
   1.56 ("pcaudiolib" . "1.1")
   1.56 ("pdfarranger" . "1.3.1")
   1.56 ("exo" . "0.12.8")
   1.56 ("appstream-glib" . "0.7.16")
   1.56 ("gtksourceview" . "4.2.0")
   1.56 ("kdoctools" . "5.55.0")
   1.56 ("r-annotationfuncs" . "1.34.0")
   1.56 ("gnome-session" . "3.30.1")
   1.56 ("r-sgseq" . "1.18.0")
   1.56 ("emacs-espuds" . "0.3.3")
   1.56 ("colord-gtk" . "0.1.26")
   1.56 ("r-org-mm-eg-db" . "3.7.0")
   1.56 ("r-factoextra" . "1.0.5")
   1.56 ("squeak-vm" . "4.10.2.2614")
   1.56 ("cnvkit" . "0.9.5")
   1.56 ("gexiv2" . "0.12.0")
   1.56 ("emacs-helm-emms" . "1.3-2.b785cb8")
   1.56 ("sbcl-cl-webkit" . "2.4-1.cd2a900")
   1.56 ("r-oligo" . "1.48.0")
   1.56 ("freealut" . "1.1.0")
   1.56 ("libinfinity" . "0.7.1")
   1.56 ("synergy" . "1.10.1")
   1.56 ("rawtherapee" . "5.6")
   1.56 ("fet" . "5.40.2")
   1.56 ("yosys" . "0.9")
   1.56 ("nanopolish" . "0.11.1-1.6331dc4")
   1.55 ("childsplay" . "3.4")
   1.55 ("qttools" . "5.11.3")
   1.55 ("xeus" . "0.23.2")
   1.55 ("baobab" . "3.30.0")
   1.55 ("r-haplo-stats" . "1.7.9")
   1.55 ("pidgin-otr" . "4.0.2")
   1.55 ("python-pycanberra" . "0.1.1")
   1.55 ("inklingreader" . "0.8")
   1.55 ("emacs-auctex" . "12.2.0")
   1.55 ("r-txdb-hsapiens-ucsc-hg38-knowngene" . "3.4.6")
   1.55 ("poppler-qt5" . "0.79.0")
   1.55 ("gtk-vnc" . "0.9.0")
   1.55 ("r-ruvseq" . "1.18.0")
   1.55 ("uim-qt" . "1.8.8")
   1.55 ("emacs-racket-mode" . "0.0.2-4.2a9a102")
   1.55 ("i3status" . "2.13")
   1.55 ("qtdeclarative" . "5.11.3")
   1.55 ("r-uwot" . "0.1.4")
   1.55 ("emacs-emms" . "5.3")
   1.54 ("r-genomicfiles" . "1.20.0")
   1.54 ("scorep-openmpi" . "3.1")
   1.54 ("celluloid" . "0.17")
   1.54 ("emacs-emms-mode-line-cycle" . "0.2.5")
   1.54 ("libinput" . "1.13.4")
   1.54 ("r-plotly" . "4.9.1")
   1.54 ("gnome-calculator" . "3.32.2")
   1.54 ("r-bsgenome-mmusculus-ucsc-mm9" . "1.4.0")
   1.54 ("r-scater" . "1.12.2")
   1.54 ("supertuxkart" . "1.0")
   1.54 ("r-regioner" . "1.16.5")
   1.54 ("python-loompy" . "2.0.17")
   1.54 ("sdl-ttf" . "2.0.11")
   1.54 ("r-bsgenome-dmelanogaster-ucsc-dm6" . "1.4.1")
   1.54 ("sonivox-eas" . "1.1.0")
   1.53 ("gnome-desktop" . "3.30.2")
   1.53 ("dbus-c++" . "0.9.0")
   1.53 ("vmpk" . "0.7.2")
   1.53 ("gwenhywfar" . "4.20.2")
   1.53 ("r-txdb-hsapiens-ucsc-hg19-knowngene" . "3.2.2")
   1.53 ("glade" . "3.22.1")
   1.53 ("ripperx" . "2.8.0")
   1.53 ("gucharmap" . "12.0.1")
   1.53 ("java-biojava-alignment" . "4.0.0")
   1.53 ("stepmania" . "5.1.0-b2")
   1.53 ("r-atacseqqc" . "1.8.5")
   1.53 ("orage" . "4.12.1")
   1.53 ("libmpeg2" . "0.5.1")
   1.53 ("r-rmpi" . "0.6-9")
   1.53 ("guile-cv" . "0.2.1")
   1.53 ("r-xgboost" . "0.90.0.2")
   1.53 ("mcabber" . "1.1.0")
   1.53 ("r-bseqsc" . "1.0-1.fef3f3e")
   1.53 ("mpc123" . "0.2.4")
   1.53 ("mate-desktop" . "1.22.0")
   1.53 ("r-abaenrichment" . "1.14.1")
   1.53 ("maven-core" . "3.6.1")
   1.53 ("gnome-themes-standard" . "3.22.3")
   1.52 ("r-linprog" . "0.9-2")
   1.52 ("pinentry-gnome3" . "1.1.0")
   1.52 ("orpheus" . "1.6")
   1.52 ("gtkmm" . "3.24.2")
   1.52 ("emacs-tco-el" . "0.3-1.482db53")
   1.52 ("r-bsgenome-celegans-ucsc-ce10" . "1.4.0")
   1.52 ("r-org-ce-eg-db" . "3.7.0")
   1.52 ("python-jupyter-kernel-mgmt" . "0.4.0")
   1.52 ("system-config-printer" . "1.5.11")
   1.52 ("emacs" . "26.3")
   1.52 ("libgxps" . "0.3.1")
   1.52 ("cdemu-daemon" . "3.2.3")
   1.51 ("emacs-ht" . "2.2")
   1.51 ("r-grohmm" . "1.18.0")
   1.51 ("sdl-image" . "1.2.12")
   1.51 ("amtk" . "5.0.1")
   1.51 ("libical" . "3.0.5")
   1.51 ("spread-sheet-widget" . "0.3")
   1.51 ("r-monocle" . "2.12.0")
   1.51 ("totem-pl-parser" . "3.26.3")
   1.51 ("r-rms" . "5.1-3.1")
   1.51 ("lpd8editor" . "0.0.13")
   1.51 ("r-bsgenome-hsapiens-ucsc-hg19-masked" . "1.3.99")
   1.51 ("emacs-pos-tip" . "0.4.6")
   1.51 ("gnome-mines" . "3.30.1.1")
   1.51 ("espeak" . "1.48.04")
   1.51 ("r-chippeakanno" . "3.18.2")
   1.50 ("cheese" . "3.30.0")
   1.50 ("rapicorn" . "16.0.0")
   1.50 ("r-weights" . "1.0")
   1.50 ("r-threejs" . "0.3.1")
   1.50 ("r-geoquery" . "2.52.0")
   1.50 ("gnome-autoar" . "0.2.3")
   1.50 ("libcanberra-gtk2" . "0.30")
   1.50 ("emacs-pulseaudio-control" . "0.0.1-3.7e1a870")
   1.50 ("r-yaqcaffy" . "1.44.0")
   1.50 ("openclonk" . "8.1")
   1.50 ("r-ripseeker" . "1.24.0")
   1.50 ("java-logback-classic" . "1.2.3")
   1.50 ("emacs-org-emms" . "0.1-1.07a8917")
   1.50 ("emacs-ansi" . "0.4.1")
   1.50 ("gtksourceview" . "3.24.10")
   1.50 ("icedtea-web" . "1.6.2")
   1.50 ("r-caret" . "6.0-84")
   1.50 ("gspell" . "1.8.2")
   1.50 ("fenics-dolfin" . "2018.1.0.post1")
   1.50 ("retroarch" . "1.8.1")
   1.50 ("r-genomicfeatures" . "1.36.4")
   1.50 ("aqbanking" . "5.8.1")
   1.50 ("r-cssam" . "1.4-1.9ec58c9")
   1.50 ("r-hitc" . "1.28.0")
   1.50 ("r-interactionset" . "1.12.0")
   1.50 ("r-analytics" . "3.0")
   1.50 ("r-sjplot" . "2.7.2")
   1.49 ("r-fgsea" . "1.10.1")
   1.49 ("r-crosstalk" . "1.0.0")
   1.49 ("speech-dispatcher" . "0.9.1")
   1.49 ("gtk+" . "3.24.10")
   1.49 ("r-hmisc" . "4.3-0")
   1.49 ("r-annotate" . "1.62.0")
   1.49 ("eid-mw" . "4.4.16")
   1.49 ("r-gostats" . "2.50.0")
   1.49 ("r-nbpseq" . "0.3.0")
   1.49 ("qtox" . "1.16.3")
   1.49 ("cmus" . "2.8.0")
   1.49 ("r-sva" . "3.32.1")
   1.49 ("r-riboseqr" . "1.18.0")
   1.49 ("python-fpylll" . "0.4.1")
   1.49 ("gvfs" . "1.40.1")
   1.49 ("gst-plugins-bad" . "1.16.0")
   1.49 ("libgnome-games-support" . "1.4.4")
   1.49 ("libdbusmenu" . "16.04.0")
   1.49 ("java-plexus-component-metadata" . "1.7.1")
   1.49 ("r-psiplot" . "2.3.0")
   1.49 ("colord" . "1.4.4")
   1.49 ("r-tidytree" . "0.2.9")
   1.49 ("keybinder-3.0" . "0.3.2")
   1.49 ("r-oligoclasses" . "1.46.0")
   1.49 ("umockdev" . "0.13.2")
   1.48 ("r-bsgenome-celegans-ucsc-ce6" . "1.4.0")
   1.48 ("r-motifrg" . "1.28.0")
   1.48 ("adwaita-icon-theme" . "3.30.1")
   1.48 ("r-flowsom" . "1.16.0")
   1.48 ("r-dt" . "0.10")
   1.48 ("kdecoration" . "5.15.1")
   1.48 ("bluefish" . "2.2.10")
   1.48 ("r-flowcore" . "1.50.0")
   1.48 ("r-bioccheck" . "1.20.0")
   1.48 ("r-motiv" . "1.40.0")
   1.48 ("r-bsgenome-mmusculus-ucsc-mm10" . "1.4.0")
   1.48 ("r-a4base" . "1.32.0")
   1.48 ("r-europepmc" . "0.3")
   1.48 ("r-gage" . "2.34.0")
   1.48 ("r-d3r" . "0.8.7")
   1.48 ("pulseview" . "0.4.1")
   1.48 ("lush2" . "2.0.1")
   1.48 ("libostree" . "2019.3")
   1.48 ("r-sankeyd3" . "0.3.2-1.fd50a74")
   1.48 ("r-dropbead" . "0-2.d746c6f")
   1.47 ("r-drimpute" . "1.0")
   1.47 ("simplescreenrecorder" . "0.3.11")
   1.47 ("sbcl-cl-cffi-gtk" . "0.11.2-1.29443c5")
   1.47 ("r-chipcomp" . "1.14.0")
   1.47 ("r-r2glmm" . "0.1.2")
   1.47 ("r-genomegraphs" . "1.44.0")
   1.47 ("r-summarytools" . "0.9.4")
   1.47 ("r-savr" . "1.22.0")
   1.47 ("r-bacon" . "1.12.0")
   1.47 ("r-car" . "3.0-4")
   1.47 ("parcimonie" . "0.11.0")
   1.47 ("r-gmodels" . "2.18.1")
   1.47 ("mrrescue" . "1.02e")
   1.47 ("gsound" . "1.0.2")
   1.47 ("python-cooler" . "0.7.11")
   1.47 ("r-abhgenotyper" . "1.0.1")
   1.46 ("enblend-enfuse" . "4.2")
   1.46 ("texmaker" . "5.0.3")
   1.46 ("r-ggforce" . "0.3.1")
   1.46 ("qutebrowser" . "0.11.0")
   1.46 ("mplayer" . "1.3.0")
   1.46 ("r-blme" . "1.0-4")
   1.46 ("libu2f-host" . "1.1.10")
   1.46 ("ocaml-lwt" . "4.1.0")
   1.46 ("fcitx" . "4.2.9.7")
   1.46 ("r-annotationforge" . "1.26.0")
   1.46 ("groovy" . "2.4.15")
   1.46 ("java-biojava-phylo" . "4.0.0")
   1.46 ("r-abbyyr" . "0.5.5")
   1.46 ("coq-stdpp" . "1.2.0")
   1.46 ("r-sp" . "1.3-2")
   1.46 ("mpv" . "0.30.0")
   1.46 ("drascula" . "1.0")
   1.46 ("git-annex-remote-hubic" . "0.3.1")
   1.45 ("ocaml-bos" . "0.2.0")
   1.45 ("r-a4preproc" . "1.32.0")
   1.45 ("r-interactivedisplaybase" . "1.22.0")
   1.45 ("pulsemixer" . "1.4.0")
   1.45 ("rest" . "0.8.1")
   1.45 ("obs" . "24.0.3")
   1.45 ("r-ebseq" . "1.24.0")
   1.45 ("coq-autosubst" . "1-coq86-devel.fa6ef30")
   1.45 ("r-ggvis" . "0.4.5")
   1.45 ("povray" . "3.7.0.8")
   1.45 ("espeak-ng" . "1.49.2")
   1.45 ("frescobaldi" . "3.0.0")
   1.45 ("gusb" . "0.3.0")
   1.45 ("r-gofuncr" . "1.4.0")
   1.45 ("r-chipkernels" . "1.1-1.c9cfcacb6")
   1.45 ("totem" . "3.30.0")
   1.45 ("r-htscluster" . "2.0.8")
   1.44 ("uhttpmock" . "0.5.1")
   1.44 ("r-bsgenome-dmelanogaster-ucsc-dm3-masked" . "1.3.99")
   1.44 ("unknown-horizons" . "2019.1")
   1.44 ("r-farver" . "2.0.1")
   1.44 ("r-acsnminer" . "0.16.8.25")
   1.44 ("r-vsn" . "3.52.0")
   1.44 ("ponymix" . "5")
   1.44 ("josm" . "15492")
   1.44 ("r-accelerometry" . "3.1.2")
   1.44 ("maven-resolver-provider" . "3.6.1")
   1.44 ("r-affycontam" . "1.42.0")
   1.44 ("r-ebimage" . "4.26.0")
   1.44 ("r-spdep" . "1.1-3")
   1.44 ("r-genomationdata" . "1.14.0")
   1.44 ("emacsy" . "0.4.1")
   1.44 ("ceph" . "13.2.6")
   1.44 ("r-xts" . "0.11-2")
   1.44 ("r-refgenome" . "1.7.7")
   1.44 ("r-qvalue" . "2.16.0")
   1.44 ("discrover" . "1.6.0")
   1.44 ("template-glib" . "3.32.0")
   1.43 ("r-bigrquery" . "1.2.0")
   1.43 ("ocaml-js-build-tools" . "113.33.06")
   1.43 ("libopenshot" . "0.2.3")
   1.43 ("r-category" . "2.50.0")
   1.43 ("gramps" . "5.1.1")
   1.43 ("r-bayseq" . "2.18.0")
   1.43 ("r-org-dm-eg-db" . "3.7.0")
   1.43 ("r-drc" . "3.0-1")
   1.43 ("r-glimma" . "1.12.0")
   1.43 ("vorbis-tools" . "1.4.0")
   1.43 ("r-mosaic" . "1.4.0")
   1.43 ("r-delayedmatrixstats" . "1.6.1")
   1.43 ("maven-wagon-provider-test" . "3.1.0")
   1.43 ("r-manipulatewidget" . "0.10.0")
   1.43 ("java-plexus-sec-dispatcher" . "1.4")
   1.43 ("r-acdm" . "1.0.4")
   1.43 ("dblatex" . "0.3.10")
   1.43 ("mpg123" . "1.25.13")
   1.43 ("r-dyn" . "0.2-9.6")
   1.43 ("r-somaticsignatures" . "2.20.0")
   1.43 ("r-zip" . "2.0.4")
   1.43 ("u-boot-am335x-evm" . "2019.04")
   1.43 ("u-boot-firefly-rk3399" . "2019.10")
   1.43 ("python2-swiftclient" . "2.6.0")
   1.43 ("jumpnbump" . "1.61")
   1.42 ("r-abctools" . "1.1.3")
   1.42 ("gtkspell3" . "3.0.9")
   1.42 ("r-bsgenome-mmusculus-ucsc-mm9-masked" . "1.3.99")
   1.42 ("r-lmertest" . "3.1-0")
   1.42 ("r-shinytree" . "0.2.7")
   1.42 ("texlive-siunitx" . "49435")
   1.42 ("udisks" . "2.7.7")
   1.42 ("perl-catalyst-plugin-captcha" . "0.04")
   1.42 ("geocode-glib" . "3.26.1")
   1.42 ("ocaml-xmlm" . "1.3.0")
   1.42 ("r-rematch2" . "2.1.0")
   1.42 ("grilo" . "0.3.3")
   1.42 ("r-iclusterplus" . "1.20.0")
   1.42 ("r-seriation" . "1.2-8")
   1.42 ("r-biocfilecache" . "1.8.0")
   1.42 ("r-sjstats" . "0.17.6")
   1.42 ("r-viridis" . "0.5.1")
   1.42 ("u-boot-nintendo-nes-classic-edition" . "2019.04")
   1.42 ("gnome-keyring" . "3.28.2")
   1.42 ("java-rsyntaxtextarea" . "2.6.1")
   1.42 ("java-modello-core" . "1.9.1")
   1.42 ("r-bsgenome-hsapiens-1000genomes-hs37d5" . "0.99.1")
   1.42 ("maven-model-builder" . "3.6.1")
   1.42 ("r-aroma-light" . "3.14.0")
   1.41 ("r-annotationhub" . "2.16.1")
   1.41 ("r-msnbase" . "2.10.1")
   1.41 ("r-roar" . "1.20.0")
   1.41 ("monero-gui" . "0.15.0.0")
   1.41 ("r-gosemsim" . "2.10.0")
   1.41 ("libu2f-server" . "1.1.0")
   1.41 ("r-accelmissing" . "1.4")
   1.41 ("wesnoth" . "1.14.9")
   1.41 ("network-manager-openvpn" . "1.8.10")
   1.41 ("java-modello-plugins-xpp3" . "1.9.1")
   1.41 ("ghc-gnuplot" . "0.5.5.2")
   1.41 ("freeorion" . "0.4.8")
   1.41 ("r-import" . "1.1.0")
   1.41 ("r-valr" . "0.5.0")
   1.41 ("r-citr" . "0.3.2")
   1.41 ("r-org-dr-eg-db" . "3.7.0")
   1.41 ("r-noiseq" . "2.28.0")
   1.41 ("xfce4-statusnotifier-plugin" . "0.2.1")
   1.41 ("r-genomicalignments" . "1.20.1")
   1.41 ("r-rsubread" . "1.34.7")
   1.41 ("r-progeny" . "1.6.0")
   1.41 ("r-geneplotter" . "1.62.0")
   1.41 ("r-singlecellexperiment" . "1.6.0")
   1.41 ("r-mzr" . "2.18.1")
   1.41 ("r-ggjoy" . "0.4.1")
   1.40 ("r-deseq" . "1.36.0")
   1.40 ("r-rgdal" . "1.4-7")
   1.40 ("libsoup" . "2.68.2")
   1.40 ("r-birta" . "1.28.0")
   1.40 ("java-plexus-io" . "3.0.0")
   1.40 ("r-ihw" . "1.12.0")
   1.40 ("r-shinythemes" . "1.1.2")
   1.40 ("r-biomart" . "2.40.5")
   1.40 ("r-chipseq" . "1.34.0")
   1.40 ("r-rbamtools" . "2.16.17")
   1.40 ("r-ggally" . "1.4.0")
   1.40 ("java-plexus-compiler-javac" . "2.8.4")
   1.40 ("r-upsetr" . "1.4.0")
   1.40 ("u-boot-malta" . "2019.04")
   1.40 ("r-rgadem" . "2.32.0")
   1.40 ("r-cghbase" . "1.44.0")
   1.40 ("r-htqpcr" . "1.38.0")
   1.40 ("r-mitml" . "0.3-7")
   1.40 ("r-do-db" . "2.9")
   1.40 ("libsmpeg" . "0.4.5-401")
   1.40 ("r-roc" . "1.60.0")
   1.40 ("r-deds" . "1.58.0")
   1.40 ("r-shinybs" . "0.61")
   1.40 ("r-lme4" . "1.1-21")
   1.40 ("r-shinydashboard" . "0.7.1")
   1.40 ("r-a4reporting" . "1.32.0")
   1.40 ("r-rtracklayer" . "1.44.4")
   1.40 ("caja" . "1.22.0")
   1.40 ("r-goplot" . "1.0.2")
   1.40 ("r-parsedate" . "1.2.0")
   1.40 ("r-nmf" . "0.21.0")
   1.40 ("r-ggbeeswarm" . "0.6.0")
   1.40 ("transmission" . "2.94")
   1.40 ("r-xbioc" . "0.1.16-1.6ff0670")
   1.40 ("r-a3" . "1.0.0")
   1.40 ("r-bedr" . "1.0.7")
   1.40 ("libwacom" . "1.1")
   1.40 ("r-activity" . "1.3")
   1.39 ("r-gdsfmt" . "1.20.0")
   1.39 ("mupen64plus-video-z64" . "2.0.0")
   1.39 ("maven-repository-metadata" . "3.6.1")
   1.39 ("emacs-spaceline" . "2.0.1")
   1.39 ("r-sjmisc" . "2.8.2")
   1.39 ("r-fithic" . "1.10.0")
   1.39 ("r-modelr" . "0.1.5")
   1.39 ("keybinder" . "0.3.1")
   1.39 ("r-ggthemes" . "4.2.0")
   1.39 ("r-centipede" . "1.2")
   1.39 ("r-ctc" . "1.58.0")
   1.39 ("r-phangorn" . "2.5.5")
   1.39 ("r-ggcorrplot" . "0.1.3")
   1.39 ("r-shiny" . "1.2.0")
   1.39 ("r-lemon" . "0.4.3")
   1.39 ("r-insol" . "1.2")
   1.39 ("r-stabledist" . "0.7-1")
   1.39 ("mpg321" . "0.3.2")
   1.39 ("r-shortread" . "1.42.0")
   1.39 ("java-plexus-cli" . "1.7")
   1.39 ("pulseaudio" . "12.2")
   1.39 ("enlightenment" . "0.23.1")
   1.38 ("endless-sky" . "0.9.10")
   1.38 ("r-sjlabelled" . "1.1.1")
   1.38 ("enlightenment-wayland" . "0.23.1")
   1.38 ("r-batchtools" . "0.9.11")
   1.38 ("r-arrmdata" . "1.18.0")
   1.38 ("maven-settings" . "3.6.1")
   1.38 ("java-htsjdk" . "2.3.0")
   1.38 ("r-shinyace" . "0.4.1")
   1.38 ("r-seqlogo" . "1.50.0")
   1.38 ("r-go-db" . "3.7.0")
   1.38 ("r-ggplotify" . "0.0.4")
   1.38 ("lugaru" . "1.2")
   1.38 ("r-codedepends" . "0.6.5")
   1.38 ("texmacs" . "1.99.11")
   1.38 ("sdl2-net" . "2.0.1")
   1.38 ("u-boot-am335x-boneblack" . "2019.04")
   1.38 ("r-factominer" . "1.42")
   1.38 ("r-stepwise" . "0.3")
   1.38 ("toutenclic" . "7.00")
   1.38 ("cdogs-sdl" . "0.6.9")
   1.38 ("r-rots" . "1.12.0")
   1.38 ("gnome-sudoku" . "3.30.0")
   1.38 ("r-ggseqlogo" . "0.1")
   1.38 ("r-genomicranges" . "1.36.1")
   1.38 ("r-hardyweinberg" . "1.6.3")
   1.38 ("python-xsge" . "2018.02.26")
   1.37 ("r-annaffy" . "1.56.0")
   1.37 ("r-furrr" . "0.1.0")
   1.37 ("r-biocviews" . "1.52.2")
   1.37 ("r-bamsignals" . "1.16.0")
   1.37 ("java-sisu-build-api" . "0.0.7")
   1.37 ("r-genie3" . "1.6.0")
   1.37 ("r-grimport" . "0.9-2")
   1.37 ("r-googlesheets" . "0.3.0")
   1.37 ("r-pdist" . "1.2")
   1.37 ("vkquake" . "1.01.0")
   1.37 ("r-ggmap" . "3.0.0")
   1.37 ("r-reqon" . "1.30.0")
   1.37 ("r-batchjobs" . "1.8")
   1.37 ("chez-sockets" . "0.0.0-1.bce9688")
   1.37 ("java-modello-plugins-xml" . "1.9.1")
   1.37 ("at-spi2-atk" . "2.32.0")
   1.37 ("chez-scmutils" . "0.1")
   1.37 ("r-marray" . "1.62.0")
   1.37 ("r-mice" . "3.6.0")
   1.37 ("r-ddrtree" . "0.1.5")
   1.37 ("r-gwascat" . "2.16.1")
   1.37 ("coq-gappa" . "1.3.4")
   1.37 ("gnome-screenshot" . "3.30.0")
   1.37 ("java-plexus-archiver" . "4.1.0")
   1.37 ("r-dnabarcodes" . "1.14.0")
   1.37 ("geoclue" . "2.4.8")
   1.37 ("java-modello-test" . "1.9.1")
   1.37 ("r-birewire" . "3.16.0")
   1.37 ("youtube-dl-gui" . "0.3.8")
   1.36 ("ribotaper" . "1.3.1")
   1.36 ("r-lpsymphony" . "1.12.0")
   1.36 ("sdl2-mixer" . "2.0.4")
   1.36 ("r-gseabase" . "1.46.0")
   1.36 ("chez-irregex" . "0.9.4")
   1.36 ("r-dirichletmultinomial" . "1.26.0")
   1.36 ("gnome-mahjongg" . "3.35.1")
   1.36 ("python-django-allauth" . "0.39.1")
   1.36 ("maven-settings-builder" . "3.6.1")
   1.36 ("r-ggdendro" . "0.1-20")
   1.36 ("r-annotationtools" . "1.58.0")
   1.36 ("r-raremetals2" . "0.1")
   1.36 ("sbcl-serapeum" . "0.0.0-0.65837f8")
   1.36 ("java-plexus-compiler-api" . "2.8.4")
   1.36 ("r-hdf5array" . "1.12.3")
   1.36 ("r-hsmmsinglecell" . "1.2.0")
   1.36 ("r-affxparser" . "1.56.0")
   1.36 ("ocaml-ezjsonm" . "1.1.0")
   1.36 ("r-copynumber" . "1.24.0")
   1.36 ("r-multtest" . "2.40.0")
   1.36 ("r-ontologyindex" . "2.5")
   1.36 ("r-mzid" . "1.22.0")
   1.36 ("r-protgenerics" . "1.16.0")
   1.36 ("fontmanager" . "0.7.5")
   1.36 ("r-beachmat" . "2.0.0")
   1.36 ("r-broom" . "0.5.2")
   1.36 ("mia" . "2.4.6")
   1.35 ("r-umap" . "0.2.3.1")
   1.35 ("r-kohonen" . "3.0.8")
   1.35 ("rsem" . "1.3.1")
   1.35 ("cmst" . "2017.09.19")
   1.35 ("r-dalex" . "0.4.9")
   1.35 ("r-ggfortify" . "0.4.8")
   1.35 ("r-emmeans" . "1.4.2")
   1.35 ("git-annex" . "7.20191114")
   1.35 ("java-plexus-container-default" . "1.7.1")
   1.35 ("java-modello-plugins-java" . "1.9.1")
   1.35 ("r-methylkit" . "1.10.0")
   1.35 ("r-dlmap" . "1.13")
   1.35 ("r-icobra" . "1.12.1")
   1.35 ("r-rhdf5" . "2.28.1")
   1.35 ("r-bayestestr" . "0.4.0")
   1.35 ("python-cypari2" . "2.1.1")
   1.35 ("pam-u2f" . "1.0.8")
   1.35 ("r-seqminer" . "7.1")
   1.35 ("r-rsamtools" . "2.0.3")
   1.35 ("r-dvmisc" . "1.1.3")
   1.35 ("bbmap" . "35.82")
   1.35 ("r-triform" . "1.26.0")
   1.35 ("r-biocparallel" . "1.18.1")
   1.35 ("r-consensusclusterplus" . "1.48.0")
   1.35 ("at-spi2-core" . "2.32.1")
   1.35 ("r-keggrest" . "1.24.1")
   1.35 ("ocaml-logs" . "0.6.2")
   1.35 ("r-genomeinfodb" . "1.20.0")
   1.34 ("r-biocsingular" . "1.0.0")
   1.34 ("r-dendextend" . "1.12.0")
   1.34 ("r-argparse" . "2.0.1")
   1.34 ("r-assertr" . "2.6")
   1.34 ("java-log4j-1.2-api" . "2.4.1")
   1.34 ("r-org-hs-eg-db" . "3.7.0")
   1.34 ("emacs-doom-themes" . "2.1.6")
   1.34 ("lxqt-admin" . "0.14.1")
   1.34 ("gthumb" . "3.8.1")
   1.34 ("mate-system-monitor" . "1.22.0")
   1.34 ("r-sys" . "3.3")
   1.34 ("ibus-anthy" . "1.5.9")
   1.34 ("r-feather" . "0.3.5")
   1.34 ("papi" . "5.5.1")
   1.34 ("r-biobase" . "2.44.0")
   1.34 ("r-synchronicity" . "1.3.5")
   1.34 ("r-sigpathway" . "1.52.0")
   1.34 ("r-wordcloud" . "2.6")
   1.33 ("r-flowutils" . "1.48.0")
   1.33 ("r-prettyunits" . "1.0.2")
   1.33 ("r-ggeffects" . "0.13.0")
   1.33 ("r-ggpubr" . "0.2.4")
   1.33 ("java-htsjdk" . "2.14.3")
   1.33 ("r-wgaim" . "2.0-1")
   1.33 ("r-sctransform" . "0.2.0")
   1.33 ("zathura-pdf-poppler" . "0.2.9")
   1.33 ("r-affydata" . "1.32.0")
   1.33 ("r-ropls" . "1.16.0")
   1.33 ("luakit" . "2.1")
   1.33 ("r-minqa" . "1.2.4")
   1.33 ("emacs-mu4e-alert" . "1.0")
   1.33 ("darcs" . "2.14.2")
   1.33 ("r-sm" . "2.2-5.6")
   1.33 ("r" . "3.6.1")
   1.33 ("java-eclipse-jetty-webapp" . "9.4.6")
   1.33 ("r-tsa" . "1.2")
   1.33 ("jamm" . "1.0.7.5")
   1.33 ("pcmanfm-qt" . "0.14.1")
   1.33 ("lxqt-connman-applet" . "0.14.1-0.3db374e")
   1.33 ("r-auc" . "0.3.0")
   1.33 ("r-ppls" . "1.6-1.1")
   1.33 ("r-dbplyr" . "1.4.2")
   1.33 ("gnumeric" . "1.12.46")
   1.33 ("r-miniui" . "0.1.1.1")
   1.33 ("python2-django-filter" . "1.1.0")
   1.33 ("r-rbowtie2" . "1.6.0")
   1.33 ("cmh" . "1.0")
   1.33 ("r-dnacopy" . "1.58.0")
   1.33 ("r-statnet-common" . "4.3.0")
   1.32 ("pavucontrol-qt" . "0.14.1")
   1.32 ("r-pryr" . "0.1.4")
   1.32 ("poppler-qt4" . "0.79.0")
   1.32 ("java-picard" . "2.10.3")
   1.32 ("gnubg" . "1.06.002")
   1.32 ("r-gargle" . "0.4.0")
   1.32 ("r-patchwork" . "0.0.1-1.fd7958b")
   1.32 ("r-pcamethods" . "1.76.0")
   1.32 ("r-gprofiler" . "0.7.0")
   1.32 ("r-multicool" . "0.1-10")
   1.32 ("r-picante" . "1.8")
   1.32 ("r-affyio" . "1.54.0")
   1.32 ("enki" . "2.0pre-0.afd2d8e")
   1.32 ("python-tempest-lib" . "1.0.0")
   1.32 ("ocaml-uchar" . "0.0.2")
   1.32 ("r-dplyr" . "0.8.3")
   1.32 ("r-illuminaio" . "0.26.0")
   1.32 ("r-ggbio" . "1.32.0")
   1.32 ("r-impute" . "1.58.0")
   1.32 ("twinkle" . "1.10.2")
   1.32 ("fastqc" . "0.11.5")
   1.32 ("gpxsee" . "7.16")
   1.32 ("ffmpeg" . "4.2.1")
   1.32 ("java-geronimo-xbean-reflect" . "4.5")
   1.32 ("lxqt-runner" . "0.14.1")
   1.32 ("r-modelmetrics" . "1.2.2")
   1.32 ("polkit-qt" . "1-0.112.0")
   1.32 ("r-gcrma" . "2.56.0")
   1.32 ("xfce4-taskmanager" . "1.2.2")
   1.32 ("r-combinat" . "0.0-8")
   1.32 ("libgdata" . "0.17.9")
   1.32 ("r-glmnet" . "3.0")
   1.32 ("r-limma" . "3.40.6")
   1.32 ("r-genomicscores" . "1.8.1")
   1.32 ("gtk-doc" . "1.28")
   1.32 ("r-a4core" . "1.32.0")
   1.32 ("chez-web" . "2.0-1.5fd177f")
   1.31 ("python-qscintilla" . "2.10.8")
   1.31 ("r-abjutils" . "0.2.3")
   1.31 ("r-rcpphnsw" . "0.2.0")
   1.31 ("emacs-attrap" . "1.0-2.18cd1f7")
   1.31 ("pootle" . "2.8.2")
   1.31 ("xfce4-equake-plugin" . "1.3.8")
   1.31 ("r-basix" . "1.1")
   1.31 ("gp2c" . "0.0.11pl2")
   1.31 ("kjsembed" . "5.55.0")
   1.31 ("r-pbmcapply" . "1.5.0")
   1.31 ("r-seqbias" . "1.32.0")
   1.31 ("r-rtsne" . "0.15")
   1.31 ("r-robust" . "0.4-18.1")
   1.31 ("r-shinyfiles" . "0.7.3")
   1.31 ("r-sparql" . "1.16")
   1.31 ("d-feet" . "0.3.14")
   1.31 ("r-jpeg" . "0.1-8.1")
   1.31 ("snap" . "5.2.5")
   1.31 ("r-all" . "1.26.0")
   1.31 ("r-msigdbr" . "7.0.1")
   1.31 ("scummvm" . "2.0.0")
   1.31 ("xfce4-systemload-plugin" . "1.2.3")
   1.31 ("r-ks" . "1.11.6")
   1.31 ("r-nlp" . "0.2-0")
   1.31 ("r-r2html" . "2.3.2")
   1.31 ("r-gtrellis" . "1.16.1")
   1.31 ("lierolibre" . "0.5")
   1.31 ("emacs-emojify" . "1.2")
   1.31 ("r-delayedarray" . "0.10.0")
   1.31 ("qtquickcontrols2" . "5.11.3")
   1.31 ("r-arm" . "1.10-1")
   1.31 ("python2-cysignals" . "1.9.0")
   1.31 ("r-quantmod" . "0.4-15")
   1.31 ("r-sna" . "2.4")
   1.31 ("emacs-js2-refactor-el" . "0.9.0-2.d4c40b5")
   1.31 ("r-r4rna" . "0.1.4")
   1.31 ("r-sqldf" . "0.4-11")
   1.31 ("r-cardata" . "3.0-2")
   1.31 ("r-ggplot2" . "3.2.1")
   1.31 ("emacs-guix" . "0.5.1.1")
   1.31 ("u-boot-a20-olinuxino-lime" . "2019.04")
   1.31 ("r-ggformula" . "0.9.2")
   1.31 ("r-xvector" . "0.24.0")
   1.31 ("qtermwidget" . "0.14.1")
   1.31 ("r-raster" . "3.0-7")
   1.31 ("qtcolorwidgets" . "0-1.a95f72e")
   1.30 ("r-servr" . "0.15")
   1.30 ("java-biojava-core" . "4.2.11")
   1.30 ("r-rhdf5lib" . "1.6.3")
   1.30 ("u-boot-a20-olinuxino-micro" . "2019.04")
   1.30 ("r-fit-models" . "0.5-14")
   1.30 ("r-qtl" . "1.44-9")
   1.30 ("r-survey" . "3.36")
   1.30 ("r-urltools" . "1.7.3")
   1.30 ("r-cghcall" . "2.46.0")
   1.30 ("r-styler" . "1.2.0")
   1.30 ("r-haven" . "2.2.0")
   1.30 ("r-rngtools" . "1.4")
   1.30 ("r-hexbin" . "1.28.0")
   1.30 ("r-iranges" . "2.18.3")
   1.30 ("eom" . "1.22.0")
   1.30 ("chez-mit" . "0.1")
   1.30 ("r-ggsci" . "2.9")
   1.30 ("lilypond" . "2.19.80")
   1.30 ("r-rttf2pt1" . "1.3.7")
   1.30 ("sundials-openmpi" . "3.1.1")
   1.30 ("r-mcmc" . "0.9-6")
   1.30 ("qtimageformats" . "5.11.3")
   1.30 ("r-sf" . "0.8-0")
   1.30 ("emacs-company-auctex" . "0-1.48c42c5")
   1.30 ("xfce4-time-out-plugin" . "1.1.0")
   1.30 ("r-huge" . "1.3.4")
   1.30 ("r-apcluster" . "1.4.8")
   1.30 ("r-base64" . "2.0")
   1.30 ("r-ggstance" . "0.3.3")
   1.30 ("r-plot3d" . "1.1.1")
   1.30 ("r-sloop" . "1.0.1")
   1.30 ("xfce4-screenshooter" . "1.9.7")
   1.30 ("xfce4-wavelan-plugin" . "0.6.1")
   1.30 ("r-goseq" . "1.36.0")
   1.30 ("r-r-oo" . "1.23.0")
   1.30 ("r-snp-plotter" . "0.5.1")
   1.30 ("r-vgam" . "1.1-1")
   1.30 ("r-htmlwidgets" . "1.5.1")
   1.29 ("r-acepack" . "1.4.1")
   1.29 ("emacs-minitest" . "0.8.0-1.1aadb78")
   1.29 ("r-catterplots" . "0-2.40063ec57")
   1.29 ("r-readxl" . "1.3.1")
   1.29 ("r-class" . "7.3-15")
   1.29 ("r-moonbook" . "0.2.3")
   1.29 ("java-eclipse-jetty-xml" . "9.4.6")
   1.29 ("r-genomation" . "1.16.0")
   1.29 ("cm" . "0.3")
   1.29 ("r-biocgenerics" . "0.30.0")
   1.29 ("pavucontrol" . "3.0")
   1.29 ("u-boot-tools" . "2019.04")
   1.29 ("brasero" . "3.12.2")
   1.29 ("chez-srfi" . "1.0")
   1.29 ("r-maps" . "3.3.0")
   1.29 ("python2-efl" . "1.23.0")
   1.29 ("r-matrixstats" . "0.55.0")
   1.29 ("r-tidygraph" . "1.1.2")
   1.29 ("r-plgem" . "1.56.0")
   1.29 ("r-h5" . "0.9.9")
   1.29 ("octave-cli" . "5.1.0")
   1.29 ("qtwebview" . "5.11.3")
   1.29 ("java-eclipse-jetty-security" . "9.4.6")
   1.29 ("emacs-amx" . "3.2")
   1.29 ("r-rbiofabric" . "0.3-1.666c2ae")
   1.29 ("r-minfi" . "1.30.0")
   1.29 ("java-xmlgraphics-commons" . "2.3")
   1.29 ("r-openxlsx" . "4.1.3")
   1.29 ("emacs-dockerfile-mode" . "1.2-2.ed73e82")
   1.29 ("r-randomforest" . "4.6-14")
   1.29 ("qps" . "1.10.20")
   1.29 ("r-ksamples" . "1.2-9")
   1.29 ("r-splitstackshape" . "1.4.8")
   1.29 ("r-quasr" . "1.24.2")
   1.29 ("r-rhtslib" . "1.16.3")
   1.29 ("qtnetworkauth" . "5.11.3")
   1.29 ("r-dtw" . "1.21-3")
   1.29 ("r-ggridges" . "0.5.1")
   1.29 ("r-assertive" . "0.3-5")
   1.29 ("r-ldblock" . "1.14.3")
   1.29 ("armagetronad" . "0.2.8.3.4")
   1.29 ("r-tgconfig" . "0.0.0.9000-1.1e02c76")
   1.29 ("r-repr" . "1.0.1")
   1.29 ("emacs-pyvenv" . "1.20")
   1.29 ("r-ouch" . "2.14-1")
   1.28 ("geany" . "1.36")
   1.28 ("emacs-company-lua" . "0.1-2.29f6819")
   1.28 ("r-network" . "1.15")
   1.28 ("gobby" . "0.5.0")
   1.28 ("libhandy" . "0.0.11")
   1.28 ("r-rann" . "2.6.1")
   1.28 ("r-getoptlong" . "0.1.7")
   1.28 ("r-ggsignif" . "0.6.0")
   1.28 ("r-coin" . "1.3-1")
   1.28 ("r-rgraphviz" . "2.28.0")
   1.28 ("r-matrixmodels" . "0.4-1")
   1.28 ("r-tximport" . "1.12.3")
   1.28 ("r-emdbook" . "1.3.11")
   1.28 ("guile-emacs" . "0.0.0-0.41120e0")
   1.28 ("r-cellranger" . "1.1.0")
   1.28 ("r-genomeinfodbdata" . "1.2.0")
   1.28 ("r-snpstats" . "1.34.0")
   1.28 ("r-arules" . "1.6-4")
   1.28 ("r-bigmemory" . "4.5.33")
   1.28 ("compton-conf" . "0.14.1")
   1.28 ("r-pmcmr" . "4.3")
   1.28 ("r-rbgl" . "1.60.0")
   1.28 ("r-assertive-data-us" . "0.0-2")
   1.28 ("emacs-exwm-edit" . "0.0.1-1.961c0f3")
   1.28 ("r-ldheatmap" . "0.99-7")
   1.28 ("r-rnifti" . "0.11.1")
   1.28 ("r-latticeextra" . "0.6-28")
   1.28 ("r-ade4" . "1.7-13")
   1.28 ("r-triebeard" . "0.3.0")
   1.28 ("r-ggrepel" . "0.8.1")
   1.28 ("r-recipes" . "0.1.7")
   1.28 ("r-rvest" . "0.3.5")
   1.28 ("r-rcurl" . "1.95-0.1.2")
   1.28 ("r-tclust" . "1.4-1")
   1.28 ("r-doparallel" . "1.0.15")
   1.28 ("r-absim" . "0.2.6")
   1.28 ("r-adgoftest" . "0.3")
   1.28 ("r-rrcov" . "1.4-7")
   1.28 ("lxqt-notificationd" . "0.14.1")
   1.28 ("r-snow" . "0.4-3")
   1.28 ("r-metap" . "1.1")
   1.28 ("r-e1071" . "1.7-2")
   1.28 ("r-aspi" . "0.2.0")
   1.28 ("java-openjfx-graphics" . "8.202")
   1.28 ("r-xtable" . "1.8-4")
   1.28 ("maven-wagon-tck-http" . "3.1.0")
   1.28 ("xfce4-eyes-plugin" . "4.5.0")
   1.28 ("r-pbkrtest" . "0.4-7")
   1.28 ("java-openjfx-media" . "8.202")
   1.28 ("java-picard" . "1.113")
   1.28 ("r-ranger" . "0.11.2")
   1.27 ("r-plotrix" . "3.7-6")
   1.27 ("r-svmisc" . "1.1.0")
   1.27 ("r-varselrf" . "0.7-8")
   1.27 ("java-biojava-alignment" . "4.2.11")
   1.27 ("r-futile-logger" . "1.4.3")
   1.27 ("qtremoteobjects" . "5.11.3")
   1.27 ("r-laeken" . "0.5.0")
   1.27 ("r-usethis" . "1.5.1")
   1.27 ("r-acd" . "1.5.3")
   1.27 ("r-nor1mix" . "1.3-0")
   1.27 ("r-doby" . "4.6-3")
   1.27 ("postorius" . "1.0.3")
   1.27 ("r-trend" . "1.1.1")
   1.27 ("emacs-dired-hacks" . "0.0.1-2.886befe")
   1.27 ("r-irdisplay" . "0.7.0")
   1.27 ("chez-matchable" . "20160306")
   1.27 ("r-outliers" . "0.14")
   1.27 ("slepc-openmpi" . "3.11.1")
   1.27 ("mate-polkit" . "1.22.0")
   1.27 ("r-beeswarm" . "0.2.3")
   1.27 ("r-testthat" . "2.3.0")
   1.27 ("r-survivalroc" . "1.0.3")
   1.27 ("gnome-dictionary" . "3.26.1")
   1.27 ("r-ifultools" . "2.0-5")
   1.27 ("r-biasedurn" . "1.07")
   1.27 ("r-snpmaxsel" . "1.0-3")
   1.27 ("r-glmmtmb" . "0.2.3")
   1.27 ("r-refmanager" . "1.2.12")
   1.27 ("r-capushe" . "1.1.1")
   1.27 ("r-preprocesscore" . "1.46.0")
   1.27 ("r-locfit" . "1.5-9.1")
   1.27 ("minetest" . "5.1.0")
   1.27 ("r-rio" . "0.5.16")
   1.27 ("r-rapportools" . "1.0")
   1.27 ("r-amap" . "0.8-17")
   1.27 ("r-knitr" . "1.26")
   1.27 ("r-tseries" . "0.10-47")
   1.27 ("r-vegan" . "2.5-6")
   1.27 ("r-circlize" . "0.4.8")
   1.27 ("r-algdesign" . "1.1-7.3")
   1.27 ("r-txtplot" . "1.0-3")
   1.27 ("r-readr" . "1.3.1")
   1.27 ("r-rpostgresql" . "0.6-2")
   1.27 ("r-proc" . "1.15.3")
   1.27 ("r-fastica" . "1.2-2")
   1.27 ("uefitool" . "0.22.4")
   1.27 ("ruby-rails" . "5.2.2.1")
   1.27 ("r-maptools" . "0.9-8")
   1.27 ("librecad" . "2.1.3")
   1.27 ("java-forester" . "0-1.86b07ef")
   1.27 ("r-catools" . "1.17.1.2")
   1.27 ("xfce4-whiskermenu-plugin" . "2.3.4")
   1.27 ("r-parameters" . "0.2.0")
   1.27 ("r-fpc" . "2.2-3")
   1.27 ("r-qap" . "0.1-1")
   1.27 ("kunitconversion" . "5.55.0")
   1.27 ("r-tm" . "0.7-6")
   1.27 ("r-aggregation" . "1.0.1")
   1.27 ("gwl" . "0.1.1")
   1.27 ("r-diffusionmap" . "1.2.0")
   1.27 ("r-glasso" . "1.11")
   1.27 ("r-ncdf4" . "1.17")
   1.27 ("coq-flocq" . "3.1.0")
   1.26 ("r-pwr" . "1.2-2")
   1.26 ("r-bindrcpp" . "0.2.2")
   1.26 ("r-futile-options" . "1.0.1")
   1.26 ("r-rocr" . "1.0-7")
   1.26 ("r-qlcmatrix" . "0.9.7")
   1.26 ("java-eclipse-jetty-xml" . "9.2.22")
   1.26 ("xsensors" . "0.70")
   1.26 ("r-snowfall" . "1.84-6.1")
   1.26 ("r-stringdist" . "0.9.5.5")
   1.26 ("r-moments" . "0.14")
   1.26 ("r-zlibbioc" . "1.30.0")
   1.26 ("r-tidyr" . "1.0.0")
   1.26 ("manaplus" . "1.9.3.23")
   1.26 ("r-gbm" . "2.1.5")
   1.26 ("dropseq-tools" . "1.13")
   1.26 ("r-mnormt" . "1.5-5")
   1.26 ("r-fail" . "1.3")
   1.26 ("r-fdrtool" . "1.2.15")
   1.26 ("r-bootstrap" . "2019.6")
   1.26 ("r-assertive-files" . "0.0-2")
   1.26 ("r-brobdingnag" . "1.2-6")
   1.26 ("r-tfmpvalue" . "0.0.8")
   1.26 ("r-pbapply" . "1.4-2")
   1.26 ("r-performanceanalytics" . "1.5.3")
   1.26 ("r-trimcluster" . "0.1-2.1")
   1.26 ("r-abf2" . "0.7-1")
   1.26 ("r-abcanalysis" . "1.2.1")
   1.26 ("r-domc" . "1.3.6")
   1.26 ("r-untb" . "1.7-4")
   1.26 ("r-mixtools" . "1.1.0")
   1.26 ("r-debugme" . "1.1.0")
   1.26 ("r-statmod" . "1.4.32")
   1.26 ("r-findpython" . "1.0.5")
   1.26 ("sbcl-drakma" . "2.0.4-1.7647c0a")
   1.26 ("r-pander" . "0.6.3")
   1.26 ("emacs-refactor" . "0.4")
   1.26 ("r-quic" . "1.1")
   1.26 ("lxqt-qtplugin" . "0.14.0")
   1.26 ("r-protviz" . "0.4.0")
   1.26 ("r-fields" . "10.0")
   1.26 ("r-lava" . "1.6.6")
   1.26 ("qt" . "4.8.7")
   1.26 ("r-rmysql" . "0.10.17")
   1.26 ("r-runit" . "0.4.32")
   1.26 ("r-limsolve" . "1.5.5.3")
   1.26 ("kpackage" . "5.55.0")
   1.26 ("r-compare" . "0.2-6")
   1.26 ("r-subplex" . "1.5-4")
   1.26 ("r-reinforcelearn" . "0.2.1")
   1.26 ("qscintilla" . "2.10.8")
   1.26 ("tesseract-ocr" . "3.04.01")
   1.26 ("mate-power-manager" . "1.22.0")
   1.26 ("r-abcp2" . "1.2")
   1.25 ("xfce4-cpufreq-plugin" . "1.2.1")
   1.25 ("r-rspectra" . "0.15-0")
   1.25 ("r-fmsb" . "0.6.3")
   1.25 ("r-msir" . "1.3.2")
   1.25 ("r-mvabund" . "4.0.1")
   1.25 ("r-rmeta" . "3.0")
   1.25 ("r-dotcall64" . "1.0-0")
   1.25 ("hypre-openmpi" . "2.15.1")
   1.25 ("r-mpm" . "1.0-22")
   1.25 ("xfce4-embed-plugin" . "1.6.0")
   1.25 ("odamex" . "0.8.0")
   1.25 ("r-base64url" . "1.4")
   1.25 ("r-rarpack" . "0.11-0")
   1.25 ("kqtquickcharts" . "19.08.1")
   1.25 ("r-mosaiccore" . "0.6.0")
   1.25 ("r-downloader" . "0.4")
   1.25 ("xfce4-diskperf-plugin" . "2.6.2")
   1.25 ("libsmpeg" . "0.4.5-399")
   1.25 ("r-signal" . "0.7-6")
   1.25 ("r-dorng" . "1.7.1")
   1.25 ("r-wavetiling" . "1.26.0")
   1.25 ("r-inline" . "0.3.15")
   1.25 ("r-calibrate" . "1.7.5")
   1.25 ("r-formatr" . "1.7")
   1.25 ("r-cvst" . "0.2-2")
   1.25 ("r-permute" . "0.9-5")
   1.25 ("r-rsvd" . "1.0.2")
   1.25 ("gnujump" . "1.0.8")
   1.25 ("r-xyz" . "0.2")
   1.25 ("r-optparse" . "1.6.4")
   1.25 ("r-ellipse" . "0.4.1")
   1.25 ("pari-gp" . "2.11.2")
   1.25 ("ledger-agent" . "0.9.0")
   1.25 ("r-commonmark" . "1.7")
   1.25 ("r-psych" . "1.8.12")
   1.25 ("kwidgetsaddons" . "5.55.0")
   1.25 ("r-rhpcblasctl" . "0.18-205")
   1.25 ("java-biojava-phylo" . "4.2.11")
   1.25 ("r-jomo" . "2.6-10")
   1.25 ("r-catdap" . "1.3.4")
   1.25 ("r-fftwtools" . "0.9-8")
   1.25 ("r-enrichr" . "2.1")
   1.25 ("r-abnormality" . "0.1.0")
   1.25 ("kpty" . "5.55.0")
   1.25 ("r-multitaper" . "1.0-14")
   1.25 ("r-itertools" . "0.1-3")
   1.25 ("r-r-utils" . "2.9.0")
   1.25 ("java-w3c-sac" . "1.3")
   1.25 ("r-argparser" . "0.4")
   1.25 ("r-reticulate" . "1.13")
   1.25 ("liblxqt" . "0.14.1")
   1.25 ("r-tdthap" . "1.1-11")
   1.25 ("r-hdf5r" . "1.3.0")
   1.25 ("sbcl-queues.priority-cqueue" . "0.0.0-1.47d4da6")
   1.25 ("r-pamr" . "1.56.1")
   1.25 ("r-assertive-data-uk" . "0.0-2")
   1.25 ("r-aca" . "1.1")
   1.25 ("r-parmigene" . "1.0.2")
   1.25 ("r-lambda-r" . "1.2.4")
   1.25 ("solid" . "5.55.0")
   1.25 ("r-rsofia" . "1.1")
   1.25 ("r-abe" . "3.0.1")
   1.25 ("xpad" . "5.1.0")
   1.25 ("r-assertive-datetimes" . "0.0-2")
   1.25 ("r-beanplot" . "1.2")
   1.25 ("python-petsc4py" . "3.10.1")
   1.25 ("r-spatialextremes" . "2.0-7.2")
   1.25 ("r-energy" . "1.7-6")
   1.25 ("libxklavier" . "5.4")
   1.25 ("r-bh" . "1.69.0-1")
   1.25 ("r-ape" . "5.3")
   1.25 ("r-cairo" . "1.5-10")
   1.24 ("r-sushi" . "1.22.0")
   1.24 ("r-gridbase" . "0.4-7")
   1.24 ("xfce4-smartbookmark-plugin" . "0.5.1")
   1.24 ("r-colorout" . "1.2-2")
   1.24 ("xfce4-battery-plugin" . "1.1.3")
   1.24 ("r-pls" . "2.7-2")
   1.24 ("r-abcoptim" . "0.15.0")
   1.24 ("r-later" . "1.0.0")
   1.24 ("r-ttr" . "0.23-5")
   1.24 ("r-promises" . "1.1.0")
   1.24 ("emacs-deferred" . "0.5.1")
   1.24 ("r-nbclust" . "3.0")
   1.24 ("java-la4j" . "0.6.0")
   1.24 ("r-abundant" . "1.1")
   1.24 ("r-sdmtools" . "1.1-221.1")
   1.24 ("r-lda" . "1.4.2")
   1.24 ("r-nnet" . "7.3-12")
   1.24 ("r-learnbayes" . "2.15.1")
   1.24 ("r-pixmap" . "0.4-11")
   1.24 ("r-idr" . "1.2")
   1.24 ("python2-cypari2" . "2.1.1")
   1.24 ("r-multcomp" . "1.4-10")
   1.24 ("r-spams" . "2.6-2017-03-22")
   1.24 ("r-matrix-utils" . "0.9.7")
   1.24 ("qtmultimedia" . "5.11.3")
   1.24 ("r-future-apply" . "1.3.0")
   1.24 ("r-performance" . "0.4.0")
   1.24 ("r-polynom" . "1.4-0")
   1.24 ("r-assertive-code" . "0.0-3")
   1.24 ("r-diptest" . "0.75-7")
   1.24 ("r-lars" . "1.2")
   1.24 ("r-np" . "0.60-9")
   1.24 ("rmath-standalone" . "3.6.1")
   1.24 ("java-jline" . "2.14.5")
   1.24 ("r-softimpute" . "1.4")
   1.24 ("r-abps" . "0.3")
   1.24 ("java-w3c-svg" . "20110816")
   1.24 ("r-rbenchmark" . "1.0.0")
   1.24 ("r-gsl" . "2.1-6")
   1.24 ("r-snakecase" . "0.11.0")
   1.24 ("r-proxy" . "0.4-23")
   1.24 ("r-hapassoc" . "1.2-8")
   1.24 ("r-htmltable" . "1.13.2")
   1.24 ("r-nonnest2" . "0.5-2")
   1.24 ("r-dimred" . "0.2.3")
   1.24 ("r-coda" . "0.19-3")
   1.24 ("r-geosphere" . "1.5-10")
   1.24 ("r-tweedie" . "2.3.2")
   1.24 ("r-mapplots" . "1.5.1")
   1.23 ("grafx2" . "2.4")
   1.23 ("asymptote" . "2.59")
   1.23 ("r-rcpproll" . "0.3.0")
   1.23 ("r-rcmdcheck" . "1.3.3")
   1.23 ("r-assertive-sets" . "0.0-3")
   1.23 ("r-flashclust" . "1.01-2")
   1.23 ("r-abc-data" . "1.0")
   1.23 ("python-slepc4py" . "3.10.0")
   1.23 ("r-longitudinal" . "1.1.12")
   1.23 ("r-rook" . "1.1-1")
   1.23 ("libfm-qt" . "0.14.1")
   1.23 ("hypre" . "2.15.1")
   1.23 ("r-clusteval" . "0.1")
   1.23 ("r-foreach" . "1.4.7")
   1.23 ("python-cairocffi" . "0.9.0")
   1.23 ("r-drr" . "0.0.3")
   1.23 ("java-commons-dbcp" . "2.6.0")
   1.23 ("r-tiff" . "0.1-5")
   1.23 ("r-mclust" . "5.4.5")
   1.23 ("r-assertable" . "0.2.7")
   1.23 ("extremetuxracer" . "0.7.5")
   1.23 ("python2-mwclient" . "0.8.4")
   1.23 ("r-rmtstat" . "0.3")
   1.23 ("r-rmpfr" . "0.7-2")
   1.23 ("js-filesaver" . "1.3.8")
   1.23 ("r-ipred" . "0.9-9")
   1.23 ("r-tgstat" . "1.0.2-1.4f8e60c")
   1.23 ("r-covr" . "3.3.2")
   1.23 ("r-lavaan" . "0.6-5")
   1.23 ("fastcap" . "2.0-18Sep92")
   1.23 ("xfce4-panel" . "4.14.0")
   1.23 ("r-chron" . "2.3-54")
   1.23 ("r-tidyselect" . "0.2.5")
   1.23 ("r-gtools" . "3.8.1")
   1.23 ("r-als" . "0.0.6")
   1.23 ("r-renv" . "0.8.3")
   1.23 ("r-orddom" . "3.1")
   1.23 ("r-deoptimr" . "1.0-8")
   1.23 ("r-sampling" . "2.8")
   1.23 ("r-physicalactivity" . "0.2-2")
   1.23 ("emacs-f" . "0.20.0")
   1.23 ("r-assertive-types" . "0.0-3")
   1.23 ("r-cobs" . "1.3-3")
   1.23 ("r-getopt" . "1.20.3")
   1.23 ("freedroidrpg" . "0.16.1")
   1.23 ("r-tibble" . "2.1.3")
   1.23 ("r-pkgmaker" . "0.27")
   1.23 ("r-xfun" . "0.11")
   1.23 ("r-scrime" . "1.3.5")
   1.23 ("r-clue" . "0.3-57")
   1.23 ("r-utf8" . "1.1.4")
   1.23 ("r-sourcetools" . "0.1.7")
   1.23 ("libsysstat" . "0.4.2")
   1.23 ("deluge" . "1.3.15")
   1.23 ("r-flare" . "1.6.0.2")
   1.23 ("emacs-request" . "0.3.1")
   1.23 ("r-base64enc" . "0.1-3")
   1.23 ("r-ibdreg" . "0.2.5")
   1.23 ("r-prabclus" . "2.3-1")
   1.23 ("r-lsei" . "1.2-0")
   1.23 ("r-cgdsr" . "1.3.0")
   1.23 ("r-colourpicker" . "1.0")
   1.23 ("flann" . "1.8.4")
   1.23 ("java-jlargearrays" . "1.6")
   1.23 ("r-rappdirs" . "0.3.1")
   1.23 ("r-rlang" . "0.4.1")
   1.23 ("r-askpass" . "1.1")
   1.23 ("java-httpcomponents-httpmime" . "4.5.3")
   1.23 ("r-vioplot" . "0.3.2")
   1.23 ("clutter-gtk" . "1.8.4")
   1.23 ("r-dichromat" . "2.0-0")
   1.23 ("r-abodoutlier" . "0.1")
   1.23 ("java-eclipse-jetty-server" . "9.2.22")
   1.23 ("leptonica" . "1.74.4")
   1.23 ("r-tsne" . "0.1-3")
   1.23 ("r-xml" . "3.98-1.20")
   1.23 ("r-digest" . "0.6.22")
   1.23 ("r-mapproj" . "1.2.6")
   1.23 ("r-waveslim" . "1.7.5.1")
   1.23 ("r-wgcna" . "1.68")
   1.23 ("r-wmtsa" . "2.0-3")
   1.23 ("r-r6" . "2.4.1")
   1.23 ("r-mhsmm" . "0.4.16")
   1.23 ("r-gamlss-dist" . "5.1-5")
   1.23 ("r-fastmatch" . "1.1-0")
   1.22 ("r-pillar" . "1.4.2")
   1.22 ("r-codetools" . "0.2-16")
   1.22 ("js-html5shiv" . "3.7.3")
   1.22 ("r-robustbase" . "0.93-5")
   1.22 ("r-pbdzmq" . "0.3-3")
   1.22 ("r-smoother" . "1.1")
   1.22 ("axoloti-patcher" . "1.0.12")
   1.22 ("java-cisd-jhdf5" . "14.12.6-39162")
   1.22 ("r-nloptr" . "1.2.1")
   1.22 ("r-txdb-mmusculus-ucsc-mm9-knowngene" . "3.2.2")
   1.22 ("java-commons-jcs" . "2.2.1")
   1.22 ("java-forester" . "1.005")
   1.22 ("r-whisker" . "0.4")
   1.22 ("r-sfsmisc" . "1.1-4")
   1.22 ("r-pastecs" . "1.3.21")
   1.22 ("r-blob" . "1.2.0")
   1.22 ("r-circular" . "0.4-93")
   1.22 ("python2-django-jsonfield" . "1.0.3")
   1.22 ("gst-plugins-ugly" . "1.16.0")
   1.22 ("r-prediction" . "0.3.14")
   1.22 ("r-organismdbi" . "1.26.0")
   1.22 ("r-vbsr" . "0.0.5")
   1.22 ("r-foreign" . "0.8-72")
   1.22 ("r-ffbase" . "0.12.7")
   1.22 ("r-httr" . "1.4.1")
   1.22 ("r-th-data" . "1.0-10")
   1.22 ("java-snappy" . "1.0.3-rc3")
   1.22 ("libqmatrixclient" . "0.5.2")
   1.22 ("r-xml2" . "1.2.2")
   1.22 ("r-bigmemory-sri" . "0.1.3")
   1.22 ("r-genenet" . "1.2.13")
   1.22 ("r-sendmailr" . "1.2-1")
   1.22 ("emacs-xelb" . "0.18")
   1.22 ("r-rsqlite" . "2.1.2")
   1.22 ("sbcl-mgl-pax" . "0.0.0-1.8184484")
   1.22 ("r-xopen" . "1.0.0")
   1.22 ("java-eclipse-jetty-servlet" . "9.4.6")
   1.22 ("xfce4-session" . "4.14.0")
   1.22 ("r-selectr" . "0.4-1")
   1.22 ("r-acceptancesampling" . "1.0-6")
   1.22 ("r-corrplot" . "0.84")
   1.22 ("sbcl-burgled-batteries3" . "0.0.0-1.9c0f666")
   1.22 ("r-zim" . "1.1.0")
   1.22 ("libmygpo-qt" . "1.1.0")
   1.22 ("r-slam" . "0.1-46")
   1.22 ("r-scales" . "1.0.0")
   1.22 ("r-rootsolve" . "1.8.1")
   1.22 ("r-libcoin" . "1.0-5")
   1.22 ("r-vipor" . "0.4.5")
   1.22 ("r-hwde" . "0.67")
   1.22 ("java-openjfx-base" . "8.202")
   1.22 ("r-yaml" . "2.2.0")
   1.22 ("r-powerplus" . "3.1")
   1.22 ("r-phontools" . "0.2-2.1")
   1.22 ("clojure-algo-monads" . "0.1.6")
   1.22 ("r-fansi" . "0.4.0")
   1.22 ("r-overlap" . "0.3.2")
   1.22 ("r-hwriter" . "1.3.2")
   1.22 ("r-assertthat" . "0.2.1")
   1.22 ("r-rann-l1" . "2.5.2")
   1.22 ("r-rcppannoy" . "0.0.14")
   1.22 ("r-reshape2" . "1.4.3")
   1.22 ("r-squarem" . "2017.10-1")
   1.22 ("java-fasterxml-jackson-modules-base-mrbean" . "2.9.4")
   1.22 ("r-compquadform" . "1.4.3")
   1.22 ("r-preseqr" . "4.0.0")
   1.21 ("hoogle" . "5.0.17.3")
   1.21 ("r-rjags" . "4-10")
   1.21 ("r-ff" . "2.2-14")
   1.21 ("r-withr" . "2.1.2")
   1.21 ("r-complexplus" . "2.1")
   1.21 ("r-ordinal" . "2019.4-25")
   1.21 ("r-desc" . "1.2.0")
   1.21 ("python2-django-mailman3" . "1.1.0")
   1.21 ("r-rprojroot" . "1.3-2")
   1.21 ("r-speedglm" . "0.3-2")
   1.21 ("kguiaddons" . "5.55.0")
   1.21 ("r-infotheo" . "1.2.0")
   1.21 ("java-cisd-args4j" . "9.11.2-39162")
   1.21 ("python2-plotly" . "2.4.1")
   1.21 ("r-sn" . "1.5-4")
   1.21 ("r-fs" . "1.3.1")
   1.21 ("r-genetics" . "1.3.8.1.2")
   1.21 ("schismtracker" . "20190614")
   1.21 ("hpcguix-web" . "0.0.1-4.f39c90b")
   1.21 ("guix" . "1.0.1-10.41b4b71")
   1.21 ("r-checkmate" . "1.9.4")
   1.21 ("qterminal" . "0.14.1")
   1.21 ("r-insight" . "0.6.0")
   1.21 ("r-fractal" . "2.0-4")
   1.21 ("r-r-cache" . "0.13.0")
   1.21 ("java-jbzip2" . "0.9.1")
   1.21 ("r-gridgraphics" . "0.4-1")
   1.21 ("r-distillery" . "1.0-6")
   1.21 ("r-minpack-lm" . "1.2-1")
   1.21 ("r-rjson" . "0.2.20")
   1.21 ("r-segmented" . "1.0-0")
   1.21 ("sbcl-py4cl" . "0.0.0-1.4c8a2b0")
   1.21 ("java-eclipse-jetty-security" . "9.2.22")
   1.21 ("r-colorspace" . "1.4-1")
   1.21 ("r-assertive-reflection" . "0.0-4")
   1.21 ("r-misc3d" . "0.8-4")
   1.21 ("r-fnn" . "1.1.3")
   1.21 ("r-pkgbuild" . "1.0.6")
   1.21 ("sbcl-quri" . "0.1.0-1.76b7510")
   1.21 ("libchamplain" . "0.12.16")
   1.21 ("java-biojava-core" . "4.0.0")
   1.21 ("r-rstudioapi" . "0.10")
   1.21 ("r-blockfest" . "1.6")
   1.21 ("r-iterators" . "1.0.12")
   1.21 ("r-extrafont" . "0.17")
   1.21 ("r-bit" . "1.1-14")
   1.21 ("r-httpuv" . "1.5.2")
   1.21 ("bluez" . "5.50")
   1.21 ("r-praise" . "1.0.0")
   1.21 ("r-timedate" . "3043.102")
   1.21 ("r-units" . "0.6-5")
   1.21 ("libunique" . "3.0.2")
   1.21 ("r-mgcv" . "1.8-31")
   1.21 ("r-rda" . "1.0.2-2.1")
   1.21 ("sbcl-queues.simple-queue" . "0.0.0-1.47d4da6")
   1.21 ("r-dbi" . "1.0.0")
   1.21 ("r-grimport2" . "0.1-5")
   1.21 ("r-sitmo" . "2.0.1")
   1.21 ("java-iq80-snappy" . "0.4")
   1.21 ("r-rgooglemaps" . "1.4.4")
   1.20 ("r-sparsem" . "1.77")
   1.20 ("r-crayon" . "1.3.4")
   1.20 ("r-prodlim" . "2019.10.13")
   1.20 ("java-kafka-clients" . "1.0.0")
   1.20 ("r-lpsolve" . "5.6.13.3")
   1.20 ("r-acclma" . "1.0")
   1.20 ("r-prroc" . "1.3.1")
   1.20 ("eclib" . "20190909")
   1.20 ("r-vctrs" . "0.2.0")
   1.20 ("r-nortest" . "1.0-4")
   1.20 ("network-manager" . "1.14.4")
   1.20 ("r-spdata" . "0.3.2")
   1.20 ("sonnet" . "5.55.0")
   1.20 ("r-scatterplot3d" . "0.3-41")
   1.20 ("r-rcpp" . "1.0.3")
   1.20 ("qtwebchannel" . "5.11.3")
   1.20 ("r-microbenchmark" . "1.4-7")
   1.20 ("r-pkgload" . "1.0.2")
   1.20 ("r-progress" . "1.2.2")
   1.20 ("duplicity" . "0.7.19")
   1.20 ("libdbusmenu-qt" . "0.9.3+16.04.20160218-0ubuntu1")
   1.20 ("r-biocmanager" . "1.30.9")
   1.20 ("js-requirejs" . "2.3.6")
   1.20 ("aris" . "2.2")
   1.20 ("r-cluster" . "2.1.0")
   1.20 ("r-gmp" . "0.5-13.5")
   1.20 ("r-reportr" . "1.3.0")
   1.20 ("r-gplots" . "3.0.1.1")
   1.20 ("java-eclipse-jetty-server" . "9.4.6")
   1.20 ("java-jaxen" . "1.1.6")
   1.20 ("r-glue" . "1.3.1")
   1.20 ("r-riverplot" . "0.6")
   1.20 ("python2-apache-libcloud" . "2.4.0")
   1.20 ("sbcl-clx" . "0.7.5")
   1.20 ("threadweaver" . "5.55.0")
   1.20 ("python-oslo.log" . "3.36.0")
   1.20 ("sbcl-bst" . "1.1-1.34f9c7e")
   1.20 ("java-jtransforms" . "3.1")
   1.20 ("r-markdown" . "1.1")
   1.20 ("r-dqrng" . "0.2.1")
   1.20 ("keepkey-agent" . "0.9.0")
   1.20 ("r-rversions" . "2.0.0")
   1.20 ("r-magrittr" . "1.5")
   1.20 ("r-extrafontdb" . "1.0")
   1.20 ("r-svgui" . "1.0.0")
   1.20 ("r-munsell" . "0.5.0")
   1.20 ("java-commons-exec" . "1.1")
   1.20 ("r-r-rsp" . "0.43.2")
   1.20 ("r-listenv" . "0.7.0")
   1.20 ("r-fitdistrplus" . "1.0-14")
   1.19 ("java-apache-xml-commons-resolver" . "1.2")
   1.19 ("r-tsp" . "1.1-7")
   1.19 ("java-httpcomponents-httpcore-ab" . "4.4.6")
   1.19 ("r-leiden" . "0.3.1")
   1.19 ("dosbox" . "0.74-3")
   1.19 ("r-rsolnp" . "1.16")
   1.19 ("kwayland" . "5.55.0")
   1.19 ("r-bindr" . "0.1.1")
   1.19 ("r-mosaicdata" . "0.17.0")
   1.19 ("qtconnectivity" . "5.11.3")
   1.19 ("java-jsoup" . "1.10.3")
   1.19 ("garcon" . "0.6.4")
   1.19 ("r-npsurv" . "0.4-0")
   1.19 ("ncbi-vdb" . "2.9.6")
   1.19 ("r-generics" . "0.0.2")
   1.19 ("r-zeallot" . "0.1.0")
   1.19 ("r-rcppparallel" . "4.4.4")
   1.19 ("clojure-algo-generic" . "0.1.3")
   1.19 ("r-assertive-base" . "0.0-7")
   1.19 ("r-gower" . "0.2.1")
   1.19 ("ruby-solargraph" . "0.36.0")
   1.19 ("java-eclipse-sisu-inject" . "0.3.3")
   1.19 ("r-globals" . "0.12.4")
   1.19 ("r-lazyeval" . "0.2.2")
   1.19 ("java-jdistlib" . "0.4.5")
   1.19 ("sbcl-cl-libsvm-format" . "0.1.0-0.3300f84")
   1.19 ("r-r-methodss3" . "1.7.1")
   1.19 ("r-systemfonts" . "0.1.1")
   1.19 ("r-registry" . "0.5-1")
   1.19 ("r-data-table" . "1.12.6")
   1.19 ("r-cmprsk" . "2.2-9")
   1.19 ("r-assertive-numbers" . "0.0-2")
   1.19 ("r-tmb" . "1.7.15")
   1.19 ("r-sessioninfo" . "1.1.1")
   1.19 ("r-rcolorbrewer" . "1.1-2")
   1.19 ("itpp" . "4.3.1")
   1.19 ("python2-oslo.utils" . "3.36.2")
   1.19 ("r-sparsesvd" . "0.2")
   1.19 ("java-commons-daemon" . "1.0.15")
   1.19 ("r-officer" . "0.3.6")
   1.19 ("r-partitions" . "1.9-22")
   1.19 ("r-remotes" . "2.1.0")
   1.19 ("r-urca" . "1.3-0")
   1.19 ("clutter" . "1.26.2")
   1.19 ("file-roller" . "3.30.1")
   1.19 ("r-cli" . "1.1.0")
   1.19 ("java-eclipse-jdt-compiler-apt" . "1.3.400")
   1.19 ("r-venndiagram" . "1.6.20")
   1.19 ("r-png" . "0.1-7")
   1.19 ("r-shades" . "1.4.0")
   1.19 ("java-stringtemplate" . "3.2.1")
   1.19 ("sbcl-find-port" . "0.1")
   1.19 ("r-brew" . "1.0-6")
   1.19 ("r-curl" . "4.2")
   1.19 ("java-eclipse-jetty-http" . "9.4.6")
   1.18 ("r-rcppeigen" . "0.3.3.5.0")
   1.18 ("java-cisd-base" . "14.12.0-38938")
   1.18 ("drumstick" . "1.1.3")
   1.18 ("qtbase" . "5.11.3")
   1.18 ("java-openchart2" . "1.4.3")
   1.18 ("java-ops4j-pax-exam-core-spi" . "4.11.0")
   1.18 ("r-ps" . "1.3.0")
   1.18 ("mit-scheme" . "10.1.3")
   1.18 ("r-bitops" . "1.0-6")
   1.18 ("r-tensora" . "0.36.1")
   1.18 ("r-matrix" . "1.2-17")
   1.18 ("r-backports" . "1.1.5")
   1.18 ("java-jansi" . "1.16")
   1.18 ("java-xsdlib" . "2013.2")
   1.18 ("r-sandwich" . "2.5-1")
   1.18 ("r-shape" . "1.4.4")
   1.18 ("r-leaps" . "3.0")
   1.18 ("r-nleqslv" . "3.3.2")
   1.18 ("js-datatables" . "1.10.19")
   1.18 ("r-tinytex" . "0.17")
   1.18 ("java-kxml2" . "2.4.2")
   1.18 ("maven-model" . "3.6.1")
   1.18 ("r-dose" . "3.10.2")
   1.18 ("python-cysignals" . "1.9.0")
   1.18 ("java-openjfx-build" . "8.202")
   1.18 ("java-jeromq" . "0.4.3")
   1.18 ("r-abind" . "1.4-5")
   1.18 ("java-eclipse-jetty-jmx" . "9.2.22")
   1.18 ("poetry" . "0.12.17")
   1.18 ("public-inbox" . "1.0.0-0.3cf6651")
   1.18 ("r-pan" . "1.6")
   1.18 ("emacs-mit-scheme-doc" . "20140203")
   1.18 ("xfce4-clipman-plugin" . "1.4.3")
   1.18 ("r-desolve" . "1.24")
   1.18 ("r-quantreg" . "5.52")
   1.18 ("java-geronimo-xbean-asm-util" . "4.5")
   1.18 ("r-future" . "1.15.0")
   1.18 ("r-spam" . "2.4-0")
   1.18 ("r-gclus" . "1.3.2")
   1.18 ("java-jline" . "1.0")
   1.18 ("r-assertive-strings" . "0.0-3")
   1.18 ("conky" . "1.11.5")
   1.18 ("java-logback-core" . "1.2.3")
   1.18 ("java-eclipse-jetty-util" . "9.2.22")
   1.18 ("r-flexmix" . "2.3-15")
   1.18 ("r-lifecycle" . "0.1.0")
   1.18 ("clojure-instaparse" . "1.4.9")
   1.18 ("java-eclipse-jetty-jmx" . "9.4.6")
   1.18 ("r-deriv" . "3.9.0")
   1.18 ("python2-testresources" . "2.0.1")
   1.18 ("abcl" . "1.5.0")
   1.18 ("r-clisymbols" . "1.2.0")
   1.18 ("r-classint" . "0.4-2")
   1.17 ("r-truncnorm" . "1.0-8")
   1.17 ("r-bbmle" . "1.0.20")
   1.17 ("java-jgit" . "4.2.0.201601211800-r")
   1.17 ("r-seqinr" . "3.6-1")
   1.17 ("r-magic" . "1.5-9")
   1.17 ("ant-junit" . "1.10.1")
   1.17 ("r-ore" . "1.6.3")
   1.17 ("r-callr" . "3.3.2")
   1.17 ("r-sapa" . "2.0-2")
   1.17 ("java-w3c-svg" . "20010904")
   1.17 ("r-bsgenome-dmelanogaster-ucsc-dm3" . "1.4.0")
   1.17 ("r-assertive-matrices" . "0.0-2")
   1.17 ("r-clipr" . "0.7.0")
   1.17 ("r-plogr" . "0.2.0")
   1.17 ("r-git2r" . "0.26.1")
   1.17 ("r-kernsmooth" . "2.23-16")
   1.17 ("hisat2" . "2.0.5")
   1.17 ("java-powermock-core" . "1.7.3")
   1.17 ("r-processx" . "3.4.1")
   1.17 ("java-cdi-api" . "2.0")
   1.17 ("vte" . "0.56.3")
   1.17 ("desmume" . "0.9.11")
   1.17 ("r-cubature" . "2.0.3")
   1.17 ("r-gdata" . "2.18.0")
   1.17 ("python2-falcon-cors" . "1.1.7")
   1.17 ("r-extradistr" . "1.8.11")
   1.17 ("xfce4-terminal" . "0.8.8")
   1.17 ("lm-sensors" . "3.6.0")
   1.17 ("libmatemixer" . "1.22.0")
   1.17 ("kitemviews" . "5.55.0")
   1.17 ("java-commons-cli" . "1.2")
   1.17 ("r-docopt" . "0.6.1")
   1.17 ("java-eclipse-jetty-http" . "9.2.22")
   1.17 ("sbcl-cxml+xml" . "0.0.0-1.00b22bf")
   1.17 ("r-reshape" . "0.8.8")
   1.17 ("r-quadprog" . "1.5-7")
   1.17 ("r-expm" . "0.999-4")
   1.17 ("websockify" . "0.8.0")
   1.17 ("r-assertive-models" . "0.0-2")
   1.17 ("r-evaluate" . "0.14")
   1.17 ("r-rdpack" . "0.11-0")
   1.17 ("rmlint" . "2.9.0")
   1.17 ("java-picard" . "2.3.0")
   1.17 ("po4a" . "0.57")
   1.17 ("sbcl-cl-cookie" . "0.9.10-1.cea55ae")
   1.17 ("sbcl-cffi-libffi" . "0.19.0")
   1.17 ("r-grr" . "0.9.5")
   1.17 ("jekyll" . "3.8.6")
   1.17 ("r-gtable" . "0.3.0")
   1.17 ("r-survival" . "3.1-7")
   1.17 ("java-jnacl" . "0.1.0-2.094e819")
   1.17 ("java-guice-servlet" . "4.1")
   1.17 ("r-biostrings" . "2.52.0")
   1.17 ("r-highr" . "0.8")
   1.17 ("java-eclipse-jetty-servlet" . "9.2.22")
   1.17 ("java-eclipse-sisu-plexus" . "0.3.4")
   1.17 ("r-bibtex" . "0.4.2")
   1.17 ("java-jansi-native" . "1.7")
   1.17 ("r-rvcheck" . "0.1.6")
   1.17 ("r-copywriter" . "2.16.0")
   1.16 ("python2-git-review" . "1.28.0")
   1.16 ("r-bbmisc" . "1.11")
   1.16 ("r-pscl" . "1.5.2")
   1.16 ("java-jmh" . "1.17.5")
   1.16 ("r-formula" . "1.2-3")
   1.16 ("r-maldiquant" . "1.19.3")
   1.16 ("python2-keystoneclient" . "1.8.1")
   1.16 ("r-viridislite" . "0.3.0")
   1.16 ("r-gsubfn" . "0.7")
   1.16 ("r-spatial" . "7.3-11")
   1.16 ("r-pkgconfig" . "2.0.3")
   1.16 ("r-stringr" . "1.4.0")
   1.16 ("r-webshot" . "0.5.1")
   1.16 ("r-numderiv" . "2016.8-1.1")
   1.16 ("java-commons-pool" . "2.6.2")
   1.16 ("sbcl-cl-online-learning" . "0.5-0.fc7a34f")
   1.16 ("shogun" . "6.1.3")
   1.16 ("r-boot" . "1.3-23")
   1.16 ("r-suppdists" . "1.1-9.4")
   1.16 ("r-writexl" . "1.1")
   1.16 ("java-usb4java" . "1.2.0")
   1.16 ("sbcl-parse-declarations" . "1.0.0")
   1.16 ("java-apache-ivy" . "2.4.0")
   1.16 ("r-gbrd" . "0.4-11")
   1.16 ("java-commons-vfs" . "2.2")
   1.16 ("r-ensdb-hsapiens-v75" . "2.99.0")
   1.16 ("java-geronimo-xbean-finder" . "4.5")
   1.16 ("r-assertive-properties" . "0.0-4")
   1.16 ("java-eclipse-jetty-io" . "9.4.6")
   1.16 ("java-commons-compress" . "1.13")
   1.16 ("r-igraph" . "1.2.4.1")
   1.16 ("r-jsonlite" . "1.6")
   1.16 ("texlive-latex-needspace" . "49435")
   1.16 ("sbcl-cl-reexport" . "0.1-1.312f366")
   1.16 ("texlive-latex-preview" . "49435")
   1.16 ("enjarify" . "1.0.3")
   1.16 ("r-mvtnorm" . "1.0-11")
   1.16 ("java-commons-csv" . "1.4")
   1.16 ("python-plotly" . "2.4.1")
   1.16 ("java-jboss-transaction-api-spec" . "1.2+1.1.1")
   1.16 ("java-powermock-api-support" . "1.7.3")
   1.16 ("java-stringtemplate" . "4.0.8")
   1.16 ("r-vcd" . "1.4-4")
   1.16 ("r-globaloptions" . "0.1.1")
   1.16 ("js-respond" . "1.4.2")
   1.16 ("java-eclipse-jetty-util" . "9.4.6")
   1.16 ("r-kernlab" . "0.9-29")
   1.16 ("r-memoise" . "1.1.0")
   1.16 ("java-httpcomponents-httpclient" . "4.5.3")
   1.16 ("r-uuid" . "0.1-2")
   1.16 ("r-edger" . "3.26.8")
   1.16 ("gjs" . "1.56.2")
   1.16 ("ghc-yesod" . "1.6.0")
   1.16 ("openjdk" . "12.33")
   1.16 ("r-abc" . "2.1")
   1.15 ("sbcl-unix-opts" . "0.1.7")
   1.15 ("r-sets" . "1.0-18")
   1.15 ("sbcl-trivial-mimes" . "1.1.0-1.303f8ac")
   1.15 ("sbcl-fprog" . "1.0.0-1.7016d1a")
   1.15 ("taxtastic" . "0.8.5")
   1.15 ("sbcl-ningle" . "0.3.0-1.50bd4f0")
   1.15 ("python-mwclient" . "0.8.4")
   1.15 ("r-iso" . "0.0-18")
   1.15 ("r-nlme" . "3.1-142")
   1.15 ("sbcl-myway" . "0.1.0-1.2862300")
   1.15 ("java-eclipse-team-core" . "3.8.0")
   1.15 ("java-powermock-modules-junit4" . "1.7.3")
   1.15 ("r-rex" . "1.1.2")
   1.15 ("java-commons-jxpath" . "1.3")
   1.15 ("antlr3" . "3.5.2")
   1.15 ("tuxguitar" . "1.5.2")
   1.15 ("java-fasterxml-jackson-modules-base-jaxb" . "2.9.4")
   1.15 ("r-deldir" . "0.1-23")
   1.15 ("allegro" . "5.2.5.0")
   1.15 ("java-joda-convert" . "1.9.2")
   1.15 ("ruby-rubocop" . "0.64.0")
   1.15 ("java-powermock-modules-junit4-common" . "1.7.3")
   1.15 ("r-nnls" . "1.4")
   1.15 ("r-ica" . "1.0-2")
   1.15 ("texlive-luatex-luaotfload" . "2.8-fix-2")
   1.15 ("java-httpcomponents-httpcore" . "4.4.6")
   1.15 ("texlive-latex-environ" . "49435")
   1.15 ("r-corpcor" . "1.6.9")
   1.15 ("sbcl-cffi-toolchain" . "0.19.0")
   1.15 ("java-jsch-agentproxy-usocket-jna" . "0.0.8")
   1.15 ("java-jblas" . "1.2.4")
   1.14 ("java-lmax-disruptor" . "3.3.7")
   1.14 ("java-plexus-utils" . "3.2.0")
   1.14 ("python-oslo.config" . "5.2.0")
   1.14 ("r-ac3net" . "1.2.2")
   1.14 ("java-plexus-interpolation" . "1.23")
   1.14 ("java-jmock-junit4" . "2.8.2")
   1.14 ("elm-compiler" . "0.19.0")
   1.14 ("maven-builder-support" . "3.6.1")
   1.14 ("java-commons-beanutils" . "1.9.3")
   1.14 ("java-xerces" . "2.11.0")
   1.14 ("python-keras-preprocessing" . "1.1.0")
   1.14 ("java-jsch-agentproxy-connector-factory" . "0.0.8")
   1.14 ("sbcl-s-xml-rpc" . "7")
   1.14 ("java-fest-util" . "1.2.5")
   1.14 ("r-lmtest" . "0.9-37")
   1.14 ("java-ops4j-pax-exam-core-junit" . "4.11.0")
   1.14 ("java-ops4j-base-spi" . "1.5.0")
   1.14 ("java-fasterxml-jackson-dataformat-yaml" . "2.9.4")
   1.14 ("r-polspline" . "1.1.17")
   1.14 ("python-apache-libcloud" . "2.4.0")
   1.14 ("java-assertj" . "3.8.0")
   1.14 ("r-abd" . "0.2-8")
   1.14 ("petsc-openmpi" . "3.11.2")
   1.14 ("r-rcppgsl" . "0.3.7")
   1.14 ("maven-resolver-transport-wagon" . "1.3.1")
   1.14 ("bootstrap-tarballs" . "0")
   1.14 ("java-osgi-service-jdbc" . "1.0.0")
   1.14 ("java-jmock" . "2.8.2")
   1.14 ("java-powermock-api-easymock" . "1.7.3")
   1.14 ("sbcl-cl-hooks" . "0.2.1-1.5b63808")
   1.14 ("sbcl-xsubseq" . "0.0.1-1.5ce430b")
   1.14 ("java-jmock-legacy" . "2.8.2")
   1.14 ("python-oslo.utils" . "3.36.2")
   1.14 ("arriba" . "1.0.1")
   1.14 ("java-plexus-cipher" . "1.7")
   1.14 ("texlive-latex-ms" . "49435")
   1.13 ("java-hamcrest-all" . "1.3")
   1.13 ("celestia-gtk" . "1.6.1-815.9dbdf29")
   1.13 ("vte-ng" . "0.58.2.a")
   1.13 ("java-commons-codec" . "1.10")
   1.13 ("antlr3" . "3.1")
   1.13 ("r-mixomics" . "6.8.5")
   1.13 ("csvkit" . "1.0.4")
   1.13 ("java-ngs" . "2.9.6")
   1.13 ("python2-fasteners" . "0.14.1")
   1.13 ("azr3" . "1.2.3")
   1.13 ("maven-resolver-api" . "1.3.1")
   1.13 ("r-pracma" . "2.2.5")
   1.13 ("js-strftime" . "0.10.0")
   1.13 ("texlive-generic-babel-german" . "49435")
   1.13 ("python2-django-gravatar2" . "1.4.2")
   1.13 ("java-testng" . "6.14.3")
   1.13 ("r-ensembldb" . "2.8.1")
   1.13 ("java-xmlunit" . "2.5.1")
   1.13 ("java-ops4j-base-util-property" . "1.5.0")
   1.13 ("python-trezor-agent" . "0.13.1")
   1.13 ("r-mass" . "7.3-51.4")
   1.13 ("python2-zope-security" . "4.0.3")
   1.13 ("java-jsch-agentproxy-pageant" . "0.0.8")
   1.13 ("java-xmlunit-legacy" . "2.5.1")
   1.13 ("ant-apache-bcel" . "1.10.1")
   1.13 ("r-genefilter" . "1.66.0")
   1.13 ("java-ops4j-pax-tinybundles" . "2.1.1")
   1.13 ("java-cglib" . "3.2.4")
   1.13 ("java-snappy" . "1.1.7.2")
   1.13 ("python2-pbcore" . "1.2.10")
   1.13 ("java-aqute-bndlib" . "3.5.0")
   1.13 ("r-cowplot" . "1.0.0")
   1.13 ("texlive-latex-lh" . "49435")
   1.13 ("java-bouncycastle" . "1.60")
   1.13 ("texlive-beamer" . "49435")
   1.13 ("texlive-latex-polyglossia" . "49435")
   1.13 ("texlive-latex-psfrag" . "49435")
   1.13 ("texlive-latex-changepage" . "49435")
   1.13 ("python2-oslo.i18n" . "3.20.0")
   1.13 ("java-svg-salamander" . "1.1.2")
   1.13 ("java-geronimo-xbean-bundleutils" . "4.5")
   1.13 ("python2-falcon" . "1.4.1")
   1.13 ("sdl" . "1.2.15")
   1.12 ("java-commons-collections" . "3.2.2")
   1.12 ("java-commons-io" . "2.5")
   1.12 ("java-ops4j-base-store" . "1.5.0")
   1.12 ("sbcl-esrap" . "0.0.0-1.133be8b")
   1.12 ("js-selectize" . "0.12.6")
   1.12 ("java-plexus-classworlds" . "2.5.2")
   1.12 ("java-native-access" . "4.5.1")
   1.12 ("python-git-review" . "1.28.0")
   1.12 ("java-slf4j-simple" . "1.7.25")
   1.12 ("java-slf4j-api" . "1.7.25")
   1.12 ("emacs-helm-notmuch" . "1.2")
   1.12 ("java-fasterxml-jackson-databind" . "2.9.4")
   1.12 ("sbcl-trivia.cffi" . "0.0.0-1.902e0c6")
   1.12 ("wicd" . "1.7.4")
   1.12 ("java-commons-bsf" . "2.4.0")
   1.12 ("java-swt" . "4.7.1a")
   1.12 ("java-osgi-service-cm" . "1.5.0")
   1.12 ("texlive-latex-gcite" . "49435")
   1.12 ("python-oslo.serialization" . "2.24.0")
   1.12 ("ruby-atoulme-antwrap" . "0.7.5")
   1.12 ("java-osgi-service-resolver" . "1.0.1")
   1.12 ("java-asm" . "6.0")
   1.12 ("java-mail" . "1.6.0")
   1.12 ("libgnomekbd" . "3.26.1")
   1.12 ("java-hdrhistogram" . "2.1.9")
   1.12 ("maxima" . "5.43.0")
   1.12 ("clojure-core-match" . "0.3.0-alpha5-1.1837ffb")
   1.12 ("snakemake" . "5.7.1")
   1.12 ("alot" . "0.5.1")
   1.12 ("python2-behave-web-api" . "1.0.6")
   1.12 ("java-native-access-platform" . "4.5.1")
   1.11 ("java-eclipse-jetty-test-helper" . "4.2")
   1.11 ("python-os-testr" . "0.8.0")
   1.11 ("java-ops4j-pax-exam-core" . "4.11.0")
   1.11 ("teximpatient" . "2.4")
   1.11 ("r-lassopv" . "0.2.0")
   1.11 ("java-xmlunit-matchers" . "2.5.1")
   1.11 ("java-janino" . "3.0.8")
   1.11 ("texlive-latex-amsrefs" . "49435")
   1.11 ("emacsy-minimal" . "v0.4.1-19.f3bf0db")
   1.11 ("java-commons-bcel" . "6.1")
   1.11 ("texlive-latex-natbib" . "49435")
   1.11 ("java-objenesis" . "2.5.1")
   1.11 ("java-powermock-reflect" . "1.7.3")
   1.11 ("java-ops4j-base-util" . "1.5.0")
   1.11 ("java-dom4j" . "2.1.1")
   1.11 ("youtube-viewer" . "3.5.8")
   1.11 ("texlive-latex-fontspec" . "49435")
   1.11 ("java-jboss-el-api-spec" . "3.0")
   1.11 ("js-es5-shim" . "4.5.13")
   1.11 ("java-fasterxml-jackson-core" . "2.9.4")
   1.11 ("java-joda-time" . "2.9.9")
   1.11 ("java-lz4" . "1.4.0")
   1.11 ("java-mvel2" . "2.3.1")
   1.11 ("sbcl-lift" . "1.7.1-1.7d49a66")
   1.11 ("java-aqute-libg" . "3.5.0")
   1.11 ("java-fest-test" . "2.1.0")
   1.11 ("texlive-latex-trimspaces" . "49435")
   1.11 ("python2-flasgger" . "0.6.3")
   1.11 ("java-jsonp-impl" . "1.1.5")
   1.11 ("freetalk" . "4.1")
   1.11 ("r-bsgenome-hsapiens-ucsc-hg19" . "1.4.0")
   1.11 ("java-jboss-javassist" . "3.21.0")
   1.11 ("java-xmlpull2" . "2.1.10")
   1.11 ("java-javaewah" . "1.1.6")
   1.11 ("cuirass" . "0.0.1-26.e20ff86")
   1.11 ("java-jdom" . "2.0.6")
   1.11 ("gnuplot" . "5.2.7")
   1.11 ("java-easymock" . "3.4")
   1.11 ("sbcl-chunga" . "1.1.7")
   1.11 ("texlive-latex-multirow" . "49435")
   1.11 ("sbcl-iterate" . "20160825")
   1.11 ("maven-resolver-spi" . "1.3.1")
   1.11 ("clojure-tools-macro" . "0.1.5")
   1.11 ("java-jakarta-regexp" . "1.5")
   1.11 ("java-xerial-core" . "2.1")
   1.11 ("java-junit" . "4.12")
   1.11 ("sbcl-colorize" . "0.0.0-1.ea676b5")
   1.10 ("r-affycompatible" . "1.44.0")
   1.10 ("java-signpost-core" . "1.2.1.2")
   1.10 ("sbcl-dexador" . "0.9.10-1.a2714d1")
   1.10 ("r-abadata" . "1.12.0")
   1.10 ("python-testresources" . "2.0.1")
   1.10 ("java-eclipse-ant-core" . "3.4.100")
   1.10 ("ruby-jekyll-paginate-v2" . "2.0.0")
   1.10 ("emacs-evil-indent-plus" . "1.0.0-1.0c7501e")
   1.10 ("ghc-pandoc-citeproc" . "0.14.3.1")
   1.10 ("java-osgi-util-tracker" . "1.5.1")
   1.10 ("java-woodstox-core" . "5.0.3")
   1.10 ("python2-pyarrow" . "0.10.0")
   1.10 ("sbcl-rt" . "1990.12.19")
   1.10 ("dealii-openmpi" . "9.1.1")
   1.10 ("twitchy" . "3.4-1.9beb36d")
   1.10 ("java-eclipse-core-expressions" . "3.5.100")
   1.10 ("guitarix-lv2" . "0.38.1")
   1.10 ("java-osgi-cmpn" . "6.0.0")
   1.10 ("java-jcommander" . "1.71")
   1.10 ("java-commons-lang" . "2.6")
   1.10 ("conda" . "4.3.16")
   1.10 ("maven-artifact" . "3.6.1")
   1.10 ("java-javaee-servletapi" . "3.1.0")
   1.10 ("texlive-latex-hyperref" . "6.84a2")
   1.10 ("texlive-latex-acmart" . "1.60")
   1.10 ("sbcl-cl-string-match" . "0-1.5048480")
   1.10 ("javacc" . "4.1")
   1.10 ("java-hamcrest-core" . "1.3")
   1.10 ("maven-resolver-util" . "1.3.1")
   1.10 ("javacc" . "7.0.4")
   1.10 ("python-pytest-django" . "3.1.2")
   1.10 ("texlive-latex-dinbrief" . "49435")
   1.09 ("ruby-rjb" . "1.5.5")
   1.09 ("python2-debtcollector" . "1.19.0")
   1.09 ("texlive-latex-ifplatform" . "49435")
   1.09 ("java-microemulator-cldc" . "2.0.4")
   1.09 ("r-unifiedwmwqpcr" . "1.20.0")
   1.09 ("r-hpar" . "1.26.0")
   1.09 ("texlive-latex-tabulary" . "49435")
   1.09 ("java-commons-math3" . "3.6.1")
   1.09 ("r-diversitree" . "0.9-11")
   1.09 ("python2-reno" . "2.7.0")
   1.09 ("python-django-crispy-forms" . "1.7.2")
   1.09 ("xmobar" . "0.28")
   1.09 ("maven-plugin-annotations" . "3.5")
   1.09 ("python2-django-sortedm2m" . "1.3.3")
   1.09 ("java-ecj" . "3.8.2")
   1.09 ("xf86-video-savage" . "2.3.9")
   1.09 ("java-eclipse-equinox-preferences" . "3.6.1")
   1.09 ("gobby" . "0.4.13")
   1.09 ("sbcl-3bmd" . "0.0.0-1.192ea13")
   1.09 ("r-widgettools" . "1.62.0")
   1.09 ("lepton-eda" . "1.9.5-20180820")
   1.09 ("java-osgi-util-function" . "1.0.0")
   1.09 ("python-oslo.context" . "2.20.0")
   1.09 ("java-eclipse-jdt-core" . "3.16.0")
   1.09 ("openjdk" . "11.28")
   1.09 ("translate2geda" . "0-1.4c19e7e")
   1.09 ("python2-tempest-lib" . "1.0.0")
   1.09 ("sbcl-cl-cffi-gtk-gdk-pixbuf" . "0.11.2-1.29443c5")
   1.09 ("python-falcon-cors" . "1.1.7")
   1.09 ("texlive-latex-babel" . "49435")
   1.09 ("java-jarjar" . "1.4")
   1.09 ("python-keystoneclient" . "1.8.1")
   1.09 ("python2-django" . "1.11.25")
   1.09 ("texlive-latex-pdfx" . "49435")
   1.09 ("texlive-latex-mflogo" . "49435")
   1.08 ("java-eclipse-core-resources" . "3.13.200")
   1.08 ("java-eclipse-compare-core" . "3.6.0")
   1.08 ("kawa" . "3.0")
   1.08 ("texlive-tools" . "49435")
   1.08 ("maven-resolver-connector-basic" . "1.3.1")
   1.08 ("python-daemon" . "2.2.3")
   1.08 ("maven-wagon-provider-api" . "3.1.0")
   1.08 ("java-qdox" . "1.12.1")
   1.08 ("java-jboss-interceptors-api-spec" . "1.2")
   1.08 ("python-reno" . "2.7.0")
   1.08 ("openfoam" . "4.1")
   1.08 ("texlive-latex-bigfoot" . "49435")
   1.08 ("ghc-glut" . "2.7.0.14")
   1.08 ("python-conda" . "4.3.16")
   1.08 ("sshoot" . "1.2.6")
   1.08 ("sbcl-hunchentoot" . "1.2.38")
   1.08 ("python2-os-testr" . "0.8.0")
   1.08 ("python2-django-appconf" . "1.0.3")
   1.08 ("python2-bandit" . "1.4.0")
   1.08 ("python-bandit" . "1.4.0")
   1.08 ("sbcl" . "1.5.8")
   1.08 ("java-log4j-api" . "2.4.1")
   1.08 ("java-jdom" . "1.1.3")
   1.08 ("java-jboss-jms-api-spec" . "2.0")
   1.08 ("python-django-redis" . "4.10.0")
   1.08 ("ghc-http-conduit" . "2.3.2")
   1.08 ("r-annotationdbi" . "1.46.1")
   1.08 ("velvet" . "1.2.10")
   1.08 ("java-htsjdk" . "2.10.1")
   1.08 ("r-pfam-db" . "3.8.2")
   1.08 ("python-django-filter" . "1.1.0")
   1.08 ("openjdk" . "9.181")
   1.08 ("texlive-latex-changebar" . "49435")
   1.07 ("xf86-video-i128" . "1.4.0")
   1.07 ("python-botocore" . "1.12.149")
   1.07 ("java-simple-xml" . "2.7.1")
   1.07 ("java-eclipse-osgi" . "3.11.3")
   1.07 ("python-requests-oauthlib" . "1.2.0")
   1.07 ("biber" . "2.12")
   1.07 ("java-ops4j-base-monitors" . "1.5.0")
   1.07 ("certbot" . "0.40.1")
   1.07 ("sbcl-lack-response" . "0.1.0-1.abff8ef")
   1.07 ("sbcl-hu.dwim.stefil" . "0.0.0-1.ab6d1aa")
   1.07 ("java-jaxp" . "1.4.01")
   1.07 ("ruby-autoprefixer-rails" . "9.4.7")
   1.07 ("texlive-base" . "49435")
   1.07 ("java-jettison" . "1.3.7")
   1.07 ("java-osgi-util-promise" . "1.0.0")
   1.07 ("texlive-latex-psnfss" . "49435")
   1.07 ("perl-catalyst-authentication-store-dbix-class" . "0.1506")
   1.07 ("python2-pytest-django" . "3.1.2")
   1.07 ("texlive-latex-upquote" . "49435")
   1.07 ("ant" . "1.9.9")
   1.07 ("tegaki-wagomu-japanese" . "0.3")
   1.07 ("texlive-latex-colortbl" . "49435")
   1.07 ("python-falcon" . "1.4.1")
   1.07 ("texlive-latex-acronym" . "49435")
   1.07 ("python-swiftclient" . "2.6.0")
   1.07 ("patchage" . "1.0.0")
   1.07 ("python2-requests-mock" . "1.3.0")
   1.07 ("texlive-latex-xmpincl" . "49435")
   1.07 ("r-summarizedexperiment" . "1.14.1")
   1.07 ("gourmet" . "0.17.4")
   1.07 ("mcomix" . "1.2.1")
   1.07 ("loudmouth" . "1.5.3")
   1.06 ("ghc-easyplot" . "1.0")
   1.06 ("tegaki-zinnia-traditional-chinese-light" . "0.3")
   1.06 ("java-osgi-service-event" . "1.3.1")
   1.06 ("r-forcats" . "0.4.0")
   1.06 ("r-heatplus" . "2.30.0")
   1.06 ("java-icu4j" . "59.1")
   1.06 ("texlive-latex-graphics" . "49435")
   1.06 ("texlive-latex-l3kernel" . "49435")
   1.06 ("java-eclipse-equinox-common" . "3.10.200")
   1.06 ("python-django-debug-toolbar" . "1.10.1")
   1.06 ("texlive-latex-footmisc" . "49435")
   1.06 ("java-stax" . "1.2.0")
   1.06 ("java-plexus-component-annotations" . "1.7.1")
   1.06 ("r-wrench" . "1.2.0")
   1.06 ("tegaki-zinnia-traditional-chinese" . "0.3")
   1.06 ("r-complexheatmap" . "2.0.0")
   1.06 ("sbcl-iolib.common-lisp" . "0.8.3")
   1.06 ("nip2" . "8.7.1")
   1.06 ("texlive-booktabs" . "49435")
   1.06 ("java-eclipse-core-jobs" . "3.8.0")
   1.06 ("java-fasterxml-jackson-annotations" . "2.9.4")
   1.06 ("java-jopt-simple" . "5.0.3")
   1.06 ("java-jsch-agentproxy-usocket-nc" . "0.0.8")
   1.06 ("java-eclipse-core-runtime" . "3.15.100")
   1.06 ("tegaki-wagomu-japanese-joyo" . "0.3")
   1.06 ("java-osgi-service-log" . "1.3.0")
   1.06 ("java-eclipse-text" . "3.6.0")
   1.06 ("java-osgi-framework" . "1.8.0")
   1.06 ("java-guava" . "20.0")
   1.06 ("java-bsh" . "2.0b6")
   1.06 ("java-eclipse-equinox-app" . "1.3.400")
   1.06 ("java-osgi-resource" . "1.0.0")
   1.06 ("python-django-extensions" . "2.1.6")
   1.06 ("java-jsonp-api" . "1.1.5")
   1.06 ("texlive-standalone" . "49435")
   1.06 ("java-xmp" . "5.1.3")
   1.06 ("python2-lockfile" . "0.12.2")
   1.06 ("java-javax-mail" . "1.5.6")
   1.06 ("slim" . "1.3.6")
   1.05 ("java-jsch" . "0.1.55")
   1.05 ("java-jsch-agentproxy-core" . "0.0.8")
   1.05 ("java-eclipse-core-commands" . "3.8.1")
   1.05 ("openjdk" . "10.46")
   1.05 ("java-jsch-agentproxy-jsch" . "0.0.8")
   1.05 ("r-biocneighbors" . "1.2.0")
   1.05 ("java-commons-compiler" . "3.0.8")
   1.05 ("python-notebook" . "5.7.4")
   1.05 ("python-django-contrib-comments" . "1.8.0")
   1.05 ("java-aopalliance" . "1.0")
   1.05 ("python2-openstackdocstheme" . "1.18.1")
   1.05 ("java-jakarta-oro" . "2.0.8")
   1.05 ("sbcl-cl-gobject-introspection" . "0.3-0.7b703e2")
   1.05 ("java-aqute-bnd-annotation" . "3.5.0")
   1.05 ("java-jsr305" . "3.0.1")
   1.05 ("java-javax-inject" . "tck-1")
   1.05 ("python2-celery" . "4.2.1")
   1.05 ("java-qdox" . "2.0-M2")
   1.05 ("python2-django-simple-math-captcha" . "1.0.7")
   1.05 ("sbcl-cl-xmlspam" . "0.0.0-1.ea06abc")
   1.05 ("java-osgi-namespace-service" . "1.0.0")
   1.05 ("r-massspecwavelet" . "1.50.0")
   1.05 ("arcanist" . "0.0.0-1.45a8d22")
   1.05 ("r-seqpattern" . "1.16.0")
   1.05 ("sbcl-queues.simple-cqueue" . "0.0.0-1.47d4da6")
   1.05 ("vigra-c" . "0.0.0-1.66ff4fa")
   1.05 ("r-affycomp" . "1.60.0")
   1.05 ("fgallery" . "1.8.2")
   1.05 ("java-eclipse-equinox-registry" . "3.6.100")
   1.05 ("java-osgi-core" . "6.0.0")
   1.05 ("java-eclipse-core-filesystem" . "1.6.1")
   1.05 ("r-tweenr" . "1.0.1")
   1.05 ("texlive-latex-amsmath" . "49435")
   1.05 ("java-snakeyaml" . "1.18")
   1.05 ("r-fastseg" . "1.30.0")
   1.05 ("ghc-yesod-core" . "1.6.6")
   1.05 ("java-openmpi" . "4.0.2")
   1.05 ("java-log4j-core" . "2.4.1")
   1.05 ("ghc-pandoc" . "2.2.1")
   1.04 ("python2-testrepository" . "0.0.20")
   1.04 ("r-arrmnormalization" . "1.24.0")
   1.04 ("java-osgi-dto" . "1.0.0")
   1.04 ("icedtea" . "3.7.0")
   1.04 ("ruby-rest-client" . "2.0.2")
   1.04 ("java-ecj" . "3.5.1")
   1.04 ("sbcl-cl-ledger" . "4.0.0-1.08e0be4")
   1.04 ("java-jsch-agentproxy-sshagent" . "0.0.8")
   1.04 ("java-classpathx-servletapi" . "3.0.1")
   1.04 ("r-powerlaw" . "0.70.2")
   1.04 ("java-commons-logging-minimal" . "1.2")
   1.04 ("sbcl-trivia" . "0.0.0-1.902e0c6")
   1.04 ("java-osgi-namespace-contract" . "1.0.0")
   1.04 ("python2-zope-testrunner" . "4.4.9")
   1.04 ("silkaj" . "0.7.3")
   1.04 ("antlr2" . "2.7.7")
   1.04 ("java-osgi-service-component-annotations" . "1.3.0")
   1.04 ("sbcl-lack-request" . "0.1.0-1.abff8ef")
   1.04 ("java-osgi-service-metatype-annotations" . "1.3.0")
   1.04 ("java-tukaani-xz" . "1.6")
   1.04 ("java-xz" . "1.6")
   1.04 ("python2-testtools" . "2.3.0")
   1.04 ("tegaki-wagomu-japanese-kyoiku" . "0.3")
   1.04 ("sbcl-jonathan" . "0.1.0-1.1f448b4")
   1.04 ("sbcl-checkl" . "0.0.0-1.8032880")
   1.04 ("python-django-sortedm2m" . "1.3.3")
   1.04 ("sbcl-graph-dot" . "0.0.0-0.78bf9ec")
   1.04 ("java-stax2-api" . "4.0.0")
   1.04 ("solaar" . "0.9.2")
   1.04 ("python2-django-contact-form" . "1.3")
   1.04 ("java-jsr250" . "1.3")
   1.04 ("python2-dask" . "1.2.2")
   1.04 ("python-dask" . "1.2.2")
   1.04 ("r-irlba" . "2.3.3")
   1.04 ("tryton" . "4.6.2")
   1.03 ("r-graph" . "1.62.0")
   1.03 ("patches" . "0.0-1.ef1b8a7")
   1.03 ("sbcl-http-body" . "0.1.0-1.dd01dc4")
   1.03 ("tegaki-wagomu-traditional-chinese" . "0.3")
   1.03 ("pcb-rnd" . "1.1.3")
   1.03 ("ghc-yesod-form" . "1.6.2")
   1.03 ("python2-txamqp" . "0.8.2")
   1.03 ("python-s3transfer" . "0.2.0")
   1.03 ("python2-subunit" . "1.3.0")
   1.03 ("awesome" . "4.2")
   1.03 ("python2-django-contrib-comments" . "1.8.0")
   1.03 ("texlive-latex-blindtext" . "49435")
   1.03 ("java-jmock" . "1.2.0")
   1.03 ("r-bsgenome" . "1.52.0")
   1.03 ("lv2-mda-piano" . "0.0.2")
   1.03 ("python-flasgger" . "0.6.3")
   1.03 ("ghc-opengl" . "3.0.2.2")
   1.03 ("python2-notebook" . "5.7.4")
   1.03 ("r-blockmodeling" . "0.3.4")
   1.03 ("sbcl-cl-cffi-gtk-glib" . "0.11.2-1.29443c5")
   1.03 ("r-affy" . "1.62.0")
   1.02 ("sbcl-simple-scanf" . "0-1.5048480")
   1.02 ("python-feather-format" . "0.4.0")
   1.02 ("r-rbowtie" . "1.24.0")
   1.02 ("texlive-generic-ifxetex" . "49435")
   1.02 ("python-robotframework-lint" . "0.9.0-1.e851879")
   1.02 ("geda-gaf" . "1.9.2")
   1.02 ("sbcl-ascii-strings" . "0-1.5048480")
   1.02 ("idris-wl-pprint" . "0.1-1.1d365fc")
   1.02 ("vigra" . "1.11.1")
   1.02 ("ruby-sass-rails" . "5.0.7")
   1.02 ("python-oslotest" . "3.4.0")
   1.02 ("texlive-latex-cyrillic" . "49435")
   1.02 ("texlive-latex-subfigure" . "49435")
   1.02 ("sbcl-md5" . "2.0.4")
   1.02 ("sbcl-chanl" . "0.4.1-0.2362b57")
   1.02 ("texlive-latex-listings" . "49435")
   1.02 ("python-astunparse" . "1.6.2")
   1.02 ("ghc-hpack" . "0.28.2")
   1.02 ("celestia" . "1.6.1-815.9dbdf29")
   1.02 ("python-twobitreader" . "3.1.6")
   1.02 ("python2-mapnik" . "3.0.16")
   1.02 ("python-flask-restplus" . "0.9.2")
   1.02 ("tegaki-zinnia-japanese" . "0.3")
   1.02 ("java-xstream" . "1.4.10")
   1.02 ("python-os-client-config" . "1.12.0")
   1.02 ("java-eclipse-jetty-io" . "9.2.22")
   1.02 ("stumpwm-with-slynk" . "18.11")
   1.02 ("python2-ledgerblue" . "0.1.16")
   1.02 ("ruby-sassc" . "2.0.1")
   1.02 ("python-django" . "1.11.25")
   1.02 ("texlive-latex-mdwtools" . "49435")
   1.01 ("sbcl-lzlib" . "1.0-1.0de1db7")
   1.01 ("r-pheatmap" . "1.0.12")
   1.01 ("texlive-latex-geometry" . "49435")
   1.01 ("plantuml" . "1.2019.3")
   1.01 ("sbcl-slynk" . "1.0.0-beta-2.cbf84c3")
   1.01 ("f-seq" . "1.1-1.6ccded3")
   1.01 ("python-agate-dbf" . "0.2.1")
   1.01 ("sbcl-trivial-utf-8" . "0.0.0-1.4d427cf")
   1.01 ("chez-fmt" . "0.8.11")
   1.01 ("python-lockfile" . "0.12.2")
   1.01 ("r-annotationfilter" . "1.8.0")
   1.01 ("ghc-chart-cairo" . "1.9")
   1.01 ("texlive-latex-appendix" . "49435")
   1.01 ("ghc-graphviz" . "2999.20.0.2")
   1.01 ("bismark" . "0.20.1")
   1.01 ("python2-netcdf4" . "1.4.2")
   1.01 ("java-osgi-annotation" . "6.0.0")
   1.01 ("python2-jsonschema" . "3.0.1")
   1.01 ("pcb" . "4.0.2")
   1.01 ("python2-nbformat" . "4.4.0")
   1.01 ("jrnl" . "1.9.7")
   1.01 ("r-magick" . "2.2")
   1.01 ("ghc-openglraw" . "3.3.1.0")
   1.01 ("chez-scheme" . "9.5")
   1.01 ("magic-wormhole" . "0.11.2")
   1.01 ("xf86-input-void" . "1.4.1")
   1.01 ("sbcl-graph" . "0.0.0-0.78bf9ec")
   1.01 ("cl-dbus" . "20190408-1.24b452d")
   1.01 ("r-htmltools" . "0.4.0")
   1.01 ("java-xpp3" . "1.1.4")
   1.01 ("stumpwm" . "18.11")
   1.01 ("r-tractor-base" . "3.3.2")
   1.01 ("ghc-aws" . "0.20")
   1.00 ("python-oslo.i18n" . "3.20.0")
   1.00 ("maven-shared-utils" . "3.2.1")
   1.00 ("hangups" . "0.4.9")
   1.00 ("r-hash" . "2.2.6.1")
   1.00 ("python-robotframework" . "3.1.2")
   1.00 ("python2-partd" . "0.3.9")
   1.00 ("python2-carbon" . "1.0.2")
   1.00 ("xf86-video-ati" . "19.0.1")
   1.00 ("sbcl-iolib.grovel" . "0.8.3")
   1.00 ("java-jmapviewer" . "2.12")
   1.00 ("python2-sphinx-rtd-theme" . "0.2.4")
   1.00 ("python-django-gravatar2" . "1.4.2")
   1.00 ("python-celery" . "4.2.1")
   1.00 ("python2-s3transfer" . "0.2.0")
   1.00 ("python2-django-rq" . "1.3.1")
   1.00 ("sbcl-circular-streams" . "0.1.0-1.e770bad")
   1.00 ("python2-cachecontrol" . "0.12.5")
   1.00 ("python-pbr" . "3.0.1")
   1.00 ("r-bqtl" . "1.0-32")
   1.00 ("python-fixtures" . "3.0.0")
   1.00 ("python-testtools" . "2.3.0")
   1.00 ("r-copyhelper" . "1.6.0")
   1.00 ("xorg-server-xwayland" . "1.20.5")
   1.00 ("r-s4vectors" . "0.22.1")
   1.00 ("hdf-java" . "3.3.2")
   1.00 ("texlive-latex-base" . "49435")
   1.00 ("mes-minimal-stripped-tarball" . "0.19")
   1.00 ("r-siggenes" . "1.58.0")
   1.00 ("bpython" . "0.18")
   0.99 ("sbcl-yason" . "0.7.7")
   0.99 ("bpython2" . "0.18")
   0.99 ("sbcl-jpl-queues" . "0.1")
   0.99 ("xf86-video-vmware" . "13.3.0")
   0.99 ("sbcl-lack-middleware-static" . "0.1.0-1.abff8ef")
   0.99 ("sbcl-simple-parallel-tasks" . "1.0-0.db460f7")
   0.99 ("python2-flask-restful-swagger" . "0.19")
   0.99 ("texlive-latex-expdlist" . "49435")
   0.99 ("python2-django-allauth" . "0.39.1")
   0.99 ("r-assertive-data" . "0.0-3")
   0.99 ("python2-sphinx-cloud-sptheme" . "1.8.0")
   0.99 ("sbcl-fare-quasiquote-optima" . "20171130")
   0.99 ("python-django-overextends" . "0.4.3")
   0.99 ("sbcl-trivia.balland2006" . "0.0.0-1.902e0c6")
   0.99 ("dot2tex" . "2.9.0")
   0.99 ("python-importlib-metadata" . "0.23")
   0.99 ("sbcl-cl-random-forest" . "0.1-0.85fbdd4")
   0.99 ("python2-pandas" . "0.24.2")
   0.99 ("r-zoo" . "1.8-6")
   0.99 ("chirp" . "20181205")
   0.99 ("afew" . "1.2.0")
   0.99 ("key-mon" . "1.17")
   0.99 ("python2-testscenarios" . "0.5.0")
   0.99 ("sbcl-cl-utilities" . "0.0.0-1.dce2d2f")
   0.99 ("python-partd" . "0.3.9")
   0.99 ("python2-qrcode" . "6.1")
   0.99 ("sbcl-introspect-environment" . "0.1-1.fff42f8")
   0.99 ("python2-sphinxcontrib-programoutput" . "0.10")
   0.98 ("sbcl-lack" . "0.1.0-1.abff8ef")
   0.98 ("ghc-yesod-persistent" . "1.6.0")
   0.98 ("seq24" . "0.9.3")
   0.98 ("ghc-persistent-sqlite" . "2.8.2")
   0.98 ("sbcl-type-i" . "0.1-1.dea233f")
   0.98 ("r-estimability" . "1.3")
   0.98 ("soil" . "1.0.7")
   0.98 ("sbcl-cl-cffi-gtk-gobject" . "0.11.2-1.29443c5")
   0.98 ("java-eclipse-jetty-webapp" . "9.2.22")
   0.98 ("lash" . "0.6.0-rc2")
   0.98 ("python2-wheel" . "0.32.3")
   0.98 ("sbcl-series" . "2.2.11-1.da9061b")
   0.98 ("xapers" . "0.8.2")
   0.98 ("sbcl-iolib.asdf" . "0.8.3")
   0.98 ("r-gridextra" . "2.3")
   0.98 ("sbcl-parse-float" . "0.0.0-1.2aae569")
   0.98 ("sbcl-fast-io" . "1.0.0-1.dc3a71d")
   0.98 ("sbcl-graph-json" . "0.0.0-0.78bf9ec")
   0.98 ("r-pcapp" . "1.9-73")
   0.98 ("tegaki-zinnia-japanese-joyo" . "0.3")
   0.98 ("vdirsyncer" . "0.16.7")
   0.98 ("eureka" . "1.24")
   0.98 ("r-gh" . "1.0.1")
   0.98 ("python2-nbconvert" . "5.0.0b1")
   0.98 ("sbcl-cl-cffi-gtk-gio" . "0.11.2-1.29443c5")
   0.98 ("r-xnomial" . "1.0.4")
   0.98 ("python2-dulwich" . "0.18.6")
   0.98 ("sbcl-iolib" . "0.8.3")
   0.98 ("fbreader" . "0.99.6")
   0.98 ("r-rapidjsonr" . "1.1")
   0.98 ("sbcl-cl-ansi-text" . "1.0.0-1.53badf7")
   0.98 ("sbcl-cl-uglify-js" . "0.1-1.429c5e1d8")
   0.98 ("python2-pbr" . "3.0.1")
   0.98 ("python2-oslo.log" . "3.36.0")
   0.98 ("fluidsynth" . "2.0.9")
   0.98 ("python2-twisted" . "19.7.0")
   0.98 ("php" . "7.3.11")
   0.98 ("kaldi-gstreamer-server" . "0-1.1735ba4")
   0.98 ("xf86-video-qxl" . "0.1.5")
   0.98 ("tensorflow" . "1.9.0")
   0.98 ("python-django-rq" . "1.3.1")
   0.98 ("python2-django-overextends" . "0.4.3")
   0.98 ("khal" . "0.10.1")
   0.97 ("python-kombu" . "4.2.2")
   0.97 ("sbcl-cl-cffi-gtk-pango" . "0.11.2-1.29443c5")
   0.97 ("r-fastcluster" . "1.1.25")
   0.97 ("sbcl-smart-buffer" . "0.0.1-1.09b9a9a")
   0.97 ("sbcl-cl-ppcre-unicode" . "2.0.11")
   0.97 ("python-django-bulk-update" . "1.1.10")
   0.97 ("emacs-ess" . "17.11")
   0.97 ("sbcl-cl-octet-streams" . "1.0")
   0.97 ("sbcl-fast-http" . "0.2.0-1.f9e7597")
   0.97 ("python-django-taggit" . "1.1.0")
   0.97 ("sbcl-cl-cffi-gtk-cairo" . "0.11.2-1.29443c5")
   0.97 ("xf86-video-trident" . "1.3.8")
   0.97 ("python2-pika" . "0.12.0")
   0.97 ("sbcl-periods" . "0.0.2-1.983d4a5")
   0.97 ("texlive-latex-g-brief" . "49435")
   0.97 ("sbcl-cl-sqlite" . "0.2-1.c738e66")
   0.97 ("python-swagger-spec-validator" . "2.4.3")
   0.97 ("texlive-latex-supertabular" . "49435")
   0.97 ("python2-django-redis" . "4.10.0")
   0.97 ("sbcl-cl-base64" . "3.3.3")
   0.97 ("python-django-jinja" . "2.4.1")
   0.97 ("ruby-actioncable" . "5.2.2.1")
   0.97 ("ghc-haddock-api" . "2.19.0.1")
   0.97 ("r-colorramps" . "2.3")
   0.97 ("python-anaconda-client" . "1.6.3")
   0.97 ("python2-prometheus-client" . "0.5.0")
   0.97 ("sawfish" . "1.12.0")
   0.97 ("sbcl-prove" . "1.0.0-1.4f9122b")
   0.97 ("sbcl-cl-colors" . "0.0.0-1.8274105")
   0.97 ("xf86-video-neomagic" . "1.3.0")
   0.97 ("gnubik" . "2.4.3")
   0.97 ("casync" . "2")
   0.97 ("extempore" . "0.7.0")
   0.97 ("ghc-esqueleto" . "2.5.3-1.b81e0d9")
   0.97 ("r-dynamictreecut" . "1.63-1")
   0.97 ("python-pygithub" . "1.43.8")
   0.97 ("tegaki-zinnia-simplified-chinese" . "0.3")
   0.97 ("lv2-mda-epiano" . "0.0.2")
   0.97 ("x42-plugins" . "20191013")
   0.96 ("xf86-video-cirrus" . "1.5.3")
   0.96 ("r-ini" . "0.3.1")
   0.96 ("xf86-video-mga" . "2.0.0")
   0.96 ("xf86-video-ast" . "1.1.5")
   0.96 ("infamous-plugins" . "0.2.04")
   0.96 ("r-directlabels" . "2018.05.22")
   0.96 ("sbcl-trivial-macroexpand-all" . "0.0.0-0.933270a")
   0.96 ("xf86-video-voodoo" . "1.2.5")
   0.96 ("python-pytest-virtualenv" . "1.7.0")
   0.96 ("python2-sphinx" . "1.7.7")
   0.96 ("sbcl-trivial-clipboard" . "0.0.0.0-2.5af3415")
   0.96 ("xf86-video-tga" . "1.2.2")
   0.96 ("minced" . "0.3.2")
   0.96 ("sbcl-periods-series" . "0.0.2-1.983d4a5")
   0.96 ("python-black" . "18.6b4")
   0.96 ("sbcl-trivia.trivial" . "0.0.0-1.902e0c6")
   0.96 ("sbcl-arrows" . "0.2.0-0.df7cf00")
   0.96 ("r-proto" . "1.0.0")
   0.96 ("r-roxygen2" . "7.0.0")
   0.96 ("sbcl-static-vectors" . "1.8.3-1.0681eac")
   0.96 ("xf86-input-joystick" . "1.6.3")
   0.96 ("sbcl-cl-fad" . "0.7.5")
   0.96 ("xf86-video-fbdev" . "0.5.0")
   0.96 ("sbcl-clack" . "2.0.0-1.e3e0328")
   0.96 ("python-rellu" . "0.7")
   0.96 ("python-django-assets" . "0.12")
   0.96 ("sbcl-cl-strings" . "0.0.0-1.c5c5cba")
   0.96 ("python2-botocore" . "1.12.149")
   0.96 ("sbcl-iolib.base" . "0.8.3")
   0.96 ("xf86-video-intel" . "2.99.917-14.6f4972d")
   0.96 ("sbcl-closer-mop" . "1.0.0-1.fac29ce")
   0.96 ("python-deprecated" . "1.2.5")
   0.96 ("ir" . "1.3.2")
   0.96 ("gtksourceview" . "2.10.5")
   0.96 ("sbcl-swap-bytes" . "1.1")
   0.96 ("mescc-tools-static-stripped-tarball" . "0.5.2-0.bb062b0")
   0.96 ("gtkwave" . "3.3.101")
   0.96 ("streamlink" . "0.14.2")
   0.96 ("uglify-js" . "0.1-1.429c5e1d8")
   0.96 ("xf86-video-tdfx" . "1.5.0")
   0.96 ("sra-tools" . "2.9.6")
   0.96 ("sbcl-fare-quasiquote" . "20171130")
   0.96 ("sbcl-alexandria" . "1.0.0-1.3b849bc")
   0.96 ("sbcl-cl+ssl" . "0.0.0-1.141ae91")
   0.96 ("java-hawtjni" . "1.15")
   0.96 ("netsurf" . "3.9")
   0.96 ("debops" . "1.1.0")
   0.96 ("amsynth" . "1.7.1")
   0.95 ("python-django-statici18n" . "1.3.0")
   0.95 ("python-duniterpy" . "0.55.1")
   0.95 ("insight-toolkit" . "4.12.2")
   0.95 ("cmake" . "3.15.1-1")
   0.95 ("python-django-simple-math-captcha" . "1.0.7")
   0.95 ("xf86-input-synaptics" . "1.9.1")
   0.95 ("virtualgl" . "2.6.2")
   0.95 ("xf86-video-sis" . "0.10.9")
   0.95 ("r-biased-urn" . "1.07")
   0.95 ("sbcl-pythonic-string-reader" . "0.0.0-1.47a70ba")
   0.95 ("texlive-pstool" . "49435")
   0.95 ("python-autobahn" . "19.2.1")
   0.95 ("python-twisted" . "19.7.0")
   0.95 ("python-breathe" . "4.13.1")
   0.95 ("xf86-video-suncg6" . "1.1.2")
   0.95 ("insight-toolkit" . "4.13.2")
   0.95 ("java-w3c-smil" . "3.0")
   0.95 ("osm2pgsql" . "0.96.0")
   0.95 ("python-behave-web-api" . "1.0.6")
   0.95 ("python2-numpydoc" . "0.8.0")
   0.95 ("sbcl-cl-syntax" . "0.0.3")
   0.95 ("sbcl-mk-string-metrics" . "0.1.2")
   0.95 ("sbcl-trivial-cltl2" . "0.1.1-1.8eec840")
   0.95 ("python-django-override-storage" . "0.1.6")
   0.95 ("python-wheel" . "0.32.3")
   0.95 ("sbcl-cl-heap" . "0.1.6")
   0.95 ("sbcl-trivial-backtrace" . "0.0.0-1.ca81c01")
   0.95 ("neomutt" . "20191102")
   0.95 ("python-txamqp" . "0.8.2")
   0.95 ("r-pbivnorm" . "0.6.0")
   0.95 ("sbcl-cl-str" . "0.8-1.3d5ec86")
   0.95 ("linkchecker" . "9.4.0")
   0.95 ("xf86-video-sunffb" . "1.2.2")
   0.95 ("mpd-mpc" . "0.33")
   0.95 ("python2-pygtk" . "2.24.0")
   0.95 ("sbcl-babel" . "0.5.0")
   0.95 ("java-httpcomponents-httpcore-nio" . "4.4.6")
   0.95 ("sbcl-optima" . "1.0-1.373b245")
   0.95 ("sbcl-xlunit" . "0.6.3-1.3805d34")
   0.95 ("sbcl-usocket-server" . "0.7.1-1.86e7efb")
   0.95 ("sbcl-trivia.ppcre" . "0.0.0-1.902e0c6")
   0.95 ("sbcl-3bmd-ext-code-blocks" . "0.0.0-1.192ea13")
   0.95 ("python2-notmuch" . "0.29.2")
   0.94 ("sbcl-bordeaux-threads" . "0.8.6-1.5dce49f")
   0.94 ("sbcl-trivia.level2" . "0.0.0-1.902e0c6")
   0.94 ("r-plyr" . "1.8.4")
   0.94 ("yubico-piv-tool" . "1.6.1")
   0.94 ("sbcl-s-xml" . "3")
   0.94 ("python-flask-restful" . "0.3.7")
   0.94 ("ruby-nio4r" . "2.4.0")
   0.94 ("sbcl-lack-middleware-backtrace" . "0.1.0-1.abff8ef")
   0.94 ("python-netcdf4" . "1.4.2")
   0.94 ("python-sphinxcontrib-newsfeed" . "0.1.4")
   0.94 ("fpm2" . "0.79")
   0.94 ("python-ledgerblue" . "0.1.16")
   0.94 ("sbcl-cambl" . "4.0.0-1.7016d1a")
   0.94 ("tegaki-zinnia-simplified-chinese-light" . "0.3")
   0.94 ("sbcl-parenscript" . "2.6-1.061d8e2")
   0.94 ("r-labeling" . "0.3")
   0.94 ("python-robotframework-sshlibrary" . "3.3.0")
   0.94 ("sbcl-string-case" . "0.0.2-0.718c761")
   0.94 ("perl-catalyst-model-dbic-schema" . "0.65")
   0.94 ("python2-django-statici18n" . "1.3.0")
   0.94 ("sbcl-ironclad" . "0.46")
   0.94 ("swaybg" . "1.0")
   0.94 ("avldrums-lv2" . "0.4.0")
   0.94 ("python-guzzle-sphinx-theme" . "0.7.11")
   0.94 ("sbcl-proc-parse" . "0.0.0-1.ac36368")
   0.94 ("sbcl-cl-syntax-annot" . "0.0.3")
   0.94 ("sbcl-fiveam" . "1.4.1")
   0.94 ("xf86-video-openchrome" . "0.6.0")
   0.94 ("sbcl-ieee-floats" . "20170924-1.566b51a")
   0.94 ("ghc-gluraw" . "2.0.0.4")
   0.94 ("sbcl-idna" . "0.2.2")
   0.94 ("python2-fixtures" . "3.0.0")
   0.94 ("python-serpent" . "1.28")
   0.93 ("sbcl-fare-utils" . "1.0.0.5-1.66e9c6f")
   0.93 ("fbida" . "2.14")
   0.93 ("jack-keyboard" . "2.5")
   0.93 ("sbcl-trivia.level0" . "0.0.0-1.902e0c6")
   0.93 ("sbcl-trivia.quasiquote" . "0.0.0-1.902e0c6")
   0.93 ("coin3D" . "3.1.3-1-ab8d0e4")
   0.93 ("emacs-w3m" . "2018-11-11")
   0.93 ("dvdisaster" . "0.79.5")
   0.93 ("xf86-video-r128" . "6.12.0")
   0.93 ("python2-rsvg" . "2.32.0")
   0.93 ("xf86-video-siliconmotion" . "1.7.9")
   0.93 ("sbcl-cl-json" . "0.5-1.6dfebb9")
   0.93 ("sbcl-trivial-features" . "0.8")
   0.93 ("matcha-theme" . "2019-11-02")
   0.93 ("sherlock-lv2" . "0.20.0")
   0.93 ("lxsession" . "0.5.3")
   0.93 ("libgnomecanvasmm" . "2.26.0")
   0.93 ("ruby-sinatra" . "2.0.5")
   0.93 ("r-ellipsis" . "0.3.0")
   0.93 ("xen" . "4.11.1")
   0.93 ("idris-lightyear" . "0.1-1.6d65ad1")
   0.93 ("python2-conda" . "4.3.16")
   0.93 ("sbcl-usocket-boot0" . "0.7.1-1.86e7efb")
   0.93 ("perceptualdiff" . "1.3")
   0.93 ("python2-oslo.serialization" . "2.24.0")
   0.93 ("xf86-input-evdev" . "2.10.6")
   0.93 ("keepalived" . "2.0.18")
   0.93 ("sbcl-usocket" . "0.7.1-1.86e7efb")
   0.93 ("ams-lv2" . "1.2.2")
   0.93 ("tegaki-wagomu-simplified-chinese" . "0.3")
   0.93 ("python-django-pipeline" . "1.6.14")
   0.93 ("r-mitools" . "2.4")
   0.93 ("behave" . "1.2.6")
   0.93 ("sbcl-jpl-util" . "20151005")
   0.93 ("sbcl-flexi-streams" . "1.0.16")
   0.93 ("tomb" . "2.7")
   0.93 ("libabigail" . "1.6")
   0.93 ("libarea" . "0-1.8f8bac8")
   0.93 ("python-pathpy" . "11.5.1")
   0.93 ("sbcl-stefil" . "0.1-0.0398548")
   0.93 ("python-nbformat" . "4.4.0")
   0.93 ("sbcl-lparallel" . "2.8.4")
   0.93 ("sbcl-log4cl" . "1.1.2")
   0.93 ("sbcl-kmrcl" . "1.109.0-1.5260068")
   0.93 ("python-notmuch" . "0.29.2")
   0.93 ("sbcl-marshal" . "1.3.0-1.eff1b15")
   0.93 ("sbcl-fare-quasiquote-readtable" . "20171130")
   0.93 ("libcaca" . "0.99.beta19")
   0.93 ("ncmpc" . "0.35")
   0.93 ("sbcl-cl-containers" . "0.12.1-1.810927e")
   0.92 ("dumb-allegro4" . "2.0.3")
   0.92 ("gst123" . "0.3.5")
   0.92 ("sbcl-cl-annot" . "0.0.0-1.c99e69c")
   0.92 ("python-leather" . "0.3.3")
   0.92 ("sbcl-lisp-namespace" . "0.1-1.28107ca")
   0.92 ("patchwork" . "2.1.4")
   0.92 ("sbcl-ptester" . "20160929")
   0.92 ("sbcl-named-readtables" . "0.9-1.4dfb89f")
   0.92 ("xf86-video-nouveau" . "1.0.16")
   0.92 ("ruby-web-console" . "3.7.0")
   0.92 ("sbcl-queues" . "0.0.0-1.47d4da6")
   0.92 ("r-dosnow" . "1.0.18")
   0.92 ("texlive-generic-babel-english" . "49435")
   0.92 ("r-bit64" . "0.9-7")
   0.92 ("python-flask-restful-swagger" . "0.19")
   0.92 ("sbcl-trivial-file-size" . "0.0.0-0.1c1d672")
   0.92 ("java-metadata-extractor" . "2.11.0")
   0.92 ("sbcl-hu.dwim.asdf" . "20190521")
   0.92 ("mesa-opencl" . "19.1.4")
   0.92 ("libosmium" . "2.14.2")
   0.92 ("sbcl-iolib.conf" . "0.8.3")
   0.92 ("sbcl-curry-compose-reader-macros" . "1.0.0-0.beaa92d")
   0.92 ("python-jaraco-packaging" . "6.1")
   0.92 ("python2-attrs" . "19.1.0")
   0.92 ("arandr" . "0.1.9")
   0.92 ("python-openpyxl" . "2.6.2")
   0.92 ("lxde-common" . "0.99.2")
   0.92 ("vim-full" . "8.1.0644")
   0.92 ("sbcl-cl-prevalence" . "5-1.c163c22")
   0.92 ("sbcl-trivial-gray-streams" . "0.0.0-1.0483ade")
   0.92 ("netcdf-parallel-openmpi" . "4.4.1.1")
   0.92 ("python2-kombu" . "4.2.2")
   0.92 ("sbcl-cl-who" . "1.1.4-1.2c08caa")
   0.92 ("nml" . "0.4.5")
   0.92 ("texlive-latex-oberdiek" . "49435")
   0.92 ("emacs-forge" . "0.1.0-2.63cbf81")
   0.92 ("python-sphinx-rtd-theme" . "0.2.4")
   0.92 ("python2-requests-oauthlib" . "1.2.0")
   0.92 ("viewnior" . "1.7")
   0.92 ("ruby-webmock" . "2.3.2")
   0.92 ("sbcl-metatilities-base" . "0.6.6-1.6eaa9e3")
   0.92 ("mygui-gl" . "3.2.2")
   0.92 ("sbcl-html-encode" . "1.2")
   0.92 ("r-splus2r" . "1.2-2")
   0.92 ("r-polyclip" . "1.10-0")
   0.92 ("sbcl-cffi-grovel" . "0.19.0")
   0.92 ("sbcl-cl-css" . "0.1-1.8fe654c")
   0.92 ("libvirt-glib" . "2.0.0")
   0.92 ("sbcl-parse-number" . "1.5")
   0.92 ("zam-plugins" . "3.11")
   0.92 ("sbcl-cl-markup" . "0.1-1.e0eb7de")
   0.91 ("java-cofoja" . "1.3")
   0.91 ("sbcl-puri" . "20180228")
   0.91 ("r-gdtools" . "0.2.1")
   0.91 ("texlive-latex-pdfpages" . "49435")
   0.91 ("r-stringi" . "1.4.3")
   0.91 ("sbcl-clunit" . "0.2.3-1.6f6d728")
   0.91 ("ikiwiki" . "3.20190228")
   0.91 ("python-pyudev" . "0.21.0")
   0.91 ("r-hms" . "0.5.2")
   0.91 ("beets-bandcamp" . "0.1.3")
   0.91 ("texlive-amsfonts" . "49435")
   0.91 ("python2-oslosphinx" . "4.10.0")
   0.91 ("mailcatcher" . "0.7.1")
   0.91 ("sbcl-anaphora" . "0.9.6")
   0.91 ("python2-graphene" . "0.10.2")
   0.91 ("python-nbconvert" . "5.0.0b1")
   0.91 ("sbcl-parse-js" . "0.0.0-1.fbadc6029")
   0.91 ("glu" . "9.0.1")
   0.91 ("cmake" . "3.15.5")
   0.91 ("sbcl-metabang-bind" . "0.8.0-1.c93b7f7")
   0.91 ("sbcl-prove-asdf" . "1.0.0-1.4f9122b")
   0.91 ("python-service-identity" . "18.1.0")
   0.91 ("mupdf" . "1.16.1")
   0.91 ("sbcl-cl-unicode" . "0.1.5-1.9fcd06f")
   0.91 ("xf86-video-nv" . "2.1.21")
   0.91 ("sbcl-eos" . "0.0.0-1.b0faca8")
   0.91 ("sbcl-lack-component" . "0.0.0-1.abff8ef")
   0.91 ("sbcl-fiasco" . "0.0.1-1.d62f755")
   0.91 ("texlive-latex-amscls" . "49435")
   0.91 ("vtk" . "8.2.0")
   0.91 ("xdriinfo" . "1.0.6")
   0.91 ("python-testscenarios" . "0.5.0")
   0.91 ("python2-graphql-core" . "0.5.3")
   0.91 ("r-rpart" . "4.1-15")
   0.91 ("sbcl-trivia.level1" . "0.0.0-1.902e0c6")
   0.91 ("sbcl-queues.priority-queue" . "0.0.0-1.47d4da6")
   0.91 ("r-ucminf" . "1.1-4")
   0.91 ("non-sequencer" . "1.9.5-4.5ae43bb")
   0.91 ("r-lubridate" . "1.7.4")
   0.91 ("ganv" . "1.4.2")
   0.91 ("sbcl-s-sysdeps" . "1-1.d28246b")
   0.91 ("texlive-latex-pgf" . "49435")
   0.91 ("sbcl-rfc2388" . "0.0.0-1.591bcf7")
   0.91 ("python-reportlab" . "3.5.32")
   0.91 ("obconf" . "2.0.4")
   0.91 ("sbcl-nibbles" . "0.14")
   0.91 ("alex4" . "1.2.1")
   0.91 ("swagger-diff" . "1.1.2")
   0.91 ("r-openssl" . "1.4.1")
   0.91 ("non-timeline" . "1.9.5-4.5ae43bb")
   0.91 ("sbcl-global-vars" . "1.0.0-0.c749f32")
   0.91 ("sbcl-cl-quickcheck" . "0.0.4-1.807b279")
   0.91 ("dillo" . "3.0.5")
   0.91 ("python-oslosphinx" . "4.10.0")
   0.91 ("r-svglite" . "1.2.2")
   0.91 ("sbcl-cl-ppcre" . "2.0.11")
   0.91 ("python-pyfxa" . "0.6.0")
   0.91 ("r-mime" . "0.7")
   0.91 ("perl-catalyst-plugin-authentication" . "0.10023")
   0.91 ("sbcl-cl-store" . "0.8.11-0.cd01f26")
   0.91 ("raxml" . "8.2.12")
   0.91 ("opensubdiv" . "3.4.0")
   0.91 ("gtk-engines" . "2.20.2")
   0.91 ("numlockx" . "1.2")
   0.91 ("libblockdev" . "2.23")
   0.91 ("sbcl-chipz" . "0.8-1.75dfbc6")
   0.91 ("python2-translate-toolkit" . "2.1.0")
   0.91 ("java-jgit" . "4.7.0.201704051617-r")
   0.90 ("xf86-video-amdgpu" . "19.0.1")
   0.90 ("python-django-appconf" . "1.0.3")
   0.90 ("sbcl-lisp-unit" . "0.0.0-1.89653a2")
   0.90 ("sbcl-let-plus" . "0.0.0-1.5f14af6")
   0.90 ("r-modeltools" . "0.2-22")
   0.90 ("python-libvirt" . "5.8.0")
   0.90 ("libgit2-glib" . "0.28.0.1")
   0.90 ("dpf-plugins" . "1.3")
   0.90 ("xf86-video-mach64" . "6.9.6")
   0.90 ("awscli" . "1.14.41")
   0.90 ("ghc-conduit-algorithms" . "0.0.8.1")
   0.90 ("sbcl-split-sequence" . "1.4.1")
   0.90 ("python-sphinx-repoze-autointerface" . "0.8")
   0.90 ("texlive-latex-tools" . "49435")
   0.90 ("whysynth" . "20170701")
   0.90 ("quickswitch-i3" . "2.2-1.ed692b1")
   0.90 ("texlive-xcolor" . "49435")
   0.90 ("python-pillow" . "6.1.0")
   0.90 ("js-mathjax" . "2.7.2")
   0.90 ("gkrellm" . "2.3.10")
   0.90 ("texlive-latex-eso-pic" . "49435")
   0.90 ("python-django-contact-form" . "1.3")
   0.90 ("texlive-latex-l3packages" . "49435")
   0.90 ("python-requests-mock" . "1.3.0")
   0.90 ("compton" . "0.1beta2")
   0.90 ("java-xom" . "127")
   0.90 ("texlive-latex-float" . "49435")
   0.90 ("r-purrr" . "0.3.3")
   0.90 ("python2-mmtk" . "2.7.11")
   0.90 ("git-repo" . "1.12.37")
   0.90 ("rep-gtk" . "0.90.8.3")
   0.90 ("lxinput" . "0.3.5")
   0.90 ("sbcl-cl-yacc" . "0.3")
   0.90 ("libva" . "2.5.0")
   0.90 ("glew" . "2.1.0")
   0.90 ("guitarix" . "0.38.1")
   0.90 ("sbcl-net.didierverna.asdf-flv" . "2.1")
   0.90 ("sbcl-cxml" . "0.0.0-1.00b22bf")
   0.90 ("imb-openmpi" . "2019.1")
   0.90 ("python-automat" . "0.7.0")
   0.90 ("dia" . "0.97.2-fbc3061")
   0.90 ("texlive-latex-wasysym" . "49435")
   0.90 ("unison" . "2.51.2")
   0.90 ("gx-slow-gear-lv2" . "0-3.5d37e775b")
   0.90 ("pulseaudio-dlna" . "0.5.2-1.4472928")
   0.89 ("beets" . "1.4.9")
   0.89 ("texlive" . "20180414")
   0.89 ("r-rematch" . "1.0.1")
   0.89 ("ruby-ast" . "2.4.0")
   0.89 ("ghc-linear" . "1.20.8")
   0.89 ("python-sphinxcontrib-programoutput" . "0.10")
   0.89 ("fluidsynth" . "1.1.11")
   0.89 ("xournal" . "0.4.8.2016")
   0.89 ("python-testrepository" . "0.0.20")
   0.89 ("vkd3d" . "1.1")
   0.89 ("tigervnc-client" . "1.9.0")
   0.89 ("ruby-addressable" . "2.6.0")
   0.89 ("pardre" . "1.1.5-1")
   0.89 ("texlive-fonts-latex" . "49435")
   0.89 ("libgnomeprintui" . "2.18.6")
   0.89 ("sbcl-local-time" . "1.0.6-1.beac054")
   0.89 ("python-openid" . "3.1.0")
   0.89 ("python-gast" . "0.2.2")
   0.89 ("sbcl-trivial-types" . "0.0.1")
   0.89 ("ghc-js-flot" . "0.8.3")
   0.89 ("python-sphinxcontrib-svg2pdfconverter" . "0.1.0")
   0.89 ("gx-vbass-preamp-lv2" . "0-2.eb999b0ca")
   0.89 ("patchmatrix" . "0.16.0")
   0.89 ("ghc-hindent" . "5.3.0")
   0.89 ("gdal" . "2.2.4")
   0.89 ("magic-wormhole-transit-relay" . "0.1.2")
   0.89 ("xnee" . "3.19")
   0.89 ("java-commons-jexl" . "2.1.1")
   0.89 ("rrdtool" . "1.7.1")
   0.89 ("java-eclipse-jetty-perf-helper" . "4.2")
   0.89 ("r-minimal" . "3.6.1")
   0.89 ("python-cachecontrol" . "0.12.5")
   0.89 ("ruby-temple" . "0.8.1")
   0.89 ("libwnck" . "2.30.7")
   0.89 ("cairo-xcb" . "1.16.0")
   0.88 ("nanovg-for-extempore" . "0.7.1")
   0.88 ("python-pyarrow" . "0.10.0")
   0.88 ("cabal-install" . "2.2.0.0")
   0.88 ("inkscape" . "0.92.4")
   0.88 ("foo2zjs" . "20190909")
   0.88 ("vtk" . "6.3.0")
   0.88 ("texlive-fonts-rsfs" . "49435")
   0.88 ("python2-gst" . "1.16.0")
   0.88 ("tigervnc-server" . "1.9.0")
   0.88 ("spindle" . "0.10")
   0.88 ("python-pytest-checkdocs" . "1.2.2")
   0.88 ("clipit" . "1.4.4")
   0.88 ("python-subunit" . "1.3.0")
   0.88 ("libgnomecanvas" . "2.30.3")
   0.88 ("knot-resolver" . "4.2.2")
   0.88 ("docker" . "18.09.5")
   0.88 ("python-cffi-documentation" . "1.11.5")
   0.88 ("wmfire" . "1.2.4")
   0.88 ("python-qrcode" . "6.1")
   0.88 ("python-dulwich" . "0.18.6")
   0.88 ("nototools" . "20170925")
   0.88 ("maven-resolver-impl" . "1.3.1")
   0.88 ("python-stevedore" . "1.28.0")
   0.88 ("js-highlight" . "9.12.0")
   0.88 ("sbcl-cffi" . "0.19.0")
   0.88 ("bless" . "1p02")
   0.88 ("modem-manager" . "1.4.14")
   0.88 ("gpscorrelate" . "1.6.1.365f6e1b3f")
   0.88 ("python2-oslo.config" . "5.2.0")
   0.88 ("xf86-input-mouse" . "1.9.3")
   0.88 ("texlive-fonts-ec" . "49435")
   0.87 ("sbcl-lack-util" . "0.1.0-1.abff8ef")
   0.87 ("xf86-video-vesa" . "2.4.0")
   0.87 ("python2-mox3" . "0.24.0")
   0.87 ("python-txaio" . "18.8.1")
   0.87 ("notmuch-addrlookup-c" . "9")
   0.87 ("python2-pathpy" . "11.5.1")
   0.87 ("java-commons-lang3" . "3.4")
   0.87 ("perl-gtk2" . "1.24993")
   0.87 ("java-fest-assert" . "2.0M10")
   0.87 ("ghc-sandi" . "0.4.2")
   0.87 ("varnish" . "6.3.1")
   0.87 ("codingquarry" . "2.0")
   0.87 ("python2-oslo.context" . "2.20.0")
   0.87 ("opencascade-oce" . "0.17.2")
   0.87 ("cogl" . "1.22.4")
   0.87 ("ruby-tilt" . "2.0.9")
   0.87 ("zynaddsubfx" . "3.0.5")
   0.87 ("libxfce4util" . "4.14.0")
   0.87 ("java-commons-exec" . "1.3")
   0.87 ("lua-lgi" . "0.9.2")
   0.87 ("plib" . "1.8.5")
   0.87 ("pinentry-gtk2" . "1.1.0")
   0.87 ("fftw-openmpi" . "3.3.8")
   0.87 ("xorg-server" . "1.20.5")
   0.87 ("r-lattice" . "0.20-38")
   0.87 ("libwebp" . "1.0.3")
   0.87 ("ruby-json-schema" . "2.8.1")
   0.87 ("python2-oslotest" . "3.4.0")
   0.87 ("perl-gnupg-interface" . "0.52")
   0.87 ("cmake" . "3.15.1")
   0.87 ("bemenu" . "0.2.0")
   0.87 ("ghc-warp" . "3.2.27")
   0.86 ("ranger" . "1.9.2")
   0.86 ("python-aiorpcx" . "0.18.3")
   0.86 ("ghc-xml-conduit" . "1.8.0.1")
   0.86 ("virglrenderer" . "0.6.0")
   0.86 ("tango-icon-theme" . "0.8.90")
   0.86 ("yoshimi" . "1.6.0.3")
   0.86 ("agda-ial" . "1.5.0")
   0.86 ("texlive-hyph-utf8" . "49435")
   0.86 ("syncthing" . "1.2.2")
   0.86 ("libvdpau-va-gl" . "0.4.2")
   0.86 ("sbcl-portable-threads" . "2.3-1.c0e61a1")
   0.86 ("ruby-parser" . "2.6.0.0")
   0.86 ("java-tomcat" . "8.5.38")
   0.86 ("python-fenics-ffc" . "2018.1.0")
   0.86 ("font-culmus" . "0.133")
   0.86 ("sssd" . "1.16.4")
   0.86 ("ruby-guard" . "2.13.0")
   0.86 ("js-json2" . "2016-10-28.1-031b1d9")
   0.86 ("texlive-bin" . "20180414")
   0.85 ("libsigrokdecode" . "0.5.2")
   0.85 ("freeglut" . "3.0.0")
   0.85 ("python-pytest-shutil" . "1.7.0")
   0.85 ("python2-stevedore" . "1.28.0")
   0.85 ("emacs-gif-screencast" . "1.0-2.248d1e1")
   0.85 ("mes" . "0.19")
   0.85 ("freeimage" . "3.18.0")
   0.85 ("murrine" . "0.98.2")
   0.85 ("python2-graphql-relay" . "0.4.5")
   0.85 ("perl-catalyst-view-download" . "0.09")
   0.85 ("ghc-warp-tls" . "3.2.4.3")
   0.85 ("ruby-reverse-markdown" . "1.1.0")
   0.85 ("lxrandr" . "0.3.1")
   0.85 ("wayland-protocols" . "1.17")
   0.85 ("jack-capture" . "0.9.73")
   0.85 ("python2-anaconda-client" . "1.6.3")
   0.85 ("ghc-lens" . "4.16.1")
   0.85 ("ant" . "1.10.1")
   0.85 ("irrlicht" . "1.8.4")
   0.85 ("clojure" . "1.10.0")
   0.85 ("java-mockito" . "1.10.19")
   0.85 ("gtkmm" . "2.24.5")
   0.85 ("libngspice" . "28")
   0.85 ("font-linuxlibertine" . "5.3.0")
   0.85 ("python-pandas" . "0.25.2")
   0.85 ("python-acme" . "0.40.1")
   0.85 ("mako" . "1.4")
   0.85 ("java-commons-net" . "3.6")
   0.85 ("texlive-latex-xkeyval" . "49435")
   0.85 ("texlive-dehyph-exptl" . "49435")
   0.85 ("varnish-modules" . "0.15.0")
   0.85 ("python-aiohttp" . "3.5.4")
   0.85 ("sbcl-map-set" . "0.0.0-1.7b4b545")
   0.85 ("libfm" . "1.3.1")
   0.85 ("java-commons-cli" . "1.4")
   0.85 ("signing-party" . "2.10")
   0.85 ("ghc-http" . "4000.3.12")
   0.85 ("texlive-latex-eqparbox" . "49435")
   0.85 ("python2-hacking" . "1.0.0")
   0.85 ("python-slugify" . "3.0.4")
   0.85 ("telepathy-glib" . "0.24.1")
   0.85 ("dvdauthor" . "0.7.2")
   0.84 ("python-fasteners" . "0.14.1")
   0.84 ("java-ops4j-base-io" . "1.5.0")
   0.84 ("sbcl-trivial-garbage" . "0.21")
   0.84 ("maven-resolver-test-util" . "1.3.1")
   0.84 ("beignet" . "1.3.2")
   0.84 ("mp3info" . "0.8.5a")
   0.84 ("python2-service-identity" . "18.1.0")
   0.84 ("java-fasterxml-jackson-dataformat-xml" . "2.9.4")
   0.84 ("emacs-blimp" . "0.0.0-1.e420763")
   0.84 ("java-guice" . "4.1")
   0.84 ("rtv" . "1.27.0")
   0.84 ("texlive-latex-type1cm" . "49435")
   0.84 ("i3-wm" . "4.17.1")
   0.84 ("ruby-rspec-its" . "1.2.0")
   0.84 ("python-translate-toolkit" . "2.1.0")
   0.84 ("perl-catalyst-plugin-accesslog" . "1.10")
   0.84 ("launchmon" . "1.0.2")
   0.84 ("ghc-persistent" . "2.8.2")
   0.84 ("allegro" . "4.4.3")
   0.84 ("ganv" . "1.5.4-1.12f7d6b04")
   0.84 ("wl-clipboard" . "2.0.0_beta2")
   0.84 ("texlive-tiny" . "49435")
   0.84 ("ruby-rspec-rails" . "3.8.2")
   0.83 ("texlive-latex-draftwatermark" . "49435")
   0.83 ("ruby-minitest-around" . "0.5.0")
   0.83 ("ntk" . "1.3.1000")
   0.83 ("python2-swagger-spec-validator" . "2.4.3")
   0.83 ("texlive-etex" . "49435")
   0.83 ("vulkan-loader" . "1.1.114")
   0.83 ("dune-pdelab" . "2.6.0-rc1")
   0.83 ("telepathy-logger" . "0.8.2")
   0.83 ("python2-sphinx-repoze-autointerface" . "0.8")
   0.83 ("bullet" . "2.88")
   0.83 ("xboard" . "4.9.1")
   0.83 ("java-commons-httpclient" . "3.1")
   0.83 ("ghc-feed" . "1.0.0.0")
   0.83 ("keynav" . "0.20110708.0")
   0.83 ("python-mox3" . "0.24.0")
   0.83 ("python-hacking" . "1.0.0")
   0.83 ("cifs-utils" . "6.9")
   0.83 ("lvtk" . "1.2.0")
   0.83 ("notmuch" . "0.29.2")
   0.83 ("stylish-haskell" . "0.9.2.2")
   0.83 ("texlive-cm" . "49435")
   0.83 ("a2ps" . "4.14")
   0.82 ("python-pyro4" . "4.77")
   0.82 ("python-fenics-dijitso" . "2018.1.0")
   0.82 ("python2-geventhttpclient" . "1.3.1")
   0.82 ("texlive-hyphen-ethiopic" . "49435")
   0.82 ("java-gson" . "2.8.2")
   0.82 ("python-pykafka" . "2.4.0")
   0.82 ("ghc-simple-sendfile" . "0.2.27")
   0.82 ("perl-net-amazon-s3" . "0.60")
   0.82 ("ruby-omniauth-oauth2" . "1.6.0")
   0.82 ("java-commons-collections4" . "4.1")
   0.82 ("ghc-validation" . "1")
   0.82 ("python-txtorcon" . "19.0.0")
   0.82 ("gitolite" . "3.6.7")
   0.82 ("dune-alugrid" . "2.6.0")
   0.82 ("tegaki-zinnia-japanese-light" . "0.3")
   0.82 ("kmonad" . "0.2.0")
   0.82 ("mes" . "0.20")
   0.82 ("python-agate-excel" . "0.2.3")
   0.82 ("ruby-aruba" . "0.14.8")
   0.82 ("msitools" . "0.100")
   0.82 ("libva-utils" . "2.5.0")
   0.82 ("freedoom" . "0.12.1")
   0.82 ("ruby-haml" . "5.0.4")
   0.82 ("python-aiohttp-socks" . "0.2.2")
   0.82 ("python-ws4py" . "0.5.1")
   0.82 ("python-treq" . "18.6.0")
   0.82 ("gerbv" . "2.7.0")
   0.82 ("python2-automat" . "0.7.0")
   0.81 ("perl-www-curl" . "4.17")
   0.81 ("texlive-latex-galois" . "49435")
   0.81 ("python2-os-client-config" . "1.12.0")
   0.81 ("python2-pykka" . "1.2.1")
   0.81 ("rofi-pass" . "2.0.2")
   0.81 ("julia" . "1.1.1")
   0.81 ("python-graphql-core" . "0.5.3")
   0.81 ("wterm" . "0.7")
   0.81 ("dunst" . "1.4.1")
   0.81 ("gdk-pixbuf+svg" . "2.38.1")
   0.81 ("python2-pykafka" . "2.4.0")
   0.81 ("dune-geometry" . "2.6.0")
   0.81 ("cedille" . "1.1.1")
   0.81 ("rakarrack" . "0.6.1")
   0.81 ("skribilo" . "0.9.4")
   0.81 ("lxtask" . "0.1.7")
   0.81 ("python2-tldextract" . "2.2.0")
   0.81 ("libgnomeprint" . "2.18.8")
   0.81 ("gtklick" . "0.6.4")
   0.81 ("python-gevent" . "1.3.7")
   0.81 ("vcsh" . "1.20151229")
   0.81 ("emacs-eimp" . "1.4.0-1.2e7536f")
   0.80 ("python-proteus" . "4.6.0")
   0.80 ("libass" . "0.14.0")
   0.80 ("python2-tegaki-recognize" . "0.3.1-1.eceec69")
   0.80 ("gpa" . "0.10.0")
   0.80 ("gpick" . "0.2.5")
   0.80 ("guile-present" . "0.3.0")
   0.80 ("ghc-stm-conduit" . "4.0.0")
   0.80 ("texlive-latex-fancyvrb" . "49435")
   0.80 ("samba" . "4.11.2")
   0.80 ("ghc-monad-logger" . "0.3.29")
   0.80 ("chafa" . "1.2.1")
   0.80 ("ghc-safeio" . "0.0.5.0")
   0.80 ("libmemcached" . "1.0.18")
   0.80 ("slurp" . "1.2.0")
   0.80 ("xyce-parallel" . "6.8")
   0.80 ("python-gipc" . "0.6.0")
   0.80 ("font-gnu-freefont-ttf" . "20120503")
   0.80 ("netcdf-fortran" . "4.4.4")
   0.80 ("elpa-openmpi" . "2018.11.001")
   0.80 ("python2-twobitreader" . "3.1.6")
   0.80 ("rust-cbindgen" . "0.9.1")
   0.80 ("java-ops4j-base-lang" . "1.5.0")
   0.80 ("lxterminal" . "0.3.2")
   0.80 ("python-graphene" . "0.10.2")
   0.80 ("wayland" . "1.17.0")
   0.80 ("ghc-cereal-conduit" . "0.8.0")
   0.80 ("texlive-fonts-stmaryrd" . "49435")
   0.80 ("python-attrs" . "19.1.0")
   0.80 ("python-pika" . "0.12.0")
   0.80 ("fortune-mod" . "2.6.2")
   0.80 ("java-eclipse-core-variables" . "3.3.0")
   0.80 ("petsc-complex-openmpi" . "3.11.2")
   0.80 ("python-nautilus" . "0.4.9")
   0.80 ("python-pylibmc" . "1.6.1")
   0.80 ("dune-grid" . "2.6.0")
   0.80 ("fvwm" . "2.6.9")
   0.80 ("texlive-fonts-knuth-lib" . "49435")
   0.80 ("grub-efi" . "2.04")
   0.80 ("idris" . "1.3.2")
   0.80 ("redshift-wayland" . "1.12-1.7da875d")
   0.80 ("foomatic-filters" . "4.0.17")
   0.79 ("python2-flask-migrate" . "2.0.3")
   0.79 ("libstdc++-doc" . "9.2.0")
   0.79 ("python2-pygobject" . "3.28.3")
   0.79 ("python-dns-lexicon" . "2.4.0")
   0.79 ("redkite" . "0.6.2")
   0.79 ("python-sphinx-cloud-sptheme" . "1.8.0")
   0.79 ("trydiffoscope" . "67.0.1")
   0.79 ("mumps-metis-openmpi" . "5.2.1")
   0.79 ("non-mixer" . "1.9.5-4.5ae43bb")
   0.79 ("openmpi-thread-multiple" . "4.0.2")
   0.79 ("python-internetarchive" . "1.8.5")
   0.79 ("perl-catalyst-devel" . "1.39")
   0.79 ("pass-otp" . "1.2.0")
   0.79 ("intel-mpi-benchmarks" . "2019.3")
   0.79 ("mumps-openmpi" . "5.2.1")
   0.79 ("texlive-latex-filecontents" . "49435")
   0.79 ("java-osgi-namespace-extender" . "1.0.1")
   0.79 ("perl-catalyst-traitfor-request-proxybase" . "0.000005")
   0.79 ("icedtea" . "2.6.13")
   0.79 ("squirrel" . "3.1")
   0.79 ("python-agate-sql" . "0.5.4")
   0.79 ("ghc-tree-diff" . "0.0.1")
   0.79 ("grub-hybrid" . "2.04")
   0.79 ("python2-reportlab" . "3.5.32")
   0.79 ("python2-pylibmc" . "1.6.1")
   0.79 ("java-eclipse-core-contenttype" . "3.5.100")
   0.78 ("python-djangorestframework" . "3.7.7")
   0.78 ("texlive-ydoc" . "49435")
   0.78 ("bamm" . "1.7.3")
   0.78 ("prank" . "170427")
   0.78 ("java-datanucleus-javax-persistence" . "2.2.0")
   0.78 ("python-numpydoc" . "0.8.0")
   0.78 ("java-osgi-service-packageadmin" . "1.2.0")
   0.78 ("combinatorial-blas" . "1.6.2")
   0.78 ("axoloti-runtime" . "1.0.12")
   0.78 ("python-debtcollector" . "1.19.0")
   0.78 ("389-ds-base" . "1.4.0.21")
   0.78 ("python2-guzzle-sphinx-theme" . "0.7.11")
   0.78 ("libphutil" . "0.0.0-1.b29d76e")
   0.78 ("netcdf" . "4.4.1.1")
   0.78 ("java-osgi-service-repository" . "1.1.0")
   0.78 ("tegaki-zinnia-japanese-kyoiku" . "0.3")
   0.78 ("slop" . "7.4")
   0.78 ("pango" . "1.42.4")
   0.78 ("ghc-conduit-combinators" . "1.3.0")
   0.78 ("hdup" . "2.0.14")
   0.78 ("msmtp" . "1.8.6")
   0.78 ("python-pyatspi" . "2.26.0")
   0.78 ("fontforge" . "20190801")
   0.78 ("calf" . "0.90.2")
   0.78 ("swaylock" . "1.4")
   0.78 ("password-store" . "1.7.3")
   0.78 ("librsvg" . "2.46.3")
   0.77 ("python2-i3-py" . "0.6.5")
   0.77 ("gnaural" . "20110606")
   0.77 ("libsigrok" . "0.5.1")
   0.77 ("python2-pycairo" . "1.17.1")
   0.77 ("perl-gd-securityimage" . "1.75")
   0.77 ("idris-bifunctors" . "0.1-1.53d06a6")
   0.77 ("python-zipp" . "0.5.1")
   0.77 ("ruby-utils" . "0.9.0")
   0.77 ("leafpad" . "0.8.18.1")
   0.77 ("icedtea" . "1.13.13")
   0.77 ("pscircle" . "1.3.0")
   0.77 ("guile-rsvg" . "2.18.1-0.05c6a2f")
   0.77 ("python-openstackdocstheme" . "1.18.1")
   0.77 ("python2-yubikey-manager" . "2.1.0")
   0.77 ("ghc-haddock" . "2.19.0.1")
   0.77 ("pocl" . "1.4")
   0.77 ("eless" . "0.3")
   0.77 ("slurm-drmaa" . "1.0.7")
   0.77 ("emacs-vdiff-magit" . "0.3.2-8.b100d12")
   0.77 ("thermald" . "1.8")
   0.77 ("pt-scotch" . "6.0.6")
   0.77 ("python-xapian-bindings" . "1.4.13")
   0.77 ("graphviz" . "2.40.1")
   0.77 ("python2-gdrivefs" . "0.14.9")
   0.77 ("postgis" . "2.4.8")
   0.77 ("libusb4java" . "0-1.396d642a5")
   0.77 ("ruby-railties" . "5.2.2.1")
   0.76 ("ngspice" . "28")
   0.76 ("criu" . "3.11")
   0.76 ("perl-catalyst-plugin-stacktrace" . "0.12")
   0.76 ("asco" . "0.4.10")
   0.76 ("superlu-dist" . "6.1.0")
   0.76 ("arpack-ng-openmpi" . "3.6.3")
   0.76 ("tlp" . "1.2.2")
   0.76 ("gmsh" . "2.16.0")
   0.76 ("python-yubikey-manager" . "2.1.0")
   0.76 ("mps-youtube" . "0.2.8")
   0.76 ("brlaser" . "4-1.779f71e")
   0.76 ("insight-toolkit" . "5.0.0")
   0.76 ("python2-flask-script" . "2.0.6")
   0.76 ("perl-catalyst-plugin-session-state-cookie" . "0.17")
   0.76 ("pinentry-tty" . "1.1.0")
   0.76 ("tint2" . "0.14.6")
   0.76 ("python2-pybigwig" . "0.3.12")
   0.76 ("ttfautohint" . "1.5")
   0.76 ("libstdc++-doc" . "5.5.0")
   0.76 ("perl-catalyst-plugin-session" . "0.41")
   0.75 ("emacs-helm-mu" . "20180513-1.77e6fea")
   0.75 ("emacs-mu4e-conversation" . "0.0.1-5.98110bb")
   0.75 ("pt-scotch32" . "6.0.6")
   0.75 ("ruby-git" . "1.3.0")
   0.75 ("duperemove" . "0.11.1")
   0.75 ("ghc-trifecta" . "2")
   0.75 ("volume-key" . "0.3.12")
   0.75 ("perl-catalyst-plugin-session-store-fastmmap" . "0.16")
   0.75 ("ghc-wai-extra" . "3.0.24.2")
   0.75 ("fabric" . "1.14.0")
   0.75 ("pinentry-emacs" . "1.1.0")
   0.75 ("sambamba" . "0.6.8")
   0.75 ("sqitch" . "1.0.0")
   0.75 ("perl-catalyst-action-rest" . "1.21")
   0.75 ("setbfree" . "0.8.9")
   0.75 ("python-pyfit-sne" . "1.0.1")
   0.75 ("kodi-cli" . "1.1-1.104dc23")
   0.75 ("xfconf" . "4.14.1")
   0.75 ("gnurobots" . "1.2.0")
   0.75 ("python2-pynamecheap" . "0.0.3")
   0.75 ("python2-django-assets" . "0.12")
   0.75 ("playerctl" . "2.0.2")
   0.75 ("cl-string-match" . "0-1.5048480")
   0.75 ("xf86-input-wacom" . "0.38.0")
   0.75 ("emacs-mu4e-jump-to-list" . "1.0-1.358bba0")
   0.74 ("emacs-desktop-environment" . "0.3.0")
   0.74 ("rust" . "1.36.0")
   0.74 ("emacs-scel" . "20170629-1.aeea3ad")
   0.74 ("emacs-orgit" . "1.5.3")
   0.74 ("intel-vaapi-driver" . "2.3.0")
   0.74 ("python-graphql-relay" . "0.4.5")
   0.74 ("ghc-persistent-template" . "2.5.4")
   0.74 ("ruby-gem-hadar" . "1.9.1")
   0.74 ("python-django-jsonfield" . "1.0.3")
   0.74 ("perl-catalystx-component-traits" . "0.19")
   0.74 ("vips" . "8.7.4")
   0.74 ("connman" . "1.37")
   0.74 ("perl-catalyst-view-json" . "0.37")
   0.74 ("blasr-libcpp" . "5.3.3")
   0.74 ("perl-test-www-mechanize-catalyst" . "0.62")
   0.74 ("gtkglext" . "1.2.0")
   0.74 ("python-httpretty" . "0.9.6")
   0.74 ("python-gdal" . "2.2.4")
   0.74 ("python-louvain" . "0.6.1")
   0.74 ("scalapack" . "2.0.2")
   0.74 ("python2-pillow" . "6.1.0")
   0.74 ("python-agate" . "1.6.1")
   0.74 ("hdf5-parallel-openmpi" . "1.8.21")
   0.74 ("python2-ws4py" . "0.3.2")
   0.74 ("ruby-pstree" . "0.1.0")
   0.74 ("dune-istl" . "2.6.0")
   0.74 ("python2-django-bulk-update" . "1.1.10")
   0.74 ("python-prometheus-client" . "0.5.0")
   0.74 ("python2-flask-login" . "0.4.1")
   0.74 ("p4est-openmpi" . "2.0")
   0.74 ("emacs-magit-org-todos-el" . "0.1.1-1.df20628")
   0.74 ("perl-catalyst-plugin-authorization-roles" . "0.09")
   0.74 ("texlive-hyphen-galician" . "49435")
   0.74 ("cvs-fast-export" . "1.45")
   0.74 ("perl-catalyst-action-renderview" . "0.16")
   0.74 ("ghc-descriptive" . "0.9.5")
   0.74 ("maim" . "5.5.3")
   0.74 ("pangox-compat" . "0.0.2")
   0.73 ("corrode" . "0.0.1-b6699fb")
   0.73 ("font-fantasque-sans" . "1.7.2")
   0.73 ("rust" . "1.34.1")
   0.73 ("find-circ" . "1.2-1.8655dca")
   0.73 ("python2-clf" . "0.5.7")
   0.73 ("python-folium" . "0.10.0")
   0.73 ("python-pygobject" . "3.34.0")
   0.73 ("perl-pango" . "1.227")
   0.73 ("perl-catalyst-dispatchtype-regex" . "5.90035")
   0.73 ("ghc-chart" . "1.9")
   0.73 ("perl-xml-feed" . "0.59")
   0.73 ("waylandpp" . "0.2.5")
   0.73 ("android-f2fs-utils" . "7.1.2_r36")
   0.73 ("dune-common" . "2.6.0")
   0.73 ("python2-xenon" . "0.5.4")
   0.73 ("ruby-term-ansicolor" . "1.6.0")
   0.73 ("idris-lens" . "0.1-1.26f0120")
   0.73 ("magic-wormhole-mailbox-server" . "0.3.1")
   0.73 ("geonkick" . "1.9.0")
   0.73 ("singular" . "4.1.2p1")
   0.73 ("cl-lack-request" . "0.1.0-1.abff8ef")
   0.73 ("android-ext4-utils" . "7.1.2_r36")
   0.73 ("ghc-stylish-haskell" . "0.9.2.1")
   0.73 ("gegl" . "0.4.18")
   0.73 ("python2-josepy" . "1.1.0")
   0.73 ("domainfinder" . "2.0.5")
   0.73 ("xdg-utils" . "1.1.3")
   0.73 ("graphicsmagick" . "1.3.32")
   0.73 ("xf86-input-keyboard" . "1.9.0")
   0.73 ("libvirt" . "5.8.0")
   0.72 ("ghc-haddock-library" . "1.5.0.1")
   0.72 ("python2-tegaki-tools" . "0.3.1")
   0.72 ("ghc-http-client" . "0.5.13.1")
   0.72 ("kmscon" . "0.0.0-1.01dd0a2")
   0.72 ("hyperledger-fabric" . "1.4.0")
   0.72 ("python-betamax-matchers" . "0.4.0")
   0.72 ("ddcutil" . "0.9.7")
   0.72 ("macs" . "2.1.1.20160309")
   0.72 ("pangomm" . "2.42.0")
   0.72 ("libwpe" . "1.4.0")
   0.72 ("python-geventhttpclient" . "1.3.1")
   0.72 ("emacs-magit-gerrit" . "0.3-1.ece6f36")
   0.72 ("mesa-utils" . "8.4.0")
   0.72 ("python2-wsgiproxy2" . "0.4.6")
   0.72 ("emacs-no-x-toolkit" . "26.3")
   0.72 ("python-flask-principal" . "0.4.0")
   0.72 ("mesa-opencl-icd" . "19.1.4")
   0.72 ("python-pytest-localserver" . "0.5.0")
   0.71 ("python2-colormath" . "3.0.0")
   0.71 ("sailfish" . "0.10.1")
   0.71 ("faust" . "2.5.23")
   0.71 ("git-crypt" . "0.5.0")
   0.71 ("boinc-server" . "7.16.1")
   0.71 ("ruby-pry" . "0.11.3")
   0.71 ("aseprite" . "1.1.7")
   0.71 ("python-flask-sqlalchemy" . "2.4.0")
   0.71 ("perl-moosex-types-datetime-morecoercions" . "0.15")
   0.71 ("python2-tegaki-pygtk" . "0.3.1")
   0.71 ("scroll" . "1.20180421")
   0.71 ("xdg-dbus-proxy" . "0.1.2")
   0.71 ("aegis" . "4.24")
   0.71 ("gst-kaldi-nnet2-online" . "0-1.617e43e")
   0.71 ("emacs-highlight-indentation" . "0.7.0-1.d03803f")
   0.71 ("libomp" . "8.0.0")
   0.71 ("ruby-prawn" . "2.2.2")
   0.71 ("go-github-com-whyrusleeping-gx-util" . "0.14.1")
   0.71 ("python-wsgiproxy2" . "0.4.6")
   0.71 ("python2-discogs-client" . "2.2.1")
   0.71 ("ruby-actionmailer" . "5.2.2.1")
   0.71 ("emacs-magit-svn" . "2.2.1-1.9e33cee")
   0.71 ("freeglut" . "2.8.1")
   0.71 ("perl-net-dbus" . "1.1.0")
   0.71 ("python-objgraph" . "3.4.0")
   0.71 ("pass-git-helper" . "0.3.1")
   0.71 ("python2-flask-wtf" . "0.13.1")
   0.71 ("python2-mechanicalsoup" . "0.11.0")
   0.71 ("nitrogen" . "1.6.1")
   0.71 ("hwloc" . "1.11.12")
   0.71 ("python2-apispec" . "0.25.3")
   0.71 ("perl-xml-atom" . "0.42")
   0.71 ("emacs-wordgen" . "0.1.4")
   0.70 ("guile-charting" . "0.2.0")
   0.70 ("ghc-rebase" . "1.2.4")
   0.70 ("python-grequests" . "0.3.0")
   0.70 ("dune-localfunctions" . "2.6.0")
   0.70 ("python2-activepapers" . "0.2.2")
   0.70 ("packagekit" . "1.1.12")
   0.70 ("python-flask-script" . "2.0.6")
   0.70 ("adb" . "7.1.2_r36")
   0.70 ("exonerate" . "2.4.0")
   0.70 ("python-clf" . "0.5.7")
   0.70 ("emacs-mu4e-patch" . "0.1.0-1.522da46")
   0.70 ("upower" . "0.99.10")
   0.70 ("zile-on-guile" . "2.4.14-0.fd09781")
   0.70 ("ghc-cairo" . "0.13.5.0")
   0.70 ("sunxi-tools" . "1.4.2")
   0.70 ("gx-go" . "1.9.0")
   0.70 ("sorcer" . "1.1.3")
   0.70 ("irssi" . "1.1.3")
   0.70 ("ghc-tldr" . "0.4.0.1")
   0.70 ("opencsg" . "1.4.2")
   0.70 ("python2-bx-python" . "0.8.2")
   0.70 ("ghc-bifunctors" . "5.5.3")
   0.70 ("python-biopython" . "1.70")
   0.70 ("libmirage" . "3.2.3")
   0.70 ("seqmagick" . "0.7.0")
   0.70 ("emacs-magit" . "2.90.1-2.c761d28")
   0.70 ("i3lock-color" . "2.12.c")
   0.70 ("python-vcrpy" . "2.0.1")
   0.70 ("vulkan-tools" . "1.1.114")
   0.70 ("opencascade-occt" . "7.3.0p3")
   0.70 ("xf86-video-glint" . "1.2.9")
   0.70 ("python2-flask-babel" . "0.11.2")
   0.70 ("gstreamer" . "1.16.0")
   0.70 ("python-flask-wtf" . "0.13.1")
   0.69 ("tophat" . "2.1.1")
   0.69 ("texlive-metafont-base" . "49435")
   0.69 ("imposm3" . "0.6.0-alpha.4")
   0.69 ("python2-pytest-httpbin" . "0.2.3")
   0.69 ("ghc-inline-c-cpp" . "0.2.2.1")
   0.69 ("harfbuzz" . "2.5.3")
   0.69 ("artyfx" . "1.3")
   0.69 ("ghc-cgi" . "3001.3.0.2")
   0.69 ("git" . "2.24.0")
   0.69 ("ghc-conduit-extra" . "1.3.1.1")
   0.69 ("emacs-image+" . "0.6.2-1.6834d0c")
   0.69 ("python-jsonschema" . "3.0.1")
   0.69 ("ruby-cucumber" . "3.1.2")
   0.69 ("libxml++" . "3.0.1")
   0.69 ("python-pytest-httpbin" . "0.2.3")
   0.69 ("python-spectra" . "0.0.11")
   0.69 ("python2-flask-htmlmin" . "1.2")
   0.69 ("texlive-fontinst" . "49435")
   0.69 ("ghc-io-streams-haproxy" . "1.0.0.2")
   0.69 ("perl-cairo" . "1.106")
   0.69 ("python2-autograd" . "0.0.0-0.442205d")
   0.69 ("python2-requests-toolbelt" . "0.8.0")
   0.69 ("bppsuite" . "2.2.0-1.c516147")
   0.69 ("blasr" . "5.3.3")
   0.69 ("python-flask-multistatic" . "1.0")
   0.69 ("ghc-inline-c" . "0.6.1.0")
   0.69 ("tuxpaint-config" . "0.0.14")
   0.69 ("xf86-video-ark" . "0.7.5")
   0.69 ("instantmusic" . "1.0-1.300891d")
   0.69 ("perl-glib" . "1.3291")
   0.69 ("ghc-email-validate" . "2.3.2.6")
   0.69 ("python-fenics-fiat" . "2018.1.0")
   0.69 ("python-docker-py" . "3.7.3")
   0.69 ("ghc-lzma-conduit" . "1.2.1")
   0.69 ("slurm" . "19.05.3-2")
   0.69 ("gx-saturator-lv2" . "0-3.605330f43")
   0.68 ("ocaml-ppx-jane" . "0.11.0")
   0.68 ("ocaml-splittable-random" . "0.11.0")
   0.68 ("wmctrl" . "1.07")
   0.68 ("python2-ndg-httpsclient" . "0.5.1")
   0.68 ("xtl" . "0.6.8")
   0.68 ("avahi" . "0.7")
   0.68 ("python-cookiecutter" . "1.6.0")
   0.68 ("ghc-exactprint" . "0.5.6.1")
   0.68 ("curlftpfs" . "0.9.2")
   0.68 ("privoxy" . "3.0.28")
   0.68 ("dune-functions" . "2.6.0")
   0.68 ("toot" . "0.21.0")
   0.68 ("ghc-texmath" . "0.11.0.1")
   0.68 ("gconf" . "3.2.6")
   0.68 ("perl-datetimex-easy" . "0.089")
   0.68 ("python-elasticsearch" . "6.1.1")
   0.68 ("perl-www-opensearch" . "0.17")
   0.68 ("tumbler" . "0.2.7")
   0.68 ("dbus-glib" . "0.108")
   0.68 ("python-hawkauthlib" . "2.0.0")
   0.68 ("units" . "2.19")
   0.68 ("rust" . "1.30.1")
   0.68 ("gnome-shell-extensions" . "3.30.1")
   0.68 ("ocaml-core-kernel" . "0.11.1")
   0.68 ("ruby-method-source" . "0.9.0")
   0.68 ("perl-catalystx-script-server-starman" . "0.03")
   0.68 ("thefuck" . "3.29")
   0.68 ("ghc-enclosed-exceptions" . "1.0.3")
   0.68 ("perl-io-all" . "0.87")
   0.68 ("python2-pymysql" . "0.9.3")
   0.68 ("guile-opengl" . "0.1.0")
   0.68 ("python-scp" . "0.13.2")
   0.68 ("i3lock-fancy" . "0.2")
   0.68 ("python2-flex" . "6.10.0")
   0.68 ("xfig" . "3.2.7a")
   0.67 ("google-brotli" . "1.0.7")
   0.67 ("python-apispec" . "0.25.3")
   0.67 ("ghc-haskell-src-exts-util" . "0.2.3")
   0.67 ("shellcheck" . "0.7.0")
   0.67 ("android-libselinux" . "7.1.2_r36")
   0.67 ("python-xenon" . "0.5.4")
   0.67 ("xmonad" . "0.15")
   0.67 ("python-flask-htpasswd" . "0.3.1")
   0.67 ("python2-betamax-matchers" . "0.4.0")
   0.67 ("python2-langkit" . "0.0.0-0.fe0bc8b")
   0.67 ("ghc-hmatrix-gsl" . "0.19.0.1")
   0.67 ("libgaiagraphics" . "0.5")
   0.67 ("texlive-latex-ucs" . "49435")
   0.67 ("pdf2svg" . "0.2.3")
   0.67 ("ghc-aeson-pretty" . "0.8.7")
   0.67 ("ghc-bzlib-conduit" . "0.3.0.1")
   0.67 ("burp" . "2.3.6")
   0.67 ("makefile2graph" . "1.5.0")
   0.67 ("khmer" . "3.0.0a3")
   0.67 ("non-session-manager" . "1.9.5-4.5ae43bb")
   0.67 ("mapnik" . "3.0.18")
   0.67 ("mu" . "1.2.0")
   0.67 ("xss-lock" . "0.3.0-1.1e158fb")
   0.67 ("perl-finance-quote" . "1.47")
   0.67 ("python2-dns-lexicon" . "2.4.0")
   0.67 ("ruby-timecop" . "0.9.1")
   0.67 ("mongodb" . "3.4.10")
   0.67 ("python-flask-login" . "0.4.1")
   0.67 ("igt-gpu-tools" . "1.23")
   0.67 ("orbit2" . "2.14.19")
   0.67 ("gandi.cli" . "1.5")
   0.67 ("python2-axolotl" . "0.1.39")
   0.67 ("perl-net-dbus-glib" . "0.33.0")
   0.67 ("crossmap" . "0.2.9")
   0.67 ("ghc-aeson-qq" . "0.8.2")
   0.67 ("i3lock" . "2.11.1")
   0.67 ("python-hdf4" . "0.9")
   0.67 ("libcroco" . "0.6.13")
   0.67 ("texlive-filemod" . "49435")
   0.67 ("goaccess" . "1.0.2")
   0.67 ("fdisk" . "2.0.0a1")
   0.67 ("ghc-shelly" . "1.8.1")
   0.67 ("pynac" . "0.7.26")
   0.67 ("ruby-rerun" . "0.13.0")
   0.66 ("piranha" . "1.2.1-1.0466d364b")
   0.66 ("lxappearance" . "0.6.2")
   0.66 ("cairo" . "1.16.0")
   0.66 ("ghc-interpolate" . "0.2.0")
   0.66 ("translate-shell" . "0.9.6.11")
   0.66 ("rdup" . "1.1.15")
   0.66 ("python2-funcy" . "1.11")
   0.66 ("sparql-query" . "1.1")
   0.66 ("libsmf" . "1.3")
   0.66 ("gtk-xfce-engine" . "2.10.1")
   0.66 ("python2-blosc" . "1.5.1")
   0.66 ("ghc-libmpd" . "0.9.0.9")
   0.66 ("ibutils" . "1.5.7-0.2.gbd7e502")
   0.66 ("yubico-pam" . "2.26-0.b5bd00d")
   0.66 ("python2-hdf4" . "0.9")
   0.66 ("ruby-progress_bar" . "1.1.0")
   0.66 ("avr-toolchain" . "5.5.0")
   0.66 ("ecl-dexador" . "0.9.10-1.a2714d1")
   0.66 ("pbbam" . "0.23.0")
   0.66 ("slepc-complex-openmpi" . "3.11.1")
   0.66 ("ruby-activestorage" . "5.2.2.1")
   0.66 ("libmanette" . "0.2.3")
   0.66 ("pinentry" . "1.1.0")
   0.66 ("ghc-wai" . "3.2.1.2")
   0.66 ("libsvgtiny" . "0.1.7")
   0.66 ("ghc-path" . "0.6.1")
   0.66 ("grim" . "1.2.0")
   0.66 ("qemu-minimal" . "4.1.0")
   0.66 ("emacs-flycheck-irony" . "0.1.0")
   0.66 ("libepoxy" . "1.5.3")
   0.66 ("cppcheck" . "1.89")
   0.66 ("python-nose-randomly" . "1.2.6")
   0.66 ("rust" . "1.27.2")
   0.66 ("atk" . "2.32.0")
   0.66 ("salmon" . "0.13.1")
   0.66 ("mate-themes" . "3.22.20")
   0.66 ("ruby-http-cookie" . "1.0.3")
   0.66 ("vte" . "0.28.2")
   0.66 ("mdbtools" . "0.7.1")
   0.66 ("gx" . "0.14.1")
   0.66 ("ghc-cheapskate" . "0.1.1")
   0.66 ("lensfun" . "0.3.2")
   0.66 ("newlib-nano" . "2.4.0")
   0.66 ("reuse" . "0.5.0")
   0.66 ("texlive-latex-verbatimbox" . "49435")
   0.66 ("libglade" . "2.6.4")
   0.66 ("perl-x11-xcb" . "0.18")
   0.66 ("ruby-maruku" . "0.7.3")
   0.66 ("hlint" . "2.1.10")
   0.66 ("openbox" . "3.6.1")
   0.66 ("parted" . "3.3")
   0.66 ("python-notify2" . "0.3.1")
   0.65 ("ghc-hxt" . "9.3.1.16")
   0.65 ("ghc-http-streams" . "0.8.6.1")
   0.65 ("texlive-generic-ulem" . "49435")
   0.65 ("python-autograd" . "0.0.0-0.442205d")
   0.65 ("python-discogs-client" . "2.2.1")
   0.65 ("python-pykka" . "1.2.1")
   0.65 ("ruby-lumberjack" . "1.0.13")
   0.65 ("texlive-latex-anysize" . "49435")
   0.65 ("benchmark" . "1.5.0")
   0.65 ("guile-picture-language" . "0.0.1-1.91d10c9")
   0.65 ("ghc-either" . "5.0.1")
   0.65 ("gobject-introspection" . "1.60.2")
   0.65 ("python-flask" . "1.0.3")
   0.65 ("emacs-mastodon" . "0.9.0")
   0.65 ("ncdc" . "1.22")
   0.65 ("emacs-solarized-theme" . "1.2.2")
   0.65 ("ruby-morecane" . "0.2.0")
   0.65 ("libbonobo" . "2.32.1")
   0.65 ("glfw" . "3.2.1")
   0.65 ("metabat" . "2.12.1")
   0.65 ("dealii" . "9.1.1")
   0.65 ("guile-cairo" . "1.10.0")
   0.65 ("arm-none-eabi-nano-toolchain" . "4.9.4-1.227977")
   0.65 ("rust" . "1.32.0")
   0.65 ("texlive-latex-wrapfig" . "49435")
   0.65 ("python-ont-fast5-api" . "1.4.4")
   0.65 ("caps-plugins-lv2" . "0.9.24")
   0.65 ("atkmm" . "2.28.0")
   0.65 ("ftgl" . "2.4.0")
   0.65 ("python-gst" . "1.16.0")
   0.65 ("python-wsgi-intercept" . "1.2.2")
   0.65 ("python-pyhamcrest" . "1.9.0-0.25fdc5f")
   0.65 ("dosfstools" . "4.1")
   0.65 ("texlive-latex-koma-script" . "49435")
   0.65 ("shared-mime-info" . "1.10")
   0.65 ("python-cvxopt" . "1.2.3")
   0.65 ("kaldi" . "0-1.2f95609")
   0.65 ("emacs-zones" . "0-2.3169815")
   0.65 ("ghc-safe-exceptions" . "0.1.7.0")
   0.65 ("ghc-hmatrix-special" . "0.19.0.0")
   0.65 ("hwloc" . "2.1.0")
   0.65 ("python2-oauthlib" . "3.0.1")
   0.65 ("python-gitpython" . "2.1.11")
   0.65 ("glib" . "2.60.6")
   0.65 ("python2-pygobject" . "2.28.7")
   0.65 ("quesoglc" . "0.7.2")
   0.65 ("ghc-http-api-data" . "0.3.8.1")
   0.65 ("go-gopkg.in-mgo.v2" . "2016.08.01")
   0.65 ("ghc-process-extras" . "0.7.4")
   0.65 ("ruby-prawn-table" . "0.2.2")
   0.65 ("ghc-hslua" . "0.9.5.2")
   0.65 ("emacs-haskell-mode" . "16.1")
   0.65 ("texlive-etoolbox" . "49435")
   0.65 ("catimg" . "2.5.0")
   0.65 ("python-requests-file" . "1.4.3")
   0.65 ("docker-compose" . "1.24.1")
   0.65 ("gnome-video-effects" . "0.4.3")
   0.65 ("emacs-xtest" . "1.1.0")
   0.65 ("texlive-doi" . "49435")
   0.65 ("ghc-wai-conduit" . "3.0.0.4")
   0.65 ("python2-gipc" . "0.6.0")
   0.64 ("libxml++" . "2.40.1")
   0.64 ("perl-catalystx-roleapplicator" . "0.005")
   0.64 ("glib-networking" . "2.60.3")
   0.64 ("rust" . "1.29.2")
   0.64 ("ruby-net-scp" . "1.2.2.rc2")
   0.64 ("ruby-sprockets-rails" . "3.2.1")
   0.64 ("cl-dexador" . "0.9.10-1.a2714d1")
   0.64 ("mono" . "4.4.1.0")
   0.64 ("python-pygit2" . "0.28.2")
   0.64 ("texlive-hyphen-welsh" . "49435")
   0.64 ("python-parted" . "3.11.2")
   0.64 ("emacs-ewmctrl" . "0.0.1-1.3d0217c")
   0.64 ("python2-tables" . "3.4.4")
   0.64 ("texlive-hyphen-coptic" . "49435")
   0.64 ("perl-catalyst-component-instancepercontext" . "0.001001")
   0.64 ("python-debian" . "0.1.36")
   0.64 ("ruby-shoulda-matchers" . "3.1.2")
   0.64 ("elemental" . "0.87.7")
   0.64 ("python2-notify2" . "0.3.1")
   0.64 ("containerd" . "1.2.5")
   0.64 ("proj.4" . "4.9.3")
   0.64 ("rofi" . "1.5.4")
   0.64 ("apache-arrow" . "0.10.0")
   0.64 ("python-consul" . "0.6.1")
   0.64 ("ruby-actionpack" . "5.2.2.1")
   0.64 ("python2-requests" . "2.22.0")
   0.64 ("go-github-com-junegunn-fzf" . "0.18.0")
   0.64 ("python2-honcho" . "1.0.1")
   0.64 ("ghc-path-io" . "1.3.3")
   0.64 ("graphviz" . "2.38.0-1.f54ac2c")
   0.64 ("texlive-latex-parskip" . "49435")
   0.64 ("frei0r-plugins" . "1.6.1")
   0.64 ("shflags" . "1.2.3")
   0.64 ("gsettings-desktop-schemas" . "3.28.1")
   0.64 ("libicns" . "0.8.1")
   0.64 ("ruby-jekyll-watch" . "2.1.2")
   0.64 ("libgtop" . "2.40.0")
   0.64 ("python2-dbus" . "1.2.10")
   0.64 ("preseq" . "2.0.3")
   0.64 ("python2-httpbin" . "0.5.0")
   0.64 ("ruby-nokogiri-diff" . "0.2.0-1.a38491e4")
   0.64 ("ecl-cl-random-forest" . "0.1-0.85fbdd4")
   0.64 ("guile2.0-git" . "0.2.0")
   0.64 ("libgee" . "0.20.2")
   0.64 ("python-cssselect2" . "0.2.2")
   0.64 ("express" . "1.5.1")
   0.64 ("ghc-tls-session-manager" . "0.0.0.2")
   0.64 ("ruby-parallel" . "1.13.0")
   0.64 ("perl-catalyst-plugin-configloader" . "0.34")
   0.64 ("python-pynamecheap" . "0.0.3")
   0.64 ("libfprint" . "0.6.0")
   0.64 ("ghc-conduit" . "1.3.0.3")
   0.64 ("radicale" . "1.1.6")
   0.64 ("pybind11" . "2.3.0")
   0.64 ("ghc-lifted-async" . "0.10.0.2")
   0.64 ("emacs-ox-hugo" . "0.8")
   0.64 ("texlive-hyphen-turkmen" . "49435")
   0.64 ("ghc-http2" . "1.6.3")
   0.64 ("ruby-test-unit" . "3.2.5")
   0.64 ("ldc" . "0.17.4")
   0.64 ("clamav" . "0.102.0")
   0.64 ("armadillo" . "9.100.5")
   0.64 ("android-libziparchive" . "7.1.2_r36")
   0.64 ("mash" . "2.1")
   0.64 ("wget2" . "1.99.2")
   0.64 ("ghc-comonad" . "5.0.4")
   0.64 ("ruby-listen" . "3.1.5")
   0.64 ("python2-debian" . "0.1.36")
   0.64 ("android-bionic-uapi" . "7.1.2_r36")
   0.64 ("rust" . "1.25.0")
   0.64 ("texlive-latex-media9" . "49435")
   0.64 ("newlib" . "2.4.0")
   0.64 ("wpebackend-fdo" . "1.4.0")
   0.64 ("libgsf" . "1.14.46")
   0.64 ("emacs-graphql" . "0.1.1")
   0.64 ("ghc-mono-traversable" . "1.0.9.0")
   0.64 ("texlive-palatino" . "49435")
   0.64 ("perl-catalyst-view-tt" . "0.44")
   0.64 ("gtk+" . "2.24.32")
   0.64 ("libqmi" . "1.22.4")
   0.63 ("texlive-hyphen-swedish" . "49435")
   0.63 ("libbigwig" . "0.4.4")
   0.63 ("texlive-hyphen-lithuanian" . "49435")
   0.63 ("python2-scientific" . "2.9.4")
   0.63 ("ghc-tls" . "1.4.1")
   0.63 ("enchant" . "2.2.7")
   0.63 ("adapterremoval" . "2.3.0")
   0.63 ("libopenshot-audio" . "0.1.8")
   0.63 ("ghc-profunctors" . "5.2.2")
   0.63 ("ruby-introspection" . "0.0.4")
   0.63 ("python-libnacl" . "1.6.1")
   0.63 ("ghc-socks" . "0.5.6")
   0.63 ("givaro" . "4.1.1")
   0.63 ("python-astroid" . "2.3.3")
   0.63 ("libsecret" . "0.19.1")
   0.63 ("perftest" . "4.4-0.4")
   0.63 ("python-pylint" . "2.3.1")
   0.63 ("ghc-storable-tuple" . "0.0.3.3")
   0.63 ("ghc-hmatrix" . "0.19.0.0")
   0.63 ("python-sphinx-gallery" . "0.1.13")
   0.63 ("syslinux" . "6.04-pre-1.bb41e93")
   0.63 ("sslh" . "1.20")
   0.63 ("ruby-mocha-on-bacon" . "0.2.3")
   0.63 ("python-isort" . "4.3.4")
   0.63 ("ruby-activemodel" . "5.2.2.1")
   0.63 ("ruby-minitest-reporters" . "1.3.6")
   0.63 ("mesa" . "19.1.4")
   0.63 ("ruby-globalid" . "0.4.2")
   0.63 ("texlive-metapost" . "49435")
   0.63 ("ledger" . "3.1.3")
   0.63 ("ansible" . "2.8.5")
   0.63 ("opencc" . "1.0.5")
   0.63 ("bitlbee" . "3.5.1")
   0.63 ("gmime" . "2.6.23")
   0.63 ("ghc-connection" . "0.2.8")
   0.63 ("libclc" . "8.0.0")
   0.63 ("ghc-atomic-write" . "0.2.0.5")
   0.63 ("ruby-shoulda-matchers" . "2.8.0")
   0.63 ("glibmm" . "2.60.0")
   0.63 ("clang-toolchain" . "8.0.0")
   0.63 ("librsvg" . "2.40.20")
   0.63 ("znc" . "1.7.5")
   0.63 ("texlive-latex-cmap" . "49435")
   0.63 ("python-numpy" . "1.17.3")
   0.63 ("ecl-burgled-batteries3" . "0.0.0-1.9c0f666")
   0.63 ("ruby-kramdown" . "1.17.0")
   0.63 ("ghc-pandoc-types" . "1.17.5.1")
   0.63 ("python-i3-py" . "0.6.5")
   0.63 ("rust" . "1.24.1")
   0.63 ("python2-isort" . "4.3.4")
   0.63 ("python2-fido2" . "0.5.0")
   0.63 ("ghc-doctemplates" . "0.2.2.1")
   0.63 ("texlive-ukrhyph" . "49435")
   0.63 ("texlive-hyphen-catalan" . "49435")
   0.63 ("flexbar" . "3.4.0")
   0.63 ("lrcalc" . "1.2")
   0.63 ("python-sphinx" . "2.1.2")
   0.63 ("emacs-ivy-yasnippet" . "0.1-2.32580b4")
   0.63 ("python-funcy" . "1.11")
   0.63 ("texlive-hyphen-dutch" . "49435")
   0.63 ("python-leidenalg" . "0.7.0")
   0.63 ("python2-gitpython" . "2.1.11")
   0.63 ("texlive-latex-readarray" . "49435")
   0.63 ("perl-dbix-class-schema-loader" . "0.07049")
   0.63 ("ruby-activesupport" . "5.2.2.1")
   0.63 ("agda" . "2.5.4.2")
   0.63 ("openconnect" . "8.05")
   0.63 ("c-reduce" . "2.10.0")
   0.63 ("perl6-test-mock" . "1.5")
   0.63 ("p4est" . "2.0")
   0.63 ("sigrok-cli" . "0.7.1")
   0.63 ("vxl" . "1.18.0")
   0.63 ("dstat" . "0.7.4")
   0.63 ("gts" . "0.7.6")
   0.62 ("android-udev-rules" . "20191103")
   0.62 ("gx-guvnor-lv2" . "0.1")
   0.62 ("ghc-statistics" . "0.14.0.2")
   0.62 ("libtsm" . "0.0.0-1.f70e379")
   0.62 ("texlive-hyphen-italian" . "49435")
   0.62 ("ecl-simple-scanf" . "0-1.5048480")
   0.62 ("starlong" . "2.7.1a")
   0.62 ("ghc-aeson" . "1.3.1.1")
   0.62 ("volk" . "1.3")
   0.62 ("dcadec" . "0.2.0")
   0.62 ("texlive-latex-framed" . "49435")
   0.62 ("libnova" . "0.16")
   0.62 ("ghc-skein" . "1.0.9.4")
   0.62 ("texlive-hyphen-basque" . "49435")
   0.62 ("ghc-uri-bytestring" . "0.3.2.0")
   0.62 ("ghc-fgl" . "5.6.0.0")
   0.62 ("geos" . "3.7.1")
   0.62 ("python-flask-oidc" . "1.1.1")
   0.62 ("graphene" . "1.6.0")
   0.62 ("texlive-latex-eepic" . "49435")
   0.62 ("python-pygobject" . "3.28.3")
   0.62 ("ldc" . "1.10.0")
   0.62 ("gl2ps" . "1.4.0")
   0.62 ("python2-libvirt" . "5.8.0")
   0.62 ("gdk-pixbuf" . "2.38.1")
   0.62 ("emacs-irony-mode" . "1.2.0")
   0.62 ("emacs-pdf-tools" . "0.90")
   0.62 ("ghc-adjunctions" . "4.4")
   0.62 ("spoon" . "0.6")
   0.62 ("python-httpbin" . "0.5.0")
   0.62 ("python2-pygit2" . "0.28.2")
   0.62 ("fflas-ffpack" . "2.4.3")
   0.62 ("lsyncd" . "2.2.2")
   0.62 ("python2-pyhamcrest" . "1.9.0-0.25fdc5f")
   0.62 ("nlohmann-json-cpp" . "3.7.0")
   0.62 ("go-github-com-michiwend-golang-pretty" . "0.0.0-0.8ac6181")
   0.62 ("texlive-hyphen-latvian" . "49435")
   0.62 ("python2-keepkey" . "6.0.3")
   0.62 ("gom" . "0.3.2")
   0.62 ("ccl" . "1.11.5")
   0.62 ("rust" . "1.22.1")
   0.62 ("ruby-mysql2" . "0.5.2")
   0.62 ("emacs-company-irony" . "1.1.0")
   0.62 ("mate-menus" . "1.22.0")
   0.62 ("python-typed-ast" . "1.4.0")
   0.62 ("ghc-system-fileio" . "0.3.16.3")
   0.62 ("ruby-rack-protection" . "2.0.5")
   0.62 ("swayidle" . "1.5")
   0.62 ("eternalterminal" . "5.1.10")
   0.62 ("ngs-sdk" . "2.9.6")
   0.62 ("go-github.com-nsf-termbox-go" . "0.0.0-1.288510b")
   0.62 ("ruby-redcarpet" . "3.4.0")
   0.62 ("bpp-phyl" . "2.2.0-1.0c07167")
   0.62 ("ruby-public-suffix" . "3.0.3")
   0.62 ("python-betamax" . "0.8.1")
   0.62 ("android-libsparse" . "7.1.2_r36")
   0.62 ("harmonist" . "0.2")
   0.62 ("sane-backends" . "1.0.28")
   0.62 ("fplll" . "5.2.1")
   0.62 ("python2-gevent" . "1.3.7")
   0.62 ("texlive-hyphen-czech" . "49435")
   0.62 ("emacs-eros" . "0.0.1-2.dd89102")
   0.62 ("texlive-tex-ini-files" . "49435")
   0.62 ("git-remote-gcrypt" . "1.0.3")
   0.62 ("python-numexpr" . "2.6.5")
   0.62 ("libgeotiff" . "1.4.3")
   0.62 ("graphite2" . "1.3.13")
   0.62 ("bwa-pssm" . "0.5.11")
   0.62 ("ghc-openssl-streams" . "1.2.1.3")
   0.62 ("mc" . "4.8.23")
   0.62 ("texlive-hyphen-serbian" . "49435")
   0.62 ("clang-toolchain" . "7.0.1")
   0.62 ("footswitch" . "0.1-2.ca43d53")
   0.62 ("emacs-grep-context" . "0.1.0-1.5a4e3ef")
   0.62 ("weechat" . "2.6")
   0.62 ("gst-transcoder" . "1.12.2")
   0.62 ("xyce-serial" . "6.8")
   0.62 ("libidl" . "0.8.14")
   0.62 ("fastahack" . "0.0.0-1.c68cebb")
   0.62 ("python-tldextract" . "2.2.0")
   0.62 ("bwa-meth" . "0.2.2")
   0.62 ("perl6-grammar-debugger" . "1.0.1-1.0375008")
   0.62 ("soundtouch" . "2.1.1")
   0.62 ("ghc-free" . "5.0.2")
   0.62 ("perl6-uri" . "0.1.5")
   0.62 ("emacs-emacsql" . "3.0.0")
   0.62 ("texlive-hyphen-romanian" . "49435")
   0.62 ("ghc-semigroupoids" . "5.2.2")
   0.62 ("ortp" . "0.27.0")
   0.62 ("texlive-latex-overpic" . "49435")
   0.62 ("python-pycairo" . "1.17.1")
   0.62 ("ruby-sprockets" . "3.7.2")
   0.62 ("localed" . "241")
   0.62 ("spirv-headers" . "1.3.7")
   0.62 ("texlive-tetex" . "49435")
   0.62 ("texlive-hyphen-hungarian" . "49435")
   0.62 ("ruby-skinny" . "0.2.4")
   0.62 ("virtest" . "0.0-0.f7d03ef")
   0.62 ("android-make-stub" . "0.6.0")
   0.62 ("noise-repellent" . "0.1.4")
   0.62 ("dehydrated" . "0.6.5")
   0.62 ("ruby-sass" . "3.6.0")
   0.61 ("surfraw" . "2.3.0")
   0.61 ("libgff" . "1.0")
   0.61 ("go-github-com-certifi-gocertifi" . "2018.01.18-0.d2eda71")
   0.61 ("libfm-extra" . "1.3.1")
   0.61 ("ghc-kan-extensions" . "5.2")
   0.61 ("ruby-saikuro-treemap" . "0.2.0")
   0.61 ("ruby-jwt" . "2.1.0")
   0.61 ("smithlab-cpp" . "0.1.728a097")
   0.61 ("fasd" . "1.0.1")
   0.61 ("android-safe-iop" . "7.1.2_r36")
   0.61 ("rct" . "0.0.0-2.b3e6f41")
   0.61 ("proplib" . "0.0.0-2.4c46ecbe7")
   0.61 ("mongo-tools" . "3.4.0")
   0.61 ("ruby-childprocess" . "0.6.3")
   0.61 ("texlive-latex-examplep" . "49435")
   0.61 ("cl-str" . "0.8-1.3d5ec86")
   0.61 ("guile2.0-ssh" . "0.11.3")
   0.61 ("swh-plugins-lv2" . "1.0.16")
   0.61 ("emacs-flycheck-cpplint" . "0.1-1.1d8a090")
   0.61 ("emacs-helm-ls-git" . "1.9.1-1.76654c7")
   0.61 ("cmocka" . "1.1.3")
   0.61 ("et" . "3.1.0")
   0.61 ("borg" . "1.1.10")
   0.61 ("texlive-luatex-lualibs" . "2.5")
   0.61 ("4store" . "1.1.6")
   0.61 ("classpath" . "0.99-1.e7c13ee0c")
   0.61 ("python-pymysql" . "0.9.3")
   0.61 ("texlive-hyphen-romansh" . "49435")
   0.61 ("rust" . "1.20.0")
   0.61 ("python2-testpath" . "0.2")
   0.61 ("perl-xml-rss" . "1.60")
   0.61 ("ruby-rb-inotify" . "0.9.10")
   0.61 ("ghc-wl-pprint-annotated" . "0.1.0.1")
   0.61 ("ocaml-ppx-fail" . "0.11.0")
   0.61 ("cl-libsvm-format" . "0.1.0-0.3300f84")
   0.61 ("newick-utils" . "1.6-1.da121155")
   0.61 ("mod-host" . "0.10.6-3.1726ad06b")
   0.61 ("ghc-shakespeare" . "2.0.15")
   0.61 ("telepathy-idle" . "0.2.0")
   0.61 ("jnettop" . "0.13.0")
   0.61 ("limnoria" . "2019.11.09")
   0.61 ("ctl" . "1.5.2")
   0.61 ("enchant" . "1.6.0")
   0.61 ("es-dump-restore" . "2.1.0")
   0.61 ("texlive-hyphen-polish" . "49435")
   0.61 ("emacs-helm-system-packages" . "1.10.1-1.6572340")
   0.61 ("python-tinycss2" . "1.0.2")
   0.61 ("emacs-restart-emacs" . "0.1.1-1.9aa90d3")
   0.61 ("opensm" . "3.3.22")
   0.61 ("direnv" . "2.15.2")
   0.61 ("python-pygraphviz" . "1.5")
   0.61 ("shaderc" . "2019.0")
   0.61 ("perl6-xml-writer" . "0.0.0-1.4d30a9d")
   0.61 ("texlive-hyphen-estonian" . "49435")
   0.61 ("texlive-hyphen-english" . "49435")
   0.61 ("ghc-yaml" . "0.8.32")
   0.61 ("src" . "1.18")
   0.61 ("ghc-mockery" . "0.3.5")
   0.61 ("ruby-locale" . "2.1.2")
   0.61 ("texlive-context-base" . "49435")
   0.61 ("libfdk" . "0.1.6-0.2326faa")
   0.61 ("emacs-stripe-buffer" . "0.2.5")
   0.61 ("texlive-txfonts" . "49435")
   0.61 ("texlive-seminar" . "49435")
   0.61 ("ghmm" . "0.9-rc3-0.2341")
   0.61 ("python2-pylint" . "1.7.2")
   0.61 ("perl-datetime-format-mail" . "0.403")
   0.61 ("wmbattery" . "2.51")
   0.61 ("fish" . "3.0.2")
   0.61 ("perl-datetime-event-recurrence" . "0.19")
   0.61 ("texlive-hyphen-german" . "49435")
   0.61 ("ghc-storable-record" . "0.0.4")
   0.61 ("vcflib" . "0.0.0-1.5ac0913")
   0.61 ("ovmf-aarch64" . "20170116-1.13a50a6")
   0.61 ("fatfsck-static" . "4.1")
   0.61 ("perl6-json" . "1.0")
   0.61 ("ocaml-ppx-base" . "0.11.0")
   0.61 ("emacs-magit-popup" . "2.12.5")
   0.61 ("emacs-helm-taskrunner" . "0.9-1.1910dac")
   0.61 ("ruby-net-ssh" . "4.2.0")
   0.61 ("meep" . "1.8.0")
   0.61 ("ruby-thin" . "1.7.2")
   0.61 ("emacs-ssh-config-mode" . "8.0-1.4c1dfa5")
   0.61 ("cl-serapeum" . "0.0.0-0.65837f8")
   0.61 ("python-honcho" . "1.0.1")
   0.61 ("go-github-com-audriusbutkevicius-recli" . "0.0.5")
   0.61 ("plink" . "1.07")
   0.61 ("woff2" . "20160306-1.4e698b8")
   0.60 ("ghc-juicypixels" . "3.2.9.5")
   0.60 ("procmail" . "3.22")
   0.60 ("texlive-hyphen-friulan" . "49435")
   0.60 ("ghc-invariant" . "0.5.1")
   0.60 ("sala" . "1.3")
   0.60 ("zsh-autosuggestions" . "0.6.3")
   0.60 ("faust" . "0.9.90")
   0.60 ("emacs-scroll-on-drag" . "0.1-1.888abd0")
   0.60 ("emacs-closql" . "1.0.0-1.70b98db")
   0.60 ("ucx" . "1.6.1")
   0.60 ("go-github-com-michiwend-gomusicbrainz" . "0.0.0-0.0cdeb13")
   0.60 ("fastp" . "0.14.1")
   0.60 ("fltk" . "1.3.5")
   0.60 ("texlive-hyphen-interlingua" . "49435")
   0.60 ("ghc-unliftio" . "0.2.7.0")
   0.60 ("go-github-com-stretchr-testify" . "1.1.4-0.b1f9894")
   0.60 ("ocaml-ppx-hash" . "0.11.1")
   0.60 ("ghc-generic-deriving" . "1.12.2")
   0.60 ("ghc-test-framework-th" . "0.2.4")
   0.60 ("texlive-epsf" . "49435")
   0.60 ("ghc-doctest" . "0.16.0")
   0.60 ("bpp-seq" . "2.2.0-1.6cfa079")
   0.60 ("xtensor" . "0.20.10")
   0.60 ("fastboot" . "7.1.2_r36")
   0.60 ("perl6-json-unmarshal" . "0.0.0-1.e1b6288")
   0.60 ("grub" . "2.04")
   0.60 ("flatbuffers" . "1.10.0")
   0.60 ("go-github-com-docker-go-connections" . "0.0.0-0.3ede32e")
   0.60 ("emacs-robe" . "0.8.2")
   0.60 ("texlive-hyphen-sanskrit" . "49435")
   0.60 ("ruby-lino" . "1.1.0")
   0.60 ("ghc-hmatrix-gsl-stats" . "0.4.1.7")
   0.60 ("go-github-com-prometheus-common" . "0.4.1")
   0.60 ("paps" . "0.7.1")
   0.60 ("libdom" . "0.4.0")
   0.60 ("texlive-hyphen-irish" . "49435")
   0.60 ("python-trytond-country" . "4.6.0")
   0.60 ("gx-super-fuzz-lv2" . "0.1")
   0.60 ("arb" . "2.17.0")
   0.60 ("librsync" . "2.2.1")
   0.60 ("texlive-xypic" . "49435")
   0.60 ("bamtools" . "2.5.1")
   0.60 ("texlive-tex-plain" . "49435")
   0.60 ("android-googletest" . "1.8.0")
   0.60 ("json-modern-cxx" . "3.7.0")
   0.60 ("emacs-evil" . "1.2.14")
   0.60 ("emacs-redshank" . "0.1-1.f98e68f")
   0.60 ("perl-datetime-format-natural" . "1.06")
   0.60 ("ruby-instantiator" . "0.0.7")
   0.60 ("samtools" . "0.1.19")
   0.60 ("emacs-evil-magit" . "0.4.2-3.4b66a1d")
   0.60 ("emacs-org-tanglesync" . "0.6-2.d99181f")
   0.60 ("bedtools" . "2.26.0")
   0.60 ("texlive-ruhyphen" . "49435")
   0.60 ("reposurgeon" . "3.43")
   0.60 ("cl-clack" . "2.0.0-1.e3e0328")
   0.60 ("gpicview" . "0.2.5")
   0.60 ("cuetools" . "1.4.1")
   0.60 ("python2-cvxopt" . "1.2.3")
   0.60 ("texlive-latexconfig" . "49435")
   0.60 ("delly" . "0.7.9")
   0.60 ("kallisto" . "0.44.0")
   0.60 ("xcb-util-errors" . "1.0-1.5d660eb")
   0.60 ("star" . "2.7.1a")
   0.60 ("ghc-snap-server" . "1.1.0.0")
   0.60 ("texlive-hyphen-russian" . "49435")
   0.60 ("supercollider" . "3.10.3")
   0.60 ("disorderfs" . "0.5.6")
   0.60 ("ruby-shoulda" . "3.5.0")
   0.60 ("ghc-gitrev" . "1.3.1")
   0.60 ("ruby-rbnacl" . "6.0.1")
   0.60 ("go-github-com-prometheus-client-golang" . "0.9.4")
   0.60 ("rasqal" . "0.9.33")
   0.60 ("fifo-map" . "1.1.1-0.0dfbf5d")
   0.60 ("go-github-com-urfave-cli" . "1.21.0")
   0.60 ("emacs-company-restclient" . "0.3.0")
   0.60 ("multichoose" . "1.0.3")
   0.60 ("tmuxifier" . "0.13.0")
   0.60 ("libyajl" . "2.1.0")
   0.60 ("texlive-hyphen-armenian" . "49435")
   0.60 ("cl-gobject-introspection" . "0.3-0.7b703e2")
   0.60 ("emacs-sly-quicklisp" . "0.0.0-1.01ebe39")
   0.60 ("kurly" . "1.2.2")
   0.60 ("ghc-asn1-encoding" . "0.9.5")
   0.60 ("python-construct" . "2.9.45")
   0.60 ("ghc-c2hs" . "0.28.6")
   0.60 ("ruby-warden-oauth2" . "0.0.1")
   0.60 ("texlive-hyphen-bulgarian" . "49435")
   0.60 ("rust" . "1.21.0")
   0.60 ("vala" . "0.44.5")
   0.60 ("ldb" . "1.6.3")
   0.60 ("texlive-mkpattern" . "49435")
   0.60 ("ell" . "0.23")
   0.60 ("emacs-nov-el" . "0.2.9")
   0.60 ("diamond" . "0.9.22")
   0.60 ("emacs-symbol-overlay" . "4.1-1.e40a7c4")
   0.60 ("ccls" . "0.20190823.3")
   0.60 ("ruby-cztop" . "0.12.2")
   0.60 ("go-github-com-google-gofuzz" . "0.0.0-0.fd52762")
   0.60 ("elogind" . "241.3")
   0.60 ("python2-parted" . "3.11.2")
   0.60 ("texlive-hyphen-mongolian" . "49435")
   0.60 ("go-github-com-syndtr-goleveldb" . "1.0.1-3.c3a204f")
   0.60 ("libvpx" . "1.7.0")
   0.60 ("ruby-childprocess" . "0.9.0")
   0.60 ("gloo" . "0.0.0-0.ca528e3")
   0.60 ("emacs-log4e" . "0.3.0")
   0.60 ("ruby-hoe-git" . "1.6.0")
   0.60 ("emacs-a" . "0.1.1")
   0.60 ("kaiju" . "1.6.3")
   0.60 ("go-github-com-golang-protobuf-proto" . "1.3.1")
   0.60 ("ghc-parsers" . "0.12.9")
   0.60 ("editorconfig-vim" . "0.3.3")
   0.60 ("texlive-kpathsea" . "49435")
   0.60 ("linbox" . "1.5.2")
   0.60 ("faiss" . "1.5.0")
   0.60 ("cl-json" . "0.5-1.6dfebb9")
   0.60 ("ruby-jekyll-sass-converter" . "1.5.2")
   0.60 ("librime" . "1.5.3")
   0.60 ("nkf" . "2.1.5")
   0.60 ("python2-flask-principal" . "0.4.0")
   0.60 ("go-github-com-sirupsen-logrus" . "1.0.5")
   0.59 ("emacs-symon" . "20160630")
   0.59 ("libdivsufsort" . "2.0.1")
   0.59 ("python2-responses" . "0.10.6")
   0.59 ("emacs-nswbuff" . "1.0-1.362da7f")
   0.59 ("squashfs-tools" . "4.3")
   0.59 ("go-github-com-gorilla-mux" . "0.0.0-0.599cba5")
   0.59 ("splix" . "2.0.0-315")
   0.59 ("emacs-grep-a-lot" . "1.0.7")
   0.59 ("tmux-xpanes" . "4.1.1")
   0.59 ("ghc-highlighting-kate" . "0.6.4")
   0.59 ("libjit" . "0.1.4")
   0.59 ("bear" . "2.3.13")
   0.59 ("policycoreutils" . "2.7")
   0.59 ("coda" . "2.19")
   0.59 ("ruby-oauth2" . "1.4.1")
   0.59 ("ruby-backport" . "1.1.2")
   0.59 ("texlive-latex-titlesec" . "49435")
   0.59 ("emacs-make-it-so" . "0.1.0-2.b73dfb6")
   0.59 ("trezord" . "2.0.17")
   0.59 ("python-pybrowserid" . "0.14.0")
   0.59 ("emacs-ledger-mode" . "3.1.1-1.253a20d")
   0.59 ("python-pytest-fixture-config" . "1.7.0")
   0.59 ("texlive-latex-capt-of" . "49435")
   0.59 ("stringtie" . "1.2.1")
   0.59 ("knot" . "2.9.0")
   0.59 ("express-beta-diversity" . "1.0.8")
   0.59 ("ruby-activerecord" . "5.2.2.1")
   0.59 ("python2-flask-multistatic" . "1.0")
   0.59 ("perl-image-magick" . "6.89")
   0.59 ("gcab" . "1.2")
   0.59 ("perl6-zef" . "0.6.7")
   0.59 ("emacs-flyspell-correct" . "0.5")
   0.59 ("perl-catalyst-plugin-static-simple" . "0.36")
   0.59 ("cl-usocket-server" . "0.7.1-1.86e7efb")
   0.59 ("python-tables" . "3.4.4")
   0.59 ("emacs-ob-restclient" . "0.02-1.5337666")
   0.59 ("libharu" . "2.3.0")
   0.59 ("dub" . "1.7.2")
   0.59 ("debootstrap" . "1.0.114")
   0.59 ("emacs-helm-swoop" . "2.0.0")
   0.59 ("python-gridmap" . "0.13.0")
   0.59 ("newsboat" . "2.13")
   0.59 ("mumps" . "5.2.1")
   0.59 ("ocaml-camomile" . "1.0.2")
   0.59 ("vpnc" . "0.5.3")
   0.59 ("python-language-server" . "0.29.1")
   0.59 ("vim-neosnippet" . "4.2-1.1bd7e23")
   0.59 ("emacs-use-package" . "2.4")
   0.59 ("bpp-core" . "2.2.0-1.7d8bced")
   0.59 ("python-pysam" . "0.15.1")
   0.59 ("badvpn" . "1.999.130")
   0.59 ("go-github.com-smartystreets-goconvey" . "1.6.3")
   0.59 ("ocaml-parsexp" . "0.11.0")
   0.59 ("blast+" . "2.7.1")
   0.59 ("guildhall" . "0-1.2fe2cc539")
   0.59 ("ghc-attoparsec" . "0.13.2.2")
   0.59 ("emacs-evil-visualstar" . "0.0.2-1.06c053d")
   0.59 ("python-flint" . "0.3.0")
   0.59 ("go-github-com-audriusbutkevicius-pfilter" . "0.0.0-3.c55ef61")
   0.59 ("ghc-regex-applicative" . "0.3.3")
   0.59 ("clang-runtime" . "3.5.2")
   0.59 ("font-mononoki" . "1.2")
   0.59 ("cups-pk-helper" . "0.2.6")
   0.59 ("bedtools" . "2.27.1")
   0.59 ("texlive-hyphen-turkish" . "49435")
   0.59 ("emacs-fish-completion" . "1.2")
   0.59 ("python2-libmpsse" . "1.4")
   0.59 ("perl-datetime-format-ical" . "0.09")
   0.59 ("clang" . "3.6.2")
   0.59 ("ecl-eos" . "0.0.0-1.b0faca8")
   0.59 ("go-github-com-ayufan-golang-kardianos-service" . "0.0.0-0.0c8eb6d")
   0.59 ("glibc-hurd-headers" . "2.29")
   0.59 ("ruby-mime-types" . "3.1")
   0.59 ("dune-typetree" . "2.6.0")
   0.59 ("texlive-hyphen-base" . "49435")
   0.59 ("fflas-ffpack" . "2.3.2")
   0.59 ("ocaml-ppx-assert" . "0.11.0")
   0.59 ("go-github-com-kballard-go-shellquote" . "0.0.0-0.cd60e84")
   0.59 ("ghc-extra" . "1.6.9")
   0.59 ("emacs-helm-sly" . "0.4.1")
   0.59 ("libltc" . "1.3.1")
   0.59 ("ocaml-re" . "1.9.0")
   0.59 ("ruby-minitest-pretty-diff" . "0.1-1.11f32e93")
   0.59 ("emacs-flycheck-grammalecte" . "0.9")
   0.59 ("ocaml-seq" . "0.1")
   0.59 ("filteraudio" . "0.0.0-1.2fc6695")
   0.59 ("python-gitdb" . "2.0.4")
   0.59 ("emacs-ctable" . "0.1.2-1.b8830d1")
   0.59 ("ruby-domain-name" . "0.5.20180417")
   0.59 ("git-flow" . "0.4.2-pre")
   0.59 ("lynis" . "2.7.5")
   0.59 ("polyml" . "5.7.1")
   0.59 ("emacs-frecency" . "0.1-pre-1.31ef9ff")
   0.59 ("ruby-yard" . "0.9.16")
   0.59 ("squashfs-tools-next" . "4.3-1fb33dfc")
   0.59 ("ghc-cryptonite" . "0.25")
   0.59 ("emacs-tiny" . "0.2.1-1.fd8a6b0")
   0.59 ("gx-tone-mender-lv2" . "0-1.b6780b4a3")
   0.59 ("rseqc" . "2.6.1")
   0.59 ("emacs-spark" . "20160503-1.0bf148c")
   0.59 ("emacs-evil-text-object-python" . "1.0.1-1.9a064fe")
   0.59 ("emacs-org-caldav" . "0.0.0-1.a563500")
   0.59 ("perl6-mime-base64" . "1.2.1")
   0.59 ("python-cryptography" . "2.7")
   0.59 ("go-sctp" . "0.0.0-1.07191f8")
   0.59 ("go-github-com-cheekybits-is" . "0.0.0-0.68e9c06")
   0.59 ("ocaml-ppx-pipebang" . "0.11.0")
   0.59 ("ruby-rack-test" . "0.8.3")
   0.59 ("libvisio" . "0.1.7")
   0.59 ("ruby-backports" . "3.11.4")
   0.59 ("ghc-foldl" . "1.4.3")
   0.59 ("delft-icon-theme" . "1.10")
   0.59 ("hdf-eos5" . "1.15")
   0.59 ("python-cftime" . "1.0.4.2")
   0.59 ("unittest-cpp" . "2.0.0")
   0.59 ("emacs-markdown-preview-mode" . "0.9.2")
   0.59 ("emacs-whitespace-cleanup-mode" . "0.10-1.7242714")
   0.59 ("withershins" . "0.1")
   0.59 ("go-github-com-prometheus-client-model" . "0.0.2-1.fd36f42")
   0.59 ("ghc-securemem" . "0.1.10")
   0.59 ("propeller-development-suite" . "4.6.1-2.4c46ecbe7")
   0.59 ("go-netns" . "0.0.0-1.13995c7")
   0.59 ("ruby-safe-yaml" . "1.0.4")
   0.59 ("python2-tegaki-python" . "0.3.1")
   0.59 ("emacs-download-region" . "0.0.1-1.eb9e557")
   0.59 ("ghc-cryptohash" . "0.11.9")
   0.59 ("perl6-svg-plot" . "0.0.0-1.062570a")
   0.59 ("emacs-xterm-color" . "1.9")
   0.59 ("go-github-com-libp2p-go-libp2p-peer" . "2.3.8-0.993d742")
   0.59 ("emacs-flycheck-haskell" . "0.8-2.32ddff8")
   0.59 ("emacs-web-mode" . "16")
   0.59 ("fprintd" . "0.7.0")
   0.59 ("ghc-hspec-contrib" . "0.5.0")
   0.59 ("beep" . "1.4.4")
   0.59 ("emacs-gnus-alias" . "20150316")
   0.59 ("ecl-fiasco" . "0.0.1-1.d62f755")
   0.59 ("cl-fad" . "0.7.5")
   0.59 ("libcue" . "2.2.1")
   0.58 ("python-pyperclip" . "1.6.4")
   0.58 ("emacs-terraform-mode" . "0.06")
   0.58 ("go-github-com-hashicorp-hcl" . "0.0.0-0.23c074d")
   0.58 ("python2-sphinx-gallery" . "0.1.13")
   0.58 ("emacs-hcl-mode" . "0.03")
   0.58 ("python-responses" . "0.10.6")
   0.58 ("openexr" . "2.4.0")
   0.58 ("leveldb" . "1.22")
   0.58 ("cl-ningle" . "0.3.0-1.50bd4f0")
   0.58 ("python-license-expression" . "0.999")
   0.58 ("texlive-hyphen-ukrainian" . "49435")
   0.58 ("ocaml-ppx-variants-conv" . "0.11.1")
   0.58 ("sshfs" . "2.10")
   0.58 ("opensc" . "0.19.0")
   0.58 ("nsis-i686" . "3.04")
   0.58 ("bitshuffle" . "0.3.5")
   0.58 ("emacs-counsel-tramp" . "0.6.3")
   0.58 ("cl-lack-response" . "0.1.0-1.abff8ef")
   0.58 ("json-parser" . "1.1.0")
   0.58 ("ovmf" . "20170116-1.13a50a6")
   0.58 ("progress" . "0.14")
   0.58 ("perl-datetime-calendar-julian" . "0.102")
   0.58 ("python2-libadalang" . "0.0.0-0.9b205e9")
   0.58 ("emacs-anzu" . "0.62")
   0.58 ("emacs-info-plus" . "0-2.4a6b93c")
   0.58 ("emacs-git-link" . "0.7.5")
   0.58 ("filtlong" . "0.2.0-1.d1bb46d")
   0.58 ("bedtools" . "2.18.0")
   0.58 ("emacs-graphviz-dot-mode" . "0.3.11-1.c456a2b")
   0.58 ("lua5.2-luv" . "1.30.1-1")
   0.58 ("openimageio" . "1.8.17")
   0.58 ("megaglest-data" . "3.13.0")
   0.58 ("gst-plugins-base" . "1.16.0")
   0.58 ("gffcompare" . "0.10.15-1.be56ef4")
   0.58 ("snap-aligner" . "1.0beta.18")
   0.58 ("python2-pysam" . "0.15.1")
   0.58 ("apfs-fuse" . "0.0.0-0.c7036a3")
   0.58 ("emacs-wc-mode" . "1.3")
   0.58 ("python-activepapers" . "0.2.2")
   0.58 ("emacs-isearch+" . "0-2.7c251b9")
   0.58 ("emacs-helm-wikipedia" . "0.0.0-1.126f044")
   0.58 ("texlive-url" . "49435")
   0.58 ("ocaml-biniou" . "1.2.1")
   0.58 ("rtorrent" . "0.9.8")
   0.58 ("texlive-hyphen-spanish" . "49435")
   0.58 ("xsimd" . "7.2.3")
   0.58 ("rust" . "1.33.0")
   0.58 ("ruby-tdiff" . "0.3.3-1.b662a604")
   0.58 ("double-conversion" . "3.1.5")
   0.58 ("sortmerna" . "2.1b")
   0.58 ("go-github-com-flynn-archive-go-shlex" . "0.0.0-0.3f9db97")
   0.58 ("ngrep" . "1.47")
   0.58 ("openvpn" . "2.4.8")
   0.58 ("ghc-memotrie" . "0.6.9")
   0.58 ("python-gyp" . "0.0.0-0.5e2b3dd")
   0.58 ("rocksdb" . "5.18.3")
   0.58 ("font-ubuntu" . "0.83")
   0.58 ("jsoncpp" . "1.7.3")
   0.58 ("ghc-temporary" . "1.3")
   0.58 ("ath9k-htc-firmware" . "1.4.0")
   0.58 ("emacs-helm-firefox" . "0.0.1-1.0ad34b7")
   0.58 ("harmonist-tk" . "0.2")
   0.58 ("pius" . "2.2.7")
   0.58 ("cl-lparallel" . "2.8.4")
   0.58 ("emacs-diff-hl" . "1.8.6")
   0.58 ("emacs-tao-theme" . "0-0.c5107fb")
   0.58 ("prodigal" . "2.6.3")
   0.58 ("python-dukpy" . "0.3")
   0.58 ("ghc-call-stack" . "0.1.0")
   0.58 ("emacs-sly-named-readtables" . "0.1-1.a5a4267")
   0.58 ("mozjs" . "52.0-1.6507e63")
   0.58 ("emacs-pkg-info" . "0.6")
   0.58 ("m4ri" . "20140914")
   0.58 ("cl-queues.priority-queue" . "0.0.0-1.47d4da6")
   0.58 ("python-h5py" . "2.8.0")
   0.58 ("emacs-link-hint" . "0.1-1.d74a483")
   0.58 ("texlive-pst-text" . "49435")
   0.58 ("jsoncpp" . "1.9.1")
   0.58 ("mdadm-static" . "4.1")
   0.58 ("gx-hyperion-lv2" . "0.1")
   0.58 ("ghc-xmonad-contrib" . "0.16")
   0.58 ("ghc-x509-store" . "1.6.7")
   0.58 ("ecl-cl-colors" . "0.0.0-1.8274105")
   0.58 ("ruby-unf-ext" . "0.0.7.1")
   0.58 ("ghc-tar" . "0.5.1.0")
   0.58 ("emacs-wttrin" . "0.2.0-1.df5427c")
   0.58 ("texlive-latex-threeparttable" . "49435")
   0.58 ("libfreehand" . "0.1.2")
   0.58 ("emacs-lcr" . "1.1")
   0.58 ("ocaml-core" . "0.11.3")
   0.58 ("f2fs-tools" . "1.7.0")
   0.58 ("guile-ssh" . "0.11.3")
   0.58 ("ocaml-ppx-tools" . "5.1+4.06.0")
   0.58 ("cl-trivial-clipboard" . "0.0.0.0-2.5af3415")
   0.58 ("python-flask-babel" . "0.11.2")
   0.58 ("bennu-game-development" . "348")
   0.58 ("ghc-fgl-arbitrary" . "0.2.0.3")
   0.58 ("texlive-unicode-data" . "49435")
   0.58 ("ocaml-ppx-js-style" . "0.11.0")
   0.58 ("smithwaterman" . "0-1.203218b")
   0.58 ("klick" . "0.12.2")
   0.58 ("perl6-json-marshal" . "0.0.16")
   0.58 ("python-numba" . "0.42.0")
   0.58 ("emacs-el-search" . "1.12.6.1-2.07bed84")
   0.58 ("ghc-threads" . "0.5.1.6")
   0.58 ("nsis-x86_64" . "3.04")
   0.58 ("perl-file-mimeinfo" . "0.29")
   0.58 ("go-github-com-oschwald-maxminddb-golang" . "1.2.0-0.26fe5ac")
   0.58 ("dfc" . "3.1.1")
   0.58 ("emacs-git-gutter" . "0.90")
   0.58 ("ghc-skylighting" . "0.7.2")
   0.58 ("apl" . "1.8")
   0.58 ("python2-orator" . "0.9.7")
   0.58 ("bioawk" . "1.0")
   0.58 ("emacs-hackernews" . "0.5.0-2.2362d7b")
   0.58 ("emacs-crux" . "0.3.0-2.308f17d")
   0.58 ("ecl-cl-libsvm-format" . "0.1.0-0.3300f84")
   0.58 ("ocaml-ppxlib" . "0.6.0")
   0.58 ("ddcci-driver-linux" . "0.3.3")
   0.58 ("xdelta" . "3.1.0")
   0.58 ("libselinux" . "2.7")
   0.58 ("emacs-ebdb" . "0.6.10-0.2a87f5e")
   0.58 ("go-github-com-beorn7-perks-quantile" . "0.0.0-0.4c0e845")
   0.58 ("imagemagick" . "6.9.10-58")
   0.57 ("efitools" . "1.9.2")
   0.57 ("stlink" . "1.5.1")
   0.57 ("libzip" . "1.5.2")
   0.57 ("emacs-lice-el" . "0.2-1.4339929")
   0.57 ("detox" . "1.3.0")
   0.57 ("ruby-omniauth" . "1.9.0")
   0.57 ("emacs-window-layout" . "1.4")
   0.57 ("ruby-httpclient" . "2.8.3")
   0.57 ("jupyter-guile-kernel" . "0.0.0-1.a7db924")
   0.57 ("ocaml-timed" . "1.0")
   0.57 ("go-github-com-gorilla-context" . "0.0.0-0.08b5f42")
   0.57 ("go-gopkg.in-ldap.v2" . "2.5.1")
   0.57 ("python-mpi4py" . "3.0.3")
   0.57 ("hunspell" . "1.7.0")
   0.57 ("emacs-erlang" . "21.0.5")
   0.57 ("texlive-hyphen-churchslavonic" . "49435")
   0.57 ("go-github-com-spf13-pflag" . "0.0.0-0.4f91904")
   0.57 ("perl-dbix-class-introspectablem2m" . "0.001002")
   0.57 ("guile2.0-sqlite3" . "0.1.0")
   0.57 ("avrdude" . "6.3")
   0.57 ("emacs-direnv" . "1.5.0")
   0.57 ("emacs-highlight-escape-sequences" . "0.0.1-1.08d846a")
   0.57 ("ruby-terminfo" . "0.1.1")
   0.57 ("cl-lack-component" . "0.0.0-1.abff8ef")
   0.57 ("texlive-hyphen-afrikaans" . "49435")
   0.57 ("jetring" . "0.27")
   0.57 ("interrobang" . "0.0.0-1.8965437")
   0.57 ("emacs-counsel-etags" . "1.8.9")
   0.57 ("opencl-clhpp" . "2.0.10")
   0.57 ("texlive-hyphen-latin" . "49435")
   0.57 ("libmedfile" . "4.0.0")
   0.57 ("python-flask-basicauth" . "0.2.0")
   0.57 ("emacs-el-mock" . "1.25.1")
   0.57 ("emacs-names" . "20151201.0-8.d8baba5")
   0.57 ("scsh" . "0.0.0-1.1144324")
   0.57 ("emacs-esxml" . "0.3.4")
   0.57 ("ruby-mail" . "2.6.6")
   0.57 ("emacs-zoutline" . "0.2.0")
   0.57 ("cpulimit" . "0.2")
   0.57 ("emacs-erc-hl-nicks" . "1.3.3")
   0.57 ("go-gitlab-com-ambrevar-damerau" . "0.0.0-0.883829e")
   0.57 ("suitesparse" . "4.5.5")
   0.57 ("cubicle" . "1.1.2")
   0.57 ("lucene++" . "3.0.7")
   0.57 ("ecl-cl-ansi-text" . "1.0.0-1.53badf7")
   0.57 ("samtools" . "1.9")
   0.57 ("ghc-genvalidity-property" . "0.2.1.1")
   0.57 ("perl-datetime-set" . "0.3900")
   0.57 ("jellyfish" . "2.2.10")
   0.57 ("emacs-simple-httpd" . "1.5.1")
   0.57 ("go-github-com-mgutz-ansi" . "0.0.0-0.9520e82")
   0.57 ("ykclient" . "2.15")
   0.57 ("cereal" . "1.2.1")
   0.57 ("perl-dbd-mysql" . "4.050")
   0.57 ("libmspub" . "0.1.4")
   0.57 ("emacs-emmet-mode" . "1.0.8-1.1acb821")
   0.57 ("f3" . "7.2")
   0.57 ("perl6-terminal-ansicolor" . "0.5")
   0.57 ("guile-git" . "0.2.0")
   0.57 ("pure" . "0.68")
   0.57 ("hplip-minimal" . "3.19.11")
   0.57 ("sicp" . "20170703-1.225c172")
   0.57 ("python-gpg" . "1.10.0")
   0.57 ("boost-signals2" . "1.70.0")
   0.57 ("ocaml-cppo" . "1.6.6")
   0.57 ("rpcbind" . "0.2.4")
   0.57 ("python2-betamax" . "0.8.1")
   0.57 ("vim-airline" . "0.10")
   0.57 ("python-mechanicalsoup" . "0.11.0")
   0.57 ("ghc-microlens-platform" . "0.3.10")
   0.57 ("methyldackel" . "0.4.0")
   0.57 ("go-github-com-ccding-go-stun" . "0.0.0-2.be486d1")
   0.57 ("python-relatorio" . "0.8.0")
   0.57 ("emacs-evil-org" . "0.1.1-1.b6d652a")
   0.57 ("vpnc-scripts" . "20190116.1000e0f")
   0.57 ("ocaml-bindlib" . "5.0.1")
   0.57 ("libaom" . "1.0.0-errata1-0.22b150b")
   0.57 ("emacs-edit-server" . "1.13")
   0.57 ("pflask" . "0.2")
   0.57 ("emacs-evil-expat" . "0.0.1-1.f4fcd0a")
   0.57 ("osc" . "0.165.2")
   0.57 ("mutt" . "1.12.2")
   0.57 ("go-github-com-kr-pretty" . "0.1.0")
   0.57 ("shroud" . "0.1.2")
   0.57 ("go-github-com-gobwas-glob" . "0.0.0-0.51eb1ee")
   0.57 ("mes-minimal" . "0.19")
   0.57 ("uncrustify" . "0.69.0")
   0.57 ("git-imerge" . "1.1.0")
   0.57 ("eigen" . "3.3.5")
   0.57 ("pjproject" . "2.7.2")
   0.57 ("ghc-x509-system" . "1.6.6")
   0.57 ("gx-switchless-wah-lv2" . "0-2.7b0869120")
   0.57 ("sjcount" . "3.2-1.292d391")
   0.57 ("emacs-expand-region" . "0.11.0")
   0.57 ("emacs-writeroom" . "3.7")
   0.57 ("ruby-pdf-reader" . "2.1.0")
   0.57 ("cryptsetup" . "2.2.2")
   0.57 ("0xffff" . "0.8")
   0.57 ("nginx-accept-language-module" . "0.0.0-1.2f69842")
   0.57 ("emacs-popup" . "0.5.3")
   0.57 ("emacs-clang-format" . "8.0.0")
   0.57 ("python2-flask-httpauth" . "3.2.3")
   0.57 ("emacs-undo-propose-el" . "3.0.0-3.f80baee")
   0.57 ("rtl-sdr" . "0.5.3")
   0.57 ("sxiv" . "25")
   0.57 ("go-github-com-syncthing-notify" . "0.0.0-5.69c7a95")
   0.57 ("emacs-vimrc-mode" . "0.3.1-1.13bc150")
   0.57 ("cpputest" . "3.8")
   0.57 ("smu" . "1.5")
   0.57 ("emacs-clang-rename" . "8.0.0")
   0.57 ("ruby-minitest-bonus-assertions" . "3.0")
   0.57 ("python2-elib.intl" . "0.0.3")
   0.57 ("go-github-com-whyrusleeping-stump" . "0.0.0-0.206f8f1")
   0.57 ("emacs-auto-complete" . "1.5.1")
   0.57 ("python2-dendropy" . "4.4.0")
   0.57 ("python2-nose-randomly" . "1.2.6")
   0.57 ("emacs-debpaste" . "0.1.5")
   0.57 ("cl-fiasco" . "0.0.1-1.d62f755")
   0.57 ("ghc-errorcall-eq-instance" . "0.3.0")
   0.57 ("emacs-know-your-http-well" . "0.5.0")
   0.57 ("emacs-evil-textobj-syntax" . "0-1.2d9ba8c")
   0.57 ("libssh" . "0.9.2")
   0.57 ("bwm-ng" . "0.6.2")
   0.57 ("python2-biopython" . "1.70")
   0.57 ("texlive-lm" . "49435")
   0.57 ("fxtract" . "2.3")
   0.57 ("open-zwave" . "1.6")
   0.57 ("emacs-youtube-dl" . "1.0-2.af877b5")
   0.57 ("libetonyek" . "0.1.9")
   0.57 ("python-glob2" . "0.7")
   0.57 ("emacs-f3" . "0.1")
   0.57 ("python-socksipychain" . "2.0.15")
   0.57 ("amalgamate" . "1.1.1-0.c91f07e")
   0.57 ("openmpi" . "4.0.2")
   0.57 ("minisign" . "0.8")
   0.57 ("emacs-ssh-agency" . "0.4")
   0.57 ("ghc-tasty-kat" . "0.0.3")
   0.57 ("fbcat" . "0.5.1")
   0.57 ("ocaml-sexplib0" . "0.11.0")
   0.57 ("datefudge" . "1.22")
   0.57 ("ecl-cl-string-match" . "0-1.5048480")
   0.57 ("emacs-epkg" . "3.0.0-1.432312b")
   0.57 ("libatasmart" . "0.19")
   0.57 ("cl-eos" . "0.0.0-1.b0faca8")
   0.57 ("ecl-trivial-macroexpand-all" . "0.0.0-0.933270a")
   0.57 ("spirv-tools" . "2019.2")
   0.57 ("emacs-alect-themes" . "0.9")
   0.57 ("go-github-com-calmh-xdr" . "1.1.0")
   0.57 ("w3m" . "0.5.3+git20190105")
   0.57 ("mantis" . "0-1.4ffd171")
   0.57 ("thc-ipv6" . "3.4-0.4bb7257")
   0.57 ("libdmtx" . "0.7.5")
   0.57 ("python-keras-applications" . "1.0.8")
   0.57 ("netpbm" . "10.78.3")
   0.57 ("wabt" . "1.0.12")
   0.57 ("emacs-irony-mode-server" . "1.2.0")
   0.57 ("mallard-ducktype" . "1.0.2")
   0.57 ("sdsl-lite" . "2.1.1")
   0.57 ("libmusicbrainz" . "5.1.0")
   0.57 ("hashcat" . "5.1.0")
   0.57 ("catch2" . "1.12.2")
   0.57 ("go-golang-org-x-net" . "0.0.0-3.d28f0bd")
   0.57 ("perl6-svg" . "0.0.0-1.07190c0")
   0.57 ("rust" . "1.35.0")
   0.57 ("arm-trusted-firmware-rk3328" . "2.1")
   0.57 ("bcftools" . "1.9")
   0.57 ("go-github-com-ipfs-go-ipfs-cmdkit-files" . "1.1.3-0.386fcf8")
   0.57 ("subdl" . "1.0.3-1.4cf5789")
   0.57 ("go-github-com-sasha-s-go-deadlock" . "0.2.0")
   0.56 ("ghc-newtype-generics" . "0.5.3")
   0.56 ("perl-musicbrainz-discid" . "0.04")
   0.56 ("python-colorspacious" . "1.1.2")
   0.56 ("cl-alexandria" . "1.0.0-1.3b849bc")
   0.56 ("emacs-perspective" . "2.2")
   0.56 ("libvpx" . "1.8.1")
   0.56 ("ocaml-ppx-sexp-message" . "0.11.0")
   0.56 ("xclip" . "0.13")
   0.56 ("ecl-yason" . "0.7.7")
   0.56 ("camlzip" . "1.0.6")
   0.56 ("emacs-restclient" . "0-2.422ee8d")
   0.56 ("emacs-phi-search-mc" . "2.2.1-1.7aa6719")
   0.56 ("emacs-finalize" . "2.0.0")
   0.56 ("emacs-helm-slime" . "0.4.0")
   0.56 ("python2-spectra" . "0.0.11")
   0.56 ("go-github-com-google-cadvisor" . "0.0.0-0.2ed7198")
   0.56 ("emacs-polymode" . "0.2")
   0.56 ("ocaml-cudf" . "0.9")
   0.56 ("rapidjson" . "1.1.0")
   0.56 ("emacs-flycheck" . "31-1.0006a59")
   0.56 ("emacs-eshell-prompt-extras" . "1.0")
   0.56 ("raul" . "0.8.9-1.4db870b2b")
   0.56 ("go-github-com-docker-machine" . "0.0.0-0.7b7a141")
   0.56 ("emacs-sly-package-inferred" . "0.1-1.800e71e")
   0.56 ("guile3.0-minikanren" . "20150424.e844d85")
   0.56 ("emacs-sr-speedbar" . "20161025-0.77a83fb")
   0.56 ("emacs-cl-print" . "1.0-1.1a70c55")
   0.56 ("pagekite" . "1.0.0.190721")
   0.56 ("go-golang-org-sql-mock" . "1.3.3-1.e98392b")
   0.56 ("kicad-library" . "4.0.7")
   0.56 ("go-github.com-howeyc-gopass" . "0.0.0-0.bf9dde6")
   0.56 ("cqfd" . "5.1.0")
   0.56 ("perl6-json-name" . "0.0.3")
   0.56 ("mruby" . "2.0.0")
   0.56 ("makeself-safeextract" . "0.0.0-1.1a95e12")
   0.56 ("ocaml-earley" . "2.0.0")
   0.56 ("ruby-sass-listen" . "4.0.0")
   0.56 ("mpb" . "1.8.0")
   0.56 ("emacs-helm-make" . "0.1.0-1.feae8df")
   0.56 ("ocaml-extlib" . "1.7.6")
   0.56 ("cssc" . "1.4.1")
   0.56 ("sh-z" . "1.11")
   0.56 ("libsemanage" . "2.7")
   0.56 ("vboot-utils" . "R63-10032.B")
   0.56 ("ghc-x509-validation" . "1.6.11")
   0.56 ("lua5.1-luv" . "1.30.1-1")
   0.56 ("emacs-esh-autosuggest" . "2.0.0")
   0.56 ("emacs-ergoemacs-mode" . "5.16.10.12-1.3ce23bb")
   0.56 ("pugixml" . "1.9")
   0.56 ("stress-make" . "1.0-1.9e92dff")
   0.56 ("go-github-com-gorhill-cronexpr" . "0.0.0-0.f098431")
   0.56 ("libmatroska" . "1.5.2")
   0.56 ("debian-archive-keyring" . "2019.1")
   0.56 ("libmpdclient" . "2.16")
   0.56 ("emacs-writegood-mode" . "2.0.2")
   0.56 ("emacs-beginend" . "2.0.0")
   0.56 ("go-github-com-libp2p-go-libp2p-crypto" . "2.0.1-0.7240b40")
   0.56 ("emacs-smart-mode-line" . "2.13")
   0.56 ("python-libmpsse" . "1.4")
   0.56 ("libsrtp" . "2.2.0")
   0.56 ("go-github-com-davecgh-go-spew" . "0.0.0-0.d8f796a")
   0.56 ("emacs-evil-owl" . "0.0.1-3.24c5f43")
   0.56 ("emacs-docker-tramp" . "0.1")
   0.56 ("cdrkit-libre" . "1.1.11")
   0.56 ("emacs-stickyfunc-enhance" . "0.1")
   0.56 ("bctoolbox" . "0.2.0")
   0.56 ("emacs-websocket" . "1.10")
   0.56 ("emacs-company-cabal" . "0.3.0-1.62112a7")
   0.56 ("emacs-helm-c-yasnippet" . "0.6.7-1.65ca732")
   0.56 ("emacs-scratch-el" . "1.2-1.2cdf2b8")
   0.56 ("ruby-concurrent" . "1.1.5")
   0.56 ("openspecfun" . "0.5.3")
   0.56 ("ruby-activejob" . "5.2.2.1")
   0.56 ("scrot" . "1.2")
   0.56 ("emacs-tldr" . "0-0.398b197")
   0.56 ("ocaml-bisect-ppx" . "1.4.1")
   0.56 ("emacs-kv" . "0.0.19")
   0.56 ("petsc-complex" . "3.11.2")
   0.56 ("american-fuzzy-lop" . "2.52b")
   0.56 ("libtoxcore" . "0.0.0-2.bf69b54")
   0.56 ("emacs-org-bullets" . "0.2.4")
   0.56 ("ocaml-easy-format" . "1.3.2")
   0.56 ("go-github-com-pkg-errors" . "0.8.1-0.27936f6")
   0.56 ("sonic" . "0.2.0")
   0.56 ("emacs-debbugs" . "0.20")
   0.56 ("libimagequant" . "2.12.3")
   0.56 ("emacs-company-math" . "1.3-1.600e494")
   0.56 ("libbraiding" . "1.0")
   0.56 ("ocaml-typerep" . "0.11.0")
   0.56 ("cl-prevalence" . "5-1.c163c22")
   0.56 ("emacs-evil-visual-replace" . "0.0.5")
   0.56 ("ruby-minitar" . "0.5.4-1.e25205ec")
   0.56 ("ocaml-csv" . "2.2")
   0.56 ("emacs-mixed-pitch" . "1.0.1")
   0.56 ("ocaml-ppx-compare" . "0.11.1")
   0.56 ("go-github-com-burntsushi-toml" . "0.3.1")
   0.56 ("libkate" . "0.4.1")
   0.56 ("spinsim" . "0.75-1.66915a7ad")
   0.56 ("emacs-evil-lion" . "0.0.2-1.6b03593")
   0.56 ("python-trytond" . "4.6.2")
   0.56 ("go-github-com-hashicorp-go-version" . "0.0.0-0.03c5bf6")
   0.56 ("ghc-configurator" . "0.3.0.0")
   0.56 ("ruby-powerpack" . "0.1.2")
   0.56 ("emacs-org-rich-yank" . "0.2.1")
   0.56 ("emacs-ibuffer-projectile" . "0.2-2.7649621")
   0.56 ("mod-wsgi" . "4.5.22")
   0.56 ("xcape" . "1.2")
   0.56 ("emacs-sly-asdf" . "0.1.0-2.4e323bc")
   0.56 ("ghc-http-client-tls" . "0.3.5.3")
   0.56 ("vsearch" . "2.9.1")
   0.56 ("emacs-god-mode" . "20151005.925.1-6cf0807b6")
   0.56 ("ruby-rubygems-tasks" . "0.2.4")
   0.56 ("emacs-evil-markdown" . "0.0.2-1.46cd81b")
   0.56 ("emacs-rust-mode" . "0.4.0")
   0.56 ("python2-gpg" . "1.10.0")
   0.56 ("emacs-datetime" . "0.3")
   0.56 ("ruby-ttfunk" . "1.5.1")
   0.56 ("emacs-ace-jump-mode" . "2.0")
   0.56 ("emacs-stream" . "2.2.4-1.a3f3da1")
   0.56 ("go-github-com-chmduquesne-rollinghash" . "4.0.0-0.a60f8e7")
   0.56 ("emacs-dashboard" . "1.5.0")
   0.56 ("emacs-vdiff" . "0.2.3-1.09e15fc")
   0.56 ("ghc-cipher-aes" . "0.2.11")
   0.56 ("lua5.2-libmpack" . "1.0.8")
   0.56 ("libqxp" . "0.0.2")
   0.56 ("emacs-leetcode" . "0-1.8624496")
   0.56 ("bowtie1" . "1.2.3")
   0.56 ("encfs" . "1.9.5")
   0.56 ("hidapi" . "0.8.0-rc1")
   0.56 ("libmbim" . "1.20.2")
   0.56 ("emacs-eval-sexp-fu-el" . "0.5.0")
   0.56 ("emacs-litable" . "0.1-0.b0278f3")
   0.56 ("emacs-taskrunner" . "0.6-1.3afd4a5")
   0.56 ("snappy" . "1.1.7")
   0.56 ("python2-rauth" . "0.7.3")
   0.56 ("ghc-integer-logarithms" . "1.0.2.1")
   0.56 ("ghc-cryptohash-sha1" . "0.11.100.1")
   0.56 ("go-github-com-btcsuite-btclog" . "0.0.3-0.84c8d23")
   0.56 ("emacs-web-beautify" . "0.3.2")
   0.56 ("mkbootimg" . "7.1.2_r36")
   0.56 ("stgit" . "0.18")
   0.56 ("emacs-benchmark-init" . "1.0")
   0.56 ("ghc-skylighting-core" . "0.7.2")
   0.56 ("python-tlsh" . "3.4.5")
   0.56 ("ecl-find-port" . "0.1")
   0.56 ("libwebsockets" . "1.3")
   0.56 ("emacs-synosaurus" . "0.1.0-1.8bf95b9")
   0.56 ("emacs-exec-path-from-shell" . "1.12")
   0.56 ("cl-trivia" . "0.0.0-1.902e0c6")
   0.56 ("emacs-edit-indirect" . "0.1.5")
   0.56 ("gx-push-pull-lv2" . "0-1.7f76ae206")
   0.56 ("emacs-evil-nerd-commenter" . "3.3.8")
   0.56 ("emacs-idle-highlight" . "1.1.3")
   0.56 ("python2-consul" . "0.6.1")
   0.56 ("emacs-elpher" . "1.4.6")
   0.56 ("ghc-wai-logger" . "2.3.2")
   0.56 ("jags" . "4.3.0")
   0.56 ("omake" . "0.10.3")
   0.56 ("python-crate" . "0.23.2")
   0.56 ("python-pylibscrypt" . "1.7.1")
   0.56 ("ghc-vector-builder" . "0.3.6")
   0.56 ("cpplint" . "1.4.4")
   0.56 ("emacs-helm-flycheck" . "0.4-1.3cf7d3b")
   0.55 ("clang-runtime" . "8.0.0")
   0.55 ("ocaml-ppx-sexp-conv" . "0.11.2")
   0.55 ("ghc-ncurses" . "0.2.16")
   0.55 ("ghc-crypto-random" . "0.0.9")
   0.55 ("go-github-com-libp2p-go-flow-metrics" . "0.2.0-0.7e5a55a")
   0.55 ("libsepol" . "2.7")
   0.55 ("guile-parted" . "0.0.2")
   0.55 ("emacs-isearch-prop" . "0-2.4a2765f")
   0.55 ("libnfs" . "3.0.0")
   0.55 ("bitlbee-discord" . "0.4.2")
   0.55 ("emacs-helm-org" . "1.0-1.542dda7")
   0.55 ("emacs-spacegray-theme" . "0-0.9826265")
   0.55 ("opencl-headers" . "2.2.0-0.e986688")
   0.55 ("ghc-asn1-types" . "0.3.2")
   0.55 ("ecl-metatilities-base" . "0.6.6-1.6eaa9e3")
   0.55 ("emacs-slime-company" . "1.1")
   0.55 ("go-github-com-ipfs-go-ipfs-api" . "1.3.1-0.dafc2a1")
   0.55 ("ghc-hspec-core" . "2.5.5")
   0.55 ("eschalot" . "1.2.0-1.0bf31d8")
   0.55 ("emacs-gruvbox-theme" . "1.28.0")
   0.55 ("emacs-git-auto-commit-mode" . "4.4.0")
   0.55 ("dune" . "1.11.3")
   0.55 ("chibi-scheme" . "0.8")
   0.55 ("emacs-adoc-mode" . "0.6.6")
   0.55 ("emacs-outshine" . "3.0.1")
   0.55 ("go-github-com-whyrusleeping-tar-utils" . "0.0.0-0.8c6c8ba")
   0.55 ("rime-data" . "0.38.20190131")
   0.55 ("emacs-frame-purpose" . "1.0")
   0.55 ("ocamlify" . "0.0.1")
   0.55 ("emacs-eshell-z" . "0.3.2")
   0.55 ("python2-sqlalchemy-utils" . "0.32.21")
   0.55 ("python2-dukpy" . "0.3")
   0.55 ("ghc-base-compat" . "0.10.4")
   0.55 ("emacs-paren-face" . "1.0.0")
   0.55 ("python2-mysqlclient" . "1.3.13")
   0.55 ("herbstluftwm" . "0.7.2")
   0.55 ("checkpolicy" . "2.7")
   0.55 ("git-when-merged" . "1.2.0-ab6af78")
   0.55 ("emacs-org-pomodoro" . "2.1.0-1.aa07c11")
   0.55 ("ocaml-cmdliner" . "1.0.3")
   0.55 ("guile-xcb" . "1.3-1.db7d5a3")
   0.55 ("roffit" . "0.11-1.e5228388e")
   0.55 ("hurd-core-headers" . "0.9")
   0.55 ("python2-roca-detect" . "1.0.8")
   0.55 ("linenoise" . "1.0-1.2105ce4")
   0.55 ("taskwarrior" . "2.5.1")
   0.55 ("cityhash" . "1.1-2.8af9b8c")
   0.55 ("libgphoto2" . "2.5.23")
   0.55 ("emacs-multiple-cursors" . "1.4.0")
   0.55 ("ocaml-frontc" . "3.4.2")
   0.55 ("vulkan-headers" . "1.1.114")
   0.55 ("emacs-bui" . "1.2.1")
   0.55 ("lz4" . "1.9.1")
   0.55 ("emacs-google-c-style" . "0.1-0.6271f3f")
   0.55 ("bedops" . "2.4.35")
   0.55 ("llvm" . "3.8.1")
   0.55 ("emacs-evil-smartparens" . "0.4.0")
   0.55 ("go-github-com-sabhiram-go-gitignore" . "1.0.2-0.d310757")
   0.55 ("microscheme" . "0.9.3")
   0.55 ("ghc-asn1-parse" . "0.9.4")
   0.55 ("emacs-ox-twbs" . "1.1.1")
   0.55 ("ecl-bordeaux-threads" . "0.8.6-1.5dce49f")
   0.55 ("guile-hall" . "0.2")
   0.55 ("libiax2" . "0.0.0-1.0e5980f")
   0.55 ("ruby-nokogumbo" . "1.4.7-1.fb51ff29")
   0.55 ("emacs-helm-mode-manager" . "1.0.0")
   0.55 ("htslib" . "1.9")
   0.55 ("perl-math-random-secure" . "0.080001")
   0.55 ("python-llvmlite" . "0.27.1")
   0.55 ("ghc-hackage-security" . "0.5.3.0")
   0.55 ("nss" . "3.45")
   0.55 ("emacs-helm-gtags" . "1.5.6")
   0.55 ("ecl-series" . "2.2.11-1.da9061b")
   0.55 ("perl-types-path-tiny" . "0.006")
   0.55 ("python-flask-htmlmin" . "1.2")
   0.55 ("emacs-add-hooks" . "3.1.1")
   0.55 ("autojump" . "22.5.3")
   0.55 ("cl-py4cl" . "0.0.0-1.4c8a2b0")
   0.55 ("xinetd" . "2.3.15")
   0.55 ("emacs-parsebib" . "2.3.1")
   0.55 ("go-github-com-prometheus-procfs" . "0.0.3")
   0.55 ("emacs-el2org" . "0.6.0")
   0.55 ("ghc-concurrent-extra" . "0.7.0.12")
   0.55 ("mysql" . "5.7.27")
   0.55 ("openjpeg" . "1.5.2")
   0.55 ("emacs-org-reveal" . "0.1-3.9210413")
   0.55 ("emacs-evil-anzu" . "0.03")
   0.55 ("fzy" . "1.0")
   0.55 ("libcxx" . "6.0.1")
   0.55 ("go-github-com-aarzilli-golua" . "0.0.0-0.03fc464")
   0.55 ("ruby-bond" . "0.5.1")
   0.55 ("go-golang-org-x-text" . "0.3.2")
   0.55 ("go-github-com-d4l3k-messagediff" . "1.2.1")
   0.55 ("python2-rdflib" . "4.2.2")
   0.55 ("perl6-tap-harness" . "0.0.7")
   0.55 ("emacs-erc-image" . "0-1.82fb387")
   0.55 ("scheme48-rx" . "0.0.0-2.dd9037f")
   0.55 ("emacs-peg" . "0.6")
   0.55 ("eudev" . "3.2.8")
   0.55 ("ghc-vector-binary-instances" . "0.2.4")
   0.55 ("emacs-bug-hunter" . "1.3.1-1.b88d981")
   0.55 ("emacs-monroe" . "0.3.1")
   0.55 ("perl-params-validationcompiler" . "0.30")
   0.55 ("ipopt" . "3.12.12")
   0.55 ("emacs-org-tree-slide" . "2.8.4-2.036a36e")
   0.55 ("python-bx-python" . "0.8.2")
   0.55 ("python2-colorspacious" . "1.1.2")
   0.55 ("emacs-discover-my-major" . "1.0")
   0.55 ("python-flask-migrate" . "2.0.3")
   0.55 ("emacs-goto-chg" . "1.7.3-1.1829a13")
   0.55 ("rdmd" . "2.077.1")
   0.55 ("emacs-editorconfig" . "0.8.1")
   0.55 ("console-setup" . "1.191")
   0.55 ("emacs-auth-source-pass" . "5.0.0-1.847a1f5")
   0.55 ("shadowsocks" . "2.8.2-0.e332ec9")
   0.55 ("ruby-warden" . "1.2.8")
   0.55 ("go-github-com-marten-seemann-qtls" . "0.2.3")
   0.55 ("scons-python2" . "3.0.4")
   0.55 ("emacs-find-file-in-project" . "5.4.7")
   0.55 ("hpenc" . "3.0")
   0.55 ("emacs-strace-mode" . "0.0.2-1.6a69b4b")
   0.55 ("gctp" . "2.0.0")
   0.55 ("ocaml-ppx-here" . "0.11.0")
   0.55 ("emacs-biblio" . "0.2")
   0.55 ("emacs-pg" . "0.1-1.4f6516e")
   0.55 ("emacs-slime" . "2.24")
   0.55 ("http-parser" . "2.9.2")
   0.55 ("emacs-scheme-complete" . "20151223.9b5cf224")
   0.55 ("ghc-memory" . "0.14.16")
   0.55 ("tini" . "0.18.0")
   0.55 ("wine-staging-patchset-data" . "4.18")
   0.55 ("protozero" . "1.6.7")
   0.55 ("tippecanoe" . "1.31.5")
   0.55 ("liboauth" . "1.0.3")
   0.55 ("xbanish" . "1.6")
   0.55 ("python2-pygpgme" . "0.3")
   0.55 ("emacs-ido-vertical-mode" . "0.1.6")
   0.55 ("john-the-ripper-jumbo" . "1.9.0-1")
   0.55 ("fdupes" . "1.6.1")
   0.55 ("libsass" . "3.5.5")
   0.55 ("ghc-wcwidth" . "0.0.2")
   0.55 ("python-send2trash" . "1.5.0")
   0.55 ("thinkfan" . "1.0.2")
   0.55 ("python-binwalk" . "2.1.1-0.64201ac")
   0.55 ("lrdf" . "0.6.1")
   0.55 ("accountsservice" . "0.6.50")
   0.55 ("python2-cleo" . "0.6.8")
   0.55 ("go-github-com-kr-fs" . "0.1.0-0.1455def")
   0.55 ("font-tamzen" . "1.11.4")
   0.55 ("givaro" . "4.0.4")
   0.55 ("libtocc" . "1.0.1")
   0.55 ("lci" . "0.11.2")
   0.55 ("qpdf" . "8.4.1")
   0.55 ("python-genshi" . "0.7.2")
   0.55 ("emacs-projectile" . "2.0.0")
   0.55 ("libwpg" . "0.3.3")
   0.55 ("go-github-com-whyrusleeping-json-filter" . "0.0.0-0.ff25329")
   0.55 ("python2-pyscard" . "1.9.9")
   0.55 ("lua5.1-libmpack" . "1.0.8")
   0.55 ("emacs-focus" . "0.1.1-1.ab42b87")
   0.55 ("emacs-realgud" . "1.5.1")
   0.55 ("arpack-ng" . "3.6.3")
   0.55 ("ola" . "0.10.7")
   0.55 ("emacs-pandoc-mode" . "2.27.2")
   0.55 ("python-cachy" . "0.2.0")
   0.55 ("libhomfly" . "1.02r6")
   0.55 ("cl-hunchentoot" . "1.2.38")
   0.55 ("qmpbackup" . "0.2")
   0.55 ("ocaml-menhir" . "20181113")
   0.55 ("ecl-py4cl" . "0.0.0-1.4c8a2b0")
   0.55 ("cl-checkl" . "0.0.0-1.8032880")
   0.55 ("python-codecov" . "2.0.15")
   0.54 ("libraft" . "0.9.5")
   0.54 ("neovim" . "0.4.3")
   0.54 ("seek" . "0-1.2329130")
   0.54 ("ocaml-bitstring" . "3.1.0")
   0.54 ("rust" . "1.37.0")
   0.54 ("cl-named-readtables" . "0.9-1.4dfb89f")
   0.54 ("go-github-com-golang-groupcache-lru" . "0.0.0-1.84a468c")
   0.54 ("vim-scheme" . "0.0.0-1.9382798")
   0.54 ("selene" . "2017.08.25")
   0.54 ("python-orator" . "0.9.7")
   0.54 ("guile-miniadapton" . "0-1.1b5749422")
   0.54 ("mbpfan" . "2.1.1")
   0.54 ("emacs-rotate-text" . "0.1")
   0.54 ("cups" . "2.2.11")
   0.54 ("libmesode" . "0.9.3")
   0.54 ("guile-ffi-fftw" . "0-1.95d7ffb")
   0.54 ("dnsmasq" . "2.80")
   0.54 ("bash-tap" . "1.0.2")
   0.54 ("emacs-eshell-did-you-mean" . "0.1")
   0.54 ("python2-pytzdata" . "2017.3.1")
   0.54 ("s-shell" . "0.0.0-2.da2e5c2")
   0.54 ("ghc-lzma" . "0.0.0.3")
   0.54 ("emacs-disk-usage" . "1.3.3")
   0.54 ("ghc-hspec-meta" . "2.4.6")
   0.54 ("emacs-sx" . "20180212-1.833435f")
   0.54 ("emacs-fringe-helper" . "1.0.1-1.ef4a9c0")
   0.54 ("artanis" . "0.3.1")
   0.54 ("ruby-pdf-inspector" . "1.3.0")
   0.54 ("seabios" . "1.12.1")
   0.54 ("aptdec" . "1.7")
   0.54 ("emacs-ov" . "1.0.6")
   0.54 ("emacs-olivetti" . "1.8.0")
   0.54 ("python-xdo" . "0.3")
   0.54 ("emacs-d-mode" . "2.0.9")
   0.54 ("blis-haswell" . "0.2.2")
   0.54 ("zimg" . "2.9.2")
   0.54 ("propeller-toolchain" . "4.6.1-2.4c46ecbe7")
   0.54 ("vim-fugitive" . "3.1")
   0.54 ("libstaroffice" . "0.0.6")
   0.54 ("lchat" . "0.0.0-3.f951919")
   0.54 ("emacs-deft" . "0.8")
   0.54 ("sqlcrush" . "0.1.5-1.b5f6868")
   0.54 ("python2-urllib3" . "1.25.3")
   0.54 ("ghc-crypto-api" . "0.13.3")
   0.54 ("emacs-jinja2-mode" . "0.2")
   0.54 ("guile-squee" . "0-0.a85902a")
   0.54 ("pass-rotate" . "0.1")
   0.54 ("python-pyportmidi" . "217")
   0.54 ("ddate" . "0.2.2")
   0.54 ("simh" . "3.9-0")
   0.54 ("guile2.0-redis" . "1.3.0")
   0.54 ("ghc-cookie" . "0.4.4")
   0.54 ("emacs-sourcemap" . "0.03")
   0.54 ("lua-luv" . "1.30.1-1")
   0.54 ("emacs-sly" . "1.0.0-3.0a3b817")
   0.54 ("m2-planet" . "1.4.0-2.b87ddb0")
   0.54 ("emacs-highlight-defined" . "0.1.5")
   0.54 ("go-github.com-smartystreets-gunit" . "1.0.0")
   0.54 ("openlibm" . "0.6.0")
   0.54 ("ois" . "1.5")
   0.54 ("python2-twine" . "1.9.1")
   0.54 ("libwps" . "0.4.10")
   0.54 ("go-github.com-smartystreets-assertions" . "1.8.1")
   0.54 ("emacs-stumpwm-mode" . "0.0.1-1.5328f85")
   0.54 ("lua-libmpack" . "1.0.8")
   0.54 ("strongswan" . "5.8.1")
   0.54 ("emacs-rich-minority" . "1.0.1")
   0.54 ("python-trytond-party" . "4.6.0")
   0.54 ("lib3mf" . "1.8.1")
   0.54 ("opencl-headers" . "1.1.0-0.e986688")
   0.54 ("ocaml-configurator" . "0.11.0")
   0.54 ("opencl-headers" . "2.0.0-0.e986688")
   0.54 ("go-github-com-libp2p-go-libp2p-protocol" . "1.0.0-0.b29f3d9")
   0.54 ("exim" . "4.92.3")
   0.54 ("ghc-blaze-html" . "0.9.1.1")
   0.54 ("emacs-eacl" . "2.0.1")
   0.54 ("gperftools" . "2.7")
   0.54 ("screenfetch" . "3.9.0")
   0.54 ("emacs-org-mind-map" . "0.0.1-1.9d6e262")
   0.54 ("emacs-sudo-edit" . "0.1.0-6.cc3d478")
   0.54 ("go-github-com-stevedonovan-luar" . "0.0.0-0.22d247e")
   0.54 ("innoextract" . "1.7")
   0.54 ("go-github-com-whyrusleeping-progmeter" . "0.0.0-0.f3e5721")
   0.54 ("emacs-mbsync" . "0.1.2-4.b62491c")
   0.54 ("clang" . "3.7.1")
   0.54 ("clustershell" . "1.8.2")
   0.54 ("emacs-google-translate" . "0.11.18")
   0.54 ("ocaml-jane-street-headers" . "0.11.0")
   0.54 ("texlive-zapfding" . "49435")
   0.54 ("uchardet" . "0.0.6")
   0.54 ("go-github-com-gxed-hashland-keccakpg" . "0.0.0-0.d9f6b97")
   0.54 ("emacs-shut-up" . "0.3.2")
   0.54 ("emacs-minions" . "0.3.1")
   0.54 ("emacs-git-gutter-fringe" . "0.23-1.16226ca")
   0.54 ("nxbelld" . "0.1.2")
   0.54 ("emacs-ert-async" . "0.1.2")
   0.54 ("cl-syntax-annot" . "0.0.3")
   0.54 ("go-github-com-direnv-go-dotenv" . "0.0.0-0.4cce6d1")
   0.54 ("can-utils" . "2018.02.0")
   0.54 ("pydf" . "12")
   0.54 ("python-flex" . "6.10.0")
   0.54 ("emacs-evil-surround" . "1.0.4")
   0.54 ("taglib" . "1.11.1")
   0.54 ("go-github-com-spaolacci-murmur3" . "1.1-0.f09979e")
   0.54 ("tmux-themepack" . "0.0.0-1.03a3728")
   0.54 ("kicad-symbols" . "5.1.4")
   0.54 ("guile-pfds" . "0.3")
   0.54 ("libstrophe" . "0.9.3")
   0.54 ("emacs-windower" . "0.0.1")
   0.54 ("emacs-elisp-demos" . "2019.08.16")
   0.54 ("ghc-rerebase" . "1.2.2")
   0.54 ("emacs-js2-mode" . "20190219")
   0.54 ("jack2" . "1.9.13")
   0.54 ("emacs-google-maps" . "1.0.0")
   0.54 ("metis" . "5.1.0")
   0.54 ("ocaml-ssl" . "0.5.9")
   0.54 ("guile-mastodon" . "0.0.1")
   0.54 ("go-github-com-jackpal-gateway" . "0.0.0-0.5795ac8")
   0.54 ("ghc-tasty-expected-failure" . "0.11.1.1")
   0.54 ("ghc-equivalence" . "0.3.2")
   0.54 ("ghc-bytestring-handle" . "0.1.0.6")
   0.54 ("petsc" . "3.11.2")
   0.54 ("efilinux" . "1.1")
   0.54 ("alpine" . "2.21.99999")
   0.54 ("clang-runtime" . "3.7.1")
   0.54 ("msgpack" . "3.2.0")
   0.54 ("guile-minikanren" . "20150424.e844d85")
   0.54 ("emacs-gitpatch" . "0.5.1")
   0.54 ("go-github-com-kr-text" . "0.1.0")
   0.54 ("python-axolotl" . "0.1.39")
   0.54 ("jasper" . "2.0.16")
   0.54 ("khard" . "0.15.1")
   0.54 ("binutils-vc4" . "2.23.51-0.708acc8")
   0.54 ("ghc-math-functions" . "0.2.1.0")
   0.54 ("libspatialite" . "4.3.0a")
   0.54 ("emacs-esup" . "0.6-1.a589005")
   0.54 ("go-github-com-kardianos-osext" . "0.0.0-1.ae77be6")
   0.54 ("ocaml-zarith" . "1.9.1")
   0.54 ("emacs-peep-dired" . "0-1.c88a9a3")
   0.54 ("emacs-buttercup" . "1.16")
   0.54 ("go-github-com-robfig-cron" . "3.0.0")
   0.54 ("llvm" . "6.0.1")
   0.54 ("emacs-undercover" . "0.6.0")
   0.54 ("emacs-xmlgen" . "0.5")
   0.54 ("ocaml-mccs" . "1.1+9")
   0.54 ("emacs-eshell-up" . "0.0.3-12.9c100ba")
   0.54 ("ghc-hedgehog" . "0.6.1")
   0.54 ("ocaml-ppx-derivers" . "1.2.1")
   0.54 ("emacs-macrostep" . "0.9-1.424e373")
   0.54 ("emacs-evil-commentary" . "2.1.1")
   0.54 ("dashel" . "1.3.3")
   0.54 ("ghc-diff" . "0.3.4")
   0.54 ("emacs-with-editor" . "2.8.3")
   0.53 ("dzen" . "0.9.5-1.488ab66")
   0.53 ("python-dbus" . "1.2.10")
   0.53 ("brotli" . "0.1-1.e992cce")
   0.53 ("mloop" . "0.0.1-0.adebff9")
   0.53 ("ghc-io-streams" . "1.5.0.1")
   0.53 ("libepubgen" . "0.1.1")
   0.53 ("utf8proc" . "2.4.0")
   0.53 ("android-libutils" . "7.1.2_r36")
   0.53 ("tocc" . "1.0.1")
   0.53 ("ccid" . "1.4.31")
   0.53 ("hevea" . "2.32")
   0.53 ("emacs-outorg" . "2.0-1.78b0695")
   0.53 ("ghc-tasty-hunit" . "0.10.0.1")
   0.53 ("clang" . "7.0.1")
   0.53 ("python2-pynvim" . "0.3.2")
   0.53 ("emacs-general" . "0-3.f38fb22")
   0.53 ("libzmf" . "0.0.2")
   0.53 ("rkrlv2" . "0-2.7edcb4e")
   0.53 ("python-dnaio" . "0.3")
   0.53 ("ruby-metaclass" . "0.0.4")
   0.53 ("gnupg" . "1.4.23")
   0.53 ("ocaml-oasis" . "0.4.11")
   0.53 ("ghc-wave" . "0.1.5")
   0.53 ("librevenge" . "0.0.4")
   0.53 ("ghc-nats" . "1.1.2")
   0.53 ("zinnia" . "0.07-1.581faa8")
   0.53 ("emacs-cnfonts" . "0.9.1")
   0.53 ("python-screed" . "1.0")
   0.53 ("raptor2" . "2.0.15")
   0.53 ("mythes" . "1.2.4")
   0.53 ("hexedit" . "1.4.2")
   0.53 ("emacs-evil-replace-with-register" . "0.1-1.91cc7bf")
   0.53 ("python-mysqlclient" . "1.3.13")
   0.53 ("python2-cryptography" . "2.7")
   0.53 ("ghc-double-conversion" . "2.0.2.0")
   0.53 ("emacs-base16-theme" . "2.2")
   0.53 ("ruby-i18n" . "1.1.0")
   0.53 ("ecl-cl-store" . "0.8.11-0.cd01f26")
   0.53 ("emacs-julia-mode" . "0.3-1.115d4dc8")
   0.53 ("guile3.0-gdbm-ffi" . "20120209.fa1d5b6")
   0.53 ("xrandr-invert-colors" . "0.01")
   0.53 ("xmlsec-nss" . "1.2.29")
   0.53 ("python-gmpy2" . "2.1.0b1")
   0.53 ("freebayes" . "1.0.2-1.3ce827d")
   0.53 ("go-github-com-rcrowley-go-metrics" . "0.0.0-1.e181e09")
   0.53 ("qhull" . "2015.2")
   0.53 ("perl-crypt-random-source" . "0.12")
   0.53 ("dumb" . "2.0.3")
   0.53 ("lsh" . "2.1")
   0.53 ("python-pybigwig" . "0.3.12")
   0.53 ("emacs-eshell-bookmark" . "2.0.0")
   0.53 ("emacs-which-key" . "3.3.1")
   0.53 ("ocaml-num" . "1.1")
   0.53 ("perl-datetime-format-http" . "0.42")
   0.53 ("emacs-package-lint" . "0.5-1.69bb89d")
   0.53 ("grpc" . "1.16.1")
   0.53 ("emacs-slime-repl-ansi-color" . "0.0.0-1.ad03263")
   0.53 ("mescc-tools" . "0.6.1")
   0.53 ("emacs-polymode-org" . "0.2")
   0.53 ("go-github-com-lib-pq" . "1.2.0")
   0.53 ("emacs-unfill" . "0.2")
   0.53 ("python2-faker" . "0.7.9")
   0.53 ("stapler" . "0.3.2")
   0.53 ("emacs-rspec" . "1.11-1.66ea7cc")
   0.53 ("pcsc-lite" . "1.8.25")
   0.53 ("openjpeg" . "2.3.1")
   0.53 ("ghc-deepseq-generics" . "0.2.0.0")
   0.53 ("emacs-highlight-stages" . "1.1.0-1.29cbc5b")
   0.53 ("go-github-com-mattn-go-colorable" . "0.0.0-0.efa5899")
   0.53 ("glm" . "0.9.9.6")
   0.53 ("emacs-gntp" . "0.1")
   0.53 ("apertium" . "3.5.2")
   0.53 ("rss-bridge" . "2019-09-12")
   0.53 ("doctest" . "2.3.5")
   0.53 ("wiredtiger" . "3.1.0")
   0.53 ("python2-paramiko" . "2.4.2")
   0.53 ("bdfresize" . "1.5-11")
   0.53 ("python-colormath" . "3.0.0")
   0.53 ("emacs-alert" . "1.3")
   0.53 ("trim-galore" . "0.6.1")
   0.53 ("clang-runtime" . "3.8.1")
   0.53 ("ocamlmod" . "0.0.9")
   0.53 ("python2-pyopenssl" . "19.0.0")
   0.53 ("python2-schema" . "0.6.6")
   0.53 ("ghc-edit-distance" . "0.2.2.1")
   0.53 ("python2-gmpy2" . "2.1.0b1")
   0.53 ("ghc-non-negative" . "0.1.2")
   0.53 ("filevercmp" . "0-1.1a9b779")
   0.53 ("dcmtk" . "3.6.4")
   0.53 ("python2-steadymark" . "0.7.3")
   0.53 ("libftdi" . "1.4")
   0.53 ("python2-hy" . "0.13.0")
   0.53 ("cl-fare-utils" . "1.0.0.5-1.66e9c6f")
   0.53 ("opencl-headers" . "2.1.0-0.e986688")
   0.53 ("ghc-weigh" . "0.0.12")
   0.53 ("ghc-contravariant-extras" . "0.3.4")
   0.53 ("python-pexpect" . "4.6.0")
   0.53 ("perl-datetime-event-ical" . "0.13")
   0.53 ("iniparser" . "4.1")
   0.53 ("ghc-hashable-time" . "0.2.0.1")
   0.53 ("tbb" . "2019_U9")
   0.53 ("usbutils" . "012")
   0.53 ("python2-docopt" . "0.6.2")
   0.53 ("python-pytest-cov" . "2.6.1")
   0.53 ("reaver" . "1.6.5")
   0.53 ("yubikey-personalization" . "1.19.3")
   0.53 ("esmtp" . "1.2")
   0.53 ("ocaml-stdlib-shims" . "0.1.0")
   0.53 ("public-suffix-list" . "0-1.9375b69")
   0.53 ("iwd" . "0.21")
   0.53 ("perl-datetime-format-w3cdtf" . "0.07")
   0.53 ("mate-backgrounds" . "1.22.0")
   0.53 ("ghc-reducers" . "3.12.3")
   0.53 ("clang-runtime" . "3.9.1")
   0.53 ("python2-gnupg" . "0.4.4")
   0.53 ("python-pytest-cache" . "1.0")
   0.53 ("spin2cpp" . "3.6.4")
   0.53 ("python-pyaudio" . "0.2.11")
   0.53 ("python2-rpython" . "0.2.1")
   0.53 ("ruby-hamster" . "3.0.0")
   0.53 ("ocaml-bigarray-compat" . "1.0.0")
   0.53 ("cl-prove-asdf" . "1.0.0-1.4f9122b")
   0.53 ("zabbix-server" . "4.4.1")
   0.53 ("asignify" . "1.1-0.f58e797")
   0.53 ("ytnef" . "1.9.3")
   0.53 ("python2-elasticsearch" . "6.1.1")
   0.53 ("pdfgrep" . "2.1.2")
   0.53 ("go-github-com-multiformats-go-multihash" . "1.0.8-0.97cdb56")
   0.53 ("emacs-dts-mode" . "0.1.0-1.9ee0854")
   0.53 ("ttf2eot" . "0.0.3")
   0.52 ("tnef" . "1.4.17")
   0.52 ("emacs-apheleia" . "1.0")
   0.52 ("avr-toolchain" . "4.9.4")
   0.52 ("emacs-interactive-align" . "0.4.2")
   0.52 ("femtolisp" . "0.0.0-1.68c5b12")
   0.52 ("emacs-transmission" . "0.12.1")
   0.52 ("ocaml-charinfo-width" . "1.1.0")
   0.52 ("ocaml-stdio" . "0.11.0")
   0.52 ("libjpeg-turbo" . "2.0.2")
   0.52 ("python2-booleanoperations" . "0.7.1")
   0.52 ("libspnav" . "0.2.3")
   0.52 ("emacs-noflet" . "20170629-1.7ae84dc")
   0.52 ("httpie" . "1.0.3")
   0.52 ("inxi-minimal" . "3.0.34-1")
   0.52 ("cl-http-body" . "0.1.0-1.dd01dc4")
   0.52 ("nfs-utils" . "2.1.1")
   0.52 ("perl-moox-options" . "4.023")
   0.52 ("python-argcomplete" . "1.7.0")
   0.52 ("python-freezegun" . "0.3.12")
   0.52 ("rc" . "1.7.4")
   0.52 ("ghc-rio" . "0.1.5.0")
   0.52 ("python2-flask" . "1.0.3")
   0.52 ("python2-pexpect" . "4.6.0")
   0.52 ("emacs-es-mode" . "4.3.0")
   0.52 ("sbsigntools" . "0.9.2")
   0.52 ("emacs-helm-fish-completion" . "0.1-1.ef764dd")
   0.52 ("python2-ruamel.yaml" . "0.15.83")
   0.52 ("python2-natsort" . "5.4.1")
   0.52 ("xl2tpd" . "1.3.15")
   0.52 ("emacs-tablist" . "1.0")
   0.52 ("font-open-dyslexic" . "20160623")
   0.52 ("blis" . "0.2.2")
   0.52 ("python-pycups" . "1.9.74")
   0.52 ("ocaml-bisect" . "1.3.1")
   0.52 ("mpdscribble" . "0.22")
   0.52 ("ndctl" . "67")
   0.52 ("python2-gitdb" . "2.0.4")
   0.52 ("guile-gdbm-ffi" . "20120209.fa1d5b6")
   0.52 ("sfarkxtc" . "0-1.13cd6f9")
   0.52 ("perl-datetime-format-flexible" . "0.32")
   0.52 ("filters" . "2.55")
   0.52 ("libodfgen" . "0.1.7")
   0.52 ("python-jupyter-client" . "5.2.4")
   0.52 ("xlsx2csv" . "0.7.4")
   0.52 ("emacs-semantic-refactor" . "0.5-1.6f2c97d")
   0.52 ("emacs-reformatter" . "0.4")
   0.52 ("guile-jpeg" . "0.0-0.6a16735")
   0.52 ("ghc-storablevector" . "0.2.13")
   0.52 ("python-axolotl-curve25519" . "0.1")
   0.52 ("stalin" . "0.11")
   0.52 ("kentutils" . "302.0.0")
   0.52 ("ghc-clientsession" . "0.9.1.2")
   0.52 ("proot" . "5.1.0")
   0.52 ("perl-datetime-format-strptime" . "1.76")
   0.52 ("python2-alembic" . "1.0.11")
   0.52 ("python-requests" . "2.22.0")
   0.52 ("sudo" . "1.8.29")
   0.52 ("python2-pendulum" . "1.2.4")
   0.52 ("ghc-resource-pool" . "0.2.3.2")
   0.52 ("python2-send2trash" . "1.5.0")
   0.52 ("b43-tools" . "0.0.0-1.27892ef")
   0.52 ("python-pyfakefs" . "3.5.8")
   0.52 ("ghc-contravariant" . "1.4.1")
   0.52 ("arm-none-eabi-toolchain" . "4.9.4-1.227977")
   0.52 ("redshift" . "1.12")
   0.52 ("emacs-ansible-doc" . "0.4-1.86083a7")
   0.52 ("python2-subunit-bootstrap" . "1.3.0")
   0.52 ("python2-pytest-flakes" . "1.0.1")
   0.52 ("fswatch" . "1.14.0")
   0.52 ("openfwwf-firmware" . "5.2")
   0.52 ("psm2" . "11.2.86")
   0.52 ("l-smash" . "2.14.5")
   0.52 ("ecl-cl-online-learning" . "0.5-0.fc7a34f")
   0.52 ("emacs-org-redmine" . "0.1-1.e77d013")
   0.52 ("mumi" . "0.0.0-5.8a57c87")
   0.52 ("libjaylink" . "0.1.0-2.699b700")
   0.52 ("ghc-glob" . "0.9.2")
   0.52 ("curl" . "7.65.3")
   0.52 ("ghc-x11-xft" . "0.3.1")
   0.52 ("cl-cambl" . "4.0.0-1.7016d1a")
   0.52 ("emacs-unidecode" . "0.2-1.5502ada")
   0.52 ("hiawatha" . "10.9")
   0.52 ("pdsh" . "2.33")
   0.52 ("python-pytest-flakes" . "1.0.1")
   0.52 ("python-hidapi" . "0.7.99.post21")
   0.52 ("ocaml-findlib" . "1.8.0")
   0.52 ("opensmtpd-extras" . "5.7.1")
   0.52 ("ghc-megaparsec" . "6.5.0")
   0.52 ("python-logwrap" . "3.2.1")
   0.52 ("python-tox" . "2.8.1")
   0.52 ("emacs-phi-search" . "20160630-1.9a089b8")
   0.52 ("clusterssh" . "4.13.2")
   0.52 ("gemma" . "0.98")
   0.52 ("python-urllib3" . "1.24.3")
   0.52 ("ghc-unagi-chan" . "0.4.1.2")
   0.52 ("neofetch" . "6.1.0")
   0.52 ("blis-sandybridge" . "0.2.2")
   0.52 ("guile-debbugs" . "0.0.3-2.fb0ae06")
   0.52 ("cl-lift" . "1.7.1-1.7d49a66")
   0.52 ("python2-html5lib" . "0.999")
   0.52 ("ecryptfs-utils" . "111")
   0.52 ("par2cmdline" . "0.8.0")
   0.51 ("python-blosc" . "1.5.1")
   0.51 ("emacs-markdown-mode" . "2.3")
   0.51 ("xmagnify" . "0.1.0")
   0.51 ("python-pickleshare" . "0.7.5")
   0.51 ("light" . "1.2.1")
   0.51 ("crossguid" . "0.0-2.fef89a4")
   0.51 ("raul" . "0.8.0")
   0.51 ("python2-pycurl" . "7.43.0.2")
   0.51 ("perl-datetime-locale" . "1.23")
   0.51 ("libnsl" . "1.2.0")
   0.51 ("python-twine" . "1.9.1")
   0.51 ("ghc-concurrent-output" . "1.10.9")
   0.51 ("eigensoft" . "7.2.1")
   0.51 ("pnglite" . "0.1.17-1.11695c5")
   0.51 ("python-utils" . "2.1.0")
   0.51 ("python-zope-security" . "4.0.3")
   0.51 ("clyrics" . "0.11")
   0.51 ("ghc-tasty-rerun" . "1.1.12")
   0.51 ("python2-pynacl" . "1.3.0")
   0.51 ("python-pytzdata" . "2017.3.1")
   0.51 ("python-jedi" . "0.15.1")
   0.51 ("wpa-supplicant" . "2.9")
   0.51 ("cl-burgled-batteries3" . "0.0.0-1.9c0f666")
   0.51 ("go-github.com-mattn-go-runewidth" . "0.0.4-1.703b5e6")
   0.51 ("proteinortho" . "5.16b")
   0.51 ("grammalecte" . "1.5.0")
   0.51 ("python2-backports-shutil-get-terminal-size" . "1.0.0")
   0.51 ("perl-plack-middleware-deflater" . "0.12")
   0.51 ("python-requests-toolbelt" . "0.8.0")
   0.51 ("ghc-options" . "1.2.1.1")
   0.51 ("ghc-missingh" . "1.4.0.1")
   0.51 ("openldap" . "2.4.47")
   0.51 ("python-pytest-subtesthack" . "0.1.1")
   0.51 ("python2-schedule" . "0.4.3")
   0.51 ("python2-pytest-pep8" . "1.0.6")
   0.51 ("python2-libarchive-c" . "2.8")
   0.51 ("python-clikit" . "0.2.4")
   0.51 ("libpinyin" . "2.3.0")
   0.51 ("i3blocks" . "1.5")
   0.51 ("hnsd" . "0.0-0.895d89c")
   0.51 ("cl-octet-streams" . "1.0")
   0.51 ("ghc-markdown-unlit" . "0.5.0")
   0.51 ("cups-filters" . "1.25.1")
   0.51 ("ruby-sass-spec" . "3.5.4")
   0.51 ("ghc-appar" . "0.1.4")
   0.51 ("libe-book" . "0.1.3")
   0.51 ("cl-random-forest" . "0.1-0.85fbdd4")
   0.51 ("python2-minimock" . "1.2.8")
   0.51 ("python2-html2text" . "2019.8.11")
   0.51 ("ceres-solver" . "1.14.0")
   0.51 ("ghc-exceptions" . "0.10.0")
   0.51 ("plink-ng" . "1.90b4")
   0.51 ("httpstat" . "1.2.1")
   0.51 ("glog" . "0.4.0")
   0.51 ("libutf" . "0.0.0-1.ff4c606")
   0.51 ("ruby-cucumber-core" . "3.2.1")
   0.51 ("licensecheck" . "3.0.37")
   0.51 ("ecl-mgl-pax" . "0.0.0-1.8184484")
   0.51 ("ghc-test-framework-hunit" . "0.3.0.2")
   0.51 ("python-fido2" . "0.5.0")
   0.51 ("libfixposix" . "0.4.3")
   0.51 ("python-async-generator" . "1.10")
   0.51 ("catch" . "1.3.5")
   0.51 ("emacs-powerline" . "2.4")
   0.51 ("gn" . "0.0-1666.6e5ba2e")
   0.51 ("python2-pyicu" . "2.3.1")
   0.51 ("ghc-cereal" . "0.5.7.0")
   0.51 ("ghc-fsnotify" . "0.3.0.1")
   0.51 ("ecl-trivial-gray-streams" . "0.0.0-1.0483ade")
   0.51 ("ghc-bytes" . "0.15.5")
   0.51 ("perl-catalyst-runtime" . "5.90124")
   0.51 ("ecl-cl-ledger" . "4.0.0-1.08e0be4")
   0.51 ("ruby-with-advisory-lock" . "4.0.0")
   0.51 ("python2-h5py" . "2.8.0")
   0.51 ("gnome-shell-extension-dash-to-dock" . "65")
   0.51 ("python2-prompt-toolkit" . "2.0.7")
   0.51 ("python2-kitchen" . "1.2.5")
   0.51 ("ghc-test-framework-quickcheck2" . "0.3.0.4")
   0.51 ("osmctools" . "0.9")
   0.51 ("cl-iolib" . "0.8.3")
   0.51 ("python-paramiko" . "2.4.2")
   0.51 ("libgnome-keyring" . "3.12.0")
   0.51 ("ghc-http-types" . "0.12.3")
   0.51 ("poppler" . "0.79.0")
   0.51 ("python-rauth" . "0.7.3")
   0.51 ("gnurl" . "7.63.0")
   0.51 ("ocaml-spawn" . "0.13.0")
   0.51 ("libproxy" . "0.4.15")
   0.51 ("python-marshmallow" . "3.0.0b14")
   0.51 ("ataqv" . "1.0.0")
   0.51 ("python-requests" . "2.7.0")
   0.51 ("ghc-text-binary" . "0.2.1.1")
   0.51 ("python2-jupyter-client" . "5.2.4")
   0.51 ("libgudev" . "232")
   0.51 ("python2-bleach" . "3.1.0")
   0.51 ("python2-hypothesis" . "4.18.3")
   0.51 ("ghc-xss-sanitize" . "0.3.6")
   0.51 ("glusterfs" . "3.10.12")
   0.51 ("python2-rst.linker" . "1.11")
   0.51 ("emacs-helm-descbinds" . "1.13-1.033be73")
   0.51 ("python-pyxdg" . "0.25")
   0.50 ("python2-scripttest" . "1.3")
   0.50 ("emacs-el-patch" . "2.2.3")
   0.50 ("python2-utils" . "2.1.0")
   0.50 ("ghc-data-default" . "0.7.1.1")
   0.50 ("rust" . "1.26.2")
   0.50 ("python2-numexpr" . "2.6.5")
   0.50 ("python-jsonrpc-server" . "0.1.2")
   0.50 ("python2-virtualenv" . "16.1.0")
   0.50 ("emacs-sly-macrostep" . "0.1-1.be2d245")
   0.50 ("python2-pastescript" . "2.0.2")
   0.50 ("xxhash" . "0.6.5")
   0.50 ("guile2.0-minikanren" . "20150424.e844d85")
   0.50 ("python-testtools-bootstrap" . "2.3.0")
   0.50 ("python2-ufolib" . "2.1.1")
   0.50 ("python-urllib3" . "1.25.3")
   0.50 ("python-requests" . "2.20.1")
   0.50 ("ghc-monads-tf" . "0.1.0.3")
   0.50 ("kiss-fft-for-extempore" . "1.3.0")
   0.50 ("ghc-union-find" . "0.2")
   0.50 ("spdlog" . "1.3.1")
   0.50 ("guile-dbi" . "2.1.6")
   0.50 ("ghc-test-framework" . "0.8.2.0")
   0.50 ("transfig" . "3.2.5e")
   0.50 ("perl-moosex-emulate-class-accessor-fast" . "0.009032")
   0.50 ("ghc-cmark-gfm" . "0.1.5")
   0.50 ("emacs-inf-ruby" . "2.5.2")
   0.50 ("ruby-crack" . "0.4.3")
   0.50 ("python-cached-property" . "1.5.1")
   0.50 ("python2-semver" . "2.7.9")
   0.50 ("python-pynvim" . "0.3.2")
   0.50 ("cl-simple-scanf" . "0-1.5048480")
   0.50 ("offlineimap" . "7.2.4")
   0.50 ("cl-jonathan" . "0.1.0-1.1f448b4")
   0.50 ("emacs-diminish" . "0.45")
   0.50 ("gflags" . "2.2.2")
   0.50 ("perl-dbix-class-cursor-cached" . "1.001004")
   0.50 ("python-base58" . "1.0.3")
   0.50 ("cl-cxml" . "0.0.0-1.00b22bf")
   0.50 ("font-go" . "20170330-1.f03a046")
   0.50 ("spice-vdagent" . "0.17.0")
   0.50 ("python-radon" . "2.2.0")
   0.50 ("guile2.0-gdbm-ffi" . "20120209.fa1d5b6")
   0.50 ("cl-drakma" . "2.0.4-1.7647c0a")
   0.50 ("ghc-data-ordlist" . "0.4.7.0")
   0.50 ("ghc-wl-pprint-text" . "1.2.0.0")
   0.50 ("cl-fare-quasiquote" . "20171130")
   0.50 ("cl-introspect-environment" . "0.1-1.fff42f8")
   0.50 ("badass" . "0.0-0.3c3cd66")
   0.50 ("perl-datetime" . "1.50")
   0.50 ("ghc-murmur-hash" . "0.1.0.9")
   0.50 ("python-mock" . "2.0.0")
   0.50 ("ghc-hasktags" . "0.71.2")
   0.50 ("ghc-haskell-src-exts" . "1.20.2")
   0.50 ("devil" . "1.8.0")
   0.50 ("ghc-magic" . "1.1")
   0.50 ("perl-moosex-types-datetime" . "0.13")
   0.50 ("gnutls-dane" . "3.6.9")
   0.50 ("cloc" . "1.82")
   0.50 ("python-pyroutelib3" . "1.3.post1")
   0.50 ("python-josepy" . "1.1.0")
   0.50 ("psm" . "3.3.20170428")
   0.50 ("python2-apipkg" . "1.4")
   0.50 ("python-pyliblo" . "0.10.0")
   0.50 ("go-github-com-multiformats-go-multiaddr" . "1.3.0-0.fe1c46f")
   0.50 ("porechop" . "0.2.3-1.289d5dc")
   0.50 ("python2-inflection" . "0.3.1")
   0.50 ("wiredtiger" . "2.9.1")
   0.50 ("python-schematics" . "1.1.1")
   0.50 ("rw" . "0.7")
   0.50 ("ghc-http-common" . "0.8.2.0")
   0.50 ("emacs-dash" . "2.16.0")
   0.50 ("ghc-edisoncore" . "1.3.2.1")
   0.50 ("go-github-com-jonboulle-clockwork" . "0.0.0-0.e3653ac")
   0.50 ("ruby-cane" . "3.0.0")
   0.50 ("libgme" . "0.6.2")
   0.50 ("emacs-flycheck-dedukti" . "0-0.3dbff56")
   0.50 ("ghc-wl-pprint" . "1.2.1")
   0.50 ("cairomm" . "1.12.2")
   0.50 ("libchop" . "0.5.2")
   0.50 ("geomyidae" . "0.34")
   0.50 ("ghc-statevar" . "1.1.1.1")
   0.50 ("cl-ledger" . "4.0.0-1.08e0be4")
   0.50 ("python2-misaka" . "2.1.1")
   0.50 ("ghc-hinotify" . "0.3.10")
   0.50 ("ghc-monad-par" . "0.3.4.8")
   0.50 ("python2-validictory" . "1.0.1")
   0.50 ("python2-astroid" . "1.6.5")
   0.50 ("ghc-attoparsec-iso8601" . "1.0.0.0")
   0.50 ("gmime" . "3.2.4")
   0.50 ("python2-amqp" . "2.3.2")
   0.50 ("cl-myway" . "0.1.0-1.2862300")
   0.50 ("gajim-omemo" . "2.6.29")
   0.50 ("botan" . "2.12.1")
   0.50 ("wv" . "1.2.4")
   0.50 ("zziplib" . "0.13.69")
   0.49 ("ghc-uri-encode" . "1.5.0.5")
   0.49 ("mediainfo" . "18.12")
   0.49 ("guile-wiredtiger" . "0.7.0")
   0.49 ("ecl-lzlib" . "1.0-1.0de1db7")
   0.49 ("ghc-snap-core" . "1.0.3.2")
   0.49 ("python2-mando" . "0.6.4")
   0.49 ("pjproject-jami" . "2.7.2")
   0.49 ("polkit" . "0.116")
   0.49 ("python-jsbeautifier" . "1.10.2")
   0.49 ("re2" . "2019-11-01")
   0.49 ("restbed" . "4.6-1.6eb385f")
   0.49 ("python-setools" . "4.1.1")
   0.49 ("s-tui" . "0.8.3")
   0.49 ("python-pycurl" . "7.43.0.2")
   0.49 ("multipath-tools" . "0.8.2")
   0.49 ("ghc-regex" . "1.0.1.3")
   0.49 ("python2-grako" . "3.99.9")
   0.49 ("autossh" . "1.4g")
   0.49 ("wget" . "1.20.3")
   0.49 ("python2-rfc3986" . "1.1.0")
   0.49 ("ghc-happy" . "1.19.9")
   0.49 ("python2-requests-file" . "1.4.3")
   0.49 ("python-zope-testrunner" . "4.4.9")
   0.49 ("python2-webtest" . "2.0.33")
   0.49 ("cgit" . "1.2.1")
   0.49 ("ghc-pretty-show" . "1.7")
   0.49 ("cl-stumpwm" . "18.11")
   0.49 ("vxl" . "2.0.2")
   0.49 ("ghc-timeit" . "2.0")
   0.49 ("ghc-vault" . "0.3.1.2")
   0.49 ("moreutils" . "0.63")
   0.49 ("python-py2bit" . "0.3.0")
   0.49 ("mg" . "20180408")
   0.49 ("python2-traitlets" . "4.3.3")
   0.49 ("emacs-pinentry" . "0.1-1.dcc9ba0")
   0.49 ("unionfs-fuse-static" . "2.0")
   0.49 ("ghc-quickcheck" . "2.11.3")
   0.49 ("python2-rednose" . "1.2.3")
   0.49 ("python-validictory" . "1.0.1")
   0.49 ("ghc-distributive" . "0.5.3")
   0.49 ("xjackfreak" . "1.0")
   0.49 ("python2-xdo" . "0.3")
   0.49 ("python2-pastel" . "0.1.1")
   0.49 ("ghc-xml-types" . "0.3.6")
   0.49 ("subversion" . "1.10.6")
   0.49 ("python-subunit-bootstrap" . "1.3.0")
   0.49 ("perl6-test-meta" . "0.0.14")
   0.49 ("python-semver" . "2.7.9")
   0.49 ("bits" . "2.13.0-1.3cc456789")
   0.49 ("infiniband-diags" . "2.0.0")
   0.49 ("ghc-streaming-commons" . "0.2.1.1")
   0.49 ("python-rfc3986" . "1.1.0")
   0.49 ("python-et-xmlfile" . "1.0.1")
   0.49 ("perl-datetime-timezone" . "2.23")
   0.49 ("ghc-intervalmap" . "0.6.0.0")
   0.49 ("arm-trusted-firmware-rk3399" . "2.1")
   0.49 ("ghc-chasingbottoms" . "1.3.1.4")
   0.49 ("linbox" . "1.6.3")
   0.49 ("gnupg" . "2.2.17")
   0.49 ("ecl-cambl" . "4.0.0-1.7016d1a")
   0.49 ("python-jinja2-time" . "0.2.0")
   0.49 ("ghc-pcre-light" . "0.4.0.4")
   0.49 ("ghc-network-uri" . "2.6.1.0")
   0.49 ("python2-fonttools" . "3.38.0")
   0.49 ("python-natsort" . "5.4.1")
   0.49 ("ghc-js-jquery" . "3.3.1")
   0.49 ("python2-werkzeug" . "0.14.1")
   0.49 ("perl-set-object" . "1.39")
   0.49 ("ghc-word8" . "0.1.3")
   0.49 ("python-verboselogs" . "1.7")
   0.49 ("ghc-xdg-basedir" . "0.2.2")
   0.49 ("emacs-org-re-reveal" . "2.5.1")
   0.49 ("python2-lit" . "0.5.1")
   0.49 ("ghc-haskell-src" . "1.0.3.0")
   0.49 ("python-factory-boy" . "2.8.1")
   0.49 ("python-keyring" . "8.7")
   0.49 ("python2-pyxdg" . "0.25")
   0.49 ("ghc-ifelse" . "0.85")
   0.49 ("ocaml-ppx-bin-prot" . "0.11.1")
   0.49 ("python-prompt-toolkit" . "1.0.15")
   0.49 ("perl-mousex-nativetraits" . "1.09")
   0.49 ("python-click-log" . "0.3.2")
   0.49 ("ruby-multi-json" . "1.13.1")
   0.49 ("desktop-file-utils" . "0.23")
   0.49 ("rust" . "1.31.1")
   0.49 ("perl-test-runvalgrind" . "0.2.1")
   0.49 ("perl-moosex-methodattributes" . "0.31")
   0.49 ("texlive-mflogo-font" . "49435")
   0.49 ("python2-flake8-polyfill" . "1.0.2")
   0.49 ("python2-lmdb" . "0.95")
   0.49 ("cl-simple-parallel-tasks" . "1.0-0.db460f7")
   0.49 ("python-pymsgbox" . "1.0.6")
   0.49 ("bioperl-minimal" . "1.7.0")
   0.49 ("python-nose-timer" . "0.7.5")
   0.49 ("perl-data-stream-bulk" . "0.11")
   0.49 ("ghc-byteable" . "0.1.1")
   0.49 ("slepc-complex" . "3.11.1")
   0.49 ("libtorrent-rasterbar" . "1.1.13")
   0.49 ("libmypaint" . "1.3.0")
   0.49 ("python2-flake8" . "3.7.7")
   0.49 ("python2-tqdm" . "4.19.6")
   0.49 ("ecl-clx" . "0.7.5")
   0.49 ("mcrl2-minimal" . "201908.0")
   0.49 ("lxc" . "3.1.0")
   0.48 ("haveged" . "1.9.6")
   0.48 ("emacs-matcha" . "0.0.1-1.c7df5cf")
   0.48 ("ghc-stm-chans" . "3.0.0.4")
   0.48 ("python-pyfaidx" . "0.5.4.2")
   0.48 ("emacs-irony-eldoc" . "1.2.0")
   0.48 ("python2-et-xmlfile" . "1.0.1")
   0.48 ("sigrok-firmware-fx2lafw" . "0.1.6")
   0.48 ("python2-sockjs-tornado" . "1.0.6")
   0.48 ("cl-parse-float" . "0.0.0-1.2aae569")
   0.48 ("texlive-hyphen-portuguese" . "49435")
   0.48 ("python-pytest-isort" . "0.3.1")
   0.48 ("python2-mock" . "2.0.0")
   0.48 ("python-sortedcontainers" . "2.0.4")
   0.48 ("go-github-com-jpillora-backoff" . "0.0.0-0.06c7a16")
   0.48 ("ghc-language-glsl" . "0.3.0")
   0.48 ("rtags" . "2.18")
   0.48 ("opendht" . "1.8.1")
   0.48 ("python-whoosh" . "2.7.4")
   0.48 ("node" . "10.16.0")
   0.48 ("python-html5lib" . "1.0.1")
   0.48 ("texlive-charter" . "49435")
   0.48 ("openocd" . "0.10.0")
   0.48 ("mbedtls-apache" . "2.16.3")
   0.48 ("python-flask-httpauth" . "3.2.3")
   0.48 ("ghc-haskell-src-meta" . "0.8.0.3")
   0.48 ("perl6-json-class" . "0.0.12")
   0.48 ("dotconf" . "1.3")
   0.48 ("bmon" . "4.0")
   0.48 ("ruby-json-pure" . "2.1.0")
   0.48 ("guile-stis-parser" . "0-1.6e85d37")
   0.48 ("gnome-vfs" . "2.24.4")
   0.48 ("python2-xcffib" . "0.6.0")
   0.48 ("ghc-base-unicode-symbols" . "0.2.3")
   0.48 ("python-parso" . "0.5.1")
   0.48 ("python-pyquery" . "1.2.17")
   0.48 ("aircrack-ng" . "1.5.2")
   0.48 ("python-prompt-toolkit" . "2.0.7")
   0.48 ("bpp-popgen" . "2.2.0-1.e472bac")
   0.48 ("python-execnet" . "1.4.1")
   0.48 ("go-gopkg-in-yaml-v2" . "2.2.2")
   0.48 ("texlive-ae" . "49435")
   0.48 ("cl-lack-middleware-static" . "0.1.0-1.abff8ef")
   0.48 ("bowtie" . "2.3.4.3")
   0.48 ("sxhkd" . "0.6.1")
   0.48 ("eyed3" . "0.8.11")
   0.48 ("emacs-undo-tree" . "0.6.6")
   0.48 ("python-pyclipper" . "1.1.0.post1")
   0.48 ("python-werkzeug" . "0.14.1")
   0.48 ("go-github-com-tj-docopt" . "1.0.0")
   0.48 ("ecl-periods" . "0.0.2-1.983d4a5")
   0.48 ("perl-type-tiny" . "1.006000")
   0.48 ("python-cleo" . "0.6.8")
   0.48 ("ots" . "0.5.0")
   0.48 ("rkflashtool" . "5.2-1.8966c4e")
   0.48 ("ghc-iproute" . "1.7.5")
   0.48 ("python2-iso8601" . "0.1.12")
   0.48 ("python2-hidapi" . "0.7.99.post21")
   0.48 ("python-pynacl" . "1.3.0")
   0.48 ("ghc-quickcheck-instances" . "0.3.18")
   0.48 ("go-github-com-calmh-du" . "1.0.1")
   0.48 ("python2-binaryornot" . "0.4.4")
   0.48 ("fuseiso" . "20070708")
   0.48 ("menu-cache" . "1.1.0")
   0.48 ("ecl-swap-bytes" . "1.1")
   0.48 ("net-snmp" . "5.8")
   0.48 ("rust" . "1.28.0")
   0.48 ("cl-lack" . "0.1.0-1.abff8ef")
   0.48 ("ghc-x11" . "1.9")
   0.48 ("emacs-evil-cleverparens" . "2017-07-17-1.8c45879")
   0.48 ("ocaml-bin-prot" . "0.11.0")
   0.48 ("ocaml-sqlite3" . "4.4.1")
   0.48 ("cl-mgl-pax" . "0.0.0-1.8184484")
   0.48 ("python2-radon" . "2.2.0")
   0.48 ("ghc" . "8.4.3")
   0.48 ("hdf-eos2" . "19.1.0")
   0.48 ("ruby-sanitize" . "4.6.3")
   0.48 ("python-testpath" . "0.2")
   0.48 ("python-fenics-ufl" . "2018.1.0")
   0.48 ("ghc-abstract-deque" . "0.3")
   0.48 ("python2-rq" . "0.13.0")
   0.48 ("ghc-httpd-shed" . "0.4.0.3")
   0.48 ("python-jupyter-core" . "4.4.0")
   0.48 ("emacs-elisp-slime-nav" . "0.9")
   0.48 ("intelmetool" . "4.7")
   0.48 ("emacs-evil-traces" . "0.0.1-2.1931e3e")
   0.48 ("python2-pyrsistent" . "0.14.11")
   0.48 ("tig" . "2.4.1")
   0.48 ("python-pytest-runner" . "4.4")
   0.48 ("ghc-safesemaphore" . "0.10.1")
   0.48 ("python-pytest-capturelog" . "0.7")
   0.48 ("python2-keyring" . "8.7")
   0.48 ("python-nosexcover" . "1.0.11")
   0.48 ("python2-promise" . "0.4.2")
   0.48 ("python-virtualenv" . "16.1.0")
   0.48 ("go-github-com-wtolson-go-taglib" . "0.0.0-0.6e68349")
   0.48 ("guile-sqlite3" . "0.1.0")
   0.48 ("python-pastescript" . "2.0.2")
   0.48 ("cl-chanl" . "0.4.1-0.2362b57")
   0.48 ("ruby-mocha" . "1.1.0")
   0.48 ("python2-jupyter-core" . "4.4.0")
   0.48 ("nmap" . "7.80")
   0.48 ("fstrcmp" . "0.7.D001")
   0.48 ("ghc-hslua-module-text" . "0.1.2.1")
   0.48 ("font-adobe-source-han-sans" . "1.004")
   0.48 ("tlsdate" . "0.0.13")
   0.48 ("cl-sqlite" . "0.2-1.c738e66")
   0.48 ("ghc-hxt-unicode" . "9.0.2.4")
   0.48 ("texlive-hyphen-piedmontese" . "49435")
   0.48 ("cl-periods-series" . "0.0.2-1.983d4a5")
   0.48 ("python-pyscard" . "1.9.9")
   0.48 ("python-keyutils" . "0.6")
   0.48 ("go-github-com-prometheus-node-exporter" . "0.0.0-0.55c32fc")
   0.48 ("go-github-com-docker-distribution" . "0.0.0-0.325b080")
   0.48 ("python-joblib" . "0.13.0")
   0.48 ("perl6-meta6" . "0.0.23")
   0.48 ("python2-chardet" . "3.0.4")
   0.48 ("ghc-system-filepath" . "0.4.14")
   0.48 ("go-netlink" . "1.0.0")
   0.48 ("emboss" . "6.5.7")
   0.48 ("python-pytest-sugar" . "0.9.2")
   0.48 ("python2-defcon" . "0.3.5")
   0.48 ("mojoshader-with-viewport-flip" . "20190725-2e37299b13d8")
   0.48 ("ghc-microlens-ghc" . "0.4.9.1")
   0.48 ("python2-relatorio" . "0.8.0")
   0.48 ("ghc-raw-strings-qq" . "1.1")
   0.48 ("python-icalendar" . "4.0.3")
   0.48 ("python2-pytest-runner" . "4.4")
   0.48 ("python2-billiard" . "3.5.0.5")
   0.48 ("python-jinja2" . "2.10.1")
   0.48 ("bspwm" . "0.9.9")
   0.48 ("python-setuptools-scm-git-archive" . "1.0")
   0.48 ("maxflow" . "3.0.5")
   0.48 ("cl-lzlib" . "1.0-1.0de1db7")
   0.48 ("python-misaka" . "2.1.1")
   0.48 ("ghc-nanospec" . "0.2.2")
   0.48 ("texlive-fontname" . "49435")
   0.48 ("ghc-hslogger" . "1.2.10")
   0.48 ("ghc-tf-random" . "0.5")
   0.48 ("python-rednose" . "1.2.3")
   0.48 ("cl-cookie" . "0.9.10-1.cea55ae")
   0.47 ("ghc-hex" . "0.1.2")
   0.47 ("guile-newt" . "0.0.1")
   0.47 ("openimageio" . "1.7.19")
   0.47 ("ghc-bytestring-lexing" . "0.5.0.2")
   0.47 ("ecl-queues.simple-cqueue" . "0.0.0-1.47d4da6")
   0.47 ("cl-yale-haskell" . "2.0.5-1.85f94c72a")
   0.47 ("python-lit" . "0.5.1")
   0.47 ("python-zope-location" . "4.0.3")
   0.47 ("python2-gridmap" . "0.13.0")
   0.47 ("python-coveralls" . "1.6.0")
   0.47 ("ghc-rfc5051" . "0.1.0.3")
   0.47 ("ghc-atomic-primops" . "0.8.2")
   0.47 ("ocaml-ocplib-endian" . "1.0")
   0.47 ("texlive-latex-enumitem" . "49435")
   0.47 ("go-github.com-nsf-gothic" . "0.0.0-0.97dfcc1")
   0.47 ("ghc-disk-free-space" . "0.1.0.1")
   0.47 ("ghc-foundation" . "0.0.21")
   0.47 ("mtd-utils" . "2.1.1")
   0.47 ("emacs-dream-theme" . "0.0.0-1.107a11d")
   0.47 ("emacs-helm-eww" . "1.2")
   0.47 ("go-gopkg.in-check.v1" . "0.0.0-1.788fd78")
   0.47 ("texlive-hyphen-belarusian" . "49435")
   0.47 ("emacs-epl" . "0.8")
   0.47 ("myrepos" . "1.20180726")
   0.47 ("wgetpaste" . "2.29")
   0.47 ("cl-fast-http" . "0.2.0-1.f9e7597")
   0.47 ("python2-pyjwt" . "1.7.1")
   0.47 ("python2-s3cmd" . "1.6.1")
   0.47 ("json-glib" . "1.4.4")
   0.47 ("texlive-latex-ocgx2" . "49435")
   0.47 ("python-docopt" . "0.6.2")
   0.47 ("meson" . "0.50.1")
   0.47 ("slepc" . "3.11.1")
   0.47 ("python-xcffib" . "0.6.0")
   0.47 ("python-cffi" . "1.11.5")
   0.47 ("python2-babel" . "2.7.0")
   0.47 ("stagit" . "0.7.2")
   0.47 ("ghc-objectname" . "1.1.0.1")
   0.47 ("hurd-minimal" . "0.9")
   0.47 ("emacs-helm-projectile" . "0.14.0-1.5328b74")
   0.47 ("texlive-graphics-cfg" . "49435")
   0.47 ("singularity" . "2.6.1")
   0.47 ("propeller-load" . "3.4.0")
   0.47 ("emacs-compdef" . "0.2-2.67104a3")
   0.47 ("ghc-uuid" . "1.3.13")
   0.47 ("bam" . "0.5.1")
   0.47 ("texlive-tex-texinfo" . "49435")
   0.47 ("ocaml-ppx-optcomp" . "0.11.0")
   0.47 ("openssh" . "8.0p1")
   0.47 ("emacs-nodejs-repl" . "0.2.2")
   0.47 ("ghc-fixed" . "0.2.1.1")
   0.47 ("texlive-hyphen-esperanto" . "49435")
   0.47 ("ghc-dlist" . "0.8.0.4")
   0.47 ("openvr" . "1.8.19")
   0.47 ("go-gopkg.in-tomb.v2" . "0.0.0-0.d5d1b58")
   0.47 ("perl6-json-fast" . "0.10")
   0.47 ("emacs-prescient" . "3.3-1.9505658")
   0.47 ("libmediainfo" . "0.7.95")
   0.47 ("python-hypothesis" . "4.18.3")
   0.47 ("cl-type-i" . "0.1-1.dea233f")
   0.47 ("autorandr" . "1.7-1.b484c0e")
   0.47 ("ghc-random" . "1.1")
   0.47 ("ghc-unsafe" . "0.0")
   0.47 ("python-cookies" . "2.2.1")
   0.47 ("emacs-pyim-basedict" . "0.3.1")
   0.47 ("texlive-latex-fancyhdr" . "49435")
   0.47 ("ghc-aeson-compat" . "0.3.8")
   0.47 ("perl6-grammar-profiler-simple" . "0.02-1.c0aca5f")
   0.47 ("perl-moosex-role-withoverloading" . "0.17")
   0.47 ("wavemon" . "0.9.0")
   0.47 ("python2-tegaki-wagomu" . "0.3.1")
   0.47 ("ghc-stmonadtrans" . "0.4.3")
   0.47 ("python-vagrant" . "0.5.15")
   0.47 ("wpa-supplicant-minimal" . "2.9")
   0.47 ("emacs-autothemer" . "0.2.2")
   0.47 ("libfabric" . "1.4.1")
   0.47 ("ghc-split" . "0.2.3.3")
   0.47 ("texlive-times" . "49435")
   0.47 ("go-github.com-jessevdk-go-flags" . "1.3.0")
   0.47 ("perl-file-changenotify" . "0.24")
   0.47 ("python2-stem" . "1.7.1")
   0.47 ("python2-jdcal" . "1.4")
   0.47 ("ghc-th-lift-instances" . "0.1.11")
   0.47 ("python2-pyte" . "0.7.0")
   0.47 ("ghc-reflection" . "2.1.4")
   0.47 ("python-intervaltree" . "2.1.0")
   0.47 ("doxygen" . "1.8.15")
   0.47 ("python2-joblib" . "0.13.0")
   0.47 ("perl-lwp-online" . "1.08")
   0.47 ("python2-marshmallow" . "3.0.0b14")
   0.47 ("python-sure" . "1.4.11")
   0.47 ("ghc-vector-algorithms" . "0.7.0.4")
   0.47 ("emacs-default-text-scale" . "0.1-1.968e985")
   0.47 ("vim-neosnippet-snippets" . "0.0.0-1.8e2b1c0")
   0.47 ("python-rq" . "0.13.0")
   0.47 ("git-lfs" . "2.7.2")
   0.47 ("linux-libre" . "4.19.84")
   0.47 ("cl-queues.priority-cqueue" . "0.0.0-1.47d4da6")
   0.47 ("cl-circular-streams" . "0.1.0-1.e770bad")
   0.47 ("cl-online-learning" . "0.5-0.fc7a34f")
   0.47 ("python-nose" . "1.3.7")
   0.47 ("python-sqlalchemy" . "1.3.3")
   0.47 ("clang-toolchain" . "6.0.1")
   0.47 ("emacs-ivy-taskrunner" . "0.9-1.75d8d67")
   0.47 ("python-pendulum" . "1.2.4")
   0.47 ("ecl-slynk" . "1.0.0-beta-2.cbf84c3")
   0.47 ("pfff" . "1.0")
   0.47 ("powertop" . "2.11")
   0.47 ("python-amqp" . "2.3.2")
   0.47 ("unionfs-fuse" . "2.0")
   0.47 ("dmraid" . "1.0.0.rc16-3")
   0.47 ("python-oauthlib" . "3.0.1")
   0.47 ("eigen-for-tensorflow" . "3.3.5-1.fd6845384b86")
   0.47 ("ghc-constraints" . "0.10.1")
   0.47 ("python2-numpy" . "1.16.5")
   0.47 ("python-fastalite" . "0.3")
   0.47 ("xcalib" . "0.10")
   0.47 ("python2-ansi2html" . "1.2.0")
   0.47 ("arm-trusted-firmware-puma-rk3399" . "1.3-1.d71e6d8")
   0.47 ("ruby-unf" . "0.1.4")
   0.47 ("enca" . "1.19")
   0.47 ("emacs-bongo" . "1.0")
   0.47 ("guile-dbd-postgresql" . "2.1.6-0.e97589b")
   0.47 ("ecl-log4cl" . "1.1.2")
   0.47 ("python-fonttools" . "3.38.0")
   0.47 ("cat-avatar-generator" . "1")
   0.47 ("texlive-iftex" . "49435")
   0.47 ("ghc-echo" . "0.1.3")
   0.47 ("tidy-html" . "5.6.0")
   0.47 ("ecl-cl-css" . "0.1-1.8fe654c")
   0.47 ("ecl-trivial-clipboard" . "0.0.0.0-2.5af3415")
   0.47 ("ghc-quickcheck-unicode" . "1.0.1.0")
   0.47 ("cl-fast-io" . "1.0.0-1.dc3a71d")
   0.47 ("cl-smart-buffer" . "0.0.1-1.09b9a9a")
   0.47 ("python-ndg-httpsclient" . "0.5.1")
   0.47 ("cl-cl+ssl" . "0.0.0-1.141ae91")
   0.47 ("ecl-proc-parse" . "0.0.0-1.ac36368")
   0.47 ("gdb-arm-none-eabi" . "8.2.1")
   0.47 ("python-django-tagging" . "0.4.6")
   0.47 ("ghc-data-default-instances-base" . "0.1.0.1")
   0.46 ("go-github-com-tevino-abool" . "0.0.0-0.3c25f2f")
   0.46 ("python2-larch" . "1.20151025")
   0.46 ("python2-prompt-toolkit" . "1.0.15")
   0.46 ("ghc-unix-compat" . "0.5.1")
   0.46 ("inputattach" . "0.42.0")
   0.46 ("python2-lirc" . "1.2.1-2.c28708b")
   0.46 ("ruby-rails-dom-testing" . "2.0.2")
   0.46 ("ecl-cl-unicode" . "0.1.5-1.9fcd06f")
   0.46 ("perl-moox-configfromfile" . "0.008")
   0.46 ("python2-semantic-version" . "2.6.0")
   0.46 ("cl-xsubseq" . "0.0.1-1.5ce430b")
   0.46 ("frrouting" . "6.0.2")
   0.46 ("ruby-ffi" . "1.10.0")
   0.46 ("httpfs2" . "0.1.5")
   0.46 ("ocaml-ppx-typerep-conv" . "0.11.1")
   0.46 ("python2-lzo" . "1.12")
   0.46 ("guile-bash" . "0.1.6-0.1eabc56")
   0.46 ("emacs-hl-todo" . "3.0.0")
   0.46 ("ruby-pygmentize" . "0.0.3")
   0.46 ("python-html5lib" . "0.999")
   0.46 ("colormake" . "0.9.20140503")
   0.46 ("ghc-language-haskell-extract" . "0.2.4")
   0.46 ("python-tqdm" . "4.19.6")
   0.46 ("ghc-typed-process" . "0.2.3.0")
   0.46 ("python-bleach" . "3.1.0")
   0.46 ("psyclpc" . "20160821-2.61cf9aa")
   0.46 ("ecl-esrap" . "0.0.0-1.133be8b")
   0.46 ("python-faker" . "0.7.9")
   0.46 ("ecl-jpl-queues" . "0.1")
   0.46 ("python-ecpy" . "0.10.0")
   0.46 ("x265" . "3.2.1")
   0.46 ("ghc-th-orphans" . "0.13.6")
   0.46 ("perl6-oo-monitors" . "1.1")
   0.46 ("python-clyent" . "1.2.1")
   0.46 ("ruby-terraform" . "0.22.0")
   0.46 ("emacs-move-text" . "2.0.8")
   0.46 ("cl-graph" . "0.0.0-0.78bf9ec")
   0.46 ("libcdr" . "0.1.5")
   0.46 ("emacs-itail" . "0.0.1-1.6e43c20")
   0.46 ("iw" . "4.14")
   0.46 ("ghc-hsopenssl" . "0.11.4.15")
   0.46 ("cl-find-port" . "0.1")
   0.46 ("ghc-bsb-http-chunked" . "0.0.0.2")
   0.46 ("exiv2" . "0.27.2")
   0.46 ("ocaml-ppx-sexp-value" . "0.11.0")
   0.46 ("perf" . "5.3.11")
   0.46 ("emacs-htmlize" . "1.53")
   0.46 ("cryptsetup-static" . "2.2.2")
   0.46 ("mktorrent" . "1.1")
   0.46 ("ruby-actionview" . "5.2.2.1")
   0.46 ("cl-proc-parse" . "0.0.0-1.ac36368")
   0.46 ("masscan" . "1.0.5")
   0.46 ("python2-argcomplete" . "1.7.0")
   0.46 ("python-parameterized" . "0.6.1")
   0.46 ("ruby-spring" . "1.7.2")
   0.46 ("ghc-quickcheck-io" . "0.2.0")
   0.46 ("perl-datetime-format-builder" . "0.82")
   0.46 ("ecl-queues.priority-cqueue" . "0.0.0-1.47d4da6")
   0.46 ("poussetaches" . "0.0.2")
   0.46 ("gx-overdriver-lv2" . "0-1.ed7180198")
   0.46 ("cl-hooks" . "0.2.1-1.5b63808")
   0.46 ("python2-click" . "7.0")
   0.46 ("guile-for-guile-emacs" . "20150510.d8d9a8d")
   0.46 ("python2-numpy" . "1.8.2")
   0.46 ("ding" . "1.8.1")
   0.46 ("ghc-tasty-th" . "0.1.7")
   0.46 ("cl-lack-util" . "0.1.0-1.abff8ef")
   0.46 ("python2-jedi" . "0.15.1")
   0.46 ("rust" . "1.23.0")
   0.46 ("python-testresources-bootstrap" . "2.0.1")
   0.46 ("ruby-czmq-ffi-gen" . "0.13.0")
   0.46 ("python2-trollius-redis" . "0.1.4")
   0.46 ("redland" . "1.0.17")
   0.46 ("emacs-mmm-mode" . "0.5.7")
   0.46 ("emacs-counsel-projectile" . "0.3.0")
   0.46 ("ghc-ansi-wl-pprint" . "0.6.8.2")
   0.46 ("python2-pythondialog" . "3.4.0")
   0.46 ("ocaml-ppx-expect" . "0.12.0")
   0.46 ("python2-nosexcover" . "1.0.11")
   0.46 ("ghc-bindings-dsl" . "1.0.25")
   0.46 ("cl-stefil" . "0.1-0.0398548")
   0.46 ("ecl-prove" . "1.0.0-1.4f9122b")
   0.46 ("python-testscenarios-bootstrap" . "0.5.0")
   0.46 ("emacs-ivy-rich" . "0.1.4-2.7a667b1")
   0.46 ("python-pyte" . "0.7.0")
   0.46 ("ghc-cmark" . "0.5.6")
   0.46 ("ghc-zip-archive" . "0.3.3")
   0.46 ("ghc-http-date" . "0.0.8")
   0.46 ("ghc-chell" . "0.4.0.2")
   0.46 ("ghc-tasty-smallcheck" . "0.8.1")
   0.46 ("python-sql" . "1.0.0")
   0.46 ("speedtest-cli" . "2.1.1")
   0.46 ("python-testrepository-bootstrap" . "0.0.20")
   0.46 ("python2-pytest" . "4.4.2")
   0.46 ("ghc-parser-combinators" . "1.0.0")
   0.46 ("ghc-path-pieces" . "0.2.1")
   0.46 ("dbus" . "1.12.16")
   0.46 ("ghc-hxt-regex-xmlschema" . "9.2.0.3")
   0.46 ("ghc-multipart" . "0.1.3")
   0.46 ("emacs-disable-mouse" . "0.2")
   0.46 ("python-google-api-client" . "1.6.7")
   0.46 ("rdma-core" . "26.0")
   0.46 ("ghc-primitive" . "0.6.4.0")
   0.46 ("perl-moosex-traits-pluggable" . "0.12")
   0.46 ("python-asn1crypto" . "0.24.0")
   0.46 ("python-apipkg" . "1.4")
   0.46 ("perl-moosex-role-parameterized" . "1.10")
   0.46 ("ecl-parse-float" . "0.0.0-1.2aae569")
   0.46 ("ghc-indents" . "0.5.0.0")
   0.46 ("genext2fs" . "1.4.1-4")
   0.46 ("rpm" . "4.14.2.1")
   0.46 ("perl-xml-compile-wsdl11" . "3.07")
   0.46 ("python2-empy" . "3.3.3")
   0.46 ("go-github-com-libp2p-go-libp2p-metrics" . "2.1.6-0.a10ff6e")
   0.46 ("emacs-json-snatcher" . "1.0.0")
   0.46 ("python-fixtures-bootstrap" . "3.0.0")
   0.46 ("python-zope-i18nmessageid" . "4.0.3")
   0.46 ("python-clint" . "0.5.1")
   0.46 ("cl-quickcheck" . "0.0.4-1.807b279")
   0.46 ("python-msgpack" . "0.5.6")
   0.46 ("ecl-jpl-util" . "20151005")
   0.46 ("openbabel" . "2.4.1")
   0.46 ("ghc-microlens-th" . "0.4.2.2")
   0.46 ("ghc-fail" . "4.9.0.0")
   0.46 ("ocaml-ppx-fields-conv" . "0.11.0")
   0.46 ("feh" . "3.2.1")
   0.46 ("cl-slynk" . "1.0.0-beta-2.cbf84c3")
   0.46 ("gdb" . "8.3.1")
   0.46 ("texlive-generic-listofitems" . "49435")
   0.46 ("ghc-hspec" . "2.5.5")
   0.46 ("python-m2r" . "0.2.1")
   0.46 ("emacs-elisp-docstring-mode" . "0.0.1-1.f512e50")
   0.46 ("seqtk" . "1.3")
   0.46 ("bochs" . "2.6.9")
   0.46 ("clang" . "3.8.1")
   0.46 ("ghc-regex-compat" . "0.95.1")
   0.46 ("arc-icon-theme" . "20161122")
   0.46 ("ghc-operational" . "0.2.3.5")
   0.46 ("cl-trivial-macroexpand-all" . "0.0.0-0.933270a")
   0.46 ("python-lmdb" . "0.95")
   0.46 ("clang" . "3.5.2")
   0.46 ("ghc-lifted-base" . "0.2.3.12")
   0.46 ("ecl-cl-hooks" . "0.2.1-1.5b63808")
   0.46 ("ghc-mmorph" . "1.1.2")
   0.46 ("cl-global-vars" . "1.0.0-0.c749f32")
   0.46 ("cl-uglify-js" . "0.1-1.429c5e1d8")
   0.46 ("ghc-blaze-builder" . "0.4.1.0")
   0.46 ("python-configobj" . "5.0.6")
   0.46 ("go-gopkg.in-asn1-ber.v1" . "1.2")
   0.46 ("python-cloudpickle" . "0.6.1")
   0.46 ("ruby-gettext" . "3.1.7")
   0.46 ("emacs-mc-extras" . "1.2.4-1.053abc5")
   0.46 ("python-inflection" . "0.3.1")
   0.46 ("hisat" . "0.1.4")
   0.46 ("python2-fastalite" . "0.3")
   0.46 ("libcxx" . "8.0.0")
   0.46 ("jq" . "1.6")
   0.46 ("python-furl" . "0.5.6")
   0.46 ("python2-mpmath" . "0.19")
   0.46 ("emacs-dimmer" . "0.3.0")
   0.45 ("cl-static-vectors" . "1.8.3-1.0681eac")
   0.45 ("cl-queues.simple-cqueue" . "0.0.0-1.47d4da6")
   0.45 ("cl-parenscript" . "2.6-1.061d8e2")
   0.45 ("ghc-base16-bytestring" . "0.1.1.6")
   0.45 ("ecl-simple-parallel-tasks" . "1.0-0.db460f7")
   0.45 ("python-binaryornot" . "0.4.4")
   0.45 ("emacs-highlight-numbers" . "0.2.3")
   0.45 ("googletest" . "1.8.1")
   0.45 ("glslang" . "7.11.3214")
   0.45 ("microcom" . "2016.01.09")
   0.45 ("ghc-silently" . "1.2.5")
   0.45 ("ptpython" . "0.34")
   0.45 ("python2-rsa" . "3.4.2")
   0.45 ("flashrom" . "1.1")
   0.45 ("epipe" . "0.1.0")
   0.45 ("mojoshader" . "20190825-5887634ea695")
   0.45 ("go-gitlab-com-ambrevar-golua-unicode" . "0.0.0-0.97ce517")
   0.45 ("go-github-com-mattn-go-shellwords" . "1.0.5-1.2444a32")
   0.45 ("python-tomlkit" . "0.5.7")
   0.45 ("bastet" . "0.43.2")
   0.45 ("python-pydot" . "1.2.4")
   0.45 ("python-schema" . "0.6.6")
   0.45 ("xftwidth" . "20170402")
   0.45 ("python-validate-email" . "1.3")
   0.45 ("python2-urlgrabber" . "3.10.2")
   0.45 ("nyx" . "2.1.0")
   0.45 ("python-coloredlogs" . "10.0")
   0.45 ("python-igraph" . "0.7.1.post6")
   0.45 ("ghc-chunked-data" . "0.3.1")
   0.45 ("ecl-colorize" . "0.0.0-1.ea676b5")
   0.45 ("audit" . "2.8.5")
   0.45 ("texlive-latex-fncychap" . "49435")
   0.45 ("texlive-hyphen-occitan" . "49435")
   0.45 ("python-setuptools-git" . "1.2")
   0.45 ("emacs-anaphora" . "1.0.4")
   0.45 ("python2-setuptools-scm-git-archive" . "1.0")
   0.45 ("python2-pyinotify" . "0.9.6")
   0.45 ("ecl-clunit" . "0.2.3-1.6f6d728")
   0.45 ("emacs-poet-theme" . "0-0.d84f7b2")
   0.45 ("ocaml-opam-file-format" . "2.0.0")
   0.45 ("python-stem" . "1.7.1")
   0.45 ("python-tblib" . "1.3.2")
   0.45 ("ruby-execjs" . "2.7.0")
   0.45 ("go-github-com-mattn-go-isatty" . "0.0.7")
   0.45 ("ghc-css-text" . "0.1.3.0")
   0.45 ("confusion-mdl" . "0.2")
   0.45 ("ecl-cl-octet-streams" . "1.0")
   0.45 ("texlive-hyphen-thai" . "49435")
   0.45 ("cl-quri" . "0.1.0-1.76b7510")
   0.45 ("python2-ddt" . "1.1.3")
   0.45 ("python-packaging" . "19.0")
   0.45 ("cl-cffi" . "0.19.0")
   0.45 ("python2-unicodecsv" . "0.14.1")
   0.45 ("cook" . "2.34")
   0.45 ("emacs-gitlab-ci-mode" . "20190425.11.10")
   0.45 ("cl-prove" . "1.0.0-1.4f9122b")
   0.45 ("cl-log4cl" . "1.1.2")
   0.45 ("mozjs" . "38.2.1.rc0")
   0.45 ("xterm" . "350")
   0.45 ("ovmf-arm" . "20170116-1.13a50a6")
   0.45 ("emacs-iedit" . "0.9.9.9-1.e2c100c")
   0.45 ("python-nose2" . "0.6.5")
   0.45 ("emacs-systemd-mode" . "1.6")
   0.45 ("linux-libre" . "4.9.202")
   0.45 ("ghc-mmap" . "0.5.9")
   0.45 ("lapack" . "3.7.1")
   0.45 ("libxcursor" . "1.2.0")
   0.45 ("acpi-call-linux-module" . "3.17")
   0.45 ("ecl-cl-strings" . "0.0.0-1.c5c5cba")
   0.45 ("ghc-network" . "2.6.3.6")
   0.45 ("texlive-generic-pdftex" . "49435")
   0.45 ("go-github-com-alsm-ioprogress" . "0.0.0-0.063c372")
   0.45 ("python-orderedmultidict" . "0.7.11")
   0.45 ("go-github-com-petermattis-goid" . "0.0.0-0.3db12eb")
   0.45 ("gffread" . "0.9.12-1.ba7535f")
   0.45 ("ghc-vector" . "0.12.0.1")
   0.45 ("ghc-simple-reflect" . "0.3.3")
   0.45 ("ghc-terminal-size" . "0.3.2.1")
   0.45 ("ecl-periods-series" . "0.0.2-1.983d4a5")
   0.45 ("ecl-parenscript" . "2.6-1.061d8e2")
   0.45 ("emacs-danneskjold-theme" . "0.0.0-1.8733d2f")
   0.45 ("ghc-strict" . "0.3.2")
   0.45 ("cl-clx" . "0.7.5")
   0.45 ("mumps-metis" . "5.2.1")
   0.45 ("texlive-hyphen-indonesian" . "49435")
   0.45 ("ecl-ironclad" . "0.46")
   0.45 ("python-flake8" . "3.7.7")
   0.45 ("cabal-doctest" . "1.0.6")
   0.45 ("perl-moosex-relatedclassroles" . "0.004")
   0.45 ("python-pyalsaaudio" . "0.8.4")
   0.45 ("ghc-ieee754" . "0.8.0")
   0.45 ("python2-tlsh" . "3.4.5")
   0.45 ("texlive-latex-varwidth" . "49435")
   0.45 ("texlive-latex-eukdate" . "49435")
   0.45 ("ghc-extensible-exceptions" . "0.1.1.4")
   0.45 ("igraph" . "0.7.1")
   0.45 ("ghc-hunit" . "1.6.0.0")
   0.45 ("ghc-scientific" . "0.3.6.2")
   0.45 ("ghc-libxml" . "0.1.1")
   0.45 ("python-keepkey" . "6.0.3")
   0.45 ("texlive-cm-super" . "49435")
   0.45 ("ecl-cl-prevalence" . "5-1.c163c22")
   0.45 ("tmux" . "2.9a")
   0.45 ("guile-redis" . "1.3.0")
   0.45 ("ecl-trivial-file-size" . "0.0.0-0.1c1d672")
   0.45 ("python-jsonpatch" . "1.16")
   0.45 ("python2-gyp" . "0.0.0-0.5e2b3dd")
   0.45 ("ritornello" . "2.0.1")
   0.45 ("python-chardet" . "3.0.4")
   0.45 ("python-pygpgme" . "0.3")
   0.45 ("unshield" . "1.4.3")
   0.45 ("libnet" . "1.2-rc3")
   0.45 ("ghc-regex-base" . "0.93.2")
   0.45 ("texlive-hyphen-french" . "49435")
   0.45 ("emacs-moe-theme-el" . "1.0-1.6e086d8")
   0.45 ("texlive-hyphen-finnish" . "49435")
   0.45 ("valgrind" . "3.15.0")
   0.45 ("guile-simple-zmq" . "0.0.0-3.68bedb6")
   0.45 ("emacs-ace-link" . "0.5.0")
   0.45 ("texlive-hyphen-chinese" . "49435")
   0.45 ("emacs-handle" . "0.1-2.51c050b")
   0.45 ("ecl-bst" . "1.1-1.34f9c7e")
   0.45 ("python-lirc" . "1.2.1-2.c28708b")
   0.45 ("python-iso8601" . "0.1.12")
   0.45 ("emacs-shell-switcher" . "1.0.1")
   0.45 ("texlive-bibtex" . "49435")
   0.45 ("emacs-helm" . "3.5.0")
   0.45 ("genrich" . "0.5")
   0.45 ("ocaml-gsl" . "1.24.0")
   0.45 ("ghc-unliftio-core" . "0.1.1.0")
   0.45 ("perl-rpc-epc-service" . "0.0.11")
   0.45 ("emacs-xml-rpc" . "1.6.12-1.8f624f8")
   0.45 ("python-sphinx-copybutton" . "0.2.5")
   0.45 ("libpagemaker" . "0.0.4")
   0.45 ("cl-optima" . "1.0-1.373b245")
   0.45 ("python2-mccabe" . "0.6.1")
   0.45 ("ghc-tuple-th" . "0.2.5")
   0.45 ("emacs-org-auto-expand" . "0.1-1.4938d5f")
   0.45 ("yaml-cpp" . "0.6.3")
   0.45 ("ecl-arrows" . "0.2.0-0.df7cf00")
   0.45 ("ocaml-ppx-let" . "0.11.0")
   0.45 ("ruby-rack" . "2.0.6")
   0.45 ("go-gopkg-in-check-v1" . "1.0.0-1.788fd78")
   0.45 ("dlib" . "19.7")
   0.45 ("cl-ieee-floats" . "20170924-1.566b51a")
   0.45 ("python2-cycler" . "0.10.0")
   0.45 ("ratpoison" . "1.4.9")
   0.45 ("python-urwidtrees" . "1.0.2")
   0.45 ("ecl-trivial-mimes" . "1.1.0-1.303f8ac")
   0.45 ("go-github-com-btcsuite-btcd-btcec" . "0.12.0-beta-0.67e573d")
   0.45 ("ocaml-octavius" . "1.2.1")
   0.45 ("texlive-hyphen-kurmanji" . "49435")
   0.45 ("texlive-hyphen-icelandic" . "49435")
   0.45 ("perl-plack-middleware-removeredundantbody" . "0.07")
   0.45 ("bio-blastxmlparser" . "2.0.4")
   0.45 ("ghc-base64-bytestring" . "1.0.0.2")
   0.45 ("emacs-pcre2el" . "1.8-1.0b5b2a2")
   0.45 ("emacs-yaml-mode" . "0.0.14")
   0.45 ("emacs-npm-mode" . "0.6.0")
   0.45 ("cl-ironclad" . "0.46")
   0.45 ("sedsed" . "1.1")
   0.45 ("python-poyo" . "0.5.0")
   0.45 ("cl-trivial-file-size" . "0.0.0-0.1c1d672")
   0.45 ("emacs-rjsx-mode" . "0.4-2.0e7fa6b")
   0.45 ("ilmbase" . "2.4.0")
   0.45 ("libpqxx" . "4.0.1")
   0.45 ("pngquant" . "2.12.3")
   0.45 ("cl-idna" . "0.2.2")
   0.45 ("python-dirsync" . "2.2.3")
   0.45 ("python-dbfread" . "2.0.7")
   0.45 ("python2-nbxmpp" . "0.6.10")
   0.45 ("ghc-network-info" . "0.2.0.10")
   0.45 ("cl-reexport" . "0.1-1.312f366")
   0.45 ("perl-plack" . "1.0033")
   0.45 ("git-annex-remote-rclone" . "0.6")
   0.45 ("ecl-string-case" . "0.0.2-0.718c761")
   0.45 ("texlive-pstricks" . "49435")
   0.45 ("mosh" . "1.3.2")
   0.45 ("emacs-gnuplot" . "0.7.0")
   0.45 ("ecl-cl-json" . "0.5-1.6dfebb9")
   0.45 ("crda" . "3.18")
   0.45 ("emacs-ox-epub" . "0.3")
   0.45 ("go-golang-org-x-tools" . "0.1.3-0.8b92790")
   0.45 ("python2-rarfile" . "2.8")
   0.45 ("emacs-wordnut" . "0.1-0.feac531")
   0.45 ("emacs-janpath-evil-numbers" . "0.5-1.d988041")
   0.45 ("open-adventure" . "2.5-2.d43854f")
   0.45 ("scons" . "3.0.4")
   0.45 ("python-typing-extensions" . "3.7.2")
   0.45 ("ghc-regex-pcre-builtin" . "0.94.4.8.8.35")
   0.45 ("gv" . "3.7.4")
   0.45 ("procenv" . "0.50")
   0.45 ("findnewest" . "0.3")
   0.45 ("ghc-hostname" . "1.0")
   0.45 ("python-boolean.py" . "3.6")
   0.45 ("python2-tmx" . "1.10")
   0.45 ("perl6-license-spdx" . "3.4.0")
   0.45 ("texlive-hyphen-uppersorbian" . "49435")
   0.45 ("python-branca" . "0.3.1")
   0.45 ("ruby-test-construct" . "2.0.1")
   0.45 ("emacs-makey" . "0.3")
   0.45 ("emacs-constants" . "2.6")
   0.45 ("cl-trivial-mimes" . "1.1.0-1.303f8ac")
   0.45 ("python-pyopenssl" . "19.0.0")
   0.44 ("sundials" . "3.1.1")
   0.44 ("emacs-polymode-ansible" . "0.1-1.b26094d")
   0.44 ("python-slimit" . "0.8.1")
   0.44 ("ocaml-ppx-inline-test" . "0.12.0")
   0.44 ("ghc-tasty" . "1.1.0.3")
   0.44 ("ecl-flexi-streams" . "1.0.16")
   0.44 ("cl-heap" . "0.1.6")
   0.44 ("freefall" . "5.3.11")
   0.44 ("ncmpcpp" . "0.8.2")
   0.44 ("emacs-math-symbol-lists" . "1.2.1-1.dc7531c")
   0.44 ("texlive-hyphen-slovenian" . "49435")
   0.44 ("python2-asn1crypto" . "0.24.0")
   0.44 ("libxpm" . "3.5.12")
   0.44 ("texlive-hyphen-georgian" . "49435")
   0.44 ("gx-vintage-fuzz-master-lv2" . "0.1")
   0.44 ("texlive-hyphen-norwegian" . "49435")
   0.44 ("go-github-com-thejerf-suture" . "3.0.2")
   0.44 ("terraform-docs" . "0.6.0")
   0.44 ("ghc-validity" . "0.7.0.0")
   0.44 ("python-msgpack-transitional" . "0.5.6")
   0.44 ("python-openid-teams" . "1.1")
   0.44 ("xxd" . "8.1.0644")
   0.44 ("ecl-curry-compose-reader-macros" . "1.0.0-0.beaa92d")
   0.44 ("python-xopen" . "0.5.0")
   0.44 ("texlive-graphics-def" . "49435")
   0.44 ("emacs-org-now" . "0.1-pre-1.8f6b277")
   0.44 ("cpupower" . "5.3.11")
   0.44 ("vim-airline-themes" . "0.0.0-2.e6f2332")
   0.44 ("python-dendropy" . "4.4.0")
   0.44 ("python2-google-api-client" . "1.6.7")
   0.44 ("ghc" . "8.6.5")
   0.44 ("ghc-resourcet" . "1.2.1")
   0.44 ("ecl-cl-fad" . "0.7.5")
   0.44 ("ocaml-gsl" . "1.19.3")
   0.44 ("python-zope-proxy" . "4.1.6")
   0.44 ("xonsh" . "0.6.2")
   0.44 ("secilc" . "2.7")
   0.44 ("python2-terminado" . "0.8.1")
   0.44 ("emacs-dedicated" . "1.0.0")
   0.44 ("stb-image-for-extempore" . "0-1.152a250a7")
   0.44 ("tinyxml2" . "7.0.1")
   0.44 ("python-ecdsa" . "0.13.3")
   0.44 ("ghc-th-lift" . "0.7.11")
   0.44 ("python-typing" . "3.6.6")
   0.44 ("ocaml-ppx-optional" . "0.11.0")
   0.44 ("go-github-com-emicklei-go-restful" . "0.0.0-0.89ef8af")
   0.44 ("clang" . "6.0.1")
   0.44 ("emacs-tramp-auto-auth" . "20191027-1.f15a12d")
   0.44 ("emacs-org-brain" . "0.5")
   0.44 ("python2-genshi" . "0.7.2")
   0.44 ("texlive-hyphen-greek" . "49435")
   0.44 ("python2-cssmin" . "0.2.0")
   0.44 ("cl-series" . "2.2.11-1.da9061b")
   0.44 ("python-jdcal" . "1.4")
   0.44 ("ecl-lift" . "1.7.1-1.7d49a66")
   0.44 ("ecl-ascii-strings" . "0-1.5048480")
   0.44 ("python2-zinnia" . "0.07-1.581faa8")
   0.44 ("font-public-sans" . "1.0.0")
   0.44 ("ghc-paths" . "0.1.0.9")
   0.44 ("python2-ghp-import" . "0.5.5")
   0.44 ("m4rie" . "20150908")
   0.44 ("go-github.com-jtolds-gls" . "4.20")
   0.44 ("emacs-rainbow-delimiters" . "2.1.3")
   0.44 ("cl-slime-swank" . "2.24")
   0.44 ("python2-m2r" . "0.2.1")
   0.44 ("python-ghp-import" . "0.5.5")
   0.44 ("emacs-hercules" . "0.2.1")
   0.44 ("ghc-stringbuilder" . "0.5.1")
   0.44 ("libsignal-protocol-c" . "2.3.2")
   0.44 ("ghostscript-with-cups" . "9.27")
   0.44 ("ghc-time-locale-compat" . "0.1.1.5")
   0.44 ("emacs-lisp-extra-font-lock" . "0.0.6-1.4605ecc")
   0.44 ("emacs-idris-mode" . "0.9.19-0.acc8835")
   0.44 ("mosaik" . "2.2.30")
   0.44 ("vim" . "8.1.0644")
   0.44 ("python2-pytest-xdist" . "1.25.0")
   0.44 ("python-hkdf" . "0.0.3")
   0.44 ("rdiff-backup" . "1.2.8")
   0.44 ("python-graphviz" . "0.8.4")
   0.44 ("python2-exif-read" . "2.1.2")
   0.44 ("uim" . "1.8.8")
   0.44 ("python2-py2neo" . "3.1.2")
   0.44 ("tmate" . "2.2.1")
   0.44 ("perl-xml-compile-soap" . "3.24")
   0.44 ("emacs-helm-shell-history" . "0.1-1.110d3c3")
   0.44 ("websocketpp" . "0.8.1")
   0.44 ("podofo" . "0.9.6")
   0.44 ("texlive-hyphen-danish" . "49435")
   0.44 ("font-awesome" . "4.7.0")
   0.44 ("deutex" . "5.2.0")
   0.44 ("ruby-packnga" . "1.0.4")
   0.44 ("spectrwm" . "3.2.0")
   0.44 ("dovecot-libsodium-plugin" . "0.0.0-1.044de73")
   0.44 ("ghc-clock" . "0.7.2")
   0.44 ("nss-certs" . "3.45")
   0.44 ("ocaml-mcl" . "12-068oasis4")
   0.44 ("iml" . "1.0.5")
   0.44 ("blis-knl" . "0.2.2")
   0.44 ("ecl-fare-utils" . "1.0.0.5-1.66e9c6f")
   0.44 ("ocaml-ppx-enumerate" . "0.11.1")
   0.44 ("ghc-code-page" . "0.1.3")
   0.44 ("cl-lisp-namespace" . "0.1-1.28107ca")
   0.44 ("emacs-lua-mode" . "20151025-2.95c64bb")
   0.44 ("docker-libnetwork-cmd-proxy" . "18.09-1.4725f21")
   0.44 ("texlive-hyphen-ancientgreek" . "49435")
   0.44 ("sl" . "5.02")
   0.44 ("go-github-com-bkaradzic-go-lz4" . "0.0.0-0.7224d8d")
   0.44 ("ecl-trivial-features" . "0.8")
   0.44 ("cl-fare-quasiquote-extras" . "20171130")
   0.44 ("python2-django-tagging" . "0.4.6")
   0.44 ("python-networkx" . "2.2")
   0.44 ("ecl-queues.simple-queue" . "0.0.0-1.47d4da6")
   0.44 ("ghc-uuid-types" . "1.0.3")
   0.44 ("ecl-pythonic-string-reader" . "0.0.0-1.47a70ba")
   0.44 ("emacs-lorem-ipsum" . "0.2-1.4b39f6f")
   0.44 ("python2-contextlib2" . "0.5.5")
   0.44 ("arpack-ng" . "3.3.0")
   0.44 ("cl-yason" . "0.7.7")
   0.44 ("ghc-cryptohash-sha256" . "0.11.101.0")
   0.44 ("python2-nose" . "1.3.7")
   0.44 ("python-pyrsistent" . "0.14.11")
   0.44 ("fsom" . "0.0.0-1.a6ef318")
   0.44 ("python-pytest-bootstrap" . "4.4.2")
   0.44 ("clang-runtime" . "6.0.1")
   0.44 ("ghc-zlib-bindings" . "0.1.1.5")
   0.44 ("python-pastel" . "0.1.1")
   0.44 ("cl-bordeaux-threads" . "0.8.6-1.5dce49f")
   0.44 ("python-pyodbc" . "4.0.27")
   0.44 ("samblaster" . "0.1.24")
   0.44 ("imapfilter" . "2.6.12")
   0.44 ("python-bz2file" . "0.98")
   0.44 ("ghc-bloomfilter" . "2.0.1.0")
   0.44 ("ocaml-variantslib" . "0.11.0")
   0.44 ("python-py-bcrypt" . "0.4")
   0.44 ("python-rst.linker" . "1.11")
   0.44 ("ghc-temporary-rc" . "1.2.0.3")
   0.44 ("guile-config" . "0.3")
   0.44 ("emacs-logview" . "0.9")
   0.44 ("emacs-mkmcc-gnuplot-mode" . "1.2.0")
   0.44 ("python-pyld" . "1.0.5")
   0.44 ("tabixpp" . "1.0.0")
   0.44 ("cl-fare-quasiquote-readtable" . "20171130")
   0.44 ("python2-pystache" . "0.5.4")
   0.44 ("python-absl-py" . "0.6.1")
   0.44 ("go-golang-org-x-crypto" . "0.0.0-3.b7391e9")
   0.44 ("fcgiwrap" . "1.1.0")
   0.44 ("libmicrohttpd" . "0.9.68")
   0.44 ("linux-libre" . "4.14.154")
   0.44 ("ghc-cryptohash-md5" . "0.11.100.1")
   0.44 ("ghc-crypto-cipher-tests" . "0.0.11")
   0.44 ("python-latexcodec" . "1.0.7")
   0.44 ("emacs-flow-minor-mode" . "0.3-4.d1b32a7")
   0.44 ("ghc-blaze-markup" . "0.8.2.1")
   0.44 ("xwininfo" . "1.1.5")
   0.44 ("emacs-ivy-xref" . "0.1-1.1a35fc0")
   0.44 ("hcxtools" . "5.2.0")
   0.44 ("texlive-latex-fancybox" . "49435")
   0.44 ("clang" . "8.0.0")
   0.44 ("ghc-tasty-ant-xml" . "1.1.4")
   0.44 ("emacs-dired-toggle-sudo" . "1.0")
   0.44 ("ecl-idna" . "0.2.2")
   0.44 ("xclock" . "1.0.8")
   0.44 ("ecl-metabang-bind" . "0.8.0-1.c93b7f7")
   0.44 ("go-github-com-aki237-nscjar" . "0.0.0-0.e2df936")
   0.44 ("cl-split-sequence" . "1.4.1")
   0.44 ("ghc-logging-facade" . "0.3.0")
   0.44 ("font-google-material-design-icons" . "3.0.1")
   0.44 ("python-snowballstemmer" . "1.2.1")
   0.44 ("mod-utilities" . "0-2.80ea3ea9f")
   0.44 ("emacs-skewer-mode" . "1.8.0")
   0.44 ("go-github-com-burntsushi-locker" . "0.0.0-0.a6e239e")
   0.44 ("python2-schematics" . "1.1.1")
   0.44 ("python2-flaky" . "3.5.3")
   0.44 ("cl-periods" . "0.0.2-1.983d4a5")
   0.44 ("python2-capstone" . "3.0.5")
   0.44 ("cl-anaphora" . "0.9.6")
   0.44 ("cl-arrows" . "0.2.0-0.df7cf00")
   0.44 ("python-rencode" . "1.0.5")
   0.44 ("brial" . "1.2.5")
   0.44 ("editorconfig-core-c" . "0.12.3")
   0.44 ("tpacpi-bat" . "3.1")
   0.44 ("emacs-parent-mode" . "2.3")
   0.44 ("guile-colorized" . "0.1")
   0.44 ("superlu" . "5.2.1")
   0.44 ("cl-closer-mop" . "1.0.0-1.fac29ce")
   0.44 ("python-htmlmin" . "0.1.12")
   0.44 ("python-cram" . "0.7")
   0.44 ("python2-cssselect" . "0.9.2")
   0.44 ("texlive-hyphen-indic" . "49435")
   0.44 ("libetpan" . "1.9.3")
   0.44 ("python-debug" . "3.7.4")
   0.44 ("python-mygpoclient" . "1.8")
   0.44 ("gx-voodoo-fuzz-lv2" . "0.1")
   0.44 ("lvm2-static" . "2.02.177")
   0.44 ("python-py3status" . "3.21")
   0.44 ("ruby-sporkmonger-rack-mount" . "0.8.3-1.076aa2c")
   0.44 ("gx-suppa-tone-bender-lv2" . "0.1")
   0.44 ("python2-socksipychain" . "2.0.15")
   0.44 ("ghc-regex-posix" . "0.95.2")
   0.44 ("emacs-ivy" . "0.13.0")
   0.44 ("emacs-org-recent-headings" . "0.1")
   0.44 ("perl-plack-test-externalserver" . "0.02")
   0.44 ("ocaml-fileutils" . "0.6.0")
   0.44 ("trash-cli" . "0.17.1.14")
   0.44 ("cloud-utils" . "0.31")
   0.44 ("soxr" . "0.1.3")
   0.44 ("cl-fare-quasiquote-optima" . "20171130")
   0.44 ("emacs-auto-yasnippet" . "0.3.0-2.624b0d9")
   0.44 ("ghc-x509" . "1.7.5")
   0.44 ("jp2a" . "1.0.7")
   0.44 ("texlive-dvips" . "49435")
   0.44 ("clang-runtime" . "3.6.2")
   0.44 ("emacs-prettier" . "0.1.0-1.e9b73e8")
   0.44 ("python2-parameterized" . "0.6.1")
   0.44 ("tailon" . "1.3.0")
   0.44 ("ghc-cprng-aes" . "0.6.1")
   0.44 ("ghc-zlib" . "0.6.2")
   0.44 ("ocaml-fieldslib" . "0.11.0")
   0.44 ("stb-image-write" . "1.13")
   0.43 ("libabw" . "0.1.3")
   0.43 ("ghostscript-with-x" . "9.27")
   0.43 ("ocaml-ulex" . "1.2")
   0.43 ("emacs-e2wm" . "1.4")
   0.43 ("python-user-agents" . "1.1.0")
   0.43 ("cl-bst" . "1.1-1.34f9c7e")
   0.43 ("i2pd" . "2.27.0")
   0.43 ("python-whisper" . "1.0.2")
   0.43 ("nsd" . "4.2.2")
   0.43 ("arm-trusted-firmware-sun50i-a64" . "2.1")
   0.43 ("texlive-hyphen-slovak" . "49435")
   0.43 ("python-texttable" . "0.9.1")
   0.43 ("python-libxml2" . "2.9.9-1")
   0.43 ("emacs-miniedit" . "2.0")
   0.43 ("perl-moosex-strictconstructor" . "0.19")
   0.43 ("libmwaw" . "0.3.15")
   0.43 ("python2-tornado" . "5.1.1")
   0.43 ("python-file" . "5.33")
   0.43 ("texlive-hyphen-croatian" . "49435")
   0.43 ("ocproxy" . "1.60")
   0.43 ("wmnd" . "0.4.17")
   0.43 ("python2-jsonrpclib-pelix" . "0.3.2")
   0.43 ("cl-ascii-strings" . "0-1.5048480")
   0.43 ("vim-context-filetype" . "0.0.0-1.5e85f8c")
   0.43 ("zn-poly" . "0.9.1")
   0.43 ("fish-foreign-env" . "0.20190116")
   0.43 ("emacs-undohist-el" . "0-1.d2239a5")
   0.43 ("human" . "0.3")
   0.43 ("vifm" . "0.10.1")
   0.43 ("tremc" . "0.9.1-0.4d50dab")
   0.43 ("dnscrypt-wrapper" . "0.2.2")
   0.43 ("lmdb" . "0.9.23")
   0.43 ("go-github-com-multiformats-go-multiaddr-net" . "1.6.3-0.1cb9a0e")
   0.43 ("hurd-headers" . "0.9")
   0.43 ("python-readlike" . "0.1.3")
   0.43 ("cl-curry-compose-reader-macros" . "1.0.0-0.beaa92d")
   0.43 ("byobu" . "5.127")
   0.43 ("python2-rope" . "0.11.0")
   0.43 ("python2-mccabe" . "0.2.1")
   0.43 ("ecl-let-plus" . "0.0.0-1.5f14af6")
   0.43 ("perl-www-mechanize" . "1.91")
   0.43 ("cl-jpl-queues" . "0.1")
   0.43 ("python-straight-plugin" . "1.4.1")
   0.43 ("go-github-com-gdamore-tcell" . "1.1.2-1.aaadc57")
   0.43 ("rdesktop" . "1.9.0")
   0.43 ("cl-unix-opts" . "0.1.7")
   0.43 ("emacs-build-farm" . "0.2.2")
   0.43 ("perl-html-element-extended" . "1.18")
   0.43 ("vowpal-wabbit" . "8.5.0")
   0.43 ("python-pyelftools" . "0.25")
   0.43 ("emacs-avy" . "0.5.0")
   0.43 ("go-github-com-gogo-protobuf" . "1.2.1")
   0.43 ("reptyr" . "0.7.0")
   0.43 ("ocaml-pcre" . "7.4.1")
   0.43 ("cl-queues.simple-queue" . "0.0.0-1.47d4da6")
   0.43 ("clisp" . "2.49-92")
   0.43 ("emacs-add-node-modules-path" . "1.2.0-10.f31e69c")
   0.43 ("linux-libre" . "5.3.11")
   0.43 ("vc" . "1.4.1")
   0.43 ("ptpython2" . "0.34")
   0.43 ("pzstd" . "1.4.2")
   0.43 ("go-github-com-yookoala-realpath" . "0.0.0-0.d19ef9c")
   0.43 ("ecl-fiveam" . "1.4.1")
   0.43 ("cl-local-time" . "1.0.6-1.beac054")
   0.43 ("go-github-com-lucas-clemente-quic-go" . "0.11.2")
   0.43 ("python-cssmin" . "0.2.0")
   0.43 ("emacs-faceup" . "0.0.1-1.6c92dad")
   0.43 ("odt2txt" . "0.5")
   0.43 ("urlscan" . "0.9.4")
   0.43 ("go-github-com-getsentry-raven-go" . "0.2.0-0.5c24d51")
   0.43 ("cl-trivial-types" . "0.0.1")
   0.43 ("python-munkres" . "1.0.8")
   0.43 ("python-pyaml" . "18.11.0")
   0.43 ("python2-glob2" . "0.7")
   0.43 ("go-github-com-mr-tron-base58" . "1.1.0-0.d724c80")
   0.43 ("python2-pydot" . "1.2.4")
   0.43 ("cl-swap-bytes" . "1.1")
   0.43 ("mariadb" . "10.1.41")
   0.43 ("xfontsel" . "1.0.6")
   0.43 ("docker-cli" . "18.09.5")
   0.43 ("python2-waitress" . "1.1.0")
   0.43 ("cl-colors" . "0.0.0-1.8274105")
   0.43 ("ghc-tasty-golden" . "2.3.2")
   0.43 ("newt" . "0.52.21")
   0.43 ("emacs-cmake-font-lock" . "0.1.5-1.e0ceaaa")
   0.43 ("guile-persist" . "0-1.b14927b")
   0.43 ("ghc-base-orphans" . "0.7")
   0.43 ("ghc-mwc-random" . "0.13.6.0")
   0.43 ("python-libusb1" . "1.6.4")
   0.43 ("cl-3bmd-ext-code-blocks" . "0.0.0-1.192ea13")
   0.43 ("python-humanize" . "0.5.1")
   0.43 ("cl-clunit" . "0.2.3-1.6f6d728")
   0.43 ("pd" . "0.50-0")
   0.43 ("python2-screed" . "1.0")
   0.43 ("emacs-nginx-mode" . "1.1.9")
   0.43 ("compsize" . "1.3")
   0.43 ("ocaml-ppx-bench" . "0.11.0")
   0.43 ("guile3.0-gcrypt" . "0.2.0")
   0.43 ("emacs-hydra" . "0.15.0")
   0.43 ("emacs-ztree" . "1.0.5-1.c54425a")
   0.43 ("ghc-monad-par-extras" . "0.3.3")
   0.43 ("ocaml-compiler-libs" . "0.11.0")
   0.43 ("python-jsonpatch" . "0.4")
   0.43 ("emacs-git-timemachine" . "4.11")
   0.43 ("asciidoc" . "8.6.10")
   0.43 ("cl-ansi-text" . "1.0.0-1.53badf7")
   0.43 ("ecl-global-vars" . "1.0.0-0.c749f32")
   0.43 ("ecl-chanl" . "0.4.1-0.2362b57")
   0.43 ("ghc-tasty-quickcheck" . "0.10")
   0.43 ("recode" . "3.7.6")
   0.43 ("ecl-3bmd-ext-code-blocks" . "0.0.0-1.192ea13")
   0.43 ("python-uritemplate" . "3.0.0")
   0.43 ("python-py-ubjson" . "0.10.0")
   0.43 ("cutadapt" . "2.1")
   0.43 ("reducelcs" . "1.0-1.474f88d")
   0.43 ("tklib" . "0.6")
   0.43 ("ecl-unix-opts" . "0.1.7")
   0.43 ("texlive-latex-jknapltx" . "49435")
   0.43 ("go-golang-org-x-time" . "0.0.0-1.6dc1736")
   0.43 ("python-ua-parser" . "0.8.0")
   0.43 ("opencl-headers" . "1.0.0-0.e986688")
   0.43 ("ghc-genvalidity" . "0.5.1.0")
   0.43 ("libxrandr" . "1.5.2")
   0.43 ("python-doctest-ignore-unicode" . "0.1.2")
   0.43 ("mrustc" . "0.8.0")
   0.43 ("mlucas" . "18")
   0.43 ("asio" . "1.12.2")
   0.43 ("links" . "2.20.2")
   0.43 ("python-mccabe" . "0.2.1")
   0.43 ("python2-jmespath" . "0.9.4")
   0.43 ("python2-smmap2" . "2.0.3")
   0.43 ("python-olefile" . "0.46")
   0.43 ("python-idna" . "2.7")
   0.43 ("emacs-helm-ag" . "0.58-1.2fc02c4")
   0.43 ("libimobiledevice" . "1.2.0")
   0.43 ("rk3399-cortex-m0" . "1")
   0.43 ("python2-funcsigs" . "1.0.2")
   0.43 ("c-toxcore" . "0.2.9")
   0.43 ("emacs-elfeed" . "3.2.0")
   0.43 ("go-github-com-mitchellh-go-homedir" . "1.0.0-0.ae18d6b")
   0.43 ("python-musicbrainzngs" . "0.6")
   0.43 ("gnome-doc-utils" . "0.20.10")
   0.43 ("usbmuxd" . "1.1.0")
   0.43 ("emacs-elixir-mode" . "2.3.1")
   0.43 ("cl-jpl-util" . "20151005")
   0.43 ("ubridge" . "0.9.16")
   0.43 ("picocom" . "3.1")
   0.43 ("ecl-3bmd" . "0.0.0-1.192ea13")
   0.43 ("guile-srfi-159" . "0-0.1bd98ab")
   0.43 ("python-jsmin" . "2.2.2")
   0.43 ("libpd" . "0.11.0")
   0.43 ("python-testlib" . "0.6.5")
   0.43 ("emacs-flycheck-flow" . "1.1-1.9e8e52c")
   0.43 ("ecl-cl-heap" . "0.1.6")
   0.43 ("cl-esrap" . "0.0.0-1.133be8b")
   0.43 ("perl-test-roo" . "1.004")
   0.43 ("go-github-com-minio-blake2b-simd" . "0.0.0-0.3f5f724")
   0.43 ("python2-mpd2" . "0.5.5")
   0.43 ("mescc-tools" . "0.5.2-0.bb062b0")
   0.43 ("libusbmuxd" . "1.0.10")
   0.43 ("serd" . "0.30.0")
   0.43 ("cl-fiveam" . "1.4.1")
   0.43 ("cl-babel" . "0.5.0")
   0.43 ("go-github-com-audriusbutkevicius-go-nat-pmp" . "0.0.0-0.452c976")
   0.43 ("python-editdistance" . "0.3.1-1.3ea84a7")
   0.43 ("emacs-parinfer-mode" . "0.4.10")
   0.43 ("python2-pyparsing" . "2.3.1")
   0.43 ("python-publicsuffix2" . "2.20160818")
   0.43 ("groff" . "1.22.4")
   0.43 ("libebml" . "1.3.9")
   0.43 ("ghc-pem" . "0.2.4")
   0.43 ("python2-pyserial" . "3.1.1")
   0.43 ("clang-runtime" . "7.0.1")
   0.43 ("inotify-tools" . "3.20.1")
   0.43 ("python2-dirsync" . "2.2.3")
   0.43 ("vim-syntastic" . "3.10.0")
   0.43 ("python-iso3166" . "0.9")
   0.43 ("python-capstone" . "3.0.5")
   0.43 ("kakoune" . "2019.07.01")
   0.43 ("python-pyrfc3339" . "1.1")
   0.43 ("emacs-fold-dwim" . "1.2-0.c46f4bb")
   0.43 ("python2-pytest-subtesthack" . "0.1.1")
   0.43 ("xfd" . "1.1.3")
   0.43 ("ecl-lparallel" . "2.8.4")
   0.43 ("txr" . "224")
   0.43 ("python-sadisplay" . "0.4.8")
   0.43 ("python-miniboa" . "1.0.7")
   0.43 ("ghc-fast-logger" . "2.4.11")
   0.43 ("python2-setuptools" . "41.0.1")
   0.43 ("radeontop" . "1.2")
   0.43 ("ifdtool" . "4.9")
   0.43 ("cppzmq" . "4.2.2-0.d9f0f01")
   0.43 ("linux-libre-headers" . "4.9.202")
   0.43 ("emacs-dtrt-indent" . "0.8")
   0.43 ("python2-jsonpatch" . "1.16")
   0.43 ("cgal" . "4.14.2")
   0.43 ("python2-arrow" . "0.10.0")
   0.43 ("go-github-com-golang-snappy" . "0.0.0-0.553a641")
   0.43 ("go-github-com-vitrun-qart" . "0.0.0-0.bf64b92")
   0.43 ("python-py" . "1.8.0")
   0.43 ("ruby-loofah" . "2.2.3")
   0.43 ("python2-kazoo" . "2.4.0")
   0.43 ("ecl-lisp-unit" . "0.0.0-1.89653a2")
   0.43 ("emacs-yasnippet-snippets" . "1-1.885050d3")
   0.42 ("makedepend" . "1.0.6")
   0.42 ("python-semantic-version" . "2.6.0")
   0.42 ("anonip" . "1.0.0")
   0.42 ("ecl-usocket-server" . "0.7.1-1.86e7efb")
   0.42 ("libinput-minimal" . "1.13.4")
   0.42 ("python-sphinxcontrib-websupport" . "1.1.0")
   0.42 ("emacs-multi-term" . "1.2")
   0.42 ("ecl-babel" . "0.5.0")
   0.42 ("emacs-ghub" . "3.2.0-2.e19cd86")
   0.42 ("opensmtpd-next" . "6.6.1p1")
   0.42 ("python-httplib2" . "0.9.2")
   0.42 ("rng-tools" . "6.8")
   0.42 ("serf" . "1.3.9")
   0.42 ("runc" . "1.0.0-rc6")
   0.42 ("cl-rfc2388" . "0.0.0-1.591bcf7")
   0.42 ("python2-sympy" . "1.1.1")
   0.42 ("ghc-hourglass" . "0.2.12")
   0.42 ("python-rdflib" . "4.2.2")
   0.42 ("python-memcached" . "1.59")
   0.42 ("emacs-navi-mode" . "2.0-1.c1d38e8")
   0.42 ("python2-args" . "0.1.0")
   0.42 ("cl-let-plus" . "0.0.0-1.5f14af6")
   0.42 ("perl-plack-middleware-reverseproxy" . "0.16")
   0.42 ("cl-usocket" . "0.7.1-1.86e7efb")
   0.42 ("python2-shedskin" . "0.9.4")
   0.42 ("python-uniseg" . "0.7.1")
   0.42 ("python2-quex" . "0.68.1")
   0.42 ("ocaml-migrate-parsetree" . "1.4.0")
   0.42 ("clang" . "3.9.1")
   0.42 ("s2tc" . "1.0")
   0.42 ("perl-dbix-class" . "0.082841")
   0.42 ("python2-aniso8601" . "1.3.0")
   0.42 ("python-reparser" . "1.4.3")
   0.42 ("ghc-crypto-cipher-types" . "0.0.9")
   0.42 ("python2-bigfloat" . "0.3.0")
   0.42 ("go-github-com-matttproud-golang-protobuf-extensions-pbutil" . "1.0.0-0.c12348c")
   0.42 ("perl-plack-middleware-fixmissingbodyinredirect" . "0.12")
   0.42 ("python-on-guile" . "0.1.0-3.00a51a2")
   0.42 ("python2-atomicwrites" . "1.3.0")
   0.42 ("libxv" . "1.0.11")
   0.42 ("python2-yapf" . "0.24.0")
   0.42 ("randomjungle" . "2.1.0")
   0.42 ("python2-sphinx-me" . "0.3")
   0.42 ("emacs-fish-mode" . "0.1.4")
   0.42 ("ghc-prettyclass" . "1.0.0.0")
   0.42 ("python-pymongo" . "3.7.2")
   0.42 ("python2-more-itertools" . "5.0.0")
   0.42 ("python-invoke" . "1.1.0")
   0.42 ("libgit2" . "0.28.2")
   0.42 ("lvm2" . "2.02.177")
   0.42 ("ocaml-ppx-custom-printf" . "0.11.0")
   0.42 ("cmdtest" . "0.32")
   0.42 ("boost" . "1.70.0")
   0.42 ("emacs-typescript-mode" . "0.3")
   0.42 ("emacs-highlight-symbol" . "1.3-1.7a789c7")
   0.42 ("ecl-trivial-utf-8" . "0.0.0-1.4d427cf")
   0.42 ("bio-locus" . "0.0.7")
   0.42 ("python-sphinxcontrib-jsmath" . "1.0.1")
   0.42 ("hstr" . "2.0")
   0.42 ("gptfdisk" . "1.0.4")
   0.42 ("python-zope-interface" . "4.6.0")
   0.42 ("emacs-sparql-mode" . "2.0.1")
   0.42 ("python-passlib" . "1.7.1")
   0.42 ("ecl-usocket" . "0.7.1-1.86e7efb")
   0.42 ("python-zope-exceptions" . "4.0.8")
   0.42 ("python2-neo4j-driver" . "1.4.0")
   0.42 ("python2-freezegun" . "0.3.12")
   0.42 ("python-pytest-xprocess" . "0.9.1")
   0.42 ("cl-kmrcl" . "1.109.0-1.5260068")
   0.42 ("ecl-split-sequence" . "1.4.1")
   0.42 ("cl-trivial-backtrace" . "0.0.0-1.ca81c01")
   0.42 ("python-pytest-xdist" . "1.25.0")
   0.42 ("emacs-extempore-mode" . "0.0.0-1.848ad00")
   0.42 ("cl-chunga" . "1.1.7")
   0.42 ("ocaml-base" . "0.11.1")
   0.42 ("python-smmap2" . "2.0.3")
   0.42 ("cl-chipz" . "0.8-1.75dfbc6")
   0.42 ("python2" . "2.7.16")
   0.42 ("python-urwid" . "2.0.1")
   0.42 ("python-tornado-http-auth" . "1.1.1")
   0.42 ("go-github-com-shirou-gopsutil" . "v2.19.7-0.47ef326")
   0.42 ("go-github-com-stathat-go" . "0.0.0-0.74669b9")
   0.42 ("xshogi" . "1.4.2")
   0.42 ("go-github-com-oschwald-geoip2-golang" . "1.3.0")
   0.42 ("emacs-zenburn-theme" . "2.6")
   0.42 ("unibilium" . "2.0.0")
   0.42 ("cl-3bmd" . "0.0.0-1.192ea13")
   0.42 ("edirect" . "12.1.20190819")
   0.42 ("emacs-hierarchy" . "0.7.0")
   0.42 ("utfcpp" . "2.3.5")
   0.42 ("clinfo" . "2.2.18.04.06")
   0.42 ("python2-pyalsaaudio" . "0.8.4")
   0.42 ("python-ly" . "0.9.5")
   0.42 ("guile-curl" . "0.6")
   0.42 ("ghc-monad-loops" . "0.4.3")
   0.42 ("cl-annot" . "0.0.0-1.c99e69c")
   0.42 ("cl-containers" . "0.12.1-1.810927e")
   0.42 ("hostapd" . "2.8")
   0.42 ("python2-enum" . "0.4.6")
   0.42 ("python-phonenumbers" . "8.9.1")
   0.42 ("cl-ppcre" . "2.0.11")
   0.42 ("python-pycparser" . "2.19")
   0.42 ("font-fira-sans" . "4.202")
   0.42 ("cl-nibbles" . "0.14")
   0.42 ("python2-backports-abc" . "0.5")
   0.42 ("python-humanfriendly" . "4.4.1")
   0.42 ("cl-mk-string-metrics" . "0.1.2")
   0.42 ("python2-openid-cla" . "1.2")
   0.42 ("go-github-com-cheekybits-genny" . "1.0.0")
   0.42 ("xrefresh" . "1.0.6")
   0.42 ("python-astor" . "0.7.1")
   0.42 ("no-more-secrets" . "0.3.3")
   0.42 ("python2-backports-functools-lru-cache" . "1.5")
   0.42 ("python-atomicwrites" . "1.3.0")
   0.42 ("fdm" . "2.0")
   0.42 ("ecl-hu.dwim.stefil" . "0.0.0-1.ab6d1aa")
   0.42 ("python-nbxmpp" . "0.6.10")
   0.42 ("emacs-dotenv-mode" . "0.2.4")
   0.42 ("cl-store" . "0.8.11-0.cd01f26")
   0.42 ("python-empy" . "3.3.3")
   0.42 ("python-diff-match-patch" . "20121119")
   0.42 ("guile-ics" . "0.2.0")
   0.42 ("python-jsonschema" . "2.6.0")
   0.42 ("muparser" . "2.2.5-2")
   0.42 ("python2-pyfakefs" . "3.5.8")
   0.42 ("emacs-calfw" . "1.6")
   0.42 ("emacs-tracking" . "2.11")
   0.42 ("python-munch" . "2.0.4")
   0.42 ("python-pkgconfig" . "1.3.1")
   0.42 ("python2-readlike" . "0.1.3")
   0.42 ("nix" . "2.0.4")
   0.42 ("python-termstyle" . "0.1.11")
   0.42 ("xlockmore" . "5.58")
   0.42 ("mypaint-brushes" . "1.3.0")
   0.42 ("tclx" . "8.4.1")
   0.42 ("python2-backpack" . "0.1")
   0.42 ("python2-iso639" . "0.4.5")
   0.42 ("python-minimock" . "1.2.8")
   0.42 ("quvi" . "0.4.2")
   0.42 ("cl-markup" . "0.1-1.e0eb7de")
   0.42 ("emacs-emamux" . "0.14")
   0.42 ("xcompmgr" . "1.1.8")
   0.42 ("python2-pathlib2" . "2.3.3")
   0.42 ("go-golang-org-colorful" . "1.0.2")
   0.42 ("cl-strings" . "0.0.0-1.c5c5cba")
   0.42 ("python-sphinxcontrib-htmlhelp" . "1.0.2")
   0.42 ("python2-mimeparse" . "1.6.0")
   0.42 ("ocaml-sexplib" . "0.11.0")
   0.42 ("python-pycosat" . "0.6.1")
   0.42 ("go-github-com-maruel-panicparse" . "1.3.0")
   0.42 ("python-fastimport" . "0.9.6")
   0.42 ("cl-flexi-streams" . "1.0.16")
   0.42 ("emacs-company-flow" . "0.1.0-1.76ef585")
   0.42 ("python2-translitcodec" . "0.4.0")
   0.42 ("emacs-fancy-narrow" . "0.9.5")
   0.42 ("python-rsa" . "3.4.2")
   0.42 ("iso-codes" . "3.77")
   0.42 ("python-multiprocess" . "0.70.6.1")
   0.42 ("python2-singledispatch" . "3.4.0.3")
   0.42 ("emacs-atom-one-dark-theme" . "0.4.0-0.1f1185b")
   0.42 ("go-golang-org-x-sys" . "0.0.0-4.04f50cd")
   0.42 ("emacs-evil-quickscope" . "0.1.4")
   0.42 ("libfaketime" . "0.9.7")
   0.42 ("python2-musicbrainzngs" . "0.6")
   0.42 ("emacs-memoize" . "1.1")
   0.42 ("ecl-cl-markup" . "0.1-1.e0eb7de")
   0.42 ("python-polib" . "1.0.8")
   0.42 ("python2-configobj" . "5.0.6")
   0.42 ("ghc-puremd5" . "2.1.3")
   0.42 ("python2-pkginfo" . "1.4.2")
   0.42 ("python2-miniboa" . "1.0.7")
   0.42 ("python-exif-read" . "2.1.2")
   0.42 ("portmidi-for-extempore" . "217")
   0.42 ("harminv" . "1.4.1")
   0.42 ("swig" . "3.0.12")
   0.42 ("cl-trivial-utf-8" . "0.0.0-1.4d427cf")
   0.42 ("python-discid" . "1.1.1")
   0.42 ("libwpd" . "0.10.2")
   0.42 ("mdds" . "1.4.3")
   0.42 ("python-pympler" . "0.7")
   0.42 ("ghc-psqueues" . "0.2.7.0")
   0.42 ("edge-addition-planarity-suite" . "3.0.0.5")
   0.42 ("perl-moosex-nonmoose" . "0.26")
   0.42 ("cl-css" . "0.1-1.8fe654c")
   0.42 ("python2-pyaudio" . "0.2.11")
   0.42 ("imlib2" . "1.5.1")
   0.42 ("ecl-cl-ppcre" . "2.0.11")
   0.42 ("gphoto2" . "2.5.23")
   0.42 ("cl-who" . "1.1.4-1.2c08caa")
   0.42 ("ocaml-ppx-tools-versioned" . "5.2.3")
   0.42 ("lesstif" . "0.95.2")
   0.42 ("cl-lack-middleware-backtrace" . "0.1.0-1.abff8ef")
   0.42 ("python2-tracing" . "0.10")
   0.42 ("go-github-com-minio-sha256-simd" . "0.0.0-3.cc1980c")
   0.42 ("cl-unicode" . "0.1.5-1.9fcd06f")
   0.42 ("neovim-syntastic" . "3.10.0")
   0.42 ("ghc-errors" . "2.3.0")
   0.42 ("icestorm" . "0.0-2-c0cbae88a")
   0.42 ("python2-curtsies" . "0.2.11")
   0.42 ("ecl-alexandria" . "1.0.0-1.3b849bc")
   0.42 ("emacs-solaire-mode" . "1.0.9")
   0.42 ("ruby-fuubar" . "2.3.2")
   0.42 ("perl-test-www-mechanize-psgi" . "0.38")
   0.42 ("python2-sip" . "4.19.13")
   0.42 ("python-simplejson" . "3.14.0")
   0.42 ("python-pystache" . "0.5.4")
   0.42 ("xcalc" . "1.1.0")
   0.42 ("python2-pyopengl-accelerate" . "3.1.0")
   0.42 ("emacs-page-break-lines" . "0.11")
   0.42 ("python2-pypdf2" . "1.26.0")
   0.42 ("python2-user-agents" . "1.1.0")
   0.42 ("orfm" . "0.7.1")
   0.42 ("python2-pylast" . "2.0.0")
   0.42 ("python-pyyaml" . "3.13")
   0.42 ("fann" . "2.2.0-1.d71d5478")
   0.42 ("ninja" . "1.9.0")
   0.42 ("cl-colorize" . "0.0.0-1.ea676b5")
   0.42 ("emacs-visual-regexp" . "1.1.1")
   0.42 ("python2-nltk" . "3.2.1")
   0.42 ("cl-pythonic-string-reader" . "0.0.0-1.47a70ba")
   0.42 ("python2-constantly" . "15.1.0")
   0.42 ("python-grpcio" . "1.17.1")
   0.42 ("emacs-transient" . "0.1.0-1.7e45a57")
   0.42 ("xkbcomp" . "1.4.2")
   0.42 ("ghc-json" . "0.9.2")
   0.42 ("emacs-rainbow-blocks" . "1.0.0-1.dd435d7")
   0.42 ("emacs-evil-matchit" . "2.3.4")
   0.42 ("go-github-com-blang-semver" . "0.0.0-0.60ec348")
   0.42 ("python2-pyodbc-c" . "3.1.4")
   0.42 ("openvswitch" . "2.12.0")
   0.42 ("perl-moosex-getopt" . "0.74")
   0.42 ("python2-execnet" . "1.4.1")
   0.42 ("python2-texttable" . "0.9.1")
   0.42 ("python2-coloredlogs" . "10.0")
   0.42 ("python2-iso3166" . "0.9")
   0.42 ("emacs-el-x" . "0.3.1")
   0.42 ("emacs-git-modes" . "1.2.8")
   0.42 ("perl-file-zglob" . "0.11")
   0.42 ("emacs-dedukti-mode" . "0-0.d7c3505")
   0.42 ("python2-pathlib" . "1.0.1")
   0.42 ("python-ipy" . "1.00")
   0.42 ("python-cbor" . "1.0.0")
   0.42 ("emacs-circe" . "2.11")
   0.42 ("perl-email-sender" . "1.300031")
   0.42 ("sord" . "0.16.4")
   0.42 ("ecl-cl-containers" . "0.12.1-1.810927e")
   0.42 ("python2-ecdsa" . "0.13.3")
   0.42 ("python-translitcodec" . "0.4.0")
   0.41 ("libevent" . "2.1.11")
   0.41 ("cl-syntax" . "0.0.3")
   0.41 ("emacs-treepy" . "0.1.1")
   0.41 ("cl-metabang-bind" . "0.8.0-1.c93b7f7")
   0.41 ("miniupnpc" . "2.1.20190824")
   0.41 ("emacs-typo" . "1.1")
   0.41 ("cl-trivial-gray-streams" . "0.0.0-1.0483ade")
   0.41 ("emacs-nnreddit" . "0.0.1-1.9843f99")
   0.41 ("libmpack" . "1.0.5")
   0.41 ("python-dj-database-url" . "0.4.2")
   0.41 ("python2-jellyfish" . "0.5.6")
   0.41 ("python-wrapt" . "1.11.2")
   0.41 ("emacs-org-download" . "0.1.0-2.10c9d7c")
   0.41 ("python-levenshtein" . "0.12.0")
   0.41 ("python-pytest-catchlog" . "1.2.2")
   0.41 ("xrdb" . "1.2.0")
   0.41 ("python-xlrd" . "1.2.0")
   0.41 ("python2-eventlet" . "0.20.1")
   0.41 ("python-attr" . "0.3.1")
   0.41 ("python2-colorama" . "0.3.9")
   0.41 ("python2-pyopengl" . "3.1.0")
   0.41 ("python2-regex" . "2019.04.14")
   0.41 ("mozjs" . "60.2.3-2")
   0.41 ("python-dill" . "0.2.9")
   0.41 ("python2-unidecode" . "1.1.1")
   0.41 ("ghc-async" . "2.2.1")
   0.41 ("python-ratelimiter" . "1.2.0")
   0.41 ("python-dnspython" . "1.15.0")
   0.41 ("pelican" . "4.0.1")
   0.41 ("emacs-scribble-mode" . "0.1-2.217945d")
   0.41 ("go-github-com-gdamore-encoding" . "1.0.0")
   0.41 ("python-shellingham" . "1.3.1")
   0.41 ("ecl-anaphora" . "0.9.6")
   0.41 ("python2-mako" . "1.1.0")
   0.41 ("emacs-evil-args" . "1.0-1.758ad5a")
   0.41 ("python2-dateutil" . "2.8.0")
   0.41 ("python-llfuse" . "1.3.5")
   0.41 ("python-sphinxcontrib-applehelp" . "1.0.1")
   0.41 ("python-wrapper" . "3.7.4")
   0.41 ("python2-htmlmin" . "0.1.12")
   0.41 ("stalonetray" . "0.8.3")
   0.41 ("ocaml-result" . "1.4")
   0.41 ("gpx" . "2.5.2")
   0.41 ("inchi" . "1.05")
   0.41 ("git-test-sequence" . "20140312.48e5a2f")
   0.41 ("python-pep8" . "1.7.0")
   0.41 ("festival" . "2.5.0")
   0.41 ("cmark" . "0.28.3")
   0.41 ("gpgme" . "1.13.1")
   0.41 ("ghc-half" . "0.3")
   0.41 ("emacs-leaf" . "3.5.0")
   0.41 ("openh264" . "2.0.0")
   0.41 ("cl-trivial-garbage" . "0.21")
   0.41 ("ocaml-ocurl" . "0.8.2")
   0.41 ("emacs-git-messenger" . "0.18")
   0.41 ("python-pathlib2" . "2.3.3")
   0.41 ("hubbub" . "0.3.6")
   0.41 ("emacs-fill-column-indicator" . "1.89")
   0.41 ("llvm" . "3.5.2")
   0.41 ("python-pkginfo" . "1.4.2")
   0.41 ("python2-networkx" . "2.2")
   0.41 ("prosody-http-upload" . "0-1.765735b")
   0.41 ("emacs-daemons" . "2.0.0")
   0.41 ("cl-hu.dwim.stefil" . "0.0.0-1.ab6d1aa")
   0.41 ("python2-pytest-bootstrap" . "4.4.2")
   0.41 ("rxcpp" . "4.1.0")
   0.41 ("libmicrodns" . "0.0.10")
   0.41 ("python-isrcsubmit" . "2.0.1")
   0.41 ("emacs-linum-relative" . "0.6")
   0.41 ("emacs-go-mode" . "1.5.0")
   0.41 ("pyconfigure" . "0.2.3")
   0.41 ("python2-pydiff" . "0.2")
   0.41 ("python" . "3.7.4")
   0.41 ("python-rarfile" . "2.8")
   0.41 ("python-bottle" . "0.12.13")
   0.41 ("emacs-tree-mode" . "0.0.1-1.b060788")
   0.41 ("emacs-engine-mode" . "2.1.1")
   0.41 ("python-pbr-minimal" . "3.0.1")
   0.41 ("python2-urwidtrees" . "1.0.2")
   0.41 ("python2-cliapp" . "1.20180812.1")
   0.41 ("python2-couleur" . "0.6.2")
   0.41 ("hspec-discover" . "2.5.5")
   0.41 ("ecl-fprog" . "1.0.0-1.7016d1a")
   0.41 ("ixion" . "0.14.1")
   0.41 ("physfs" . "3.0.2")
   0.41 ("python-arrow" . "0.10.0")
   0.41 ("llvm" . "7.0.1")
   0.41 ("pdfposter" . "0.6.0")
   0.41 ("python-blinker" . "1.4")
   0.41 ("lttoolbox" . "3.5.0")
   0.41 ("emacs-git-annex" . "1.1-2.1324d3f")
   0.41 ("giblib" . "1.2.4")
   0.41 ("python-msgpack-python" . "0.5.6")
   0.41 ("grfcodec" . "6.0.6")
   0.41 ("vim-neocomplete" . "2.1")
   0.41 ("uthash" . "2.0.2")
   0.41 ("gavl" . "1.4.0")
   0.41 ("ocaml-ounit" . "2.0.8")
   0.41 ("emacs-highlight-sexp" . "1.0")
   0.41 ("ocl-icd" . "2.2.12")
   0.41 ("ecl-cl-yacc" . "0.3")
   0.41 ("python-sh" . "1.12.14")
   0.41 ("cl-base64" . "3.3.3")
   0.41 ("python-mccabe" . "0.6.1")
   0.41 ("cl-yacc" . "0.3")
   0.41 ("python-pyserial" . "3.1.1")
   0.41 ("clucene" . "2.3.3.4")
   0.41 ("python-url" . "0.2.0")
   0.41 ("python-pyblake2" . "1.1.2")
   0.41 ("gemmlowp" . "0-2.38ebac7")
   0.41 ("libdrm" . "2.4.99")
   0.41 ("python-future" . "0.17.1")
   0.41 ("ecl-queues.priority-queue" . "0.0.0-1.47d4da6")
   0.41 ("assimp" . "4.1.0")
   0.41 ("vim-luna" . "0.0.0-1.6336199")
   0.41 ("python2-reparser" . "1.4.3")
   0.41 ("perl-any-moose" . "0.27")
   0.41 ("python-vobject" . "0.9.5")
   0.41 ("ghc-uniplate" . "1.6.12")
   0.41 ("cl-xlunit" . "0.6.3-1.3805d34")
   0.41 ("cl-lisp-unit" . "0.0.0-1.89653a2")
   0.41 ("ecl-xlunit" . "0.6.3-1.3805d34")
   0.41 ("python2-ptyprocess" . "0.5.2")
   0.41 ("linux-libre-headers" . "5.3.11")
   0.41 ("python2-cram" . "0.7")
   0.41 ("yasm" . "1.3.0")
   0.41 ("ecl-trivial-garbage" . "0.21")
   0.41 ("loksh" . "6.6")
   0.41 ("llvm" . "3.6.2")
   0.41 ("python-pep8" . "1.5.7")
   0.41 ("font-blackfoundry-inria" . "1.200")
   0.41 ("python2-whisper" . "1.0.2")
   0.41 ("asciinema" . "2.0.2")
   0.41 ("python-wcwidth" . "0.1.7")
   0.41 ("python2-sqlparse" . "0.2.4")
   0.41 ("wordnet" . "3.0")
   0.41 ("python2-uniseg" . "0.7.1")
   0.41 ("guile2.0-gcrypt" . "0.2.0")
   0.41 ("python-html5-parser" . "0.4.5")
   0.41 ("python-sepolgen" . "2.7")
   0.41 ("python2-sh" . "1.12.14")
   0.41 ("python2-soupsieve" . "1.9.5")
   0.41 ("python-markdown" . "3.1.1")
   0.41 ("ghc-fingertree" . "0.1.4.1")
   0.41 ("opencl-headers" . "1.2.0-0.e986688")
   0.41 ("python2-pbkdf2" . "1.3")
   0.41 ("python-click-threading" . "0.4.4")
   0.41 ("exempi" . "2.5.1")
   0.41 ("emacs-recent-addresses" . "0.1-1.afbbfdc")
   0.41 ("emacs-smartparens" . "1.11.0")
   0.41 ("camlp5" . "7.07")
   0.41 ("llvm" . "8.0.0")
   0.41 ("hoedown" . "3.0.7")
   0.41 ("potrace" . "1.15")
   0.41 ("python2-zope-configuration" . "4.0.3")
   0.41 ("libpano13" . "2.9.19")
   0.41 ("cl-metatilities-base" . "0.6.6-1.6eaa9e3")
   0.41 ("emacs-company" . "0.9.10")
   0.41 ("font-terminus" . "4.47")
   0.41 ("ghc-patience" . "0.1.1")
   0.41 ("vera" . "1.23")
   0.41 ("llvm" . "3.7.1")
   0.41 ("python2-redis" . "3.3.8")
   0.41 ("python2-phonenumbers" . "8.9.1")
   0.41 ("emacs-async" . "1.9.3")
   0.41 ("python2-pytz" . "2019.1")
   0.41 ("ecl-nibbles" . "0.14")
   0.41 ("python-pluggy" . "0.11.0")
   0.41 ("python-fusepy" . "2.0.4")
   0.41 ("ghc-alsa-core" . "0.5.0.1")
   0.41 ("python2-dnspython" . "1.15.0")
   0.41 ("python2-waf" . "2.0.11")
   0.41 ("xpr" . "1.0.5")
   0.41 ("python2-whoosh" . "2.7.4")
   0.41 ("python-bigfloat" . "0.3.0")
   0.41 ("python2-factory-boy" . "2.8.1")
   0.41 ("perl-time-duration" . "1.21")
   0.41 ("python-grako" . "3.99.9")
   0.41 ("libsecp256k1" . "20181126-1.e34ceb3")
   0.41 ("ghc-hashtables" . "1.2.3.1")
   0.41 ("python2-css-parser" . "1.0.4")
   0.41 ("python2-simplegeneric" . "0.8.1")
   0.41 ("restic" . "0.9.5")
   0.41 ("libdiscid" . "0.6.2")
   0.41 ("python2-vcversioner" . "2.16.0.0")
   0.41 ("proot-static" . "5.1.0")
   0.41 ("python-bibtexparser" . "1.1.0")
   0.41 ("z3" . "4.8.6")
   0.41 ("libxt" . "1.2.0")
   0.41 ("python2-pytest-capturelog" . "0.7")
   0.41 ("cl-string-case" . "0.0.2-0.718c761")
   0.40 ("cl-trivial-cltl2" . "0.1.1-1.8eec840")
   0.40 ("dav1d" . "0.5.1")
   0.40 ("emacs-bash-completion" . "2.1.0")
   0.40 ("gnutls" . "3.6.9")
   0.40 ("emacs-switch-window" . "1.6.2")
   0.40 ("ghc-charset" . "0.3.7.1")
   0.40 ("st" . "0.8.2")
   0.40 ("python2-polib" . "1.0.8")
   0.40 ("ecl-cl-quickcheck" . "0.0.4-1.807b279")
   0.40 ("getmail" . "5.14")
   0.40 ("sassc" . "3.5.0")
   0.40 ("hcxdumptool" . "5.2.0")
   0.40 ("ecl-net.didierverna.asdf-flv" . "2.1")
   0.40 ("python-soupsieve" . "1.9.5")
   0.40 ("emacs-so-long" . "1.0-2.cfae473")
   0.40 ("python-sqlalchemy-utils" . "0.32.21")
   0.40 ("wwwoffle" . "2.9j")
   0.40 ("rubber" . "1.1")
   0.40 ("python-jmespath" . "0.9.4")
   0.40 ("python-iso639" . "0.4.5")
   0.40 ("libbytesize" . "1.4")
   0.40 ("xdotool" . "3.20160805.1")
   0.40 ("stb-image" . "2.22")
   0.40 ("emacs-sesman" . "0.3.4")
   0.40 ("python-pyphen" . "0.9.5")
   0.40 ("font-arabic-misc" . "1.0.3")
   0.40 ("vis" . "0.5")
   0.40 ("xinit" . "1.4.1")
   0.40 ("guile-wm" . "1.0-1.f3c7b3b")
   0.40 ("python2-pyclipper" . "1.1.0.post1")
   0.40 ("python-sip" . "4.19.13")
   0.40 ("python2-pymongo" . "3.7.2")
   0.40 ("python2-pyaml" . "18.11.0")
   0.40 ("python-lz4" . "0.10.1")
   0.40 ("python2-ccm" . "2.1.6")
   0.40 ("perl-test-www-mechanize" . "1.52")
   0.40 ("perl-module-install" . "1.19")
   0.40 ("micropython" . "1.11")
   0.40 ("python-flake8-polyfill" . "1.0.2")
   0.40 ("cl-s-sysdeps" . "1-1.d28246b")
   0.40 ("camlp4" . "4.07+1")
   0.40 ("xmag" . "1.0.6")
   0.40 ("python2-munkres" . "1.0.8")
   0.40 ("me-cleaner" . "1.2")
   0.40 ("emacs-wgrep" . "2.3.1")
   0.40 ("python-aniso8601" . "1.3.0")
   0.40 ("python-pip" . "19.2.1")
   0.40 ("perl-moosex-semiaffordanceaccessor" . "0.10")
   0.40 ("dedukti" . "2.6.0")
   0.40 ("python2-file" . "5.33")
   0.40 ("libxp" . "1.0.3")
   0.40 ("python-alembic" . "1.0.11")
   0.40 ("ghc-data-hash" . "0.2.0.1")
   0.40 ("cl-portable-threads" . "2.3-1.c0e61a1")
   0.40 ("man-db" . "2.9.0")
   0.40 ("python2-coverage-test-runner" . "1.15")
   0.40 ("guile-dsv" . "0.2.1")
   0.40 ("vhba-module" . "20190831")
   0.40 ("python-tabulate" . "0.7.7")
   0.40 ("python2-openid" . "2.2.5")
   0.40 ("gnome-shell-extension-noannoyance" . "5")
   0.40 ("cl-trivial-features" . "0.8")
   0.40 ("python-trollius-redis" . "0.1.4")
   0.40 ("python-pbkdf2" . "1.3")
   0.40 ("python2-babel" . "2.6.0")
   0.40 ("xhost" . "1.0.8")
   0.40 ("python2-setproctitle" . "1.1.10")
   0.40 ("portmidi" . "217")
   0.40 ("libxvmc" . "1.0.11")
   0.40 ("ecl-closer-mop" . "1.0.0-1.fac29ce")
   0.40 ("python2-traceback2" . "1.4.0")
   0.40 ("python2-zope-proxy" . "4.1.6")
   0.40 ("ghc-void" . "0.7.2")
   0.40 ("python-aiodns" . "1.1.1")
   0.40 ("python2-pympler" . "0.7")
   0.40 ("cl-parse-js" . "0.0.0-1.fbadc6029")
   0.40 ("python2-pycparser" . "2.19")
   0.40 ("cl-marshal" . "1.3.0-1.eff1b15")
   0.40 ("python2-cheetah" . "3.1.0")
   0.40 ("python2-pypdf" . "1.13")
   0.40 ("python-html2text" . "2019.8.11")
   0.40 ("python2-jsonrpclib" . "0.1.7")
   0.40 ("python-terminado" . "0.8.1")
   0.40 ("python-rfc3987" . "1.3.7")
   0.40 ("tintin++" . "2.01.7")
   0.40 ("python2-pycosat" . "0.6.1")
   0.40 ("emacs-evil-numbers" . "0.4-1.6ea1c8c")
   0.40 ("boost-sync" . "1.55-1.c72891d")
   0.40 ("recutils" . "1.8")
   0.40 ("python2-axolotl-curve25519" . "0.1")
   0.40 ("perl-moosex-types-loadableclass" . "0.015")
   0.40 ("cl-fprog" . "1.0.0-1.7016d1a")
   0.40 ("emacs-list-utils" . "0.4.4")
   0.40 ("sshuttle" . "0.78.5")
   0.40 ("python2-openid-teams" . "1.1")
   0.40 ("python2-ratelimiter" . "1.2.0")
   0.40 ("ruby-rubyzip" . "1.2.1")
   0.40 ("emacs-ace-window" . "0.9.0-1.a534492")
   0.40 ("python-eventlet" . "0.20.1")
   0.40 ("xautomation" . "1.09")
   0.40 ("llvm-for-extempore" . "3.7.1")
   0.40 ("llvm" . "3.9.1")
   0.40 ("python-shortuuid" . "0.5.0")
   0.40 ("python-llfuse" . "0.41.1")
   0.40 ("python2-humanfriendly" . "4.4.1")
   0.40 ("python-gnupg" . "0.4.4")
   0.40 ("python-appdirs" . "1.4.3")
   0.40 ("ghc-hashable" . "1.2.7.0")
   0.40 ("guile-gcrypt" . "0.2.0")
   0.40 ("perl-plack-middleware-methodoverride" . "0.20")
   0.40 ("mdadm" . "4.1")
   0.40 ("python2-chai" . "1.1.2")
   0.40 ("python2-rply" . "0.7.5")
   0.40 ("vidstab" . "1.1.0-0.aeabc8d")
   0.40 ("ecl-named-readtables" . "0.9-1.4dfb89f")
   0.40 ("libxaw" . "1.0.13")
   0.40 ("python-stdnum" . "1.8.1")
   0.40 ("libxscrnsaver" . "1.2.3")
   0.40 ("python-backcall" . "0.1.0")
   0.40 ("python2-pyld" . "1.0.5")
   0.40 ("python2-webob" . "1.5.1")
   0.40 ("ecl-portable-threads" . "2.3-1.c0e61a1")
   0.40 ("gcl" . "2.6.12-2.d3335e2")
   0.40 ("python-async-timeout" . "3.0.1")
   0.40 ("python2-sadisplay" . "0.4.8")
   0.40 ("python2-pip" . "19.2.1")
   0.40 ("python2-cffi" . "1.11.5")
   0.40 ("python2-schema" . "0.5.0")
   0.40 ("ocamlbuild" . "0.13.1")
   0.40 ("python2-decorator" . "4.3.0")
   0.40 ("python-setuptools-scm" . "3.2.0")
   0.40 ("python-regex" . "2019.04.14")
   0.40 ("python-configargparse" . "0.14.0")
   0.40 ("xset" . "1.2.4")
   0.40 ("ghc-optparse-applicative" . "0.14.2.0")
   0.40 ("ecl-prove-asdf" . "1.0.0-1.4f9122b")
   0.40 ("python-ptyprocess" . "0.5.2")
   0.40 ("python2-anyjson" . "0.3.3")
   0.40 ("brightnessctl" . "0.4-0.6a791e7")
   0.40 ("python2-py-bcrypt" . "0.4")
   0.40 ("python-unidecode" . "1.1.1")
   0.40 ("python2-magic" . "0.4.15")
   0.40 ("libquvi" . "0.4.1")
   0.40 ("python2-pyev" . "0.9.0")
   0.40 ("icecast" . "2.4.4")
   0.40 ("ghc-convertible" . "1.1.1.0")
   0.40 ("python2-pygments" . "2.4.2")
   0.40 ("ecl-queues" . "0.0.0-1.47d4da6")
   0.40 ("emacs-arduino-mode" . "0-0.3e2bad4")
   0.40 ("emacs-yasnippet" . "0.13.0")
   0.40 ("python-scripttest" . "1.3")
   0.40 ("fc-host-tools" . "11")
   0.40 ("wmclock" . "1.0.16")
   0.40 ("python-idna-ssl" . "1.0.1")
   0.40 ("python2-url" . "0.2.0")
   0.40 ("perl-sql-splitstatement" . "1.00020")
   0.40 ("python2-py" . "1.8.0")
   0.40 ("python2-toolz" . "0.9.0")
   0.40 ("ghc-unordered-containers" . "0.2.9.0")
   0.40 ("wmcpuload" . "1.1.1")
   0.40 ("python2-autopep8" . "1.3.5")
   0.40 ("ghc-gtk2hs-buildtools" . "0.13.4.0")
   0.40 ("xcursor-themes" . "1.0.6")
   0.40 ("mate-icon-theme-faenza" . "1.20.0")
   0.40 ("python2-pybugz" . "0.6.11")
   0.40 ("python-click" . "7.0")
   0.40 ("ghc-findbin" . "0.0.5")
   0.40 ("python-pytimeparse" . "1.1.8")
   0.40 ("fastx-toolkit" . "0.0.14")
   0.40 ("python-future-fstrings" . "0.4.1")
   0.40 ("libscrypt" . "1.21")
   0.40 ("python-distutils-extra" . "2.38")
   0.40 ("python-zope-configuration" . "4.0.3")
   0.40 ("python2-funcsigs-bootstrap" . "1.0.2")
   0.40 ("python-sphinxcontrib-serializinghtml" . "1.1.3")
   0.40 ("python2-testresources-bootstrap" . "2.0.1")
   0.40 ("python-sphinxcontrib-qthelp" . "1.0.2")
   0.40 ("fmt" . "6.0.0")
   0.40 ("python-jsonpointer" . "1.10")
   0.40 ("shishi" . "1.0.2")
   0.40 ("cl-queues" . "0.0.0-1.47d4da6")
   0.40 ("python-distro" . "1.4.0")
   0.40 ("python2-munch" . "2.0.4")
   0.40 ("xinput" . "1.6.2")
   0.40 ("python-ccm" . "2.1.6")
   0.40 ("ecl-s-sysdeps" . "1-1.d28246b")
   0.40 ("m17n-lib" . "1.8.0")
   0.40 ("python-q" . "2.6")
   0.40 ("python2-termcolor" . "1.1.0")
   0.40 ("python-hiredis" . "0.2.0")
   0.40 ("dtc" . "1.5.1")
   0.40 ("ghc-crypto-api-tests" . "0.3")
   0.40 ("python-jellyfish" . "0.5.6")
   0.40 ("python2-parsedatetime" . "2.4")
   0.40 ("python2-pyyaml" . "3.13")
   0.40 ("sct" . "0.4")
   0.40 ("libxkbfile" . "1.1.0")
   0.40 ("libcmis" . "0.5.2")
   0.40 ("python2-imagesize" . "1.1.0")
   0.40 ("perl-moose" . "2.2011")
   0.39 ("emacs-web-server" . "0.1.0-1.cafa5b7")
   0.39 ("ghc-boxes" . "0.1.5")
   0.39 ("python-libxml2" . "2.9.9")
   0.39 ("python2-pep8" . "1.5.7")
   0.39 ("ghc-monadplus" . "1.4.2")
   0.39 ("python2-mistune" . "0.8.4")
   0.39 ("libtorrent" . "0.13.8")
   0.39 ("python-argparse-manpage" . "1.1")
   0.39 ("python-colorama" . "0.3.9")
   0.39 ("python2-kiwisolver" . "1.0.1")
   0.39 ("starman" . "0.4015")
   0.39 ("python2-editor" . "0.5")
   0.39 ("python-setproctitle" . "1.1.10")
   0.39 ("ghc-resolv" . "0.1.1.1")
   0.39 ("python2-ukpostcodeparser" . "1.0.3")
   0.39 ("python-flaky" . "3.5.3")
   0.39 ("python2-testtools-bootstrap" . "2.3.0")
   0.39 ("python2-appdirs" . "1.4.3")
   0.39 ("python2-pyusb" . "1.0.2")
   0.39 ("python-redis" . "3.3.8")
   0.39 ("python-greenlet" . "0.4.15")
   0.39 ("python-pastedeploy" . "1.5.2")
   0.39 ("python-incremental" . "17.5.0")
   0.39 ("python2-attrs-bootstrap" . "19.1.0")
   0.39 ("python2-beautifulsoup4" . "4.7.1")
   0.39 ("mercurial" . "5.0.2")
   0.39 ("python2-pretend" . "1.0.9")
   0.39 ("python2-levenshtein" . "0.12.0")
   0.39 ("emacs-wget" . "0.5.0")
   0.39 ("python2-scandir" . "1.9.0")
   0.39 ("python-defusedxml" . "0.6.0")
   0.39 ("xvid" . "1.3.5")
   0.39 ("jube" . "2.2.2")
   0.39 ("python2-backport-ssl-match-hostname" . "3.5.0.1")
   0.39 ("python2-entrypoints" . "0.3")
   0.39 ("python2-pytest-cache" . "1.0")
   0.39 ("ghc-semigroups" . "0.18.5")
   0.39 ("aria2" . "1.35.0")
   0.39 ("python2-configparser" . "3.7.1")
   0.39 ("python-locket" . "0.2.0")
   0.39 ("python-libarchive-c" . "2.8")
   0.39 ("python2-subprocess32" . "3.2.7")
   0.39 ("python2-pylzma" . "0.5.0")
   0.39 ("python-yapf" . "0.24.0")
   0.39 ("python2-ecpy" . "0.10.0")
   0.39 ("python2-ipy" . "1.00")
   0.39 ("python2-prettytable" . "0.7.2")
   0.39 ("python-pytest-timeout" . "1.3.3")
   0.39 ("ghc-case-insensitive" . "1.2.0.11")
   0.39 ("perl-tk" . "804.034")
   0.39 ("python-configparser" . "3.7.1")
   0.39 ("python-curtsies" . "0.2.11")
   0.39 ("python-idna" . "2.8")
   0.39 ("libxaw3d" . "1.6.3")
   0.39 ("python2-publicsuffix2" . "2.20160818")
   0.39 ("python-pyflakes" . "2.1.1")
   0.39 ("python-whichcraft" . "0.6.1")
   0.39 ("ghc-sha" . "1.6.4.4")
   0.39 ("python-pyflakes" . "0.8.1")
   0.39 ("ntl" . "9.7.0")
   0.39 ("python-cython" . "0.29.13")
   0.39 ("python-unittest2" . "1.1.0")
   0.39 ("ghc-pretty-hex" . "1.0")
   0.39 ("subread" . "1.6.0")
   0.39 ("python-wikidata" . "0.6.1")
   0.39 ("libxtst" . "1.2.3")
   0.39 ("python-pyxb" . "1.2.6")
   0.39 ("dico" . "2.9")
   0.39 ("ghc-mime-types" . "0.1.0.8")
   0.39 ("python-pytest" . "4.4.2")
   0.39 ("python-paste" . "3.0.6")
   0.39 ("python-mimeparse" . "1.6.0")
   0.39 ("python-imagesize" . "1.1.0")
   0.39 ("perl-config-gitlike" . "1.17")
   0.39 ("python-scandir" . "1.9.0")
   0.39 ("python-more-itertools" . "7.1.0")
   0.39 ("python-publicsuffix" . "1.1.0")
   0.39 ("ghc-regex-tdfa" . "1.2.3.1")
   0.39 ("python-css-parser" . "1.0.4")
   0.39 ("ijs" . "9.27")
   0.39 ("python-ipaddress" . "1.0.22")
   0.39 ("python-anyjson" . "0.3.3")
   0.39 ("python-ruamel.yaml" . "0.15.83")
   0.39 ("python-schema" . "0.5.0")
   0.39 ("python-rply" . "0.7.5")
   0.39 ("python2-bcrypt" . "3.1.7")
   0.39 ("python-hy" . "0.13.0")
   0.39 ("python-backports-abc" . "0.5")
   0.39 ("python-lzo" . "1.12")
   0.39 ("python-mako" . "1.1.0")
   0.39 ("python2-zope-testing" . "4.6.2")
   0.39 ("ghc-data-accessor-transformers" . "0.2.1.7")
   0.39 ("python2-ipaddress" . "1.0.22")
   0.39 ("ghc-basement" . "0.0.8")
   0.39 ("transset-df" . "6")
   0.39 ("perl-xml-xpath" . "1.44")
   0.39 ("python2-llfuse" . "1.3.5")
   0.39 ("python2-rfc3987" . "1.3.7")
   0.39 ("python-waf" . "2.0.11")
   0.39 ("alive" . "2.0.2")
   0.39 ("python2-pysqlite" . "2.8.3")
   0.39 ("python-attrs-bootstrap" . "19.1.0")
   0.39 ("python-coverage" . "4.5.3")
   0.39 ("ghc-utility-ht" . "0.0.14")
   0.39 ("xmlrpc-c" . "1.43.08")
   0.39 ("xcmsdb" . "1.0.5")
   0.39 ("python-mando" . "0.6.4")
   0.39 ("python2-astor" . "0.7.1")
   0.39 ("python2-zope-i18nmessageid" . "4.0.3")
   0.39 ("python-feedparser" . "5.2.1")
   0.39 ("guile-xosd" . "0.2.1")
   0.39 ("xlsfonts" . "1.0.6")
   0.39 ("python2-incremental" . "17.5.0")
   0.39 ("perl-moosex-markasmethods" . "0.15")
   0.39 ("python2-zope-event" . "4.4")
   0.39 ("bash-minimal" . "5.0.7")
   0.39 ("git-minimal" . "2.24.0")
   0.39 ("ghc-filemanip" . "0.3.6.3")
   0.39 ("python-six-bootstrap" . "1.12.0")
   0.39 ("python2-tabulate" . "0.7.7")
   0.39 ("tevent" . "0.10.1")
   0.39 ("python2-pickleshare" . "0.7.5")
   0.39 ("python2-parse-type" . "0.4.2")
   0.39 ("python2-invoke" . "1.1.0")
   0.39 ("python-pylzma" . "0.5.0")
   0.39 ("perl-class-c3-componentised" . "1.001002")
   0.39 ("python2-sphinxcontrib-websupport" . "1.1.0")
   0.39 ("python-pylev" . "1.3.0")
   0.39 ("emacs-ahungry-theme" . "1.10.0")
   0.39 ("python-beautifulsoup4" . "4.7.1")
   0.39 ("perl-lingua-en-inflect-phrase" . "0.20")
   0.39 ("libwindowswm" . "1.0.1")
   0.39 ("ghc-vector-th-unbox" . "0.2.1.6")
   0.39 ("python2-pyflakes" . "0.8.1")
   0.39 ("python2-httplib2" . "0.9.2")
   0.39 ("iftop" . "1.0pre4")
   0.39 ("python-magic" . "0.4.15")
   0.39 ("python2-xlib" . "0.14")
   0.39 ("perl-uri-fetch" . "0.13")
   0.39 ("python-dateutil" . "2.8.0")
   0.39 ("python-args" . "0.1.0")
   0.39 ("python-tornado" . "5.1.1")
   0.39 ("crawl" . "0.24.0")
   0.39 ("python-docutils" . "0.14")
   0.39 ("nss-pam-ldapd" . "0.9.11")
   0.39 ("perl-xml-compile" . "1.63")
   0.39 ("batctl" . "2019.3")
   0.39 ("libbs2b" . "3.1.0")
   0.39 ("python2-pyasn1" . "0.4.3")
   0.39 ("python2-uritemplate" . "3.0.0")
   0.39 ("python-pypdf2" . "1.26.0")
   0.39 ("linux-libre" . "4.4.202")
   0.39 ("dkimproxy" . "1.4.1")
   0.39 ("xcb-util-cursor" . "0.1.3")
   0.39 ("idle3-tools" . "0.9.1")
   0.39 ("xbacklight" . "1.2.3")
   0.39 ("python-pyparsing" . "2.3.1")
   0.39 ("python-mailmanclient" . "3.1.1")
   0.39 ("ghc-stringsearch" . "0.3.6.6")
   0.39 ("python2-cloudpickle" . "0.6.1")
   0.39 ("upx" . "3.94")
   0.39 ("python2-olefile" . "0.46")
   0.39 ("python2-cookies" . "2.2.1")
   0.38 ("xkill" . "1.0.5")
   0.38 ("python-contextlib2" . "0.5.5")
   0.38 ("minimap2" . "2.10")
   0.38 ("gcc-toolchain" . "4.9.4")
   0.38 ("python2-pgpdump" . "1.5")
   0.38 ("python-pyjwt" . "1.7.1")
   0.38 ("python-datrie" . "0.8")
   0.38 ("python-pyasn1" . "0.4.3")
   0.38 ("perl-test-utf8" . "1.01")
   0.38 ("perl-data-visitor" . "0.30")
   0.38 ("python2-blinker" . "1.4")
   0.38 ("cl-net.didierverna.asdf-flv" . "2.1")
   0.38 ("python-zope-event" . "4.4")
   0.38 ("python2-mutagen" . "1.38")
   0.38 ("python2-element-tree" . "1.2.6")
   0.38 ("tclxml" . "3.2")
   0.38 ("sent" . "1")
   0.38 ("xeyes" . "1.1.2")
   0.38 ("python2-validate-email" . "1.3")
   0.38 ("lilv" . "0.24.6")
   0.38 ("python-protobuf" . "3.10.0")
   0.38 ("python-vine" . "1.1.4")
   0.38 ("ghc-microlens-mtl" . "0.1.11.1")
   0.38 ("libgc" . "7.6.12")
   0.38 ("perl-sql-abstract" . "1.86")
   0.38 ("perl-moosex-params-validate" . "0.21")
   0.38 ("bazaar" . "2.7.0")
   0.38 ("ruby-asciidoctor" . "1.5.7.1")
   0.38 ("bubblewrap" . "0.3.3")
   0.38 ("ghc-byteorder" . "1.0.4")
   0.38 ("python-billiard" . "3.5.0.5")
   0.38 ("twm" . "1.0.10")
   0.38 ("perl-file-desktopentry" . "0.22")
   0.38 ("python2-pyzmq" . "17.1.2")
   0.38 ("perl-data-sexpression" . "0.41")
   0.38 ("menumaker" . "0.99.10")
   0.38 ("python2-vobject" . "0.9.5")
   0.38 ("python-promise" . "0.4.2")
   0.38 ("python2-jinja2" . "2.10.1")
   0.38 ("xcursorgen" . "1.0.7")
   0.38 ("python-progressbar33" . "2.4")
   0.38 ("python-pygments" . "2.4.2")
   0.38 ("unbound" . "1.9.4")
   0.38 ("ruby-rails-html-sanitizer" . "1.0.4")
   0.38 ("astyle" . "3.1")
   0.38 ("xcb-util" . "0.4.0")
   0.38 ("perl-moo-2" . "2.003006")
   0.38 ("python-backports-csv" . "1.0.5")
   0.38 ("ghc-transformers-base" . "0.4.5.2")
   0.38 ("ghc-executable-path" . "0.0.3.1")
   0.38 ("python2-idna" . "2.8")
   0.38 ("python2-pytest-catchlog" . "1.2.2")
   0.38 ("gsasl" . "1.8.0")
   0.38 ("python-pyzmq" . "17.1.2")
   0.38 ("xwd" . "1.0.7")
   0.38 ("python2-clint" . "0.5.1")
   0.38 ("python2-tblib" . "1.3.2")
   0.38 ("python-sympy" . "1.1.1")
   0.38 ("python-pycares" . "2.3.0")
   0.38 ("gcide" . "0.52")
   0.38 ("libxft" . "2.3.3")
   0.38 ("perl-data-tumbler" . "0.010")
   0.38 ("python2-parso" . "0.5.1")
   0.38 ("perl-test-mockobject" . "1.20191002")
   0.38 ("python-rope" . "0.11.0")
   0.38 ("p7zip" . "16.02")
   0.38 ("perl-path-iterator-rule" . "1.014")
   0.38 ("python2-markupsafe" . "1.1.1")
   0.38 ("perl-moox-late" . "0.015")
   0.38 ("ghc-html" . "1.0.1.2")
   0.38 ("perl-test-writevariants" . "0.014")
   0.38 ("perl-file-basedir" . "0.08")
   0.38 ("python-ilinkedlist" . "0.4.0")
   0.38 ("perl-test-cleannamespaces" . "0.24")
   0.38 ("python2-verboselogs" . "1.7")
   0.38 ("python-markupsafe" . "1.1.1")
   0.38 ("python-xmltodict" . "0.11.0")
   0.38 ("ifuse" . "1.1.3")
   0.38 ("perl-class-load" . "0.25")
   0.38 ("python-pandocfilters" . "1.4.2")
   0.38 ("python2-whatever" . "0.5")
   0.38 ("ghc-erf" . "2.0.0.0")
   0.38 ("ghc-readable" . "0.3.1")
   0.38 ("memtest86+" . "5.01")
   0.38 ("ocaml" . "4.07.1")
   0.38 ("ghc-concatenative" . "1.0.1")
   0.38 ("static-binaries-tarball" . "0")
   0.38 ("python2-packaging" . "19.0")
   0.38 ("glibc" . "2.22")
   0.38 ("xvinfo" . "1.1.4")
   0.38 ("umoci" . "0.4.4")
   0.38 ("ghc-listlike" . "4.6.2")
   0.38 ("perl-xml-dom" . "1.46")
   0.38 ("bash-completion" . "2.8")
   0.38 ("scrollkeeper" . "0.3.14")
   0.38 ("ghc-geniplate-mirror" . "0.7.6")
   0.38 ("mingw-w64-i686" . "6.0.0")
   0.38 ("unclutter" . "8")
   0.38 ("perl-class-accessor-grouped" . "0.10014")
   0.38 ("python2-pytest-cov" . "2.6.1")
   0.38 ("freehdl" . "0.0.8")
   0.38 ("ghc-regex-compat-tdfa" . "0.95.1.4")
   0.38 ("ghc-pqueue" . "1.4.1.1")
   0.38 ("xautolock" . "2.2")
   0.38 ("libxfixes" . "5.0.3")
   0.38 ("perl-moosex-types" . "0.45")
   0.38 ("python2-nose2" . "0.6.5")
   0.38 ("perl-html-template" . "2.97")
   0.38 ("btrfs-progs-static" . "5.3.1")
   0.37 ("gmp-ecm" . "7.0.4")
   0.37 ("ghc-utf8-string" . "1.0.1.1")
   0.37 ("ghc-unexceptionalio" . "0.4.0")
   0.37 ("perl-term-progressbar-quiet" . "0.31")
   0.37 ("mailutils" . "3.7")
   0.37 ("guile-ncurses-with-gpm" . "3.0")
   0.37 ("perl-http-request-ascgi" . "1.2")
   0.37 ("perl-xs-object-magic" . "0.04")
   0.37 ("seqan" . "2.4.0")
   0.37 ("rclone" . "1.50.1")
   0.37 ("python2-msgpack" . "0.5.6")
   0.37 ("ghc-storable-complex" . "0.2.2")
   0.37 ("highlight" . "3.54")
   0.37 ("python-pytest-flake8" . "1.0.4")
   0.37 ("stfl" . "0.24")
   0.37 ("xcb-util-renderutil" . "0.3.9")
   0.37 ("sipwitch" . "1.9.15")
   0.37 ("perl-json-any" . "1.39")
   0.37 ("glibc" . "2.24")
   0.37 ("python2-zeroconf" . "0.19.1")
   0.37 ("xdpyinfo" . "1.3.2")
   0.37 ("libvterm" . "0.1.1")
   0.37 ("libressl" . "2.7.4")
   0.37 ("linux-libre-headers" . "4.19.84")
   0.37 ("python2-xopen" . "0.5.0")
   0.37 ("ghc-chell-quickcheck" . "0.2.5.1")
   0.37 ("btrfs-progs" . "5.3.1")
   0.37 ("libdmx" . "1.1.4")
   0.37 ("python-discover" . "0.4.0")
   0.37 ("libxcb" . "1.13")
   0.37 ("inetutils" . "1.9.4")
   0.37 ("xwud" . "1.0.5")
   0.37 ("python-ldap" . "3.1.0")
   0.37 ("rxvt-unicode" . "9.22")
   0.37 ("xmlstarlet" . "1.6.1")
   0.37 ("moka-icon-theme" . "5.4.0")
   0.37 ("gloox" . "1.0.22")
   0.37 ("ghc-logict" . "0.6.0.2")
   0.37 ("font-adobe-source-code-pro" . "2.030R-ro-1.050R-it")
   0.37 ("xmlto" . "0.0.28")
   0.37 ("python-parsedatetime" . "2.4")
   0.37 ("libxxf86dga" . "1.1.5")
   0.37 ("python2-testrepository-bootstrap" . "0.0.20")
   0.37 ("glibc" . "2.26.105-g0890d5379c")
   0.37 ("font-xfree86-type1" . "1.0.4")
   0.37 ("mingw-w64-x86_64-winpthreads" . "6.0.0")
   0.37 ("python2-paste" . "3.0.6")
   0.37 ("perl-moox-cmd" . "0.017")
   0.37 ("ddrescue" . "1.24")
   0.37 ("perl-html-tree" . "5.07")
   0.37 ("libtommath" . "1.2.0")
   0.37 ("perl-data-perl" . "0.002009")
   0.37 ("ghc-bytestring-builder" . "0.10.8.1.0")
   0.37 ("ngircd" . "25")
   0.37 ("hunspell-dict-en-us" . "2018.04.16")
   0.37 ("libxxf86vm" . "1.1.4")
   0.37 ("python-flexmock" . "0.10.4")
   0.37 ("ddclient" . "3.9.0")
   0.37 ("emacs-better-defaults" . "0.1.3")
   0.37 ("ghc-language-c" . "0.8.1")
   0.37 ("python2-sqlalchemy" . "1.3.3")
   0.37 ("xosd" . "2.2.14")
   0.37 ("ruby-creole" . "0.5.0")
   0.37 ("aspell-dict-el" . "0.08-0")
   0.37 ("python-sqlparse" . "0.2.4")
   0.37 ("vcftools" . "0.1.15")
   0.37 ("perl-http-negotiate" . "6.01")
   0.37 ("python-multidict" . "4.2.0")
   0.37 ("emacs-ediprolog" . "1.2")
   0.37 ("python2-furl" . "0.5.6")
   0.37 ("ghc-easy-file" . "0.2.2")
   0.37 ("editres" . "1.0.7")
   0.37 ("gcc-objc" . "4.9.4")
   0.37 ("ghc-setlocale" . "1.0.0.8")
   0.37 ("ghc-tagsoup" . "0.14.6")
   0.37 ("perl-namespace-autoclean" . "0.29")
   0.37 ("libx11" . "1.6.8")
   0.37 ("uwsgi" . "2.0.18")
   0.37 ("ghc-old-time" . "1.1.0.3")
   0.37 ("perl-http-parser-xs" . "0.17")
   0.37 ("slock" . "1.4")
   0.37 ("ghc-data-default-instances-dlist" . "0.0.1")
   0.37 ("libtar" . "1.2.20")
   0.37 ("fstrm" . "0.3.2")
   0.37 ("python-mutagen" . "1.38")
   0.37 ("ucommon" . "7.0.0")
   0.37 ("python2-orderedmultidict" . "0.7.11")
   0.37 ("ruby-pg" . "1.1.4")
   0.37 ("perl-text-bibtex" . "0.85")
   0.37 ("steghide" . "0.5.1")
   0.37 ("memcached" . "1.5.16")
   0.37 ("xkeyboard-config" . "2.27")
   0.37 ("libxinerama" . "1.1.4")
   0.37 ("mate-icon-theme" . "1.22.0")
   0.37 ("libbluray" . "1.0.2")
   0.37 ("gnome-backgrounds" . "3.30.0")
   0.37 ("python-whatever" . "0.5")
   0.37 ("python2-testscenarios-bootstrap" . "0.5.0")
   0.37 ("tidy" . "20091223")
   0.37 ("perl-inline-c" . "0.78")
   0.37 ("aspell-dict-he" . "1.0-0")
   0.37 ("font-schumacher-misc" . "1.1.2")
   0.37 ("cpphs" . "1.20.8")
   0.37 ("python-sphinx-me" . "0.3")
   0.37 ("wavpack" . "5.1.0")
   0.37 ("dnscrypt-proxy" . "1.9.5")
   0.37 ("python-socksipy-branch" . "1.01")
   0.37 ("python2-email-validator" . "1.0.2")
   0.37 ("python2-nose-timer" . "0.7.5")
   0.36 ("xlsatoms" . "1.1.3")
   0.36 ("python-docker-pycreds" . "0.4.0")
   0.36 ("f2fs-tools" . "1.12.0")
   0.36 ("python2-flake8" . "2.5.5")
   0.36 ("glibc" . "2.25")
   0.36 ("perl-mail-dkim" . "0.58")
   0.36 ("lv2" . "1.16.0")
   0.36 ("python-kitchen" . "1.2.5")
   0.36 ("elpa" . "2018.11.001")
   0.36 ("xaos" . "3.6")
   0.36 ("xcb-util-image" . "0.4.0")
   0.36 ("gumbo-parser" . "0.10.1")
   0.36 ("libpsl" . "0.21.0")
   0.36 ("python2-paramunittest" . "0.2")
   0.36 ("python2-pytest-runner" . "2.12.2")
   0.36 ("python-bcrypt" . "3.1.7")
   0.36 ("guile-static-stripped" . "2.2.6")
   0.36 ("python-webencodings" . "0.5.1")
   0.36 ("dssi" . "1.1.1")
   0.36 ("cowsay" . "3.04")
   0.36 ("python2-unittest2" . "1.1.0")
   0.36 ("python-onetimepass" . "1.0.1")
   0.36 ("python2-protobuf" . "3.10.0")
   0.36 ("perl-string-toidentifier-en" . "0.12")
   0.36 ("ghc-monadrandom" . "0.5.1.1")
   0.36 ("ghc-iwlib" . "0.1.0")
   0.36 ("xlsclients" . "1.1.4")
   0.36 ("perl-mail-spf" . "2.9.0")
   0.36 ("ghc-th-reify-many" . "0.1.8")
   0.36 ("libtommath" . "1.1.0")
   0.36 ("ghc-prelude-extras" . "0.4.0.3")
   0.36 ("python2-pytest-mock" . "1.10.1")
   0.36 ("ghc-th-expand-syns" . "0.4.4.0")
   0.36 ("ruby-tzinfo" . "1.2.4")
   0.36 ("angband" . "4.2.0")
   0.36 ("perl-xml-libxslt" . "1.96")
   0.36 ("python-singledispatch" . "3.4.0.3")
   0.36 ("btar" . "1.1.1")
   0.36 ("ruby-notiffany" . "0.1.1")
   0.36 ("python-pybtex" . "0.22.2")
   0.36 ("python2-clyent" . "1.2.1")
   0.36 ("python-sockjs-tornado" . "1.0.6")
   0.36 ("python2-feedparser" . "5.2.1")
   0.36 ("perl-xml-twig" . "3.52")
   0.36 ("ruby-code-statistics" . "0.2.13")
   0.36 ("epic5" . "2.0.1")
   0.36 ("babl" . "0.1.72")
   0.36 ("python-zope-component" . "4.3.0")
   0.36 ("nginx-documentation" . "2019-03-01-2345-7ef11708457e")
   0.36 ("faba-icon-theme" . "4.3")
   0.36 ("perl-html-form" . "6.05")
   0.36 ("adns" . "1.5.1")
   0.36 ("ruby-rspec-expectations" . "3.8.2")
   0.36 ("perl-moox" . "0.101")
   0.36 ("aspell-dict-be" . "0.01")
   0.36 ("python-protobuf" . "3.6.1")
   0.36 ("ruby-net-http-digest-auth" . "1.4.1")
   0.36 ("source-highlight" . "3.1.8")
   0.36 ("python2-websocket-client" . "0.54.0")
   0.36 ("libxmu" . "1.1.3")
   0.36 ("xrandr" . "1.5.1")
   0.36 ("ruby-debug-inspector" . "0.0.3")
   0.36 ("binutils-gold" . "2.32")
   0.36 ("python-openid-cla" . "1.2")
   0.36 ("liba52" . "0.7.4")
   0.36 ("perl-throwable" . "0.200013")
   0.36 ("aspell-dict-de" . "20161207-7-0")
   0.36 ("python2-sure" . "1.4.11")
   0.36 ("ghc-colour" . "2.3.4")
   0.36 ("gfortran" . "4.9.4")
   0.36 ("gcc-objc" . "6.5.0")
   0.36 ("jo" . "1.2")
   0.36 ("ruby-lemon" . "0.9.1")
   0.36 ("xauth" . "1.1")
   0.36 ("font-dec-misc" . "1.0.3")
   0.36 ("aspell-dict-eo" . "2.1.20000225a-2")
   0.36 ("acct" . "6.6.4")
   0.36 ("ghc-hs-bibutils" . "6.6.0.0")
   0.36 ("tvtime" . "1.0.11")
   0.36 ("font-anonymous-pro" . "1.002")
   0.36 ("python-enum34" . "1.1.6")
   0.36 ("ghc-alex" . "3.2.4")
   0.36 ("elfutils" . "0.176")
   0.36 ("libzen" . "0.4.37")
   0.36 ("ghc-data-default-class" . "0.1.2.0")
   0.36 ("ruby-bio-kseq" . "0.0.2")
   0.36 ("bioruby" . "1.5.2")
   0.36 ("sratom" . "0.6.4")
   0.36 ("emacs-easy-kill" . "0.9.3")
   0.36 ("python-tmx" . "1.10")
   0.36 ("ghc-data-default-instances-old-locale" . "0.0.1")
   0.36 ("ruby-rspec-core" . "2.14.8")
   0.36 ("ghc-string-qq" . "0.0.2")
   0.36 ("ruby-minitest-bacon" . "1.0.3")
   0.36 ("dovecot" . "2.3.8")
   0.36 ("emacs-webfeeder" . "1.0.0")
   0.36 ("ghc-auto-update" . "0.1.4")
   0.36 ("ghc-data-default-instances-containers" . "0.0.1")
   0.36 ("testdisk" . "7.1")
   0.36 ("python2-flexmock" . "0.10.4")
   0.36 ("yelp-xsl" . "3.32.1")
   0.36 ("ghc-abstract-par" . "0.3.3")
   0.36 ("ghc-hxt-charproperties" . "9.2.0.1")
   0.36 ("rakudo" . "2019.03.1")
   0.36 ("ghc-regex-tdfa-text" . "1.0.0.3")
   0.36 ("libxrender" . "0.9.10")
   0.36 ("python-pydocstyle" . "3.0.0")
   0.36 ("ghc-th-abstraction" . "0.2.8.0")
   0.36 ("python-dockerpty" . "0.4.1")
   0.36 ("avr-binutils" . "2.32")
   0.36 ("hscolour" . "1.24.4")
   0.35 ("xorriso" . "1.5.2")
   0.35 ("librep" . "0.92.7")
   0.35 ("ghc-monad-control" . "1.0.2.3")
   0.35 ("ghc-refact" . "0.3.0.2")
   0.35 ("ghc-hspec-expectations" . "0.8.2")
   0.35 ("perl-html-tidy" . "1.60")
   0.35 ("ruby-oj" . "3.6.7")
   0.35 ("ghc-annotated-wl-pprint" . "0.7.0")
   0.35 ("xkbevd" . "1.1.4")
   0.35 ("recordmydesktop" . "0.3.8.1")
   0.35 ("python2-pyliblo" . "0.10.0")
   0.35 ("ruby-slop" . "3.6.0")
   0.35 ("serveez" . "0.2.2")
   0.35 ("ghc-syb" . "0.7")
   0.35 ("python-babel" . "2.7.0")
   0.35 ("perl-log-any-adapter-log4perl" . "0.09")
   0.35 ("perl-html-tableextract" . "2.13")
   0.35 ("python-flake8" . "2.5.5")
   0.35 ("glibc-utf8-locales" . "2.29")
   0.35 ("ghc-digest" . "0.0.1.2")
   0.35 ("python2-bz2file" . "0.98")
   0.35 ("xev" . "1.2.3")
   0.35 ("python-pylast" . "2.0.0")
   0.35 ("ruby_version" . "1.0.1")
   0.35 ("ruby-commander" . "4.4.7")
   0.35 ("python-webassets" . "0.12.1")
   0.35 ("guile-aa-tree" . "3.1.1")
   0.35 ("gcc-objc++" . "4.9.4")
   0.35 ("orcus" . "0.14.1")
   0.35 ("smartmontools" . "7.0")
   0.35 ("ghc-generics-sop" . "0.3.2.0")
   0.35 ("ghc-tagged" . "0.8.5")
   0.35 ("libisofs" . "1.5.2")
   0.35 ("mtools" . "4.0.23")
   0.35 ("ruby-asciimath" . "1.0.4")
   0.35 ("python2-webencodings" . "0.5.1")
   0.35 ("nethack" . "3.6.2")
   0.35 ("python-parse-type" . "0.4.2")
   0.35 ("gash" . "0.1")
   0.35 ("ruby-redcloth" . "4.3.2")
   0.35 ("python-feedgenerator" . "1.9")
   0.35 ("python2-zope-schema" . "4.4.2")
   0.35 ("gdb" . "8.2.1")
   0.35 ("gf2x" . "1.2")
   0.35 ("autobuild" . "5.3")
   0.35 ("gauche" . "0.9.7")
   0.35 ("ruby-mime-types-data" . "3.2016.0521")
   0.35 ("aspell-dict-nn" . "0.50.1-1")
   0.35 ("python2-html5lib" . "1.0.1")
   0.35 ("shntool" . "3.0.10")
   0.35 ("guile-8sync" . "0.4.2")
   0.35 ("ghc-haskell-lexer" . "1.0.2")
   0.35 ("ghc-parallel" . "3.2.2.0")
   0.35 ("perl-http-cookiejar" . "0.008")
   0.35 ("python2-tox" . "2.8.1")
   0.35 ("perl-role-tiny" . "2.001001")
   0.35 ("python-bsddb3" . "6.2.6")
   0.35 ("perl-carp-assert-more" . "1.16")
   0.35 ("extundelete" . "0.2.4")
   0.35 ("guile3.0-bytestructures" . "1.0.6")
   0.35 ("ghc-old-locale" . "1.0.0.7")
   0.35 ("prosody" . "0.11.3")
   0.35 ("ghc-setenv" . "0.1.1.3")
   0.35 ("abc" . "0.0-1-5ae4b975c")
   0.35 ("ruby-hashdiff" . "0.3.8")
   0.35 ("ghc-ed25519" . "0.0.5.0")
   0.35 ("ruby-byebug" . "9.0.6")
   0.35 ("opensmtpd" . "6.0.3p1")
   0.35 ("xfsprogs" . "5.2.1")
   0.35 ("perl-xml-compile-cache" . "1.06")
   0.35 ("ghc-polyparse" . "1.12")
   0.35 ("faad2" . "2.8.6")
   0.35 ("guile-wisp" . "1.0.2")
   0.35 ("perl-text-table" . "1.133")
   0.35 ("perl-feed-find" . "0.07")
   0.35 ("python-glances" . "3.1.1")
   0.35 ("libxshmfence" . "1.3")
   0.35 ("python-jsonrpclib-pelix" . "0.3.2")
   0.35 ("nullmailer" . "2.2")
   0.35 ("python-podcastparser" . "0.6.4")
   0.35 ("autogen" . "5.18.16")
   0.35 ("python2-oauth2client" . "4.0.0")
   0.35 ("ruby-pathutil" . "0.16.1")
   0.35 ("nagios" . "4.3.4")
   0.35 ("minizip" . "1.2.11")
   0.35 ("ghc-xml" . "1.3.14")
   0.35 ("perl-mime-tools" . "5.509")
   0.35 ("rename" . "1.10")
   0.35 ("python-traitlets" . "4.3.3")
   0.35 ("perl-log-report" . "1.10")
   0.35 ("python2-testlib" . "0.6.5")
   0.35 ("ruby-shindo" . "0.3.8")
   0.35 ("diction" . "1.11")
   0.35 ("patch" . "2.7.6")
   0.35 ("ruby-mercenary" . "0.3.6")
   0.35 ("cfitsio" . "3.47")
   0.35 ("perl-moox-file-configdir" . "0.007")
   0.35 ("font-adobe100dpi" . "1.0.3")
   0.35 ("python-pytest-runner" . "2.12.2")
   0.35 ("ghc-transformers-compat" . "0.6.2")
   0.35 ("rev-plugins" . "0.7.1")
   0.35 ("ghc-base-prelude" . "1.3")
   0.35 ("perl-http-tiny" . "0.076")
   0.35 ("ruby-ci-reporter" . "2.0.0")
   0.35 ("ghc-unbounded-delays" . "0.1.1.0")
   0.35 ("ghc-smallcheck" . "1.1.5")
   0.35 ("xcb-util-keysyms" . "0.4.0")
   0.35 ("perl-test-version" . "2.09")
   0.35 ("pcc" . "20170109")
   0.35 ("libnet6" . "1.3.14")
   0.35 ("aspell-dict-ru" . "0.99f7-1")
   0.35 ("python2-apsw" . "3.20.1-r1")
   0.35 ("ghc-safe" . "0.3.17")
   0.35 ("python-websocket-client" . "0.54.0")
   0.35 ("cd-discid" . "1.4")
   0.35 ("python-pytest-mock" . "1.10.1")
   0.35 ("python-cheetah" . "3.1.0")
   0.35 ("python-editor" . "0.5")
   0.35 ("ruby-shellany" . "0.0.1")
   0.35 ("jack" . "0.125.0")
   0.35 ("libb2" . "0.98.1")
   0.35 ("ghc-microlens" . "0.4.9.1")
   0.35 ("ghc-file-embed" . "0.0.10.1")
   0.35 ("net-base" . "5.3")
   0.35 ("ghc-data-accessor" . "0.2.2.7")
   0.35 ("ghc-libffi" . "0.1")
   0.35 ("dev86" . "0.16.21")
   0.35 ("cdparanoia" . "10.2")
   0.35 ("libspatialindex" . "1.8.5")
   0.35 ("ghc-fmlist" . "0.9.2")
   0.35 ("python2-hiredis" . "0.2.0")
   0.35 ("perl-http-server-simple" . "0.52")
   0.35 ("lout" . "3.40")
   0.35 ("python2-lzstring" . "1.0.4")
   0.35 ("python-netaddr" . "0.7.19")
   0.35 ("lzo" . "2.10")
   0.35 ("ghostscript" . "9.27")
   0.35 ("ruby-rake-compiler" . "1.0.4")
   0.35 ("libmodplug" . "0.8.9.0")
   0.35 ("guile-reader" . "0.6.2")
   0.35 ("ghc-edisonapi" . "1.3.1")
   0.35 ("aspell-dict-pt-pt" . "20190329-1-0")
   0.35 ("bind" . "9.14.7")
   0.35 ("ruby-rsync" . "1.0.9")
   0.35 ("python2-pyaes" . "1.6.1")
   0.35 ("frotz" . "2.44")
   0.35 ("python-libsvm" . "3.23")
   0.35 ("python-oauth2client" . "4.0.0")
   0.35 ("python-pydiff" . "0.2")
   0.35 ("python-setuptools" . "41.0.1")
   0.35 ("ghc-parsec-numbers" . "0.1.0")
   0.35 ("perl-io-socket-inet6" . "2.72")
   0.35 ("diffutils" . "3.7")
   0.35 ("ruby-rouge" . "2.2.1")
   0.35 ("ruby-simplecov-html" . "0.10.2")
   0.35 ("python2-distutils-extra" . "2.38")
   0.35 ("perl-devel-partialdump" . "0.18")
   0.35 ("pbzip2" . "1.1.13")
   0.35 ("hungrycat" . "0.4.1")
   0.35 ("emacs-xpm" . "1.0.4")
   0.35 ("lxmenu-data" . "0.1.5")
   0.35 ("python-six" . "1.12.0")
   0.35 ("ghc" . "8.0.2")
   0.35 ("python-yarl" . "1.1.1")
   0.34 ("perl-apache-logformat-compiler" . "0.35")
   0.34 ("endlessh" . "1.0")
   0.34 ("ghc-unix-time" . "0.3.8")
   0.34 ("python-pyinotify" . "0.9.6")
   0.34 ("ghc-ansi-terminal" . "0.8.0.4")
   0.34 ("aragorn" . "1.2.38")
   0.34 ("perl-time-duration-parse" . "0.14")
   0.34 ("python-pypairix" . "0.3.6")
   0.34 ("commoncpp" . "1.8.1")
   0.34 ("python2-sql" . "1.0.0")
   0.34 ("perl-email-abstract" . "3.008")
   0.34 ("python2-cython" . "0.29.13")
   0.34 ("perl-cgi-simple" . "1.22")
   0.34 ("glulxe" . "0.5.4")
   0.34 ("emacs-seq" . "2.20")
   0.34 ("boost-python3" . "1.70.0")
   0.34 ("python-pyev" . "0.9.0")
   0.34 ("python-email-validator" . "1.0.2")
   0.34 ("ruby-arel" . "9.0.0")
   0.34 ("ruby-cucumber-expressions" . "6.0.1")
   0.34 ("stunnel" . "5.55")
   0.34 ("python2-fakeredis" . "0.8.2")
   0.34 ("glibc" . "2.23")
   0.34 ("aspell-dict-nl" . "0.50-2")
   0.34 ("python2-glances" . "3.1.1")
   0.34 ("sloccount" . "2.26")
   0.34 ("ruby-options" . "2.3.2")
   0.34 ("font-misc-cyrillic" . "1.0.3")
   0.34 ("python-pythondialog" . "3.4.0")
   0.34 ("perl-module-build-xsutil" . "0.16")
   0.34 ("python-simplegeneric" . "0.8.1")
   0.34 ("ruby-bio-logger" . "1.0.1")
   0.34 ("python-cytoolz" . "0.9.0.1")
   0.34 ("aspell-dict-uk" . "1.4.0-0")
   0.34 ("python-backpack" . "0.1")
   0.34 ("python-psycopg2" . "2.7.7")
   0.34 ("xgamma" . "1.0.6")
   0.34 ("python2-ipaddr" . "2.1.11")
   0.34 ("cunit" . "2.1-3")
   0.34 ("perl-http-parser" . "0.06")
   0.34 ("apr-util" . "1.6.1")
   0.34 ("tomsfastmath" . "0.13.1")
   0.34 ("abootimg" . "0.6")
   0.34 ("mingw-w64-i686-winpthreads" . "6.0.0")
   0.34 ("ruby-markaby" . "0.9.0")
   0.34 ("prout" . "0.2")
   0.34 ("bc" . "1.07.1")
   0.34 ("ghc-entropy" . "0.4.1.4")
   0.34 ("python-case" . "1.5.3")
   0.34 ("python2-isodate" . "0.6.0")
   0.34 ("graphios" . "2.0.3")
   0.34 ("ruby-sequel" . "4.49.0")
   0.34 ("ruby-rc4" . "0.1.5")
   0.34 ("linux-pam" . "1.2.1")
   0.34 ("python2-pkgconfig" . "1.3.1")
   0.34 ("python2-pastedeploy" . "1.5.2")
   0.34 ("python-apsw" . "3.20.1-r1")
   0.34 ("perl-net-dns-resolver-programmable" . "v0.003")
   0.34 ("doc++" . "3.4.10")
   0.34 ("ruby-ascii85" . "1.0.3")
   0.34 ("gcc-objc" . "4.8.5")
   0.34 ("python-pytest-pep8" . "1.0.6")
   0.34 ("perl-xml-sax" . "1.02")
   0.34 ("hdf5" . "1.10.4")
   0.34 ("ruby-wayback-machine-downloader" . "2.2.1")
   0.34 ("libice" . "1.0.10")
   0.34 ("perl-path-tiny" . "0.108")
   0.34 ("cups-minimal" . "2.2.11")
   0.34 ("htop" . "2.2.0")
   0.34 ("python2-sphinx-alabaster-theme" . "0.7.12")
   0.34 ("python-capturer" . "2.4")
   0.34 ("bogofilter" . "1.2.4")
   0.34 ("python-cssutils" . "1.0.2")
   0.34 ("python-ddt" . "1.1.3")
   0.34 ("python-pycodestyle" . "2.5.0")
   0.34 ("acpica" . "20190816")
   0.34 ("ruby-ae" . "1.8.2")
   0.34 ("perl-benchmark-timer" . "0.7102")
   0.34 ("toybox" . "0.8.1")
   0.34 ("signify" . "27")
   0.34 ("python2-markdown" . "3.1.1")
   0.34 ("font-un" . "1.0.2-080608")
   0.34 ("mcron" . "1.1.2")
   0.34 ("plotutils" . "2.6")
   0.34 ("python2-m2crypto" . "0.35.2")
   0.34 ("sdcc" . "3.7.0")
   0.34 ("cyrus-sasl" . "2.1.27")
   0.34 ("ghc-cmdargs" . "0.10.20")
   0.34 ("libnl" . "3.5.0")
   0.34 ("ruby-ox" . "2.6.0")
   0.34 ("gnugo" . "3.8")
   0.34 ("ruby-rspec-mocks" . "2.14.6")
   0.34 ("perl-module-build-withxspp" . "0.14")
   0.34 ("python-m2crypto" . "0.35.2")
   0.34 ("ruby-rubytest-cli" . "0.2.0")
   0.34 ("ruby-progressbar" . "1.10.0")
   0.34 ("guile" . "1.8.8")
   0.34 ("glibc" . "2.28")
   0.34 ("perl-clone-choose" . "0.010")
   0.34 ("libevdev" . "1.5.9")
   0.34 ("ruby-rb-fsevent" . "0.10.3")
   0.34 ("ruby-yajl-ruby" . "1.4.1")
   0.34 ("ruby-command-line-reporter" . "3.3.6")
   0.34 ("perl-term-size-any" . "0.002")
   0.34 ("blists" . "2.0")
   0.34 ("ntp" . "4.2.8p13")
   0.34 ("perl-db-file" . "1.852")
   0.34 ("obby" . "0.4.8")
   0.34 ("python-fudge" . "0.9.6")
   0.34 ("aspell-dict-da" . "1.4.42-1")
   0.34 ("python2-fixtures-bootstrap" . "3.0.0")
   0.34 ("ruby-puma" . "3.9.1")
   0.34 ("autocutsel" . "0.10.0")
   0.34 ("python2-dj-database-url" . "0.4.2")
   0.34 ("minicom" . "2.7.1")
   0.34 ("miscfiles" . "1.5")
   0.34 ("emacs-transpose-frame" . "0.1.0")
   0.34 ("fe" . "2.0")
   0.34 ("ghc" . "7.10.2")
   0.34 ("remind" . "3.1.16")
   0.34 ("python2-six" . "1.12.0")
   0.34 ("fftwf" . "3.3.8")
   0.34 ("zile" . "2.4.14")
   0.34 ("python-lazy-object-proxy" . "1.4.2")
   0.34 ("emacs-relint" . "1.11")
   0.34 ("libgc-back-pointers" . "7.6.12")
   0.34 ("ruby-brass" . "1.2.1")
   0.34 ("gcc-toolchain" . "6.5.0")
   0.34 ("python-pyicu" . "2.3.1")
   0.34 ("qtfaststart" . "1.8")
   0.34 ("h5check" . "2.0.1")
   0.34 ("python2-fudge" . "0.9.6")
   0.34 ("glibc" . "2.29")
   0.34 ("font-inconsolata" . "0.80")
   0.34 ("ruby-daemons" . "1.2.5")
   0.34 ("dirvish" . "1.2.1")
   0.34 ("xbindkeys" . "1.8.6")
   0.34 ("python2-mnemonic" . "0.19")
   0.34 ("ruby-slop" . "4.5.0")
   0.34 ("libpng-apng" . "1.6.28")
   0.34 ("python-schedule" . "0.4.3")
   0.34 ("hugs" . "Sep2006")
   0.34 ("linux-libre-headers" . "4.4.202")
   0.34 ("perl-gssapi" . "0.28")
   0.34 ("xmodmap" . "1.0.10")
   0.34 ("python-cryptography-vectors" . "2.7")
   0.34 ("pcre" . "8.43")
   0.34 ("ruby-netrc" . "0.11.0")
   0.34 ("gs-fonts" . "8.11")
   0.34 ("perl-crypt-openssl-rsa" . "0.31")
   0.34 ("font-sil-charis" . "5.000")
   0.34 ("ste-plugins" . "0.0.2")
   0.34 ("ruby-nokogiri" . "1.10.5")
   0.34 ("gnucap" . "20171003")
   0.34 ("perl-modern-perl" . "1.20181021")
   0.34 ("python-hyperlink" . "19.0.0")
   0.34 ("python-tokenize-rt" . "2.0.1")
   0.34 ("python-ansi2html" . "1.2.0")
   0.34 ("perl-sub-quote" . "2.006006")
   0.34 ("perl-memoize" . "1.03")
   0.34 ("python2-wtforms" . "2.1")
   0.34 ("nqp" . "2019.03")
   0.34 ("zita-convolver" . "4.0.3")
   0.34 ("xpdf" . "3.04")
   0.34 ("python-webob" . "1.5.1")
   0.34 ("tinyscheme" . "1.41")
   0.34 ("perl-file-configdir" . "0.021")
   0.34 ("python2-ruamel.ordereddict" . "0.4.9")
   0.34 ("python2-mailmanclient" . "3.1.1")
   0.34 ("ruby-contracts" . "0.16.0")
   0.34 ("x86-energy-perf-policy" . "5.3.11")
   0.34 ("emacs-extend-smime" . "3.3")
   0.34 ("youtube-dl" . "2019.11.05")
   0.34 ("python-commandlines" . "0.4.1")
   0.34 ("emacs-on-screen" . "1.3.3")
   0.34 ("perl-test-differences" . "0.67")
   0.34 ("srt2vtt" . "0.1")
   0.34 ("libircclient" . "1.10")
   0.34 ("perl-moox-handlesvia" . "0.001008")
   0.34 ("tcpdump" . "4.9.3")
   0.34 ("perl-context-preserve" . "0.03")
   0.34 ("niftilib" . "2.0.0")
   0.34 ("python2-feedgenerator" . "1.9")
   0.34 ("complexity" . "1.10")
   0.34 ("fraggenescan" . "1.30")
   0.34 ("perl-file-find-rule-perl" . "1.15")
   0.34 ("dwm" . "6.2")
   0.34 ("cxxtest" . "4.4")
   0.34 ("ruby-multi-test" . "0.1.2")
   0.34 ("python2-straight-plugin" . "1.4.1")
   0.34 ("talloc-static" . "2.3.0")
   0.34 ("tor" . "0.4.1.6")
   0.34 ("perl-tree-simple" . "1.33")
   0.34 ("gss" . "1.0.3")
   0.34 ("cmatrix" . "1.2a")
   0.34 ("python-lzstring" . "1.0.4")
   0.34 ("perl-yaml" . "1.29")
   0.34 ("guile-json" . "1.2.0")
   0.34 ("quilt" . "0.66")
   0.33 ("ruby-que" . "1.0.0.beta3")
   0.33 ("itstool" . "2.0.6")
   0.33 ("ruby-text" . "1.3.1")
   0.33 ("ruby-mimemagic" . "0.3.2")
   0.33 ("iverilog" . "10.3")
   0.33 ("python2-fusepy" . "2.0.4")
   0.33 ("arm-none-eabi-nano-toolchain" . "6.5.0")
   0.33 ("perl-libtime-period" . "1.20")
   0.33 ("python-tzlocal" . "1.5.1")
   0.33 ("guile-lib" . "0.2.6.1")
   0.33 ("perl-lwp-useragent-determined" . "1.07")
   0.33 ("ruby-bindex" . "0.5.0")
   0.33 ("perl-data-record" . "0.02")
   0.33 ("python-pyasn1-modules" . "0.2.2")
   0.33 ("ascii2binary" . "2.14")
   0.33 ("ruby-command-line-reporter" . "4.0.0")
   0.33 ("apr" . "1.6.5")
   0.33 ("perl-cpan-meta-check" . "0.014")
   0.33 ("python-sphinx-alabaster-theme" . "0.7.12")
   0.33 ("ruby-em-websocket" . "0.5.1")
   0.33 ("gap" . "4.10.2")
   0.33 ("gsm" . "1.0.18")
   0.33 ("emacs-rpm-spec-mode" . "0.16")
   0.33 ("dmenu" . "4.9")
   0.33 ("perl-crypt-openssl-guess" . "0.11")
   0.33 ("python-pycrypto" . "2.6.1")
   0.33 ("tcc" . "0.9.27")
   0.33 ("hashcat-utils" . "1.9")
   0.33 ("perl-convert-binhex" . "1.125")
   0.33 ("perl-bareword-filehandles" . "0.006")
   0.33 ("gcc-objc++" . "4.8.5")
   0.33 ("python-precis-i18n" . "1.0.0")
   0.33 ("perl-net-ssleay" . "1.88")
   0.33 ("libmikmod" . "3.3.11.1")
   0.33 ("sng" . "1.1.0")
   0.33 ("python2-zope-location" . "4.0.3")
   0.33 ("zita-resampler" . "1.3.0")
   0.33 ("emacs-aggressive-indent" . "1.8.3")
   0.33 ("emacs-ggtags" . "0.8.13")
   0.33 ("perl-specio" . "0.38")
   0.33 ("ruby-diffy" . "3.2.1")
   0.33 ("ruby-multipart-post" . "2.0.0")
   0.33 ("xmlsec" . "1.2.29")
   0.33 ("usb-modeswitch" . "2.5.2")
   0.33 ("cl-md5" . "2.0.4")
   0.33 ("python-pypeg2" . "2.15.2")
   0.33 ("coreutils" . "8.31")
   0.33 ("perl-libintl-perl" . "1.31")
   0.33 ("perl-universal-require" . "0.18")
   0.33 ("perl-extutils-libbuilder" . "0.08")
   0.33 ("perl-uri-find" . "20160806")
   0.33 ("windowmaker" . "0.95.8")
   0.33 ("python2-html5-parser" . "0.4.5")
   0.33 ("libtermkey" . "0.21.1")
   0.33 ("perl-net-http" . "6.19")
   0.33 ("emacs-znc" . "0.0.2")
   0.33 ("perl-lingua-en-tagger" . "0.30")
   0.33 ("p11-kit" . "0.23.18.1")
   0.33 ("noice" . "0.8")
   0.33 ("ed" . "1.15")
   0.33 ("talloc" . "2.3.0")
   0.33 ("emacs-geiser" . "0.10")
   0.33 ("perl-sub-exporter" . "0.987")
   0.33 ("python-traceback2" . "1.4.0")
   0.33 ("colordiff" . "1.0.18")
   0.33 ("perl-digest-md5-file" . "0.08")
   0.33 ("oksh" . "0.5.9")
   0.33 ("perl-log-report-optional" . "1.06")
   0.33 ("sendmail" . "8.15.2")
   0.33 ("log4cpp" . "1.1.3")
   0.33 ("skroll" . "0.6")
   0.33 ("perl-file-readbackwards" . "1.05")
   0.33 ("sqlite" . "3.28.0")
   0.33 ("perl-test-most" . "0.35")
   0.33 ("gnuastro" . "0.10")
   0.33 ("tidyp" . "1.04")
   0.33 ("ruby-rspec-rerun" . "1.1.0")
   0.33 ("perl-gd" . "2.71")
   0.33 ("perl-io-socket-ssl" . "2.066")
   0.33 ("the-silver-searcher" . "2.2.0")
   0.33 ("libfontenc" . "1.1.4")
   0.33 ("perl-net-idn-encode" . "2.500")
   0.33 ("python2-pyasn1-modules" . "0.2.2")
   0.33 ("fping" . "4.2")
   0.33 ("wcalc" . "2.5")
   0.33 ("gperf" . "3.1")
   0.33 ("python2-linecache2" . "1.0.0")
   0.33 ("perl-email-mime-contenttype" . "1.022")
   0.33 ("aalib" . "1.4rc5")
   0.33 ("perl-file-sharedir" . "1.116")
   0.33 ("autoconf" . "2.64")
   0.33 ("perl-text-glob" . "0.11")
   0.33 ("openssl" . "1.0.2s")
   0.33 ("atlas" . "3.10.3")
   0.33 ("automake" . "1.16.1")
   0.33 ("guile-libctl" . "4.2.0")
   0.33 ("ifstatus" . "1.1.0")
   0.33 ("python2-pycryptodome" . "3.7.3")
   0.33 ("ruby-xml-simple" . "1.1.5")
   0.33 ("perl-env-path" . "0.19")
   0.33 ("4ti2" . "1.6.9")
   0.33 ("perl-package-stash" . "0.38")
   0.33 ("python2-zope-component" . "4.3.0")
   0.33 ("emacs-rfcview" . "0.13")
   0.33 ("python-pycountry" . "18.5.26")
   0.33 ("emacs-default-encrypt" . "4.4")
   0.33 ("python-toolz" . "0.9.0")
   0.33 ("ppl" . "1.2")
   0.33 ("libuv" . "1.30.1")
   0.33 ("xapian" . "1.4.13")
   0.33 ("ruby-http-parser.rb" . "0.6.0")
   0.33 ("ecl-s-xml" . "3")
   0.33 ("emacs-agda2-mode" . "2.5.4.2")
   0.33 ("libxres" . "1.2.0")
   0.33 ("hunspell-dict-fr-moderne" . "6.2")
   0.33 ("emacs-bbdb" . "3.1.2")
   0.33 ("t1lib" . "5.1.2")
   0.33 ("perl-test-cpan-meta" . "0.25")
   0.33 ("perl-time-mock" . "v0.0.2")
   0.33 ("libtommath" . "1.0.1")
   0.33 ("libmp3splt" . "0.9.2")
   0.33 ("font-iosevka" . "2.2.0")
   0.33 ("linux-libre-headers" . "4.14.154")
   0.33 ("perl-devel-overloadinfo" . "0.005")
   0.33 ("python2-socksipy-branch" . "1.01")
   0.33 ("font-misc-misc" . "1.1.2")
   0.33 ("aspell-dict-fr" . "0.50-3")
   0.33 ("python-kazoo" . "2.4.0")
   0.33 ("scotch" . "6.0.6")
   0.33 ("perl-lwp-protocol-https" . "6.07")
   0.33 ("libmp4v2" . "2.0.0")
   0.33 ("guile-aspell" . "0.4")
   0.33 ("ruby-websocket-driver" . "0.7.0")
   0.33 ("yelp-tools" . "3.28.0")
   0.33 ("ruby-formatador" . "0.2.5")
   0.33 ("rubberband" . "1.8.2")
   0.33 ("perl-carp" . "1.50")
   0.33 ("smproxy" . "1.0.6")
   0.33 ("munge" . "0.5.13")
   0.33 ("python-webtest" . "2.0.33")
   0.33 ("antiword" . "0.37")
   0.33 ("enscript" . "1.6.6")
   0.33 ("ruby-nenv" . "0.3.0")
   0.33 ("perl-test2-plugin-nowarnings" . "0.06")
   0.33 ("nsgenbind" . "0.7")
   0.33 ("tftp-hpa" . "5.2")
   0.33 ("ircii" . "20151120")
   0.33 ("font-sony-misc" . "1.0.3")
   0.33 ("ruby-bump" . "0.7.0")
   0.33 ("help2man" . "1.47.11")
   0.33 ("emacs-load-relative" . "1.3.1")
   0.33 ("python-mpd2" . "0.5.5")
   0.33 ("tcalc" . "2.0")
   0.33 ("oil-shell" . "0.6.0")
   0.33 ("hunspell-dict-en-gb-ize" . "2018.04.16")
   0.33 ("ruby-rr" . "1.2.1")
   0.33 ("optipng" . "0.7.7")
   0.33 ("ruby-cucumber-tag-expressions" . "1.1.1")
   0.33 ("ruby-clap" . "1.0.0")
   0.33 ("python2-argparse" . "1.4.0")
   0.33 ("ruby-minitest-moar" . "0.0.4")
   0.33 ("font-mutt-misc" . "1.0.3")
   0.33 ("perl-date-simple" . "3.03")
   0.33 ("msr-tools" . "1.3")
   0.33 ("emacs-loc-changes" . "1.2")
   0.33 ("font-isas-misc" . "1.0.3")
   0.33 ("perl-net-dns-native" . "0.22")
   0.33 ("python-cycler" . "0.10.0")
   0.33 ("imake" . "1.0.8")
   0.33 ("python-isodate" . "0.6.0")
   0.33 ("ruby-simplecov" . "0.17.0")
   0.33 ("perl-search-xapian" . "1.2.25.2")
   0.33 ("perl-czplib" . "1.0.5")
   0.33 ("perl-sub-info" . "0.002")
   0.33 ("autoconf" . "2.13")
   0.33 ("guile-sjson" . "0.2.1")
   0.33 ("python-extras" . "1.0.0")
   0.33 ("fluxbox" . "1.3.7")
   0.33 ("emacs-pretty-mode" . "2.0.3")
   0.33 ("gcc-toolchain" . "5.5.0")
   0.33 ("darkstat" . "3.0.719")
   0.33 ("wine-minimal" . "4.0.2")
   0.33 ("perl-parse-recdescent" . "1.967015")
   0.33 ("hunspell-dict-en-ca" . "2018.04.16")
   0.33 ("python-netifaces" . "0.10.7")
   0.33 ("perl-test-checkdeps" . "0.010")
   0.33 ("perl-config-any" . "0.32")
   0.33 ("python2-stdnum" . "1.8.1")
   0.33 ("libpaper" . "1.1.24")
   0.33 ("libsndfile" . "1.0.28")
   0.33 ("ruby" . "2.5.3")
   0.33 ("emacs-rsw-elisp" . "1.0.5")
   0.33 ("python-nltk" . "3.2.1")
   0.33 ("python-spake2" . "0.8")
   0.33 ("python2-passlib" . "1.7.1")
   0.33 ("libsm" . "1.2.3")
   0.33 ("gnucobol" . "2.2")
   0.33 ("perl-file-which" . "1.23")
   0.33 ("perl-email-mime-encodings" . "1.315")
   0.33 ("python2-xlrd" . "1.2.0")
   0.33 ("slib" . "3b5")
   0.33 ("emacs-spinner" . "1.7.3")
   0.33 ("gd" . "2.2.5")
   0.33 ("perl-regexp-util" . "0.003")
   0.33 ("patchutils" . "0.3.4")
   0.33 ("python2-q" . "2.6")
   0.33 ("protobuf" . "2.6.1")
   0.33 ("cppi" . "1.18")
   0.33 ("libotf" . "0.9.16")
   0.33 ("emacs-adaptive-wrap" . "0.5.1")
   0.33 ("pem" . "0.7.9")
   0.33 ("tegola" . "0.7.0")
   0.32 ("amb-plugins" . "0.8.1")
   0.32 ("python-zope-schema" . "4.4.2")
   0.32 ("perl-devel-symdump" . "2.18")
   0.32 ("gettext-minimal" . "0.20.1")
   0.32 ("coreutils-minimal" . "8.31")
   0.32 ("lua-lpeg" . "1.0.2")
   0.32 ("autotalent" . "0.2")
   0.32 ("vamp" . "2.6")
   0.32 ("ruby-systemu" . "2.6.5")
   0.32 ("isc-dhcp" . "4.4.1")
   0.32 ("protobuf" . "3.6.1")
   0.32 ("prosody-smacks" . "0-1.67f1d1f")
   0.32 ("guile-dbd-sqlite3" . "2.1.6")
   0.32 ("ppp" . "2.4.7")
   0.32 ("libxkbcommon" . "0.8.4")
   0.32 ("emacs-ert-expectations" . "0.2")
   0.32 ("perl-test-file" . "1.443")
   0.32 ("emacs-minimal" . "26.3")
   0.32 ("python2-configargparse" . "0.14.0")
   0.32 ("python2-ply" . "3.10")
   0.32 ("font-cns11643-swjz" . "1")
   0.32 ("docbook-xml" . "4.4")
   0.32 ("python-scrypt" . "0.8.7")
   0.32 ("ruby-rubypants" . "0.6.0")
   0.32 ("emacs-m-buffer-el" . "0.15")
   0.32 ("screen" . "4.7.0")
   0.32 ("minixml" . "2.12")
   0.32 ("libotr" . "4.1.1")
   0.32 ("polipo" . "1.1.1")
   0.32 ("httpd" . "2.4.41")
   0.32 ("perl-eval-closure" . "0.14")
   0.32 ("ruby-net-http-persistent" . "3.0.0")
   0.32 ("tk" . "8.6.9.1")
   0.32 ("yapet" . "1.1")
   0.32 ("perl-mixin-linewise" . "0.108")
   0.32 ("autoconf" . "2.69")
   0.32 ("libcdio-paranoia" . "10.2+0.94+2")
   0.32 ("docbook-xml" . "4.2")
   0.32 ("woof" . "2012-05-31")
   0.32 ("perl-number-format" . "1.75")
   0.32 ("usb-modeswitch-data" . "20170806")
   0.32 ("perl-crypt-rc4" . "2.02")
   0.32 ("emacs-xr" . "1.13")
   0.32 ("libspectre" . "0.2.8")
   0.32 ("perl-module-build-tiny" . "0.039")
   0.32 ("python2-quex" . "0.67.3")
   0.32 ("bristol" . "0.60.11")
   0.32 ("scron" . "0.4")
   0.32 ("stoken" . "0.92")
   0.32 ("perl-test-deep" . "1.120")
   0.32 ("font-cronyx-cyrillic" . "1.0.3")
   0.32 ("libxcomposite" . "0.4.5")
   0.32 ("alsa-utils" . "1.1.9")
   0.32 ("python2-minimal" . "2.7.16")
   0.32 ("perl-email-address-xs" . "1.04")
   0.32 ("python2-lazy-object-proxy" . "1.4.2")
   0.32 ("wificurse" . "0.3.9")
   0.32 ("ruby-colorator" . "1.1.0")
   0.32 ("xsetroot" . "1.1.2")
   0.32 ("ruby-fivemat" . "1.3.7")
   0.32 ("perl-regexp-pattern" . "0.2.8")
   0.32 ("ruby-diff-lcs" . "1.3")
   0.32 ("perl-test2-bundle-extended" . "0.000072")
   0.32 ("vbindiff" . "3.0_beta5")
   0.32 ("perl-xml-tokeparser" . "0.05")
   0.32 ("util-macros" . "1.19.2")
   0.32 ("noweb" . "2.11b")
   0.32 ("printproto" . "1.0.5")
   0.32 ("libopusenc" . "0.2.1")
   0.32 ("ruby-builder" . "3.2.3")
   0.32 ("libcddb" . "1.3.2")
   0.32 ("perl-http-body" . "1.22")
   0.32 ("ruby-connection-pool" . "2.2.2")
   0.32 ("fasthenry" . "3.0-12Nov96")
   0.32 ("frotz-dumb-terminal" . "2.44")
   0.32 ("perl-importer" . "0.025")
   0.32 ("perl-ref-util-xs" . "0.117")
   0.32 ("perl-boolean" . "0.46")
   0.32 ("perl-variable-magic" . "0.62")
   0.32 ("perl-universal-can" . "1.20140328")
   0.32 ("python-ukpostcodeparser" . "1.0.3")
   0.32 ("python2-pyroute2" . "0.5.6")
   0.32 ("nginx" . "1.17.5")
   0.32 ("python2-pyrfc3339" . "1.1")
   0.32 ("gcc-objc++" . "8.3.0")
   0.32 ("entr" . "4.2")
   0.32 ("hicolor-icon-theme" . "0.17")
   0.32 ("lshw" . "B.02.18")
   0.32 ("python2-snowballstemmer" . "1.2.1")
   0.32 ("bison" . "3.4.1")
   0.32 ("liblinebreak" . "2.1")
   0.32 ("ruby-forwardable-extended" . "2.6.0")
   0.32 ("gnome-icon-theme" . "3.12.0")
   0.32 ("libpciaccess" . "0.16")
   0.32 ("emacs-cyberpunk-theme" . "1.19")
   0.32 ("perl-text-simpletable" . "2.07")
   0.32 ("perl-font-ttf" . "1.06")
   0.32 ("netcat" . "0.7.1")
   0.32 ("perl-test-class" . "0.50")
   0.32 ("perl-snowball-norwegian" . "1.2")
   0.32 ("python2-peewee" . "2.10.2")
   0.32 ("libwapcaplet" . "0.4.2")
   0.32 ("cabextract" . "1.9.1")
   0.32 ("perl-lingua-en-findnumber" . "1.32")
   0.32 ("python2-lz4" . "0.10.1")
   0.32 ("ruby-contest" . "0.1.3")
   0.32 ("icon-naming-utils" . "0.8.90")
   0.32 ("perl-number-range" . "0.12")
   0.32 ("python-cssselect" . "0.9.2")
   0.32 ("fastjar" . "0.98")
   0.32 ("python2-pylev" . "1.3.0")
   0.32 ("perl-module-manifest" . "1.09")
   0.32 ("premake" . "4.3")
   0.32 ("font-winitzki-cyrillic" . "1.0.3")
   0.32 ("libffcall" . "2.1")
   0.32 ("perl-socket6" . "0.29")
   0.32 ("python2-cssutils" . "1.0.2")
   0.32 ("escpr" . "1.6.30")
   0.32 ("python2-bottle" . "0.12.13")
   0.32 ("quagga" . "1.2.4")
   0.32 ("npth" . "1.6")
   0.32 ("perl-devel-lexalias" . "0.05")
   0.32 ("ruby-rainbow" . "3.0.0")
   0.32 ("evilwm" . "1.1.1")
   0.32 ("python2-slowaes" . "0.1a1")
   0.32 ("python-tempdir" . "0.7.1")
   0.32 ("perl-net-dns-resolver-mock" . "1.20171219")
   0.32 ("ruby-cliver" . "0.3.2")
   0.32 ("tar" . "1.32")
   0.32 ("python2-zope-exceptions" . "4.0.8")
   0.32 ("ruby-cucumber-wire" . "0.0.1")
   0.32 ("perl-guard" . "1.023")
   0.32 ("fribidi" . "1.0.5")
   0.32 ("python-drmaa" . "0.7.7")
   0.32 ("libtirpc" . "1.1.4")
   0.32 ("qrencode" . "4.0.2")
   0.32 ("acpid" . "2.0.32")
   0.32 ("openblas-ilp64" . "0.3.6")
   0.32 ("lirc" . "0.10.1")
   0.32 ("nasm" . "2.14.02")
   0.32 ("httping" . "2.5")
   0.32 ("perl-carp-assert" . "0.21")
   0.32 ("lcms" . "2.9")
   0.32 ("sfarklib" . "2.24")
   0.32 ("fossil" . "2.8")
   0.32 ("perl-moo" . "1.007000")
   0.32 ("ruby-rubytest" . "0.8.1")
   0.32 ("trio" . "1.16")
   0.32 ("perl-term-encoding" . "0.02")
   0.32 ("hunspell-dict-fr" . "6.2")
   0.32 ("ruby-tins" . "1.15.0")
   0.32 ("python2-zope-interface" . "4.6.0")
   0.32 ("pixman" . "0.38.4")
   0.32 ("gfortran" . "4.8.5")
   0.32 ("python2-pyechonest" . "9.0.0")
   0.32 ("ruby-useragent" . "0.16.8")
   0.32 ("guile3.0-json" . "3.2.0")
   0.32 ("perl-spiffy" . "0.46")
   0.32 ("python-itsdangerous" . "1.1.0")
   0.32 ("gama" . "2.07")
   0.32 ("perl-module-find" . "0.13")
   0.32 ("python-peewee" . "2.10.2")
   0.32 ("libfakekey" . "0.1")
   0.32 ("lua5.1-filesystem" . "1.6.3")
   0.32 ("dbacl" . "1.14")
   0.32 ("ruby-minitest-sprint" . "1.1.0")
   0.32 ("pixz" . "1.0.6")
   0.32 ("python2-diff-match-patch" . "20121119")
   0.32 ("python2-enum34" . "1.1.6")
   0.32 ("bash" . "5.0.7")
   0.32 ("nqc" . "3.1.r6")
   0.32 ("libmpcdec" . "1.2.6")
   0.32 ("slang" . "2.3.2")
   0.32 ("ruby-prawn-manual-builder" . "0.3.0")
   0.32 ("python-rst2ansi" . "0.1.5")
   0.32 ("ruby-blankslate" . "3.1.3")
   0.32 ("perl-html-scrubber" . "0.17")
   0.32 ("readline" . "6.2")
   0.32 ("perl-package-deprecationmanager" . "0.17")
   0.32 ("perl-net-psyc" . "1.3")
   0.32 ("perl-x11-protocol-other" . "30")
   0.32 ("mozjs" . "17.0.0")
   0.32 ("woff-tools" . "2009.10.04")
   0.32 ("libntlm" . "1.5")
   0.32 ("motti" . "3.1.1")
   0.32 ("mpop" . "1.4.5")
   0.32 ("python2-pyxb" . "1.2.6")
   0.32 ("lzop" . "1.04")
   0.32 ("python2-capturer" . "2.4")
   0.32 ("tinyproxy" . "1.10.0")
   0.32 ("cliquer" . "1.21")
   0.32 ("ruby-turn" . "0.9.7")
   0.32 ("perl-text-csv" . "2.00")
   0.32 ("python-pafy" . "0.5.3.1")
   0.32 ("python2-setuptools-scm" . "3.2.0")
   0.32 ("sqlite-with-column-metadata" . "3.28.0")
   0.32 ("fortify-headers" . "1.0")
   0.32 ("perl-data-dumper" . "2.173")
   0.32 ("python2-six-bootstrap" . "1.12.0")
   0.32 ("texinfo" . "5.2")
   0.32 ("ruby-mini-portile" . "0.6.2")
   0.32 ("iodine" . "0.7.0")
   0.32 ("ruby-minitest-focus" . "1.1.2")
   0.32 ("mingw-w64-x86_64" . "6.0.0")
   0.32 ("perl-geo-ip" . "1.51")
   0.32 ("enchive" . "3.4")
   0.32 ("perl-string-shellquote" . "1.04")
   0.32 ("ruby-power-assert" . "0.2.7")
   0.32 ("python-vcversioner" . "2.16.0.0")
   0.32 ("anthy" . "9100h")
   0.32 ("python-monotonic" . "1.5")
   0.32 ("perl-pegex" . "0.70")
   0.32 ("portaudio" . "190600.20161030")
   0.32 ("xorg-sgml-doctools" . "1.11")
   0.32 ("libtiff" . "4.0.10")
   0.32 ("tree" . "1.8.0")
   0.32 ("0ad-data" . "0.0.23b-alpha")
   0.32 ("perl-xml-libxml-simple" . "0.99")
   0.32 ("gcc-objc" . "8.3.0")
   0.32 ("mesa-headers" . "19.1.4")
   0.32 ("python-annoy" . "1.15.1")
   0.32 ("python2-backports-csv" . "1.0.5")
   0.32 ("font-screen-cyrillic" . "1.0.4")
   0.32 ("bdb" . "4.8.30")
   0.32 ("python-autopep8" . "1.3.5")
   0.32 ("g2reverb" . "0.7.1")
   0.32 ("smalltalk" . "3.2.5")
   0.32 ("ruby-json" . "2.1.0")
   0.32 ("python2-discover" . "0.4.0")
   0.32 ("perltidy" . "20180220")
   0.32 ("ruby-erubi" . "1.8.0")
   0.32 ("perl-module-pluggable" . "5.2")
   0.32 ("libburn" . "1.5.0")
   0.32 ("python-ed25519" . "1.4")
   0.32 ("python-toolshed" . "0.4.6")
   0.32 ("hdparm" . "9.58")
   0.32 ("perl-class-inspector" . "1.36")
   0.32 ("vco-plugins" . "0.3.0")
   0.32 ("python2-ed25519" . "1.4")
   0.32 ("txt2man" . "1.6.0")
   0.32 ("discount" . "2.2.4")
   0.32 ("perl-sub-uplevel" . "0.24")
   0.32 ("nyacc" . "0.86.0")
   0.32 ("zsh" . "5.6.2")
   0.32 ("perl-tie-cycle" . "1.225")
   0.32 ("font-util" . "1.3.2")
   0.32 ("gnushogi" . "1.4.2")
   0.32 ("dfu-util" . "0.9")
   0.32 ("python-pyodbc-c" . "3.1.4")
   0.32 ("ruby-qed" . "2.9.2")
   0.32 ("python2-wcwidth" . "0.1.7")
   0.32 ("lzlib" . "1.11")
   0.31 ("ruby-thread-safe" . "0.3.6")
   0.31 ("tinyxml" . "2.6.2")
   0.31 ("python-pyaes" . "1.6.1")
   0.31 ("ruby-mustermann" . "1.0.3")
   0.31 ("ruby-faraday" . "0.15.4")
   0.31 ("ltrace" . "0.7.3")
   0.31 ("perl-extutils-config" . "0.008")
   0.31 ("python2-graphviz" . "0.8.4")
   0.31 ("liblo" . "0.30")
   0.31 ("udunits" . "2.2.26")
   0.31 ("perl-tree-simple-visitorfactory" . "0.15")
   0.31 ("python-toml" . "0.9.4")
   0.31 ("nvi" . "1.81.6")
   0.31 ("guile3.0-irregex" . "0.9.6")
   0.31 ("perl-module-implementation" . "0.09")
   0.31 ("python2-pbr-minimal" . "3.0.1")
   0.31 ("emacs-sml-mode" . "6.9")
   0.31 ("python2-extras" . "1.0.0")
   0.31 ("ruby-rouge" . "3.2.1")
   0.31 ("ding-libs" . "0.6.1")
   0.31 ("ruby-mathn" . "0.1.0")
   0.31 ("ruby-heredoc-unindent" . "1.2.0")
   0.31 ("python-chai" . "1.1.2")
   0.31 ("ragel" . "6.10")
   0.31 ("perl-io-stringy" . "2.111")
   0.31 ("perl-io-captureoutput" . "1.1105")
   0.31 ("emacs-key-chord" . "0.6")
   0.31 ("guile-irregex" . "0.9.6")
   0.31 ("perl-www-robotrules" . "6.02")
   0.31 ("lua-filesystem" . "1.6.3")
   0.31 ("libdca" . "0.0.6")
   0.31 ("perl-exception-class" . "1.44")
   0.31 ("emacs-ebuild-mode" . "1.37")
   0.31 ("perl-class-singleton" . "1.5")
   0.31 ("libhdate" . "1.6.02")
   0.31 ("perl-email-mime" . "1.946")
   0.31 ("ruby-afm" . "0.2.2")
   0.31 ("ruby-minitest-tu-shim" . "1.3.3")
   0.31 ("python2-jsonpointer" . "1.10")
   0.31 ("python-editorconfig" . "0.12.2")
   0.31 ("ruby-bacon" . "1.2.0")
   0.31 ("s6-dns" . "2.3.0.2")
   0.31 ("perl-lingua-stem-snowball-da" . "1.01")
   0.31 ("python2-psutil" . "5.6.5")
   0.31 ("libraw1394" . "2.1.2")
   0.31 ("perl-io-interactive" . "1.022")
   0.31 ("ruby-thor" . "0.19.4")
   0.31 ("guile-fibers" . "1.0.0")
   0.31 ("oniguruma" . "6.9.3")
   0.31 ("libltdl" . "2.4.6")
   0.31 ("groff-minimal" . "1.22.4")
   0.31 ("emacs-visual-fill-column" . "1.11")
   0.31 ("scm" . "5f2")
   0.31 ("httptunnel" . "3.3")
   0.31 ("python-wtforms" . "2.1")
   0.31 ("libart-lgpl" . "2.3.21")
   0.31 ("ruby-permutation" . "0.1.8")
   0.31 ("tre" . "0.8.0")
   0.31 ("python2-monotonic" . "1.5")
   0.31 ("perl-shell-command" . "0.06")
   0.31 ("radare2" . "3.5.1")
   0.31 ("perl-type-tie" . "0.014")
   0.31 ("font-alias" . "1.0.3")
   0.31 ("perl-devel-leak" . "0.03")
   0.31 ("perl-encode-locale" . "1.05")
   0.31 ("ruby-erubis" . "2.7.0")
   0.31 ("python2-jsonpatch" . "0.4")
   0.31 ("nghttp2" . "1.39.1")
   0.31 ("mkfontscale" . "1.2.1")
   0.31 ("python2-pycrypto" . "2.6.1")
   0.31 ("iotop" . "0.6")
   0.31 ("ruby-hashie" . "3.6.0")
   0.31 ("lcalc" . "1.23")
   0.31 ("python-pyqrcode" . "1.2.1")
   0.31 ("exosip" . "4.1.0")
   0.31 ("perl-test-requiresinternet" . "0.05")
   0.31 ("perl-class-unload" . "0.08")
   0.31 ("tdb" . "1.4.2")
   0.31 ("guile-file-names" . "0.2")
   0.31 ("python-isoweek" . "1.3.3")
   0.31 ("ruby-gherkin" . "5.1.0")
   0.31 ("python2-ua-parser" . "0.8.0")
   0.31 ("libsigc++" . "2.10.2")
   0.31 ("python2-future" . "0.17.1")
   0.31 ("which" . "2.21")
   0.31 ("skalibs" . "2.8.1.0")
   0.31 ("perl-super" . "1.20190531")
   0.31 ("perl-moox-strictconstructor" . "0.010")
   0.31 ("nlopt" . "2.4.2")
   0.31 ("perl-exporter-tiny" . "1.002001")
   0.31 ("python2-blessings" . "1.6.1")
   0.31 ("binutils" . "2.32")
   0.31 ("python-blessings" . "1.6.1")
   0.31 ("hello" . "2.10")
   0.31 ("perl-types-serialiser" . "1.0")
   0.31 ("protobuf" . "3.10.1")
   0.31 ("gnu-efi" . "3.0.9")
   0.31 ("python-pretend" . "1.0.9")
   0.31 ("liblcf" . "0.6.0")
   0.31 ("libgpg-error" . "1.36")
   0.31 ("python-minimal-wrapper" . "3.7.4")
   0.31 ("python-paramunittest" . "0.2")
   0.31 ("emacs-org-noter" . "1.3.0")
   0.31 ("s6-networking" . "2.3.0.4")
   0.31 ("perl-module-scandeps" . "1.27")
   0.31 ("python2-pycountry" . "18.5.26")
   0.31 ("python2-dogtail" . "0.9.9")
   0.31 ("librdkafka" . "0.9.1")
   0.31 ("font-adobe75dpi" . "1.0.3")
   0.31 ("ruby-rdoc" . "6.0.4")
   0.31 ("python-pycryptodome" . "3.7.3")
   0.31 ("font-misc-ethiopic" . "1.0.3")
   0.31 ("perl-time-piece" . "1.3203")
   0.31 ("python2-netifaces" . "0.10.7")
   0.31 ("trueprint" . "5.4")
   0.31 ("python-mistune" . "0.8.4")
   0.31 ("libjpeg" . "9c")
   0.31 ("python2-cryptography-vectors" . "2.7")
   0.31 ("perl-role-tiny" . "1.003004")
   0.31 ("mitlm" . "0.4.2")
   0.31 ("libsvm" . "3.23")
   0.31 ("xdg-user-dirs" . "0.17")
   0.31 ("speexdsp" . "1.2.0")
   0.31 ("python2-pluggy" . "0.11.0")
   0.31 ("xmessage" . "1.0.5")
   0.31 ("html-xml-utils" . "7.7")
   0.31 ("ruby-racc" . "1.4.14")
   0.31 ("otf2" . "2.1.1")
   0.31 ("glibc" . "2.27")
   0.31 ("teensy-loader-cli" . "2.1-1.f289b7a")
   0.31 ("libbdplus" . "0.1.2")
   0.31 ("zstd" . "1.4.2")
   0.31 ("stress" . "1.0.4")
   0.31 ("emacs-irfc" . "20130824.507-1")
   0.31 ("perl-file-slurp-tiny" . "0.004")
   0.31 ("font-adobe-source-sans-pro" . "2.040R-ro-1.090R-it")
   0.31 ("python2-docutils" . "0.14")
   0.31 ("wireguard" . "0.0.20191012")
   0.31 ("mozjs" . "24.2.0")
   0.31 ("libcap-ng" . "0.7.10")
   0.31 ("python2-mechanize" . "0.2.5")
   0.31 ("font-iosevka-slab" . "2.2.0")
   0.31 ("guile-debbugs" . "0.0.2")
   0.31 ("jpegoptim" . "1.4.6")
   0.31 ("python2-ttystatus" . "0.36")
   0.31 ("libdvdnav" . "6.0.1")
   0.31 ("python2-simplejson" . "3.14.0")
   0.31 ("font-dosis" . "1.7")
   0.31 ("wakelan" . "1.1")
   0.31 ("perl-test-manifest" . "2.021")
   0.31 ("guile" . "2.2.6")
   0.31 ("python-elementpath" . "1.2.0")
   0.31 ("x11perf" . "1.6.1")
   0.31 ("python2-pyro" . "3.16")
   0.31 ("xorg-rgb" . "1.0.6")
   0.31 ("ruby-highline" . "2.0.1")
   0.31 ("emacs-no-x" . "26.3")
   0.31 ("python-cov-core" . "1.15.0")
   0.31 ("python2-libxml2" . "2.9.9")
   0.31 ("glibc-locales" . "2.29")
   0.31 ("etl" . "1.2.2")
   0.31 ("openfst" . "1.7.2")
   0.31 ("libxext" . "1.3.4")
   0.31 ("python2-pyodbc" . "4.0.27")
   0.31 ("perl-yaml-tiny" . "1.73")
   0.31 ("python-setuptools-scm" . "3.3.3")
   0.31 ("freetype" . "2.10.1")
   0.31 ("blind" . "1.1")
   0.31 ("perl-moox-types-mooselike" . "0.29")
   0.31 ("s6-rc" . "0.5.0.0")
   0.31 ("python-zope-testing" . "4.6.2")
   0.31 ("python2-publicsuffix" . "1.1.0")
   0.31 ("python2-wrapt" . "1.11.2")
   0.31 ("aspell-dict-sv" . "0.51-0")
   0.31 ("guile-json" . "3.2.0")
   0.31 ("re2c" . "1.2.1")
   0.31 ("python2-certifi" . "2019.3.9")
   0.31 ("libplist" . "2.0.0")
   0.31 ("font-lohit" . "20140220")
   0.31 ("emacs-shift-number" . "0.1")
   0.31 ("guile-email" . "0.2.1")
   0.31 ("python-bumpversion" . "0.5.3")
   0.31 ("python-prettytable" . "0.7.2")
   0.31 ("lsof" . "4.91")
   0.31 ("python2-greenlet" . "0.4.15")
   0.31 ("mtdev" . "1.1.5")
   0.31 ("python-mnemonic" . "0.19")
   0.31 ("ruby-rspec-mocks" . "3.8.0")
   0.31 ("python2-psycopg2" . "2.7.7")
   0.31 ("python2-rencode" . "1.0.5")
   0.31 ("cpio" . "2.13")
   0.31 ("python2-cov-core" . "1.15.0")
   0.31 ("linux-libre-headers" . "4.19.56")
   0.31 ("acme-client" . "0.1.16")
   0.31 ("perl-io-socket-ip" . "0.39")
   0.31 ("s6-linux-utils" . "2.5.0.1")
   0.31 ("font-google-noto" . "20171025")
   0.31 ("pth" . "2.0.7")
   0.31 ("iproute2" . "5.3.0")
   0.31 ("perl-email-simple" . "2.216")
   0.31 ("libnftnl" . "1.1.4")
   0.31 ("python-pathlib" . "1.0.1")
   0.31 ("perl-module-runtime-conflicts" . "0.003")
   0.31 ("hdf5" . "1.8.21")
   0.31 ("wireless-regdb" . "2019.06.03")
   0.31 ("perl-cgi-session" . "4.48")
   0.31 ("ruby-jaro-winkler" . "1.5.2")
   0.31 ("gsl" . "2.5")
   0.31 ("gcc-objc" . "5.5.0")
   0.31 ("ruby-htmlentities" . "4.3.4")
   0.31 ("uniutils" . "2.27")
   0.31 ("python2-fastimport" . "0.9.6")
   0.31 ("perl-dbd-sqlite" . "1.62")
   0.31 ("gnu-c-manual" . "0.2.5")
   0.31 ("giflib" . "5.1.4")
   0.31 ("perl-extutils-typemaps-default" . "1.05")
   0.31 ("shepherd" . "0.6.1")
   0.31 ("clzip" . "1.11")
   0.31 ("python-psutil" . "5.6.5")
   0.31 ("python2-typing" . "3.6.6")
   0.31 ("guile2.0-haunt" . "0.2.4")
   0.31 ("perl-uri-template" . "0.24")
   0.31 ("python2-isoweek" . "1.3.3")
   0.31 ("ruby-rspec-core" . "3.8.0")
   0.31 ("xkbutils" . "1.0.4")
   0.31 ("python2-defusedxml" . "0.6.0")
   0.31 ("perl-term-progressbar-simple" . "0.03")
   0.31 ("perl-text-aligner" . "0.13")
   0.31 ("font-adobe-source-serif-pro" . "2.007R-ro-1.007R-it")
   0.31 ("font-fira-code" . "1.206")
   0.31 ("perl-template-timer" . "1.00")
   0.31 ("hyperestraier" . "1.4.13")
   0.31 ("python2-functools32" . "3.2.3-2")
   0.31 ("phylip" . "3.696")
   0.31 ("xtrans" . "1.4.0")
   0.31 ("ruby-pkg-config" . "1.2.5")
   0.31 ("emacs-org" . "9.2.6")
   0.31 ("python2-pysocks" . "1.7.0")
   0.31 ("python2-tempdir" . "0.7.1")
   0.31 ("zpaq" . "7.15")
   0.31 ("libdvdcss" . "1.4.2")
   0.31 ("python2-netaddr" . "0.7.19")
   0.31 ("perl-test-directory" . "0.041")
   0.31 ("libserialport" . "0.1.1")
   0.31 ("e2fsprogs" . "1.45.4")
   0.31 ("libnsgif" . "0.2.1")
   0.31 ("jose" . "10")
   0.31 ("python-termcolor" . "1.1.0")
   0.31 ("cursynth" . "1.5")
   0.31 ("ruby-dep" . "1.5.0")
   0.31 ("python-waitress" . "1.1.0")
   0.31 ("perl-test-output" . "1.031")
   0.31 ("python2-stemming" . "1.0.1")
   0.31 ("font-fira-mono" . "3.206")
   0.31 ("python-pysocks" . "1.7.0")
   0.31 ("perl-pod-constants" . "0.19")
   0.31 ("font-rachana" . "7.0")
   0.31 ("perl-params-validate" . "1.29")
   0.31 ("python-pytz" . "2019.1")
   0.31 ("perl-unicode-utf8" . "0.62")
   0.31 ("perl-import-into" . "1.002005")
   0.31 ("libuninameslist" . "20190701")
   0.31 ("python-constantly" . "15.1.0")
   0.31 ("python2-itsdangerous" . "1.1.0")
   0.31 ("python-mpmath" . "0.19")
   0.31 ("libtasn1" . "4.14")
   0.31 ("python2-pep8" . "1.7.0")
   0.31 ("openntpd" . "6.2p3")
   0.31 ("help2man" . "1.47.10")
   0.31 ("ruby-hoe" . "3.16.2")
   0.31 ("python2-locket" . "0.2.0")
   0.31 ("perl-class-factory-util" . "1.7")
   0.30 ("font-anonymous-pro-minus" . "1.003")
   0.30 ("ruby-cutest" . "1.2.2")
   0.30 ("arm-none-eabi-toolchain" . "6.5.0")
   0.30 ("perl-test-trap" . "0.3.4")
   0.30 ("qdbm" . "1.8.78")
   0.30 ("perl-perlio-utf8-strict" . "0.007")
   0.30 ("python-parse" . "1.8.4")
   0.30 ("popt" . "1.16")
   0.30 ("cd-hit" . "4.6.8")
   0.30 ("python-ipython-genutils" . "0.1.0")
   0.30 ("python-fakeredis" . "0.8.2")
   0.30 ("cwm" . "6.3")
   0.30 ("python-certifi" . "2019.3.9")
   0.30 ("gdbm" . "1.18.1")
   0.30 ("ecl-hu.dwim.asdf" . "20190521")
   0.30 ("mcl" . "14.137")
   0.30 ("cloog" . "0.18.0")
   0.30 ("emacs-dired-du" . "0.5.2")
   0.30 ("psmisc" . "23.3")
   0.30 ("emacs-queue" . "0.2")
   0.30 ("rsync" . "3.1.3")
   0.30 ("python2-coverage" . "4.5.3")
   0.30 ("cvs" . "1.12.13")
   0.30 ("python2-pycodestyle" . "2.5.0")
   0.30 ("libmcrypt" . "2.5.8")
   0.30 ("emacs-ido-ubiquitous" . "3.12")
   0.30 ("texlive-fonts-iwona" . "0.995b")
   0.30 ("grep" . "3.3")
   0.30 ("xcb-util-wm" . "0.4.1")
   0.30 ("mtr" . "0.92")
   0.30 ("texinfo" . "6.7")
   0.30 ("envstore" . "2.1")
   0.30 ("perl-class-load-xs" . "0.10")
   0.30 ("librsync" . "0.9.7")
   0.30 ("libstatgrab" . "0.91")
   0.30 ("adms" . "2.3.6")
   0.30 ("python-odfpy" . "1.3.3")
   0.30 ("python-lxml" . "4.4.1")
   0.30 ("font-cns11643" . "98.1.20180605")
   0.30 ("python2-drmaa" . "0.7.7")
   0.30 ("aide" . "0.16.2")
   0.30 ("perl-xml-libxml" . "2.0134")
   0.30 ("xerces-c" . "3.1.4")
   0.30 ("python-linecache2" . "1.0.0")
   0.30 ("libquvi-scripts" . "0.4.21")
   0.30 ("gnome-mime-data" . "2.18.0")
   0.30 ("python2-odfpy" . "1.3.3")
   0.30 ("guile-next" . "2.9.4")
   0.30 ("perl-uri-nested" . "0.10")
   0.30 ("python-entrypoints" . "0.3")
   0.30 ("gcc-objc++" . "6.5.0")
   0.30 ("python2-urwid" . "2.0.1")
   0.30 ("perl-object-signature" . "1.08")
   0.30 ("lua5.2-expat" . "1.3.0")
   0.30 ("perl-tie-handle-offset" . "0.004")
   0.30 ("dvd+rw-tools" . "7.1")
   0.30 ("libnsutils" . "0.0.5")
   0.30 ("perl-test-trailingspace" . "0.0301")
   0.30 ("emacs-column-marker" . "9")
   0.30 ("aj-snapshot" . "0.9.9")
   0.30 ("ecl-s-xml-rpc" . "7")
   0.30 ("rtmidi" . "4.0.0")
   0.30 ("python-decorator" . "4.3.0")
   0.30 ("texinfo" . "4.13a")
   0.30 ("colors" . "0.3")
   0.30 ("lziprecover" . "1.21")
   0.30 ("perl-proc-invokeeditor" . "1.13")
   0.30 ("libxi" . "1.7.10")
   0.30 ("python-sphinxcontrib-devhelp" . "1.0.1")
   0.30 ("perl-sql-tokenizer" . "0.24")
   0.30 ("sbc" . "1.4")
   0.30 ("python-kiwisolver" . "1.0.1")
   0.30 ("zita-alsa-pcmi" . "0.2.0")
   0.30 ("irram" . "2013_01")
   0.30 ("python-ply" . "3.10")
   0.30 ("unzip" . "6.0")
   0.30 ("python2-lxml" . "4.4.1")
   0.30 ("gcc-toolchain" . "4.8.5")
   0.30 ("perl-math-random-isaac" . "1.004")
   0.30 ("emacs-csv-mode" . "1.10")
   0.30 ("ytalk" . "3.3.0")
   0.30 ("perl-getopt-long" . "v2.49.1")
   0.30 ("wdiff" . "1.2.2")
   0.30 ("python-minimal" . "3.7.4")
   0.30 ("joe" . "4.6")
   0.30 ("setxkbmap" . "1.3.2")
   0.30 ("dash" . "0.5.10.2")
   0.30 ("s6-portable-utils" . "2.2.1.3")
   0.30 ("perl-lingua-stem-fr" . "0.02")
   0.30 ("perl-image-exiftool" . "11.30")
   0.30 ("guile-commonmark" . "0.1.2")
   0.30 ("tcc-wrapper" . "0.9.27")
   0.30 ("python2-ipython-genutils" . "0.1.0")
   0.30 ("perl-io-compress" . "2.090")
   0.30 ("perl-extutils-pkgconfig" . "1.16")
   0.30 ("emacs-test-simple" . "1.3.0")
   0.30 ("libxdmcp" . "1.1.3")
   0.30 ("libjpeg" . "8d")
   0.30 ("perl-svg" . "2.84")
   0.30 ("libtool" . "2.4.6")
   0.30 ("perl-json-xs" . "4.0")
   0.30 ("ruby" . "2.4.3")
   0.30 ("python2-futures" . "3.2.0")
   0.30 ("perl-data-dump" . "1.23")
   0.30 ("spice-protocol" . "0.14.0")
   0.30 ("m17n-db" . "1.8.0")
   0.30 ("mafft" . "7.394")
   0.30 ("jimtcl" . "0.77")
   0.30 ("perl-test-script" . "1.20")
   0.30 ("font-ibm-plex" . "2.0.0")
   0.30 ("lua5.2-filesystem" . "1.6.3")
   0.30 ("perl-module-util" . "1.09")
   0.30 ("libpcap" . "1.9.1")
   0.30 ("ssdeep" . "2.13")
   0.30 ("perl-cpan-distnameinfo" . "0.12")
   0.30 ("hunspell-dict-fr-reforme1990" . "6.2")
   0.30 ("bison" . "3.0.5")
   0.30 ("ecl-rt" . "1990.12.19")
   0.30 ("perl-tie-ixhash" . "1.23")
   0.30 ("perl-test-perltidy" . "20130104")
   0.30 ("libnsbmp" . "0.1.5")
   0.30 ("perl-graph-readwrite" . "2.09")
   0.30 ("emacs-ffap-rfc-space" . "12")
   0.30 ("vsftpd" . "3.0.3")
   0.30 ("perl-io-pager" . "0.44")
   0.30 ("nickle" . "2.82")
   0.30 ("perl-appconfig" . "1.71")
   0.30 ("python-pyusb" . "1.0.2")
   0.30 ("perl-xml-handler-yawriter" . "0.23")
   0.30 ("tcsh" . "6.20.00")
   0.30 ("libx264" . "20180810-2245")
   0.30 ("perl-cache-fastmmap" . "1.48")
   0.30 ("lua5.1-bitop" . "1.0.2")
   0.30 ("gdsl" . "1.8")
   0.30 ("perl-time-hires" . "1.9760")
   0.30 ("oath-toolkit" . "2.6.2")
   0.30 ("xprop" . "1.2.4")
   0.30 ("gcal" . "4.1")
   0.30 ("ttf2pt1" . "3.4.4")
   0.30 ("pam-krb5" . "4.8")
   0.30 ("uucp" . "1.07")
   0.30 ("mate-common" . "1.22.0")
   0.30 ("perl-cpan-meta" . "2.150010")
   0.30 ("glibc-locales-2.28" . "2.28")
   0.30 ("libasr" . "1.0.3")
   0.30 ("python2-pyflakes" . "2.1.1")
   0.30 ("perl-carp-clan" . "6.08")
   0.30 ("guile-static-stripped-tarball" . "2.2.6")
   0.30 ("perl-business-issn" . "1.003")
   0.30 ("id3lib" . "3.8.3")
   0.30 ("libogg" . "1.3.3")
   0.30 ("freepats" . "20060219")
   0.30 ("perl-array-utils" . "0.5")
   0.30 ("stow" . "2.3.1")
   0.30 ("s6-linux-init" . "0.4.0.1")
   0.30 ("perl-file-listing" . "6.04")
   0.30 ("perl-devel-stacktrace-ashtml" . "0.15")
   0.30 ("busybox" . "1.29.3")
   0.30 ("es" . "0.9.1")
   0.30 ("perl-yaml-libyaml" . "0.80")
   0.30 ("perl-class-data-inheritable" . "0.08")
   0.30 ("libssh2" . "1.9.0")
   0.30 ("perl-par-dist" . "0.49")
   0.29 ("perl-file-find-object" . "v0.2.13")
   0.29 ("nzbget" . "21.0")
   0.29 ("xcb-proto" . "1.13")
   0.29 ("readline" . "8.0")
   0.29 ("perl-test-memory-cycle" . "1.06")
   0.29 ("sic" . "1.2")
   0.29 ("lua" . "5.2.4")
   0.29 ("orc" . "0.4.29")
   0.29 ("perl-compress-raw-bzip2" . "2.090")
   0.29 ("perl-uri" . "1.76")
   0.29 ("font-tex-gyre" . "2.005")
   0.29 ("docbook-xml" . "4.3")
   0.29 ("perl-data-printer" . "0.40")
   0.29 ("perl-math-bezier" . "0.01")
   0.29 ("libsbsms" . "2.0.2")
   0.29 ("perl-http-tinyish" . "0.15")
   0.29 ("gzip" . "1.10")
   0.29 ("perl-string-escape" . "2010.002")
   0.29 ("perl-test-nowarnings" . "1.04")
   0.29 ("isl" . "0.21")
   0.29 ("perl-conf-libconfig" . "0.100")
   0.29 ("lua" . "5.1.5")
   0.29 ("cflow" . "1.6")
   0.29 ("e3" . "2.82")
   0.29 ("perl-archive-extract" . "0.80")
   0.29 ("emacs-puppet-mode" . "0.3-1.b3ed505")
   0.29 ("perl-file-grep" . "0.02")
   0.29 ("swaks" . "20181104.0")
   0.29 ("glibc-utf8-locales-2.28" . "2.28")
   0.29 ("ncurses-with-gpm" . "6.1-20190609")
   0.29 ("asn1c" . "0.9.28")
   0.29 ("perl-extutils-depends" . "0.405")
   0.29 ("argtable" . "2.13")
   0.29 ("flex" . "2.6.1")
   0.29 ("gprolog" . "1.4.5")
   0.29 ("libpng" . "1.2.59")
   0.29 ("execline" . "2.5.1.0")
   0.29 ("corkscrew" . "2.0")
   0.29 ("perl-math-round" . "0.07")
   0.29 ("perl-mojolicious" . "7.59")
   0.29 ("perl-async-interrupt" . "1.25")
   0.29 ("gtypist" . "2.9.5")
   0.29 ("zutils" . "1.8")
   0.29 ("dante" . "1.4.2")
   0.29 ("font-dejavu" . "2.37")
   0.29 ("perl-string-print" . "0.15")
   0.29 ("pciutils" . "3.6.2")
   0.29 ("chmlib" . "0.40")
   0.29 ("libdaemon" . "0.14")
   0.29 ("ncftp" . "3.2.6")
   0.29 ("gforth" . "0.7.3")
   0.29 ("socat" . "1.7.3.3")
   0.29 ("perl-lingua-stem-it" . "0.02")
   0.29 ("perl-file-sharedir-install" . "0.13")
   0.29 ("jmtpfs" . "0.5")
   0.29 ("moarvm" . "2019.03")
   0.29 ("perl-devel-cycle" . "1.12")
   0.29 ("perl-test-eol" . "2.00")
   0.29 ("findutils" . "4.6.0")
   0.29 ("perl-data" . "0.002009")
   0.29 ("perl-test-pod-coverage" . "1.10")
   0.29 ("perl-business-ismn" . "1.201")
   0.29 ("libmtp" . "1.1.16")
   0.29 ("flint" . "2.5.2")
   0.29 ("gnustep-make" . "2.7.0")
   0.29 ("perl-cgi" . "4.44")
   0.29 ("autoconf" . "2.68")
   0.29 ("libxau" . "1.0.9")
   0.29 ("strace" . "5.3")
   0.29 ("bool" . "0.2.2")
   0.29 ("tcllib" . "1.19")
   0.29 ("perl-b-hooks-op-check" . "0.22")
   0.29 ("perl-test-file-sharedir-dist" . "1.001002")
   0.29 ("yadifa" . "2.3.9")
   0.29 ("libarchive" . "3.4.0")
   0.29 ("xorgproto" . "2019.1")
   0.29 ("perl-exporter-lite" . "0.08")
   0.29 ("perl-time-local" . "1.2300")
   0.29 ("qd" . "2.3.22")
   0.29 ("perl-test-needs" . "0.002005")
   0.29 ("ruby-ruby-engine" . "1.0.1")
   0.29 ("perl-test-requires" . "0.10")
   0.29 ("perl-ole-storage-lite" . "0.19")
   0.29 ("libparserutils" . "0.2.4")
   0.29 ("perl-test-simple" . "1.302164")
   0.29 ("catdoc" . "0.95")
   0.29 ("perl-cpan-changes" . "0.400002")
   0.29 ("perl-text-diff" . "1.45")
   0.29 ("chess" . "6.2.5")
   0.29 ("wcslib" . "6.4")
   0.29 ("perl-email-date-format" . "1.005")
   0.29 ("osip" . "5.0.0")
   0.29 ("font-wqy-zenhei" . "0.9.45")
   0.29 ("perl-test-tcp" . "2.21")
   0.29 ("lua5.1-socket" . "3.0-rc1")
   0.29 ("perl-string-copyright" . "0.003006")
   0.29 ("ruby-ansi" . "1.5.0")
   0.29 ("ncdu" . "1.14")
   0.29 ("perl-archive-zip" . "1.67")
   0.29 ("perl-term-table" . "0.008")
   0.29 ("libmad" . "0.15.1b")
   0.29 ("aspell-dict-it" . "2.4-20070901-0")
   0.29 ("libmng" . "2.0.3")
   0.29 ("tcl" . "8.6.9")
   0.29 ("sane-backends-minimal" . "1.0.28")
   0.29 ("perl-io-tty" . "1.12")
   0.29 ("teckit" . "2.5.9")
   0.29 ("mksh" . "57")
   0.29 ("dionysus" . "1.4.0")
   0.29 ("gifsicle" . "1.92")
   0.29 ("heimdal" . "7.5.0")
   0.29 ("perl-sub-identify" . "0.14")
   0.29 ("perl-file-slurp" . "9999.27")
   0.29 ("isl" . "0.18")
   0.29 ("perl-inc-latest" . "0.500")
   0.29 ("gnumach-headers" . "1.8")
   0.29 ("xsel" . "1.2.0")
   0.29 ("protobuf" . "3.5.1")
   0.29 ("gfortran" . "5.5.0")
   0.29 ("ruby-multi-xml" . "0.6.0")
   0.29 ("perl-text-markdown-discount" . "0.11")
   0.29 ("alsa-lib" . "1.1.9")
   0.29 ("perl-canary-stability" . "2013")
   0.29 ("perl-extutils-xspp" . "0.18")
   0.29 ("perl-digest-sha1" . "2.13")
   0.29 ("dejagnu" . "1.6.1")
   0.29 ("perl-test-harness" . "3.42")
   0.29 ("ncurses" . "6.1-20190609")
   0.29 ("efibootmgr" . "16")
   0.29 ("perl-cgi-struct" . "1.21")
   0.29 ("guile2.0-gnutls" . "3.6.9")
   0.29 ("perl-parse-yapp" . "1.21")
   0.29 ("perl-xml-filter-buffertext" . "1.01")
   0.29 ("libgcrypt" . "1.8.5")
   0.29 ("perl-mouse" . "2.5.6")
   0.29 ("font-hack" . "3.003")
   0.29 ("perl-xml-namespacesupport" . "1.12")
   0.29 ("perl-algorithm-c3" . "0.10")
   0.29 ("perl-regexp-common" . "2017060201")
   0.29 ("perl-indirect" . "0.38")
   0.29 ("perl-cpan-meta-yaml" . "0.018")
   0.29 ("perl-file-homedir" . "1.004")
   0.29 ("opus" . "1.3.1")
   0.29 ("perl-test-more-utf8" . "0.05")
   0.29 ("ruby-minitest-rg" . "5.2.0")
   0.29 ("ladspa" . "1.13")
   0.29 ("libiec61883" . "1.2.0")
   0.29 ("glpk" . "4.65")
   0.29 ("libpng" . "1.6.37")
   0.29 ("miredo" . "1.2.6")
   0.29 ("perl-ipc-system-simple" . "1.25")
   0.29 ("libiptcdata" . "1.0.5")
   0.29 ("libusb-compat" . "0.1.5")
   0.29 ("hdf4" . "4.2.14")
   0.29 ("clp" . "1.17.1")
   0.29 ("gcc-toolchain" . "9.2.0")
   0.29 ("openblas" . "0.3.6")
   0.29 ("perl-email-messageid" . "1.406")
   0.29 ("httrack" . "3.49.2")
   0.29 ("bridge-utils" . "1.6")
   0.29 ("bwa" . "0.7.17")
   0.29 ("libfilezilla" . "0.16.0")
   0.29 ("perl-crypt-openssl-random" . "0.15")
   0.29 ("postgresql" . "11.5")
   0.29 ("opus-tools" . "0.2")
   0.28 ("mlocate" . "0.26")
   0.28 ("libidn" . "1.35")
   0.28 ("fontconfig" . "2.13.1")
   0.28 ("guile2.0-commonmark" . "0.1.2")
   0.28 ("zerofree" . "1.1.1")
   0.28 ("archivemount" . "0.8.12")
   0.28 ("perl-html-tagset" . "3.20")
   0.28 ("musl" . "1.1.22")
   0.28 ("perl-text-unidecode" . "1.30")
   0.28 ("usbredir" . "0.8.0")
   0.28 ("ruby-pry-editline" . "1.1.2")
   0.28 ("speex" . "1.2.0")
   0.28 ("perl-cpanel-json-xs" . "4.17")
   0.28 ("weex" . "2.8.2")
   0.28 ("libdv" . "1.0.0")
   0.28 ("nettle" . "2.7.1")
   0.28 ("perl-log-any" . "1.707")
   0.28 ("ruby-tzinfo-data" . "1.2017.3")
   0.28 ("fcgi" . "2.4.0")
   0.28 ("fil-plugins" . "0.3.0")
   0.28 ("ruby-idn-ruby" . "0.1.0")
   0.28 ("libksba" . "1.3.5")
   0.28 ("libseccomp" . "2.4.1")
   0.28 ("libxdamage" . "1.1.5")
   0.28 ("whois" . "5.5.2")
   0.28 ("openspin" . "1.00.78")
   0.28 ("liboop" . "1.0.1")
   0.28 ("xbattmon" . "1.1")
   0.28 ("hyphen" . "2.8.8")
   0.28 ("libvdpau" . "1.2")
   0.28 ("perl-mozilla-ca" . "20180117")
   0.28 ("nload" . "0.7.4")
   0.28 ("perl-set-infinite" . "0.65")
   0.28 ("intltool" . "0.51.0")
   0.28 ("xcb-util-xrm" . "1.3")
   0.28 ("scheme48" . "1.9.2")
   0.28 ("perl-libwww" . "6.41")
   0.28 ("libgtextutils" . "0.7")
   0.28 ("g-wrap" . "1.9.15")
   0.28 ("perl-cpan-meta-requirements" . "2.140")
   0.28 ("go-ipfs" . "0.4.22")
   0.28 ("perl-list-compare" . "0.53")
   0.28 ("libunistring" . "0.9.10")
   0.28 ("seqan" . "1.4.2")
   0.28 ("compface" . "1.5.2")
   0.28 ("swish-e" . "2.4.7")
   0.28 ("vc-dwim" . "1.8")
   0.28 ("perl-xml-xpathengine" . "0.14")
   0.28 ("perl-test-dir" . "1.16")
   0.28 ("perl-sys-cpu" . "0.61")
   0.28 ("perl-list-moreutils" . "0.428")
   0.28 ("s6" . "2.8.0.1")
   0.28 ("fetchmail" . "6.4.1")
   0.28 ("pkg-config" . "0.29.2")
   0.28 ("guile" . "2.2.4")
   0.28 ("zyre" . "2.0.0")
   0.28 ("perl-readonly" . "2.00")
   0.28 ("livemedia-utils" . "2019.05.29")
   0.28 ("fasttree" . "2.1.10")
   0.28 ("perl-file-find-object-rule" . "0.0311")
   0.28 ("perl-template-toolkit" . "2.28")
   0.28 ("lrzip" . "0.631")
   0.28 ("jemalloc" . "4.5.0")
   0.28 ("ecl-parse-declarations" . "1.0.0")
   0.28 ("dialog" . "1.3-20191110")
   0.28 ("ethtool" . "5.3")
   0.28 ("expect" . "5.45.4")
   0.28 ("lftp" . "4.8.4")
   0.28 ("bsdiff" . "4.3")
   0.28 ("ruby-bacon-colored-output" . "1.1.1")
   0.28 ("gcc-toolchain" . "8.3.0")
   0.28 ("libusb" . "1.0.23")
   0.28 ("postgresql" . "9.6.15")
   0.28 ("twolame" . "0.4.0")
   0.28 ("gnome-common" . "3.18.0")
   0.28 ("emacs-prop-menu" . "0.1.2")
   0.28 ("perl-pod-simple" . "3.35")
   0.28 ("perl-common-sense" . "3.74")
   0.28 ("perl-params-util" . "1.07")
   0.28 ("daemontools" . "0.76")
   0.28 ("net-tools" . "1.60-0.479bb4a")
   0.28 ("ccd2cue" . "0.5")
   0.28 ("nftables" . "0.9.2")
   0.28 ("vdpauinfo" . "1.0")
   0.28 ("rcs" . "5.9.4")
   0.28 ("luit" . "1.1.1")
   0.28 ("perl-libtime-parsedate" . "2015.103")
   0.28 ("scotch32" . "6.0.6")
   0.28 ("ruby-docile" . "1.1.5")
   0.28 ("dovecot-trees" . "2.1.0")
   0.28 ("pigz" . "2.4")
   0.28 ("perl-filesys-notify-simple" . "0.13")
   0.28 ("barcode" . "0.99")
   0.28 ("perl-data-validate-ip" . "0.27")
   0.28 ("lndir" . "1.0.3")
   0.28 ("perl-test-file-contents" . "0.23")
   0.28 ("rottlog" . "0.72.2")
   0.28 ("ht" . "2.1.0")
   0.28 ("perl-uri-escape" . "1.76")
   0.28 ("perl-net-patricia" . "1.22")
   0.28 ("freexl" . "1.0.5")
   0.28 ("libxls" . "1.5.1")
   0.28 ("plzip" . "1.8")
   0.28 ("perl-class-c3-adopt-next" . "0.14")
   0.28 ("perl-term-progressbar" . "2.17")
   0.28 ("emacs-nhexl-mode" . "1.4")
   0.28 ("emacs-cmake-mode" . "3.15.1")
   0.28 ("mpfr" . "4.0.2")
   0.28 ("startup-notification" . "0.12")
   0.28 ("libxdg-basedir" . "1.2.0")
   0.28 ("hunspell-dict-en-gb" . "2018.04.16")
   0.28 ("aspell-dict-ar" . "1.2-0")
   0.28 ("ecl-puri" . "20180228")
   0.28 ("fasm" . "1.73.11")
   0.28 ("nethogs" . "0.8.5")
   0.28 ("perl-config-ini" . "0.025")
   0.28 ("libiconv" . "1.15")
   0.28 ("wimlib" . "1.13.1")
   0.28 ("perl-test-class-most" . "0.08")
   0.28 ("virtuoso-ose" . "7.2.5")
   0.28 ("perl-uri-db" . "0.19")
   0.28 ("emacs-ido-completing-read+" . "3.12")
   0.28 ("perl-crypt-randpasswd" . "0.06")
   0.28 ("perl-posix-strftime-compiler" . "0.42")
   0.28 ("sysfsutils" . "2.1.0")
   0.28 ("pixiewps" . "1.4.2")
   0.28 ("perl-file-find-rule" . "0.34")
   0.28 ("mcp-plugins" . "0.4.0")
   0.28 ("guile-bytestructures" . "1.0.6")
   0.28 ("gfortran" . "6.5.0")
   0.27 ("ruby-sdoc" . "0.4.2")
   0.27 ("aspell-dict-pt-br" . "20131030-12-0")
   0.27 ("perl-getopt-long-descriptive" . "0.103")
   0.27 ("rsnapshot" . "1.4.2")
   0.27 ("lua5.2-bitop" . "1.0.2")
   0.27 ("emacs-darkroom" . "0.2")
   0.27 ("perl-ipc-run" . "20180523.0")
   0.27 ("gnu-standards" . "2018-02-18")
   0.27 ("ploticus" . "2.42")
   0.27 ("emacs-validate" . "1.0.5")
   0.27 ("perl-snowball-swedish" . "1.2")
   0.27 ("jacal" . "1c4")
   0.27 ("ccrtp" . "2.1.2")
   0.27 ("perl-lingua-en-inflect-number" . "1.12")
   0.27 ("linux-pam" . "1.3.1")
   0.27 ("emacs-neotree" . "0.5.2")
   0.27 ("ruby-rake" . "12.3.1")
   0.27 ("gvpe" . "3.1")
   0.27 ("perl-multidimensional" . "0.014")
   0.27 ("powwow" . "1.2.19")
   0.27 ("nauty" . "2.6r11")
   0.27 ("font-comic-neue" . "2.3")
   0.27 ("libxfont" . "1.5.4")
   0.27 ("delta" . "2006.08.03")
   0.27 ("perl-dist-checkconflicts" . "0.11")
   0.27 ("le-certs" . "0")
   0.27 ("ruby-data_uri" . "0.1.0")
   0.27 ("e2fsck-static" . "1.45.4")
   0.27 ("texi2html" . "5.0")
   0.27 ("perl-math-random-isaac-xs" . "1.004")
   0.27 ("perl-text-format" . "0.61")
   0.27 ("perl-mail-authenticationresults" . "1.20180923")
   0.27 ("idutils" . "4.6")
   0.27 ("efivar" . "37")
   0.27 ("emacs-cl-generic" . "0.3")
   0.27 ("perl-string-formatter" . "0.102084")
   0.27 ("perl-xml-sax-writer" . "0.57")
   0.27 ("perl-list-moreutils-xs" . "0.428")
   0.27 ("perl-list-someutils" . "0.56")
   0.27 ("lua5.2-sec" . "0.7")
   0.27 ("guile-syntax-highlight" . "0.1")
   0.27 ("perl-netaddr-ip" . "4.079")
   0.27 ("isync" . "1.3.1")
   0.27 ("font-liberation" . "2.00.5")
   0.27 ("perl-devel-checkcompiler" . "0.07")
   0.27 ("unrtf" . "0.21.10")
   0.27 ("nettle" . "3.5.1")
   0.27 ("mp3splt" . "2.6.2")
   0.27 ("mpfi" . "1.5.3")
   0.27 ("libshout" . "2.4.2")
   0.27 ("perl-net-smtp-ssl" . "1.04")
   0.27 ("kbd" . "2.0.4")
   0.27 ("ruby-crass" . "1.0.4")
   0.27 ("ruby-org-ruby" . "0.9.12")
   0.27 ("guile-daemon" . "0.1.2")
   0.27 ("lua5.1-lpeg" . "1.0.2")
   0.27 ("pies" . "1.4")
   0.27 ("hunspell-dict-en-au" . "2018.04.16")
   0.27 ("sparsehash" . "2.0.3")
   0.27 ("font-micro-misc" . "1.0.3")
   0.27 ("lunzip" . "1.11")
   0.27 ("go" . "1.12.13")
   0.27 ("aspell-dict-fi" . "0.7-0")
   0.27 ("ruby-rspec-expectations" . "2.14.5")
   0.27 ("make" . "4.2.1")
   0.27 ("mcrypt" . "2.6.8")
   0.27 ("mingetty" . "1.08")
   0.27 ("perl-namespace-clean" . "0.27")
   0.27 ("perl-authen-sasl" . "2.16")
   0.27 ("perl-cgi-formbuilder" . "3.10")
   0.27 ("hdf4-alt" . "4.2.14")
   0.27 ("guile2.0-irregex" . "0.9.6")
   0.27 ("emacs-lacarte" . "0.1")
   0.27 ("ruby-rspec" . "2.14.1")
   0.27 ("acl" . "2.2.53")
   0.27 ("perl-devel-checkbin" . "0.04")
   0.27 ("gccgo" . "4.9.4")
   0.27 ("perl-set-scalar" . "1.29")
   0.27 ("haunt" . "0.2.4")
   0.27 ("lynx" . "2.8.9rel.1")
   0.27 ("perl-xml-descent" . "1.04")
   0.27 ("perl-html-lint" . "2.32")
   0.27 ("perl-libxml" . "0.08")
   0.27 ("perl-test-failwarnings" . "0.008")
   0.27 ("capnproto" . "0.7.0")
   0.27 ("perl-package-anon" . "0.05")
   0.27 ("perl-file-remove" . "1.58")
   0.27 ("iptables" . "1.6.2")
   0.27 ("libungif" . "4.1.4")
   0.27 ("patchelf" . "0.10")
   0.27 ("ruby-mspec" . "1.9.1")
   0.27 ("ruby-bio-commandeer" . "0.4.0")
   0.27 ("ruby-marcel" . "0.3.3")
   0.27 ("cdrtools" . "3.01")
   0.27 ("direvent" . "5.2")
   0.27 ("isl" . "0.11.1")
   0.27 ("cl-rt" . "1990.12.19")
   0.27 ("nano" . "4.5")
   0.27 ("perl-extutils-parsexs" . "3.35")
   0.27 ("perl-class-method-modifiers" . "2.13")
   0.27 ("perl-lingua-en-inflect" . "1.903")
   0.27 ("font-lato" . "2.010")
   0.27 ("emacs-gnugo" . "3.1.0")
   0.27 ("gmp" . "6.0.0a")
   0.27 ("perl-unicode-collate" . "1.27")
   0.27 ("emacs-minibuffer-line" . "0.1")
   0.27 ("sdparm" . "1.10")
   0.27 ("emacs-eprime" . "20140513-17a481a")
   0.27 ("perl-mysql-config" . "1.04")
   0.27 ("perl-test-distmanifest" . "1.014")
   0.27 ("perl-universal-isa" . "1.20171012")
   0.27 ("perl-number-compare" . "0.03")
   0.27 ("shadow" . "4.7")
   0.27 ("libxslt" . "1.1.33")
   0.27 ("libnfsidmap" . "0.27")
   0.27 ("global" . "6.6.3")
   0.27 ("aspell-dict-es" . "1.11-2")
   0.27 ("perl-sys-syscall" . "0.25")
   0.27 ("xdpyprobe" . "0.1")
   0.27 ("mpfrcx" . "0.5")
   0.27 ("libcap" . "2.27")
   0.27 ("lua5.1-expat" . "1.3.0")
   0.27 ("augeas" . "1.11.0")
   0.27 ("chicken" . "5.0.0")
   0.27 ("perl-parse-cpan-meta" . "2.150010")
   0.27 ("jbigkit" . "2.1")
   0.27 ("multitail" . "6.5.0")
   0.27 ("hmmer" . "3.2.1")
   0.26 ("talkfilters" . "2.3.8")
   0.26 ("perl-devel-caller" . "2.06")
   0.26 ("calcurse" . "4.5.0")
   0.26 ("perl-padwalker" . "2.3")
   0.26 ("go" . "1.4-bootstrap-20171003")
   0.26 ("encodings" . "1.0.5")
   0.26 ("perl-xml-parser" . "2.44")
   0.26 ("perl-dbi" . "1.642")
   0.26 ("libidn2" . "2.2.0")
   0.26 ("attr" . "2.4.48")
   0.26 ("pidentd" . "3.0.19")
   0.26 ("libconfuse" . "3.2.2")
   0.26 ("perl-module-runtime" . "0.016")
   0.26 ("ustr" . "1.0.4")
   0.26 ("libsamplerate" . "0.1.9")
   0.26 ("perl-xml-compile-tester" . "0.91")
   0.26 ("acpi" . "1.7")
   0.26 ("libtextstyle" . "0.20.1")
   0.26 ("perl-browser-open" . "0.04")
   0.26 ("perl-test-command" . "0.11")
   0.26 ("gzstream" . "1.5")
   0.26 ("perl-sort-naturally" . "1.03")
   0.26 ("libphidget" . "2.1.8.20180607")
   0.26 ("liblangtag" . "0.6.2")
   0.26 ("hunspell-dict-en" . "2018.04.16")
   0.26 ("perl-carp-always" . "0.16")
   0.26 ("nnn" . "2.6")
   0.26 ("emacs-rainbow-identifiers" . "0.2.2")
   0.26 ("aspell-dict-en" . "2019.10.06-0")
   0.26 ("proxychains-ng" . "4.14")
   0.26 ("gpm" . "1.20.7")
   0.26 ("gawk" . "5.0.1")
   0.26 ("cpuid" . "20180519")
   0.26 ("font-wqy-microhei" . "0.2.0-beta")
   0.26 ("perl-crypt-openssl-bignum" . "0.09")
   0.26 ("perl-mock-config" . "0.03")
   0.26 ("perl-extutils-installpaths" . "0.012")
   0.26 ("libconfig" . "1.7.2")
   0.26 ("lua5.1-sec" . "0.7")
   0.26 ("perl-extutils-cppguess" . "0.20")
   0.26 ("infernal" . "1.1.2")
   0.26 ("libdvdread" . "6.0.2")
   0.26 ("ruby-hashery" . "2.1.2")
   0.26 ("freeipmi" . "1.6.4")
   0.26 ("perl-clone-pp" . "1.07")
   0.26 ("sipcalc" . "1.1.6")
   0.26 ("perl-test-notabs" . "2.02")
   0.26 ("parallel" . "20191022")
   0.26 ("geteltorito" . "0.6")
   0.26 ("libraw" . "0.19.5")
   0.26 ("libcdio" . "2.0.0")
   0.26 ("perl-encode-jis2k" . "0.03")
   0.26 ("perl-test-leaktrace" . "0.16")
   0.26 ("perl-parallel-forkmanager" . "1.19")
   0.26 ("gnu-pw-mgr" . "2.4.2")
   0.26 ("perl-memoize-expirelru" . "0.56")
   0.26 ("darkhttpd" . "1.12")
   0.26 ("libspiro" . "0.5.20150702")
   0.26 ("gcc-objc++" . "5.5.0")
   0.26 ("dvtm" . "0.15")
   0.26 ("perl-scope-guard" . "0.21")
   0.26 ("emacs-php-mode" . "20171225.342")
   0.26 ("perl-anyevent-i3" . "0.17")
   0.26 ("util-linux" . "2.34")
   0.26 ("perl-file-pushd" . "1.016")
   0.26 ("perl-getopt-tabular" . "0.3")
   0.26 ("perl-switch" . "2.17")
   0.26 ("perl-xml-sax-base" . "1.09")
   0.26 ("symmetrica" . "2.0")
   0.26 ("perl-class-errorhandler" . "0.04")
   0.26 ("perl-net-server" . "2.009")
   0.26 ("libexif" . "0.6.21")
   0.26 ("pngcrush" . "1.8.13")
   0.26 ("bash-static" . "5.0.7")
   0.26 ("perl-class-methodmaker" . "2.24")
   0.26 ("emacs-rainbow-mode" . "1.0.1")
   0.26 ("multitime" . "1.4")
   0.26 ("libvorbis" . "1.3.6")
   0.26 ("perl-encode-hanextra" . "0.23")
   0.26 ("ephemeralpg" . "2.8")
   0.26 ("perl-sys-hostname-long" . "1.5")
   0.26 ("perl-test-number-delta" . "1.06")
   0.26 ("psutils" . "17")
   0.26 ("perl-sort-key" . "1.33")
   0.26 ("procps" . "3.3.15")
   0.26 ("perl-lingua-translit" . "0.28")
   0.26 ("aspell-dict-ca" . "2.5.0")
   0.26 ("gengetopt" . "2.23")
   0.26 ("nyacc" . "0.99.0")
   0.26 ("perl-test-warnings" . "0.026")
   0.26 ("djvulibre" . "3.5.27")
   0.26 ("perl-hash-multivalue" . "0.16")
   0.26 ("perl-xml-writer" . "0.625")
   0.26 ("perl-b-keywords" . "1.20")
   0.26 ("i2c-tools" . "3.1.1")
   0.26 ("fakeroot" . "1.24")
   0.26 ("ruby-orderedhash" . "0.0.6")
   0.26 ("gfortran" . "9.2.0")
   0.26 ("sed" . "4.7")
   0.26 ("lua5.2-socket" . "3.0-rc1")
   0.26 ("emacs-orgalist" . "1.9")
   0.26 ("mb2md" . "3.20")
   0.26 ("ecl-iterate" . "20160825")
   0.26 ("perl-mime-charset" . "1.012.2")
   0.26 ("perl-test-fatal" . "0.014")
   0.26 ("perl-dbd-pg" . "3.7.4")
   0.26 ("perl-lingua-pt-stemmer" . "0.02")
   0.26 ("ruby-minitest" . "4.7.5")
   0.26 ("marst" . "2.7")
   0.26 ("dos2unix" . "7.4.0")
   0.26 ("ruby-rspec" . "3.8.0")
   0.26 ("libaio" . "0.3.111")
   0.26 ("perl-anyevent" . "7.17")
   0.26 ("perl" . "5.30.0")
   0.26 ("perl-file-copy-recursive" . "0.38")
   0.26 ("tuxpaint-stamps" . "2018.09.01")
   0.26 ("aspell-dict-grc" . "0.02-0")
   0.26 ("perl-ipc-sharelite" . "0.17")
   0.26 ("perl-term-size-perl" . "0.031")
   0.26 ("emacs-ascii-art-to-unicode" . "1.12")
   0.26 ("perl-test-mockmodule" . "0.171.0")
   0.26 ("sessreg" . "1.1.2")
   0.26 ("c-graph" . "2.0.1")
   0.26 ("libid3tag" . "0.15.1b")
   0.26 ("module-init-tools" . "3.16")
   0.26 ("perl-http-daemon" . "6.01")
   0.26 ("cadaver" . "0.23.3")
   0.26 ("flex" . "2.6.4")
   0.26 ("perl-graph" . "0.9704")
   0.26 ("guile2.0-json" . "1.2.0")
   0.26 ("perl-business-isbn-data" . "20140910.003")
   0.26 ("font-google-roboto" . "2.136")
   0.26 ("aspell-dict-mi" . "0.50-0")
   0.26 ("di" . "4.47.2")
   0.26 ("krona-tools" . "2.7")
   0.26 ("libndp" . "1.7")
   0.26 ("nspr" . "4.21")
   0.26 ("gcc-objc++" . "7.4.0")
   0.26 ("lhasa" . "0.3.1")
   0.26 ("numactl" . "2.0.13")
   0.26 ("perl-b-hooks-endofscope" . "0.24")
   0.26 ("libffi" . "3.2.1")
   0.26 ("markdown" . "1.0.1")
   0.26 ("libmd" . "1.0.1")
   0.26 ("ruby-unicode-display-width" . "1.4.1")
   0.26 ("perl-devel-checklib" . "1.14")
   0.26 ("flac" . "1.3.3")
   0.26 ("datamash" . "1.5")
   0.26 ("ucl" . "1.03")
   0.26 ("wah-plugins" . "0.1.0")
   0.26 ("rhash" . "1.3.8")
   0.26 ("fftw" . "3.3.8")
   0.26 ("ruby-sqlite3" . "1.3.13")
   0.25 ("ruby-minitest-hooks" . "1.4.2")
   0.25 ("time" . "1.9")
   0.25 ("ccache" . "3.6")
   0.25 ("perl-ipc-run3" . "0.048")
   0.25 ("perl-test-cpan-meta-json" . "0.16")
   0.25 ("perl-software-license" . "0.103014")
   0.25 ("libgig" . "4.1.0")
   0.25 ("emacs-let-alist" . "1.0.6")
   0.25 ("perl-lingua-stem" . "0.84")
   0.25 ("guile-ncurses" . "3.0")
   0.25 ("perl-aliased" . "0.34")
   0.25 ("dmidecode" . "3.2")
   0.25 ("lzip" . "1.21")
   0.25 ("ruby-rspec-wait" . "0.0.9")
   0.25 ("unixodbc" . "2.3.7")
   0.25 ("matio" . "1.5.6")
   0.25 ("ruby-minitest" . "5.11.3")
   0.25 ("guile" . "2.0.14")
   0.25 ("cppunit" . "1.14.0")
   0.25 ("muscle" . "3.8.1551")
   0.25 ("perl-http-cookies" . "6.06")
   0.25 ("ruby" . "2.3.8")
   0.25 ("perl-test-filename" . "0.03")
   0.25 ("ntfs-3g" . "2017.3.23")
   0.25 ("xz" . "5.2.4")
   0.25 ("poppler-data" . "0.4.9")
   0.25 ("perl-set-intspan" . "1.19")
   0.25 ("ruby-libxml" . "3.0.0")
   0.25 ("libxmp" . "4.4.1")
   0.25 ("perl-module-build" . "0.4229")
   0.25 ("cl-s-xml-rpc" . "7")
   0.25 ("libyubikey" . "1.13")
   0.25 ("zzuf" . "0.15")
   0.25 ("perl-unicode-normalize" . "1.26")
   0.25 ("emacs-protobuf-mode" . "3.10.1")
   0.25 ("libcss" . "0.9.0")
   0.25 ("clalsadrv" . "2.0.0")
   0.25 ("icu4c" . "64.2")
   0.25 ("libraw" . "0.18.12")
   0.25 ("ruby-bacon-bits" . "0.1.0")
   0.25 ("zeromq" . "4.3.2")
   0.25 ("ruby-coderay" . "1.1.2")
   0.25 ("perl-sub-install" . "0.928")
   0.25 ("argon2" . "20171227")
   0.25 ("ecl-ptester" . "20160929")
   0.25 ("hunspell-dict-fr-toutesvariantes" . "6.2")
   0.25 ("perl-date-calc" . "6.4")
   0.25 ("perl-date-calc-xs" . "6.4")
   0.25 ("perl-data-compare" . "1.27")
   0.25 ("redis" . "4.0.10")
   0.25 ("jbig2dec" . "0.16")
   0.25 ("mkfontdir" . "1.0.7")
   0.25 ("pgpdump" . "0.33")
   0.25 ("lxde-icon-theme" . "0.5.1")
   0.25 ("fuse-exfat" . "1.3.0")
   0.25 ("emacs-2048-game" . "20151026.1233")
   0.25 ("ruby-pdf-core" . "0.8.1")
   0.25 ("libfs" . "1.0.8")
   0.25 ("diffstat" . "1.62")
   0.25 ("ruby-websocket-extensions" . "0.1.3")
   0.25 ("lpsolve" . "5.5.2.5")
   0.25 ("perl-list-allutils" . "0.09")
   0.25 ("seren" . "0.0.21")
   0.25 ("font-sil-gentium" . "5.000")
   0.25 ("autoconf-archive" . "2019.01.06")
   0.25 ("aspell" . "0.60.6.1")
   0.25 ("lightning" . "2.1.3")
   0.25 ("libnslog" . "0.1.2")
   0.25 ("aspell-dict-hi" . "0.02-0")
   0.25 ("perl-encode-detect" . "1.01")
   0.25 ("font-hermit" . "2.0")
   0.25 ("cl-map-set" . "0.0.0-1.7b4b545")
   0.25 ("libxfont" . "2.0.3")
   0.25 ("font-sil-andika" . "5.000")
   0.25 ("sqlcipher" . "3.4.2")
   0.25 ("perl-class-c3" . "0.34")
   0.25 ("perl-type-tiny-xs" . "0.014")
   0.25 ("ruby-atoulme-saikuro" . "1.2.1")
   0.25 ("perl-test-yaml" . "1.07")
   0.25 ("cl-s-xml" . "3")
   0.25 ("perl-cache-cache" . "1.08")
   0.25 ("ruby-shoulda-context" . "1.2.2")
   0.25 ("perl-pathtools" . "3.75")
   0.25 ("ruby-liquid" . "4.0.0")
   0.25 ("perl-file-slurper" . "0.012")
   0.25 ("perl-file-finder" . "0.53")
   0.25 ("c-ares" . "1.15.0")
   0.25 ("check" . "0.12.0")
   0.25 ("less" . "530")
   0.25 ("dropbear" . "2019.78")
   0.25 ("guile2.0-lib" . "0.2.6.1")
   0.25 ("perl-uri-ws" . "0.03")
   0.25 ("zabbix-agentd" . "4.4.1")
   0.25 ("font-bitstream-vera" . "1.10")
   0.25 ("paml" . "4.9e")
   0.25 ("abduco" . "0.6")
   0.25 ("tzdata" . "2019b")
   0.25 ("perl-devel-globaldestruction" . "0.14")
   0.25 ("macchanger" . "1.7.0")
   0.25 ("zip" . "3.0")
   0.25 ("font-sun-misc" . "1.0.3")
   0.25 ("gfortran" . "7.4.0")
   0.25 ("bdftopcf" . "1.1")
   0.25 ("guile-sparql" . "0.0.7")
   0.25 ("perl-devel-hide" . "0.0010")
   0.25 ("sound-theme-freedesktop" . "0.8")
   0.25 ("guile2.0-bytestructures" . "1.0.6")
   0.25 ("gcc-objc" . "7.4.0")
   0.25 ("emacs-gtk-look" . "29")
   0.25 ("gettext" . "0.20.1")
   0.25 ("libcgroup" . "0.41")
   0.25 ("emacs-flx" . "0.6.1")
   0.25 ("enet" . "1.3.14")
   0.25 ("perl-html-parser" . "3.72")
   0.25 ("torsocks" . "2.3.0")
   0.25 ("libexttextcat" . "3.4.5")
   0.25 ("perl-data-page" . "2.03")
   0.25 ("perl-data-section" . "0.200007")
   0.25 ("readline" . "7.0.5")
   0.25 ("ii" . "1.8")
   0.25 ("keyutils" . "1.6")
   0.25 ("emacs-smex" . "3.0")
   0.25 ("perl-tie-toobject" . "0.03")
   0.25 ("nss-mdns" . "0.14.1")
   0.25 ("rush" . "2.1")
   0.25 ("ruby-mini-portile" . "2.4.0")
   0.25 ("perl-regexp-pattern-license" . "3.1.94")
   0.25 ("cpufrequtils" . "0.3")
   0.25 ("sg3-utils" . "1.44")
   0.25 ("lbzip2" . "2.5")
   0.25 ("libbson" . "1.6.2")
   0.25 ("perl-danga-socket" . "1.62")
   0.24 ("perl-statistics-basic" . "1.6611")
   0.24 ("perl-text-neattemplate" . "0.1101")
   0.24 ("sshpass" . "1.06")
   0.24 ("ecl-html-encode" . "1.2")
   0.24 ("ebtables" . "2.0.10-4")
   0.24 ("docbook-xml" . "4.1.2")
   0.24 ("perl-string-rewriteprefix" . "0.007")
   0.24 ("grue-hunter" . "1.0")
   0.24 ("bundler" . "1.17.3")
   0.24 ("tinc" . "1.0.36")
   0.24 ("nudoku" . "1.0.0")
   0.24 ("libxml2" . "2.9.9")
   0.24 ("iceauth" . "1.0.8")
   0.24 ("perl-inline" . "0.81")
   0.24 ("perl-text-template" . "1.55")
   0.24 ("perl-test-base" . "0.89")
   0.24 ("ruby-log4r" . "1.1.10")
   0.24 ("perl-bit-vector" . "7.4")
   0.24 ("postgresql" . "10.10")
   0.24 ("ruby-eventmachine" . "1.2.7")
   0.24 ("tokyocabinet" . "1.4.48")
   0.24 ("perl-class-accessor-chained" . "0.01")
   0.24 ("clustal-omega" . "1.2.4")
   0.24 ("perl-cddb-get" . "2.28")
   0.24 ("perl-cwd-guard" . "0.05")
   0.24 ("emacs-keyfreq" . "20160516.716")
   0.24 ("perl-curses" . "1.36")
   0.24 ("perl-ev" . "4.25")
   0.24 ("mhonarc" . "2.6.19")
   0.24 ("perl-tree-xpathengine" . "0.05")
   0.24 ("perl-lexical-sealrequirehints" . "0.011")
   0.24 ("cl-iterate" . "20160825")
   0.24 ("cl-puri" . "20180228")
   0.24 ("emacs-rudel" . "0.3.1")
   0.24 ("ruby-rspec-support" . "3.8.0")
   0.24 ("perl-hash-merge" . "0.300")
   0.24 ("perl-date-manip" . "6.76")
   0.24 ("guile-readline" . "2.2.6")
   0.24 ("moe" . "1.10")
   0.24 ("ruby-open4" . "1.3.4")
   0.24 ("scrypt" . "1.2.1")
   0.24 ("libatomic-ops" . "7.6.10")
   0.24 ("perl-test-exception" . "0.43")
   0.24 ("perl-webservice-musicbrainz" . "1.0.5")
   0.24 ("opari2" . "2.0.4")
   0.24 ("lua5.2-lpeg" . "1.0.2")
   0.24 ("xbitmaps" . "1.1.2")
   0.24 ("perl-test-warn" . "0.30")
   0.24 ("ratpoints" . "2.1.3")
   0.24 ("perl-sub-exporter-progressive" . "0.001013")
   0.24 ("fuse" . "2.9.9")
   0.24 ("perl-net-statsd" . "0.12")
   0.24 ("libaacs" . "0.9.0")
   0.24 ("indent" . "2.2.12")
   0.24 ("perl-strictures" . "1.005005")
   0.24 ("crypto++" . "8.0.0")
   0.24 ("paperkey" . "1.5")
   0.24 ("perl-devel-stacktrace" . "2.03")
   0.24 ("dfu-programmer" . "0.7.2")
   0.24 ("ecl" . "16.1.3")
   0.24 ("perl-test-taint" . "1.06")
   0.24 ("perl-threads" . "2.21")
   0.24 ("linux-libre-headers-stripped-tarball" . "4.19.56")
   0.24 ("exfat-utils" . "1.3.0")
   0.24 ("atool" . "0.39.0")
   0.24 ("sbm" . "0.9")
   0.24 ("emacs-recutils" . "1.8")
   0.24 ("perl-x11-protocol" . "0.56")
   0.24 ("ubuntu-keyring" . "2018.09.18.1")
   0.24 ("libnspsl" . "0.1.5")
   0.24 ("perl-package-stash-xs" . "0.29")
   0.24 ("perl-file-list" . "0.3.1")
   0.24 ("neon" . "0.30.2")
   0.24 ("perl-test-files" . "0.14")
   0.24 ("libusb" . "0.1.12")
   0.24 ("picprog" . "1.9.1")
   0.24 ("lua" . "5.3.5")
   0.24 ("perl-test-mocktime" . "0.17")
   0.24 ("bdb" . "5.3.28")
   0.24 ("perl-net-cidr-lite" . "0.21")
   0.24 ("perl-test-sharedfork" . "0.35")
   0.24 ("perl-file-sharedir-dist" . "0.07")
   0.24 ("perl-xml-regexp" . "0.04")
   0.24 ("docx2txt" . "1.4")
   0.24 ("json-c" . "0.12.1")
   0.24 ("emacs-howm" . "1.4.4")
   0.24 ("memtester" . "4.3.0")
   0.24 ("perl-autovivification" . "0.18")
   0.24 ("ocrad" . "0.27")
   0.24 ("gambit-c" . "4.9.2")
   0.24 ("perl-sub-name" . "0.21")
   0.24 ("mit-krb5" . "1.17")
   0.24 ("openssl" . "1.1.1c")
   0.24 ("binutils-static-stripped-tarball" . "2.32")
   0.24 ("perl-lingua-en-words2nums" . "0.18")
   0.24 ("perl-digest-md5" . "2.55")
   0.24 ("emacs-oauth2" . "0.11")
   0.24 ("perl-class-accessor" . "0.51")
   0.24 ("docbook-xsl" . "1.79.1")
   0.24 ("emacs-markup-faces" . "1.0.0")
   0.24 ("rlwrap" . "0.43")
   0.24 ("perl-config-general" . "2.63")
   0.24 ("cl-ptester" . "20160929")
   0.24 ("perl-path-class" . "0.37")
   0.24 ("mcelog" . "154")
   0.24 ("libpthread-stubs" . "0.4")
   0.24 ("perl-strictures" . "2.000006")
   0.24 ("iperf" . "3.1.7")
   0.24 ("pcre2" . "10.33")
   0.24 ("perl-compress-raw-zlib" . "2.090")
   0.24 ("qqwing" . "1.3.4")
   0.24 ("perl-error" . "0.17028")
   0.24 ("ccrypt" . "1.11")
   0.24 ("libmhash" . "0.9.9.9")
   0.24 ("perl-json" . "4.02")
   0.24 ("kyotocabinet" . "1.2.77")
   0.24 ("perl-net-dns" . "1.21")
   0.24 ("perl-unicode-linebreak" . "2019.001")
   0.24 ("perl-mime-types" . "2.17")
   0.24 ("figlet" . "2.2.5")
   0.24 ("libtheora" . "1.1.1")
   0.23 ("mig" . "1.8")
   0.23 ("perl-probe-perl" . "0.03")
   0.23 ("spiped" . "1.6.0")
   0.23 ("perl-test-pod" . "1.52")
   0.23 ("perl-stream-buffered" . "0.03")
   0.23 ("perl-lingua-en-number-isordinal" . "0.05")
   0.23 ("perl-lingua-stem-ru" . "0.04")
   0.23 ("libsodium" . "1.0.18")
   0.23 ("opusfile" . "0.11")
   0.23 ("perl-digest-hmac" . "1.03")
   0.23 ("perl-try-tiny" . "0.30")
   0.23 ("perl-data-optlist" . "0.110")
   0.23 ("libavc1394" . "0.5.4")
   0.23 ("gfortran" . "8.3.0")
   0.23 ("emacs-paredit" . "24")
   0.23 ("pv" . "1.6.6")
   0.23 ("perl-business-isbn" . "3.004")
   0.23 ("perl-http-message" . "6.18")
   0.23 ("mlmmj" . "1.3.0")
   0.23 ("kmod" . "26")
   0.23 ("libjxr" . "1.1")
   0.23 ("perl-http-date" . "6.02")
   0.23 ("texinfo" . "6.6")
   0.23 ("perl-text-german" . "0.06")
   0.23 ("bitshuffle-for-snappy" . "0.3.5")
   0.23 ("perl-class-tiny" . "1.006")
   0.23 ("perl-data-dumper-concise" . "2.023")
   0.23 ("perl-pod-coverage" . "0.23")
   0.23 ("lcov" . "1.14")
   0.23 ("perl-class-date" . "1.1.17")
   0.23 ("sysfsutils" . "1.3.0")
   0.23 ("perl-file-path" . "2.16")
   0.23 ("os-prober" . "1.77")
   0.23 ("font-gnu-unifont" . "12.1.03")
   0.23 ("midicsv" . "1.1")
   0.23 ("file" . "5.33")
   0.23 ("gperf" . "3.0.4")
   0.23 ("pngsuite" . "2017jul19")
   0.23 ("perl-scalar-list-utils" . "1.53")
   0.23 ("libpwquality" . "1.4.0")
   0.23 ("marisa" . "0.2.5")
   0.23 ("docbook-xml" . "4.5")
   0.23 ("font-mathjax" . "2.7.2")
   0.23 ("perl-io-string" . "1.08")
   0.23 ("protobuf-c" . "1.3.2")
   0.23 ("sysstat" . "12.1.6")
   0.23 ("perl-file-temp" . "0.2309")
   0.23 ("perl-encode-eucjpascii" . "0.03")
   0.23 ("cl-hu.dwim.asdf" . "20190521")
   0.23 ("perl-clone" . "0.43")
   0.23 ("perl-template-tiny" . "1.12")
   0.23 ("perl-xml-simple" . "2.25")
   0.23 ("libpsyc" . "20160913")
   0.23 ("sharutils" . "4.15.2")
   0.23 ("perl-string-camelcase" . "0.04")
   0.23 ("perl-mro-compat" . "0.13")
   0.23 ("perl-data-stag" . "0.14")
   0.23 ("perl-capture-tiny" . "0.48")
   0.23 ("perl-ipc-cmd" . "1.02")
   0.23 ("perl-json-maybexs" . "1.004000")
   0.23 ("gmp" . "6.1.2")
   0.23 ("wireless-tools" . "30.pre9")
   0.23 ("json-c" . "0.13.1")
   0.23 ("cl-utilities" . "0.0.0-1.dce2d2f")
   0.23 ("perl-test-tester" . "0.109")
   0.23 ("m4" . "1.4.18")
   0.23 ("perl-text-roman" . "3.5")
   0.23 ("unqlite" . "1.1.6")
   0.23 ("aumix" . "2.9.1")
   0.23 ("info-reader" . "6.6")
   0.23 ("libnfnetlink" . "1.0.1")
   0.23 ("perl-timedate" . "2.30")
   0.23 ("tcp-wrappers" . "7.6")
   0.23 ("perl-mailtools" . "2.21")
   0.23 ("libmnl" . "1.0.4")
   0.23 ("jansson" . "2.12")
   0.23 ("libunwind" . "1.3.1")
   0.23 ("zlib" . "1.2.11")
   0.23 ("mpc" . "1.1.0")
   0.23 ("libesmtp" . "1.0.6")
   0.23 ("bdb" . "6.2.32")
   0.23 ("lame" . "3.100")
   0.23 ("perl-email-address" . "1.912")
   0.23 ("perl-class-xsaccessor" . "1.19")
   0.23 ("libassuan" . "2.5.3")
   0.23 ("liburcu" . "0.11.1")
   0.23 ("luajit" . "2.1.0-beta3")
   0.23 ("libev" . "4.25")
   0.23 ("perl-text-balanced" . "2.03")
   0.23 ("perl-safe-isa" . "1.000010")
   0.23 ("perl-text-csv-xs" . "1.39")
   0.23 ("mobile-broadband-provider-info" . "20190116")
   0.23 ("cddlib" . "0.94i")
   0.23 ("libsigsegv" . "2.12")
   0.23 ("mujs" . "1.0.6")
   0.23 ("rpcsvc-proto" . "1.4")
   0.23 ("perl-extutils-helpers" . "0.026")
   0.23 ("cl-html-encode" . "1.2")
   0.23 ("nim" . "0.17.2")
   0.23 ("libupnp" . "1.6.25")
   0.23 ("cl-parse-number" . "1.5")
   0.23 ("perl-hash-fieldhash" . "0.15")
   0.23 ("libgcrypt" . "1.8.4")
   0.23 ("catcodec" . "1.0.5")
   0.23 ("iucode-tool" . "2.3.1")
   0.23 ("expat" . "2.2.7")
   0.23 ("scdoc" . "1.9.4")
   0.23 ("cl-parse-declarations" . "1.0.0")
   0.23 ("perl-lwp-mediatypes" . "6.02")
   0.22 ("perl-test-without-module" . "0.20")
   0.22 ("libelf" . "0.8.13")
   0.22 ("perl-log-log4perl" . "1.49")
   0.22 ("cracklib" . "2.9.7")
   0.22 ("capstone" . "3.0.5")
   0.22 ("libyaml" . "0.1.7")
   0.22 ("man-pages" . "5.03")
   0.22 ("pwgen" . "2.08")
   0.22 ("perl-data-uniqid" . "0.12")
   0.22 ("libpfm4" . "4.9.0")
   0.22 ("perl-test-longstring" . "0.17")
   0.22 ("czmq" . "4.2.0")
   0.22 ("bzip2" . "1.0.6")
   0.22 ("libmspack" . "0.10.1")
   0.22 ("perl-algorithm-diff" . "1.1903")
   0.22 ("perl-io-html" . "1.00")
   0.22 ("perl-task-weaken" . "1.06")
   0.22 ("perl-config-autoconf" . "0.317")
   0.22 ("perl-term-readkey" . "2.37")
   0.22 ("dtach" . "0.9")
   0.22 ("libdvbpsi" . "1.3.2")
   0.22 ("libnumbertext" . "1.0.5")
   0.22 ("libpipeline" . "1.5.1")
   0.22 ("libedit" . "20191025-3.1")
   0.22 ("snapscreenshot" . "1.0.14.3")
   0.22 ("jemalloc" . "5.2.0")
   0.22 ("libbsd" . "0.9.1")
   0.20 ("fluid-3" . "2.1")
   0.20 ("gcc-toolchain" . "7.4.0")
   0.19 ("ld-wrapper" . "0")
   0.19 ("kbd-neo" . "2486")
   0.03 ("bootstrap-binaries" . "0")
   0.02 ("guile-bootstrap" . "2.0")
   0.02 ("binutils-bootstrap" . "0")
   0.01 ("gcc-bootstrap" . "0")
   0.01 ("bootstrap-mescc-tools" . "0.5.2")
   0.01 ("bootstrap-mes" . "0")
   0.01 ("glibc-bootstrap" . "0")
   0.01 ("linux-libre-headers-bootstrap" . "0")

  $ guix describe
  Generacio 116	Nov 18 2019 00:33:47	(nuna)
    guix 9c9982d
      repository URL: https://git.savannah.gnu.org/git/guix.git
      branch: master
      commit: 9c9982dc0c8c38ce3821b154b7e92509c1564317
#+end_example

             reply	other threads:[~2019-11-24 21:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-24 21:44 Ludovic Courtès [this message]
2019-12-02 19:15 ` How long to compute a package derivation? zimoun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87h82tx843.fsf@inria.fr \
    --to=ludo@gnu.org \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.