id
int64 0
45.1k
| file_name
stringlengths 4
68
| file_path
stringlengths 14
193
| content
stringlengths 32
9.62M
| size
int64 32
9.62M
| language
stringclasses 1
value | extension
stringclasses 6
values | total_lines
int64 1
136k
| avg_line_length
float64 3
903k
| max_line_length
int64 3
4.51M
| alphanum_fraction
float64 0
1
| repo_name
stringclasses 779
values | repo_stars
int64 0
882
| repo_forks
int64 0
108
| repo_open_issues
int64 0
90
| repo_license
stringclasses 8
values | repo_extraction_date
stringclasses 146
values | sha
stringlengths 64
64
| __index_level_0__
int64 0
45.1k
| exdup_ids_cmlisp_stkv2
sequencelengths 1
47
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
40,490 | qualified-name.lisp | psteeve_tsinco/src/nodes-elements/qualified-name.lisp | (defclass qualified-name (node)
((kind :initarg :kind
:initform :qualified-name
:reader kind)
(left :initarg :left
:initform (error "Must supply a value for \"left\"")
:reader left)
(right :initarg :right
:initform (error "Must supply a value for \"right\"")
:reader right)))
| 340 | Common Lisp | .lisp | 10 | 26.6 | 63 | 0.59697 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | ef98d8d8a51a44211ae343a8b9a96ca7c32b91079547eadc34582698da455688 | 40,490 | [
-1
] |
40,491 | literal-like-node.lisp | psteeve_tsinco/src/nodes-elements/literal-like-node.lisp |
(defclass literal-like-node (node)
((text :initarg :text :initform (error "Must supply a value") :reader text)
(is-unterminated :initarg :is-untermnated :reader is-unterminated?)
(has-extended-unicode-escape :initarg :has-extended-unicode-escape :reader has-extended-unicode-escape?)))
| 295 | Common Lisp | .lisp | 4 | 70.5 | 109 | 0.758621 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 2c43849b744c69f93c069cd309b89d2d02bcfcbe0d920a3e8068baa545ec8b2a | 40,491 | [
-1
] |
40,492 | parenthesized-expression.lisp | psteeve_tsinco/src/nodes-elements/parenthesized-expression.lisp | (defclass parenthesized-expression (primary-expression)
((kind :initarg :kind :initform :parenthesized-expression :reader kind)
(expression :initarg :expression :initform (error "Must supply a value for expression.") :reader expression)))
| 244 | Common Lisp | .lisp | 3 | 78.666667 | 113 | 0.784232 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | d2afb112183d183c1f17bb59c7aa135ae91337acc01d0d77d5d5f598c191551d | 40,492 | [
-1
] |
40,493 | signature-declaration-base.lisp | psteeve_tsinco/src/nodes-elements/signature-declaration-base.lisp |
(defclass signature-declaration-base (named-declaration)
((kind :initarg :kind :initform :signature-declaration-base :reader kind)
(name :initarg :name :reader name)
(type-parameters :initarg :type-parameters :initform nil :reader type-parameters)
(parameters :initarg :parameters :initform (error "Must supply a value for \"parameters\"") :reader parameters)
(sig-type :initarg :sig-type :reader sig-type)))
| 424 | Common Lisp | .lisp | 6 | 67.166667 | 114 | 0.755396 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | ef1b1ef630a37b8f0867b6889c9d93d8df855add77600419166d6c3d6b926c18 | 40,493 | [
-1
] |
40,494 | template.lisp | psteeve_tsinco/src/nodes-elements/template.lisp |
(defclass template-head (literal-like-node)
((kind :initarg :template-head :initform :template-head :reader kind)
(parent :initarg :parent :initform (error "Must supply a value form parent.") :reader parent)))
(defclass template-tail (literal-like-node)
((kind :initarg :kind :initform :template-head :reader kind)
(parent :initarg :parent :initform (error "Must supply a value for parent.") :reader parent)))
(defclass template-span (node)
((kind :initarg :kind :initform :template-span :reader kind)
(parent :initarg :parent :initform (error "Must supply a value for parent.") :reader parent)
(expression :initarg :expression :initform (error "Must supply a value for expression.") :reader expression)
(literal :initarg :literal :initform (error "Must supply a value for literal.") :reader literal)))
(defclass template-middle (literal-like-node)
((kind :initarg :kind :initform :template-middle :reader kind)
(parent :initarg :parent :initform (error "Must supply a value for parent.") :reader parent)))
(defclass template-expression (primary-expression)
((kind :initarg :kind :initform :template-expression :reader kind)
(head :initarg :head :initform (error "Must suplly a value for head.") :reader head)
(template-sans :initarg :template-sans :initform (error "Must supply a value for template-sans.") :reader template-sans)))
| 1,376 | Common Lisp | .lisp | 18 | 73.055556 | 125 | 0.742604 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 29ee3ee53bfef70eeccd9483c2572a8fd8dc2d38c415118790b66681c4b3917c | 40,494 | [
-1
] |
40,495 | namespace-import.lisp | psteeve_tsinco/src/nodes-elements/namespace-import.lisp | (defclass namespace-import (named-declaration)
((kind :initarg :kind
:initform :namespace-import
:reader kind)
(parent :initarg :parent :reader parent)
(name :initarg :name
:initform (error "Must supply a value for \"name\""))))
| 264 | Common Lisp | .lisp | 7 | 31.714286 | 64 | 0.657588 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | eb808d513c85fc7650a5bde7364ab27ead04fbacaabb762f303c382d3b44a542 | 40,495 | [
-1
] |
40,496 | variable-declaration-list.lisp | psteeve_tsinco/src/nodes-elements/variable-declaration-list.lisp | (defclass variable-declaration-list (node)
((kind :initarg :kind :initform :variable-declaration-list :reader kind)
(parent :initarg :parent :initform (error "Must supply a value for parent") :reader parent)
(declarations :initarg declarations :initform (error "Must supply a value for declarations.") :reader declarations)))
| 334 | Common Lisp | .lisp | 4 | 80.5 | 120 | 0.766667 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 4f7cb8a19267726c49a689a87271fbf875e44964e937bfd80125c7008fc60034 | 40,496 | [
-1
] |
40,497 | function-declaration.lisp | psteeve_tsinco/src/nodes-elements/function-declaration.lisp | (defclass function-declaration (function-like-declaration-base declaration-statement)
((kind :initarg :kind :initform :function-declaration :reader function-declaration)
(name :initarg :name :reader name)
(body :initarg :body :reader body)))
(defmethod initialize-instance :after ((object function-declaration) &key)
(with-slots (name body parameters modifiers) object
(setf parameters (mapcar #'parse-simple-sexp (parameters object)))
(setf name (parse-simple-sexp (name object)))
(setf body (parse-simple-sexp (body object)))
(setf modifiers (mapcar #'parse-simple-sexp (modifiers object)))))
| 622 | Common Lisp | .lisp | 10 | 58.5 | 85 | 0.751227 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | d2a7a889af6a52784dfb2b2554cc22b14f5a8a15a18f7e2a0a6c65c5cd2250ac | 40,497 | [
-1
] |
40,498 | method-signature.lisp | psteeve_tsinco/src/nodes-elements/method-signature.lisp | (defclass method-signature (signature-declaration-base type-element)
((kind :initarg :kind
:initform (error "Must supply a value for \"kind\"")
:reader kind)
(parent :initarg :parent
:initform (error "Must supply a value for \"parent\"")
:reader parent)
(name :initarg :name
:initform (error "Must supply a value for \"name\"")
:reader name)))
| 410 | Common Lisp | .lisp | 10 | 33.4 | 68 | 0.6225 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 6b7c668646558cda32d2d5dbe0036d55aef5a2be88bb1947ce3ae4ddb1c3d0a6 | 40,498 | [
-1
] |
40,499 | string-literal.lisp | psteeve_tsinco/src/nodes-elements/string-literal.lisp | (defclass string-literal (literal-expression)
((kind :initarg :kind :initform :string-literal :reader kind)))
| 112 | Common Lisp | .lisp | 2 | 54 | 65 | 0.763636 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 9caf909f3899cb14b6cb32663bf98ceffef5b6efa1f0070d60ecdb88072c48f2 | 40,499 | [
-1
] |
40,500 | identifier.lisp | psteeve_tsinco/src/nodes-elements/identifier.lisp |
(defclass identifier (primary-expression a-declaration)
((kind :initarg :kind :initform :identifier)
(escaped-text :initarg :escaped-text
:reader :escaped-text)))
| 186 | Common Lisp | .lisp | 4 | 39.75 | 55 | 0.696133 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 6a9ebd95646bff6bbbb5836caa79e84d44d20e5886aa77b42f736fc50b31941c | 40,500 | [
-1
] |
40,501 | node.lisp | psteeve_tsinco/src/nodes-elements/node.lisp | (in-package :tsinco.node-elements)
(defclass node (text-range)
((kind :initarg :kind :initform :node :accessor kind)
(flags :initarg :flags :reader flags)
(decorators :initarg :decorators :accessor decorators)
(modifiers :initarg :modifiers :accessor modifiers)
(id :initarg :id :accessor id)
(parent :initarg :parent :accessor parent)
(modifier-flags-cache :initarg :modifier-flags-cache :accessor modifier-flags-cache)
(transform-flags :initarg :transform-flags :accessor transform-flags)))
| 518 | Common Lisp | .lisp | 10 | 48.3 | 87 | 0.753452 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 675e749afaea4347fa199267b575c98fd2b1f6aa1738457f299dc2741ce73345 | 40,501 | [
-1
] |
40,502 | array-literal-expression.lisp | psteeve_tsinco/src/nodes-elements/array-literal-expression.lisp | (defclass array-literal-expression (primary-expression)
((kind :initarg :kind :initform :array-literal-expression :reader kind)
(elements :initarg :elements :initform (error "Must supply a value for elements.") :reader elements)
(multi-line :initarg :multi-line :reader multi-line?)))
| 293 | Common Lisp | .lisp | 4 | 70.25 | 103 | 0.757785 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | df6387789833f57b0712ac0448d1fceb49fad9bb42e37f40702931aecf593207 | 40,502 | [
-1
] |
40,503 | heritage-clause.lisp | psteeve_tsinco/src/nodes-elements/heritage-clause.lisp | (in-package :tsinco.node-elements)
(defclass heritage-clause (node)
((kind :initarg :kind
:initform :heritage-clause
:reader kind)
(parent :initarg :parent
:initform (error "Must supply a value for \"parent\"")
:reader parent)
(token :initarg :token
:initform (error "Must supply a value for \"token\"")
:reader token)
(types :initarg :types
:initform (error "Must supply a value for \"types\"")
:reader types)))
| 505 | Common Lisp | .lisp | 14 | 28.5 | 65 | 0.610204 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | db59f4aaf101d8a8ef73d710ffd3f47b889f2a8bbf3d6199c88e27f95a6979c8 | 40,503 | [
-1
] |
40,504 | decorator.lisp | psteeve_tsinco/src/nodes-elements/decorator.lisp | (in-package :tsinco.node-elements)
(defclass decorator (node)
((kind :initarg :kind
:initform :decorator
:reader kind)
(expression :initarg :expression
:initform (error "Must provide a value for \"expression\"")
:reader expression)))
(defmethod initialize-instance :after ((object decorator) &key)
(with-slots (expression) object
(setf expression (parse-simple-sexp expression))))
| 442 | Common Lisp | .lisp | 11 | 33.636364 | 74 | 0.675991 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 8e3bc6415e214398ac093a9d290e4bc95a8740287798670914a27ebf441886ba | 40,504 | [
-1
] |
40,505 | for-statement.lisp | psteeve_tsinco/src/nodes-elements/for-statement.lisp | (defclass for-statement (iteration-statement)
((kind :initarg :kind :initform :for-statement :reader kind)
(initializer :initarg :initializer :reader initializer)
(the-condition :initarg :the-condition :reader the-condition)
(incrementor :initarg :incrementor :reader incrementor)))
| 295 | Common Lisp | .lisp | 5 | 55.8 | 64 | 0.772414 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 6173f218afbba9efaf377a0338e878226907f633972cc6db8400770e0be520d7 | 40,505 | [
-1
] |
40,506 | for-in-statement.lisp | psteeve_tsinco/src/nodes-elements/for-in-statement.lisp | (defclass for-in-statement (iteration-statement)
((kind :initarg :kind :initform :for-in-statement :reader kind)
(initializer :initarg :for-initializer :initform (error "Must supply a value for initializer.") :reader initializer)
(expression :initarg :expression :initform (error "Must supply a value for expresson.") :reader expression)))
| 348 | Common Lisp | .lisp | 4 | 84 | 119 | 0.764535 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 33ac632f6f3aa86a68b2d70719b405b1eb8c41b6c85c23d7c438749e476c958a | 40,506 | [
-1
] |
40,507 | type-parameter-declaration.lisp | psteeve_tsinco/src/nodes-elements/type-parameter-declaration.lisp | (defclass type-parameter-declaration (named-declaration)
((kind :initarg :kind
:initform :type-parameter-declaration
:reader type-parameter-declaration)
(parent :initarg :parent
:initform (error "Must supply a value for \"parent\"")
:reader parent)
(name :initarg :name
:initform (error "Must supply a value for \"name\"")
:reader name)
constraint
default
expression))
| 444 | Common Lisp | .lisp | 13 | 27.384615 | 65 | 0.654292 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 85413ae4207997ac891c86b94cd30978929c522d994c9de8f4b01e0186389d4b | 40,507 | [
-1
] |
40,508 | numerical-literal.lisp | psteeve_tsinco/src/nodes-elements/numerical-literal.lisp | (defclass numeric-literal (literal-expression)
((kind :initarg :kind :initform :numeric-literal :reader kind)
(numeric-literal-flags :initarg :numeric-literal-flags :reader numeric-literal-flags)))
| 203 | Common Lisp | .lisp | 3 | 65 | 90 | 0.78 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 523675088d648dbc9f2a7fdb781f139d450810bded1325f1f538ee35c7f8926b | 40,508 | [
-1
] |
40,509 | array-binding-pattern.lisp | psteeve_tsinco/src/nodes-elements/array-binding-pattern.lisp | (defclass array-binding-pattern (node)
((kind :initarg :kind
:initform :array-binding-pattern
:reader kind)
(parent :initarg :parent
:initform (error "Must supply a value for parent.")
:reader parent)
(elements :initarg :elements
:initform (error "Must supply a value for elements.")
:reader elements)))
| 378 | Common Lisp | .lisp | 10 | 29.4 | 66 | 0.622283 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 1a8aaac7b4eee6ae93ff2a1f0307654dfe4ec7ccecf4495b0ba313e1c48296ef | 40,509 | [
-1
] |
40,510 | object-literal-element.lisp | psteeve_tsinco/src/nodes-elements/object-literal-element.lisp | (defclass object-literal-element (named-declaration)
((object-literal-brand :initarg :object-literal-brand
:reader object-literal-brand)
(name :initarg :name
:reader name)))
| 214 | Common Lisp | .lisp | 5 | 33.8 | 55 | 0.653846 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 0213f16649fc86f4c706a16e7c9d1baaf658a3eec8a6552fdf881572b8e0d30c | 40,510 | [
-1
] |
40,511 | enum-declaration.lisp | psteeve_tsinco/src/nodes-elements/enum-declaration.lisp | (defclass enum-declaration (declaration-statement)
((kind :initarg :kind :initform :enum-declaration :reader kind)
(name :initarg :name :initform (error "Must supply a value for \"name\"") :reader name)
(members :initarg :members :initform (error "Must supply a value for \"members\"") :reader members)))
| 313 | Common Lisp | .lisp | 4 | 75.25 | 104 | 0.728155 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 4f44c0d221164063f95aedd55bc57d4cd0e2f937b61f86461c9b7826d9b0de48 | 40,511 | [
-1
] |
40,512 | new-expression.lisp | psteeve_tsinco/src/nodes-elements/new-expression.lisp | (defclass new-expression (primary-expression declaration)
((kind :initarg :kind
:initform :new-expression
:reader kind)
(expression :initarg :expression
:initform (error "Must supply a value for \"expression\"")
:reader expression)
(type-arguments :initarg :type-arguments
:reader type-arguments)
(arguments :initarg :arguments
:reader arguments)))
| 441 | Common Lisp | .lisp | 11 | 30.727273 | 73 | 0.632558 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 952e3079c6e7e35de224c971edb534917956aeea29cbed7c5932d6d571011f43 | 40,512 | [
-1
] |
40,513 | source-file.lisp | psteeve_tsinco/src/nodes-elements/source-file.lisp | (defclass source-file (a-declaration)
((kind :initarg :kind
:initform :source-file
:reader kind)
(statements :initarg :statements
:initform (error "Must supply a value for statements")
:reader statements)
(end-of-file-token :initarg :end-of-file-token
:reader end-of-file-token)
(filename :initarg :filename
:initform (error "Must supply a filename")
:reader filename)
(text :initarg :text
:initform (error "Must supply a value for text")
:reader text)
(external-module-indicator :initarg :external-module-indicator
:initform nil
:accessor external-module-indicator)
(amd-dependencies :initarg :amd-dependencies
:initform nil
:accessor amd-dependencies)
(module-name :initarg :module-name
:accessor module-name)
(referenced-files :initarg :referenced-files
:initform nil
:accessor referenced-files)
(type-reference-directives :initarg :type-reference-directives
:initform nil
:accessor type-reference-directives)
(lib-reference-directives :initarg :lib-reference-directives
:initform nil
:accessor lib-reference-directives)
(language-variant :initarg :language-variant
:initform :standard
:reader language-variant)
(is-declaration-file :initarg :is-declaration-file
:accessor is-declaration-file)
(has-no-default-lib? :initarg :has-no-default-lib
:initform nil
:reader has-no-default-lib?)
(language-version :initarg :language-version
:initform :es5
:reader language-version)
(parse-diagnostics :initarg :parse-diagnostics
:reader parse-diagnostics)
(node-count :initarg :node-count
:reader node-count)
(pragmas :initarg :pragmas
:reader pragmas)
(bind-diagnostics :initarg :bind-diagnostics
:reader bind-diagnostics)
(identifiers :initarg :identifiers
:reader identifiers)
(identifier-count :initarg :identifier-count
:reader identifier-count)
(script-kind :initarg :script-kind
:reader script-kind)
(transform-flags :initarg :transform-flags
:reader transform-flags)
(ambient-module-names :initarg :ambient-module-names
:reader ambient-module-names)
(module-augmentations :initarg :module-augmentations
:reader module-augmentations)
(imports :initarg :imports
:reader imports)
(original-file-name :initarg :original-file-name
:reader original-file-name)
(resolved-path :initarg :resolved-path
:reader resolved-path)
(path :initarg :path
:reader path)
(modifier-flags-cache :initarg :modifier-flags-cache
:reader modifier-flags-cache)))
(defmethod initialize-instance :after ((object source-file) &key)
(with-slots (statements end-of-file-token) object
(setf statements (mapcar #'parse-simple-sexp (statements object)))
(setf end-of-file-token (parse-simple-sexp (end-of-file-token object)))))
| 3,527 | Common Lisp | .lisp | 77 | 32.701299 | 77 | 0.595646 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | e3af6ee725e4a8b185770d0958467b3ae1b1d1e6fda69f0c4185b30842609954 | 40,513 | [
-1
] |
40,514 | property-signature.lisp | psteeve_tsinco/src/nodes-elements/property-signature.lisp | (defclass property-signature (type-element)
((kind :initarg :kind :initform :property-signature :reader kind)
(name :initarg :name :initform (error "Must supply a value for name.") :reader name)
(question-token :initarg :question-token :reader question-token)
(initializer :initarg :initializer :reader initializer)))
| 329 | Common Lisp | .lisp | 5 | 62.6 | 87 | 0.756173 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | ddc96c5df98fe803ef80221ebb2069cdc219bd139180de8f68b904f55933d3e3 | 40,514 | [
-1
] |
40,515 | type-reference.lisp | psteeve_tsinco/src/nodes-elements/type-reference.lisp | (defclass type-reference (node-with-type-arguments)
((kind :initarg :kind
:initform :type-reference
:reader kind)
(type-name :initarg :type-name
:initform (error "Must supply a value for \"type-name\"")
:reader type-name)))
(defmethod initialize-instance :after ((object type-reference) &key)
(with-slots (type-name type-arguments) object
(setf type-name (parse-simple-sexp (type-name object)))))
| 455 | Common Lisp | .lisp | 10 | 38.7 | 71 | 0.666667 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 1fa805b5d92e19d9816a4d077db3661462a8e331f280d63054205e0811316b63 | 40,515 | [
-1
] |
40,516 | module-block.lisp | psteeve_tsinco/src/nodes-elements/module-block.lisp | (defclass module-block (statement)
((kind :initarg :kind
:initform :module-block
:reader kind)
(statements :initarg :statements
:reader statements
:initform (error "Must supply a value for \"statements\""))))
(defmethod initialize-instance :after ((object module-block) &key)
(with-slots (statements) object
(setf statements (mapcar #'parse-simple-sexp (statements object)))))
| 437 | Common Lisp | .lisp | 10 | 36.7 | 76 | 0.669014 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 5cd44b29db22d77833f7945c74fe94ae2d6db6fc522631534704c33c483a8581 | 40,516 | [
-1
] |
40,517 | expression-statement.lisp | psteeve_tsinco/src/nodes-elements/expression-statement.lisp |
(defclass expression-statement (statement)
((kind :initarg :kind :initform :expression-statement :reader kind)
(expression :initarg :expression :initform (error "Must supply a value for expression") :reader expression)))
(defmethod initialize-instance :after ((object expression-statement) &key)
(with-slots (expression) object
(setf expression (parse-simple-sexp (expression object)))))
| 401 | Common Lisp | .lisp | 6 | 63.666667 | 112 | 0.770992 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 87efdfa4ff62c72e37df247679e52a307970a41a80851d7c5e5e31993c7bc4a3 | 40,517 | [
-1
] |
40,518 | block.lisp | psteeve_tsinco/src/nodes-elements/block.lisp | (defclass a-block (statement)
((kind :initarg :kind :initform :a-block :reader kind)
(multi-line :initarg :multi-line :reader multi-line)
(statements :initarg :statements
:initform (error "Must supply value for statements")
:reader statements)))
(defmethod initialize-instance :after ((object a-block) &key)
(with-slots (statements) object
(setf statements (mapcar #'parse-simple-sexp (statements object)))))
| 454 | Common Lisp | .lisp | 9 | 44.444444 | 72 | 0.695946 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | c8fb5150bed978cf21e8bfe84ce1e67ffd2fd863630a32e63ac47ae419ee3cd7 | 40,518 | [
-1
] |
40,519 | type-node.lisp | psteeve_tsinco/src/nodes-elements/type-node.lisp | (in-package :tsinco.node-elements)
(defclass type-node (node)
((type-node-brand :initarg :type-node-brand
:reader type-node-brand)))
| 156 | Common Lisp | .lisp | 4 | 32.25 | 46 | 0.655629 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | dca4758d9d5fe85f46b8d5ba2e5c5f833ff3f2cf9b1c364c3c104ffb14c1e7fa | 40,519 | [
-1
] |
40,520 | construct-signature-declaration.lisp | psteeve_tsinco/src/nodes-elements/construct-signature-declaration.lisp | (defclass construct-signature-declaration (signature-declaration-base)
((kind :initarg :kind :initarg :construct-signature-declaration :reader kind)))
| 153 | Common Lisp | .lisp | 2 | 74.5 | 81 | 0.807947 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 70ace63c0ff282a91edad77c3171093fc40cf42526b6df4183b811ad08507a27 | 40,520 | [
-1
] |
40,521 | import-specifier.lisp | psteeve_tsinco/src/nodes-elements/import-specifier.lisp | (defclass import-specifier (named-declaration)
((kind :initarg :kind
:initform :import-specifier
:reader kind)
(parent :initarg :parent
:initform (error "Must supply a value for \"parent\"")
:reader parent)
(property-name :initarg :property-name
:reader property-name)
(name :initarg :name
:initform (error "Must supply a value for \"name\"")
:reader name)))
| 446 | Common Lisp | .lisp | 12 | 28.916667 | 65 | 0.612903 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | c7bb5130aa46ab3add09b53e76a3d3c2baad962877eb8c58ebdad637a284c20f | 40,521 | [
-1
] |
40,522 | parameter.lisp | psteeve_tsinco/src/nodes-elements/parameter.lisp |
(defclass parameter (named-declaration)
((kind :initarg :kind :initform :parameter :reader kind)
(parent :initarg :parent :reader parent)
(name :initarg :name :initform (error "Must supply value for name") :reader name)
exclamation-token
(type-parameter :initarg :type-parameter :reader type-parameter)
initializer))
(defmethod initialize-instance :after ((object parameter) &key)
(with-slots (name type-parameter) object
(setf name (parse-simple-sexp (name object)))
(setf type-parameter (parse-simple-sexp (type-parameter object)))))
| 565 | Common Lisp | .lisp | 11 | 47.727273 | 84 | 0.744565 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 81983cf312bcc998b377bb3ad86230836776070924e7d811ff28c417d7ac32cf | 40,522 | [
-1
] |
40,523 | return-statement.lisp | psteeve_tsinco/src/nodes-elements/return-statement.lisp | (defclass return-statement (statement)
((kind :initarg :kind :initform :return-statement :reader kind)
(expression :initarg :expression :reader expression)))
(defmethod initialize-instance :after ((object return-statement) &key)
(with-slots (expression) object
(if expression
(setf expression (parse-simple-sexp (expression object))))))
| 357 | Common Lisp | .lisp | 7 | 47.142857 | 70 | 0.747851 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | cedcefbd729fd9faaa1d742d3a56c260bdcef3ae8dc4a4df611551ec4d7521b7 | 40,523 | [
-1
] |
40,524 | call-expression.lisp | psteeve_tsinco/src/nodes-elements/call-expression.lisp | (defclass call-expression (left-hand-side-expression a-declaration)
((kind :initarg :kind :initform :call-expression :reader kind)
(expression :initarg :expression :initform (error "Must suplly a value for expression") :reader expression)
(type-arguments :initarg :type-arguments :accessor type-arguments)
(arguments :initarg :arguments :initform (error "Must supply a value for arguments") :reader arguments)))
(defmethod initialize-instance :after ((object call-expression) &key)
(with-slots (expression arguments) object
(setf expression (parse-simple-sexp (expression object)))
(setf arguments (parse-simple-sexp (arguments object)))))
| 663 | Common Lisp | .lisp | 9 | 70.111111 | 110 | 0.765697 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | ef279e84179dd6459f557a3609b6989b3609dc62f14258fd1fcce4a943fcfd3e | 40,524 | [
-1
] |
40,525 | node-array.lisp | psteeve_tsinco/src/nodes-elements/node-array.lisp | (defclass node-array (node text-range)
((has-trailing-comma :initarg :has-trailing-comma :reader has-trailing-comma?)
(node-list :initarg :node-list :initform (error "Must supply a value node-list") :reader node-list)))
(defmethod initialize-instance :after ((object node-array) &key)
(with-slots (node-list) object
(setf node-list (mapcar #'parse-simple-sexp (node-list object)))))
| 395 | Common Lisp | .lisp | 6 | 62.833333 | 104 | 0.734536 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 9576b3f22174665608553509889248c5bbdb103b541e52e94a9847d8da6fb34f | 40,525 | [
-1
] |
40,526 | project-reference.lisp | psteeve_tsinco/src/nodes-elements/project-reference.lisp | (defclass project-reference ()
((path :initarg path :reader path)
(original-pathp :initarg :original-path-p :reader original-path-p)
(prependp :initarg :prependp :reader prependp)
(circularp :initarg :circularp :reader circularp)))
| 243 | Common Lisp | .lisp | 5 | 45.4 | 69 | 0.747899 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | d1a161b98e12853cb86ab635a68da8c319462d0868d2844a6198c37458abc362 | 40,526 | [
-1
] |
40,527 | property-access-expression.lisp | psteeve_tsinco/src/nodes-elements/property-access-expression.lisp |
(defclass property-access-expression (member-expression named-declaration)
((kind :initarg :kind :initform :property-access-expression :reader kind)
(expression :initarg :expression :initform (error "Must supply an expression value") :reader expression)
(name :initarg :name :initform (error "Must supplly a name value") :reader name)))
(defmethod initialize-instance :after ((object property-access-expression) &key)
(with-slots (name expression) object
(setf name (parse-simple-sexp (name object)))
(setf expression (parse-simple-sexp (expression object)))))
| 581 | Common Lisp | .lisp | 8 | 69.125 | 107 | 0.761821 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | f5d9d80758c90c61af231613e16a60d20cb19d20817d02eee25bf2caab1bb3ec | 40,527 | [
-1
] |
40,528 | tsinco.asd | psteeve_tsinco/tsinco.asd | (asdf:defsystem :tsinco
:serial t
:components ((:file "src/packages")
(:file "src/syntaxkind")
(:file "src/ast")
(:file "src/token"))
:depends-on (:st-utils :flot))
| 216 | Common Lisp | .asd | 7 | 22.571429 | 39 | 0.526316 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 64b738d825b626a225681c3bc099109bb6b64865ac2f7f88348943bef4ab9241 | 40,528 | [
-1
] |
40,550 | factorial.ts | psteeve_tsinco/src/examples/factorial.ts | function factorial(n: number): number {
if (n === 0) {
return 1;
} else {
return n * factorial(n - 1);
}
}
| 135 | Common Lisp | .l | 7 | 14.285714 | 39 | 0.492188 | psteeve/tsinco | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | e2f027187989dc0f3eab1da065607b65db85220c287023b21fdd102db7f2cf58 | 40,550 | [
-1
] |
40,633 | positionable-stream.lisp | psteeve_flot/positionable-stream.lisp | (defpackage :positionable-stream
(:use
:common-lisp
:flot.stream)
(:export
:positionable-stream
:peek
:peek-for
:up-to
:reverse-contents
:reset
:set-to-end
:skip
:skip-to
:contents
:is-empty-p
:get-position))
(in-package :positionable-stream)
(defclass positionable-stream (flot)
((position :initform -1
:reader get-position)
(is-empty-p :reader is-empty-p))
(:documentation "A positionable-stream is a subclass of flot.
It provide additional methods appropriate to streams that can reposition their position references, but,
it is an abstract class because it does not provide an implementation of the inherited methods next and next-put.
The implementation of theses generics is left to the subclasses of positionable-stream: read-stream, write-stream and read-write-stream."))
(defgeneric peek (positionable-stream)
(:documentation "Answer the next element in the collection (as in the method next), but do not change the position reference. Answer nil if reference position is at the end."))
(defgeneric peek-for (positionable-stream value)
(:documentation "Determine the response of the method peek. If it is the same as the argument, \"value\", then increment the position reference and answer true. Otherwise answer false and do not change the position reference."))
(defgeneric up-to (positionable-stream value)
(:documentation "Answer a collection of elements starting with the next element accessed in the collection, and up to, not inclusive of, the next element that is equal to \"value\". If \"value\" is not in the collection, answer the entire rest of the collection."))
(defgeneric reverse-contents (positionable-stream)
(:documentation "Answer a copy of the receiver's contents in reverse order."))
(defgeneric reset (positionable-stream)
(:documentation "Set the reference position to the beginning of the collection."))
(defgeneric set-to-end (positionable-stream)
(:documentation "Set the reference position to the end of the collection."))
(defgeneric skip (positionable-stream n)
(:documentation "Set the reference position to be the current position plus the argument, \"n\", possibly adjusting the result so as the remain within the bounds of the collection."))
(defgeneric skip-to (positionable-stream value)
(:documentation "Set the reference position to be past the next occurence of the argument, \"value\", in the collection. Answer whether such an occurrence existed."))
| 2,512 | Common Lisp | .lisp | 42 | 56.190476 | 267 | 0.764538 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 42c74ac232139f720cc297693df2746e9c3f54af2a87a393aa0b802fe2ab0071 | 40,633 | [
-1
] |
40,634 | read-write-stream.lisp | psteeve_flot/read-write-stream.lisp | (defpackage :read-write-stream
(:use :common-lisp
:write-stream)
(:export :read-write-stream))
(in-package :read-write-stream)
(defclass read-write-stream (write-stream)
()
(:documentation "Represents accessor that can both read and write elements into its collection. It supports all the methods of both read-stream and write-stream."))
| 351 | Common Lisp | .lisp | 8 | 41.25 | 166 | 0.762463 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | b308467ee72b2f209516344426151352a25d70e6c98251e9c39708035400f597 | 40,634 | [
-1
] |
40,635 | stream.lisp | psteeve_flot/stream.lisp | (defpackage :flot.stream
(:use :common-lisp)
(:export
:flot
:at-end-p
:next
:next-put
:next-put-all
:do-each
:contents
:next-match-for))
(in-package :flot.stream)
(defclass flot ()
((contents :initarg :on
:initform (error "Must provide a value to stream on.")
:reader contents
:documentation "Answer all the objects in the collection.")))
(defgeneric at-end-p (flot)
(:documentation "Answer if cannot access any more objects"))
(defgeneric next (flot)
(:documentation "Answer the next object accessible in the collection."))
(defgeneric next-put (flot value &optional n)
(:documentation "Store the argument, \"value\", as the next element accessible in the collection.
Or as the next \"n\" number of elements accessible in the collection."))
(defgeneric next-put-all (flot values)
(:documentation "Store the elements in the argument, \"values\", as the next elements accessible in the collection."))
(defgeneric next-match-for (flot value)
(:documentation "Access the next object and answer whether it is equal to the argument, \"value\""))
(defgeneric do-each (flot func)
(:documentation "Evaluate the argument, \"func\", for each of the remaining elements that can be accessed in the collection."))
| 1,290 | Common Lisp | .lisp | 30 | 39.033333 | 129 | 0.716454 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | b7314496ed7288a388c114ef112ad65341f3a72e4eb71302f29c50be1ad0723a | 40,635 | [
-1
] |
40,636 | read-stream.lisp | psteeve_flot/read-stream.lisp | (defpackage :read-stream
(:use
:common-lisp
:positionable-stream)
(:export
:read-stream-on
:next-match-for
:at-end-p
:next
:reset
:get-position
:peek
:peek-for
:set-to-end
:up-to
:up-to-end
:read-stream
:limit-stream))
(in-package :read-stream)
(defclass read-stream (positionable-stream)
((limit-stream :initarg :limit-stream
:reader limit-stream))
(:documentation "is a concrete subclass of positionable-stream that represents
an accessor that can only read elements form its collection."))
(defmethod initialize-instance :after ((r read-stream) &key)
(with-slots (contents limit-stream is-empty-p) r
(setf limit-stream (1- (length contents)))
(setf is-empty-p (= 0 (length contents)))))
(defun read-stream-on (value)
(make-instance 'read-stream :on value))
(defmethod at-end-p ((stream read-stream))
(with-slots (limit-stream) stream
(>= (get-position stream) limit-stream)))
(defmethod next ((stream read-stream))
(if (not (at-end-p stream))
(with-slots (contents position) stream
(setf position (1+ position))
(elt contents position))
nil))
(defmethod reset ((stream read-stream))
(with-slots (position) stream
(setf position -1)
stream))
(defmethod peek ((stream read-stream))
(if (not (at-end-p stream))
(with-slots (contents position) stream
(elt contents (1+ position)))
nil))
(defmethod peek-for ((stream read-stream) value)
(let ((same? (eql (peek stream) value)))
(if same?
(with-slots (position) stream
(setf position (1+ (get-position stream))))
same?)))
(defmethod set-to-end ((stream read-stream))
(with-slots (position limit-stream) stream
(setf position limit-stream)))
(defmethod up-to ((stream read-stream) value)
(labels ((recur (result at-end-p)
(let ((n (next stream)))
(if (or (eql n value) at-end-p)
(nreverse result)
(progn
(push n result)
(recur result (at-end-p stream)))))))
(recur '() (at-end-p stream))))
(defmethod up-to-end ((stream read-stream))
(labels ((to-end (result)
(if (at-end-p stream)
(reverse result)
(progn
(push (next stream) result)
(to-end result)))))
(to-end '())))
(defmethod skip ((stream read-stream) n)
(with-slots (position) stream
(setf position (+ (get-position stream) n 1))
(if (at-end-p stream)
(set-to-end stream))))
(defmethod next-match-for ((stream read-stream) value)
(eql (next stream) value))
| 2,710 | Common Lisp | .lisp | 81 | 26.888889 | 80 | 0.615002 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 1189ee0d4dac46b67738cd80985998e4f542db78c41e3559365c29aa36faa930 | 40,636 | [
-1
] |
40,637 | write-stream.lisp | psteeve_flot/write-stream.lisp | (defpackage :write-stream
(:use
:common-lisp
:positionable-stream)
(:export
:write-stream
:cr
:cr-tab
:-space
:tab))
(in-package :write-stream)
(defclass write-stream (positionable-stream)
()
(:documentation "Is a subclass of positionable-stream representing accessors for writing elements into a collection."))
(defgeneric cr (write-stream)
(:documentation "Store the return character as the next element in the collection."))
(defgeneric cr-tab (write-stream &optional n)
(:documentation "Store the return character and a single tab character as the next two elements in the collection.
Follow the return character by n number of tab characters if n is provided."))
(defgeneric -space (write-stream)
(:documentation "Store the space character as the next element accessible in the collection."))
(defgeneric tab (write-stream)
(:documentation "Store the tab character as the next element accessible in the collection."))
| 966 | Common Lisp | .lisp | 23 | 39.130435 | 121 | 0.766275 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 9619623a5746dae49b05f13cf11f2df45939ac536f44b1818b2fc91fd7e86dc3 | 40,637 | [
-1
] |
40,638 | stream-test.lisp | psteeve_flot/stream-test.lisp | (defpackage :stream-test
(:use
:common-lisp
:read-stream
:st-test))
(in-package :stream-test)
(st-test:deftest test-read-stream-on ()
(check (equal (type-of (read-stream:read-stream-on "test")) 'read-stream::read-stream)))
(st-test:deftest test-at-end-p ()
(check (equal (read-stream:at-end-p
(read-stream:read-stream-on "test"))
nil)))
(st-test:deftest test-next ()
(check (equal (read-stream:next
(read-stream:read-stream-on "test"))
#\t)))
(st-test:deftest test-reset ()
(check (equal (read-stream:get-position
(read-stream:reset (read-stream:read-stream-on "test")))
-1)))
(st-test:deftest test-peek ()
(let ((stream (read-stream:read-stream-on "test")))
(combine-results
(check (equal (read-stream:peek stream)
#\t))
(check (equal (read-stream:get-position stream) -1)))))
(st-test:deftest test-peek-for ()
(let ((stream (read-stream:read-stream-on "test")))
(combine-results
(check (equal (read-stream:peek-for stream #\e)
nil))
(check (equal (read-stream:peek-for stream #\t) 0)))))
(st-test:deftest test-up-to ()
(let ((stream (read-stream:read-stream-on "toto a la test")))
(combine-results
(check (equal (read-stream:up-to stream #\Space)
'(#\t #\o #\t #\o)))
(check (equal (read-stream:up-to stream #\Space) '(#\a)))
(check (equal (read-stream:up-to stream #\Space) '(#\p #\e #\l #\o #\t #\t #\e))))))
(st-test:deftest test-set-to-end ()
(let ((stream (read-stream:read-stream-on "test")))
(read-stream:set-to-end stream)
(check (equal (read-stream:at-end-p stream) 't))))
| 1,784 | Common Lisp | .lisp | 43 | 33.511628 | 90 | 0.591474 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | cb82b481f34b59173d5bdec5d5395a8e3652355dff2076bc56520d2abef0c807 | 40,638 | [
-1
] |
40,639 | flot.asd | psteeve_flot/flot.asd | (asdf:defsystem :flot
:serial t
:components ((:file "stream")
(:file "positionable-stream")
(:file "read-stream")
(:file "write-stream")
(:file "read-write-stream")
(:file "flot")
(:file "stream-test"))
:depends-on (:st-test))
| 369 | Common Lisp | .asd | 10 | 21.7 | 57 | 0.421788 | psteeve/flot | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 1ef8c96752c5cad1a4c280f0684886ec470ff0c6a31515fa3448590b7931de7b | 40,639 | [
-1
] |
40,662 | st-test.lisp | psteeve_st-test/st-test.lisp | (defpackage :st-test
(:use :common-lisp)
(:import-from :st-utils :with-gensyms)
(:export
:deftest
:check
:combine-results))
(in-package :st-test)
(defvar *test-name* nil)
(defmacro deftest (name parameters &body body)
"Define a test function. Within a test function we can call
other test function or use 'check' to run individual test cases."
`(defun ,name ,parameters
(let ((*test-name* (append *test-name* (list ',name))))
,@body)))
(defmacro check (&body forms)
"Run each expression in 'forms' as a test case."
`(combine-results
,@(loop for f in forms collect `(report-result ,f ',f))))
(defmacro combine-results (&body forms)
"Combine the results (as booleans) of evaluating 'forms' in order."
(st-utils:with-gensyms (result)
`(let ((,result t))
,@(loop for f in forms collect `(unless ,f (setf ,result nil)))
,result)))
(defun report-result (result form)
"Report the results of a single test case. Called by 'check'."
(format t "~:[FAIL~;pass~] ... ~a: ~a~%" result *test-name* form)
result)
| 1,072 | Common Lisp | .lisp | 29 | 33.413793 | 70 | 0.672131 | psteeve/st-test | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:31 AM (Europe/Amsterdam) | 2d9246f67822a4b9116e08bf1b7bb369069849f29698c20483249e0803d97eeb | 40,662 | [
-1
] |
40,679 | package.lisp | zhaose233_lay/package.lisp | ;;;; package.lisp
(defpackage #:lay
(:use #:CL #:CL-USER)
(:export main lay_search lay_help lay_install)
)
| 114 | Common Lisp | .lisp | 5 | 20.4 | 48 | 0.657407 | zhaose233/lay | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 7e7d96aa2346c3263b2e6823c1322f58e13f0dfbcbbaeda8a3ce8ea3032c0d19 | 40,679 | [
-1
] |
40,680 | lay.lisp | zhaose233_lay/lay.lisp | (defvar *lay_version* "v0.1")
(in-package lay)
(defun main ( )
(defvar *posix-argv* CL-USER::*posix-argv*)
(when (= (length *posix-argv*) 1)
(lay_help)
(return-from main 0))
(setf my_arg (nth 1 *posix-argv*))
(cond ((string= my_arg "-h") (lay_help))
((string= my_arg "-Ss") (lay_search (nth 2 *posix-argv*)))
((string= my_arg "-S") (lay_install (nth 2 *posix-argv*)))
((string= my_arg "-V") (format t "lay: An AUR Helper Written In Common Lisp~%~D~%" *lay_version*))
((string= my_arg "-Sw") (lay_download (nth 2 *posix-argv*)))
)
(return-from main 0)
)
| 620 | Common Lisp | .lisp | 16 | 33.5625 | 106 | 0.57 | zhaose233/lay | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 8a5fbad3b35b1c44e0541234b8b622ce4d744f85d41a520a4030aeab26cb9d2d | 40,680 | [
-1
] |
40,681 | help.lisp | zhaose233_lay/help.lisp | (in-package lay)
(defun lay_help ()
(princ
"lay是一个AUR helper。但它不会帮你安装软件包,仅会帮你构建软件包。
用法:
lay
lay <操作> [...]
操作:
lay -h 帮助
lay -V 版本号
lay -S [包名] 构建包
lay -Ss [包名] 搜索包
lay -Sw [包名] 下载对应AUR包的PKGBUILD
lay -Sy 更新旧的构建包#TODO
如果不使用参数那么将执行 lay -Syu
"))
| 457 | Common Lisp | .lisp | 16 | 15.6875 | 40 | 0.582456 | zhaose233/lay | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 3047186bfd9dfce6916cbfedb649433070b0cf7b5a99596327749b4c6dda8cef | 40,681 | [
-1
] |
40,682 | install.lisp | zhaose233_lay/install.lisp | (in-package lay)
(defun lay_install ( keyword )
(format t ":: 尝试查找常规源~%")
(setf code_return (sb-ext:run-program "/usr/bin/pacman" (list "-Si" keyword) :input nil :output *standard-output*))
(when (= (sb-ext:process-exit-code code_return) 0)
(format t ":: 可以使用sudo pacman -S ~S安装这个包~%:: 在常规源中找到了包,是否中断构建?[y/n]" keyword)
(if (string= (read) "N") (format t "~%继续从AUR构建包~%")
(return-from lay_install 0)
)
)
(setf code_return (sb-ext:run-program "/usr/bin/bash" (list "-c" "if [ ! -d ~/.cache/aur ];then mkdir -p ~/.cache/aur;fi") :input nil :output *standard-output*))
(trivial-download:download (concatenate 'string "https://aur.archlinux.org/cgit/aur.git/snapshot/" keyword ".tar.gz") "~/.cache/aur/laytmp.tar.gz")
(setf code_return (sb-ext:run-program "/usr/bin/bash" (list "-c" "tar -xzvf ~/.cache/aur/laytmp.tar.gz -C ~/.cache/aur/") :input nil :output *standard-output*))
(setf code_return (sb-ext:run-program "/usr/bin/bash" (list "-c" (concatenate 'string "cd ~/.cache/aur/" keyword " && rm *.pkg.tar.zst && makepkg &&mv *.pkg.tar.zst laybuild.pkg.tar.zst")) :input nil :output *standard-output*))
(when (= (sb-ext:process-exit-code code_return) 0) (princ (concatenate 'string ":: 包构建完成,可以使用sudo pacman -U ~/.cache/aur/" keyword "/laybuild.pkg.tar.zst 进行安装")))
(terpri)
)
(defun lay_download ( keyword )
(format t ":: 尝试查找常规源~%")
(setf code_return (sb-ext:run-program "/usr/bin/pacman" (list "-Si" keyword) :input nil :output *standard-output*))
(when (= (sb-ext:process-exit-code code_return) 0)
(format t ":: 可以使用sudo pacman -S ~S安装这个包~%:: 在常规源中找到了包,是否中断下载?[y/n]" keyword)
(if (string= (read) "N") (format t "~%继续从AUR下载PKGBUILD~%")
(return-from lay_download 0)
)
)
(setf code_return (sb-ext:run-program "/usr/bin/bash" (list "-c" "if [ ! -d ~/.cache/aur ];then mkdir -p ~/.cache/aur;fi") :input nil :output *standard-output*))
(trivial-download:download (concatenate 'string "https://aur.archlinux.org/cgit/aur.git/snapshot/" keyword ".tar.gz") "~/.cache/aur/laytmp.tar.gz")
(setf code_return (sb-ext:run-program "/usr/bin/bash" (list "-c" "tar -xzvf ~/.cache/aur/laytmp.tar.gz -C ~/.cache/aur/") :input nil :output *standard-output*))
(when (= (sb-ext:process-exit-code code_return) 0) (princ (concatenate 'string ":: PKGBUILD下载完成,请在 ~/.cache/aur/" keyword " 查看")))
(terpri)
)
| 2,580 | Common Lisp | .lisp | 32 | 70.375 | 229 | 0.653879 | zhaose233/lay | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | eb66cbda0abca765c13a86537d04ec664f132b718821dc7872bb2cb2a2748ef8 | 40,682 | [
-1
] |
40,683 | search.lisp | zhaose233_lay/search.lisp | (in-package lay)
(defun lay_search ( keyword )
(sb-ext:run-program "/usr/bin/pacman" (list "-Ss" keyword) :input nil :output *standard-output*)
(setf url (concatenate 'string "https://aur.archlinux.org/rpc/?v=5&type=search&arg=" keyword))
(setf http_back (drakma:http-request url))
;;(princ (type-of http_back))
(setf json_back '())
(loop for i across http_back do
(setf json_back (append json_back (list (code-char i))))
)
(setf my_json (coerce json_back 'string))
(with-input-from-string (s my_json)
(setf data_base (json:decode-json s))
)
;;(princ data_base)
(loop for pkg in (subseq (nth 3 data_base) 1) do
(format t "~c[1;35maur/~c[0m" #\ESC #\ESC)
(format t "~c[1;37m~D~c[0m" #\ESC (cdr (nth 1 pkg)) #\ESC)
(format t " ~c[1;32m~D~c[0m" #\ESC (cdr (nth 4 pkg)) #\ESC)
(terpri)
(princ " ")
(princ (cdr (nth 5 pkg)))
(terpri)
)
)
| 915 | Common Lisp | .lisp | 25 | 32.44 | 98 | 0.613048 | zhaose233/lay | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 121e455de038733d1d8fbf2ba24ef2e103e255a501b14935ede8be523ac7f34a | 40,683 | [
-1
] |
40,684 | lay.asd | zhaose233_lay/lay.asd | ;;;; myproject.asd
(asdf:defsystem #:lay
:description "Describe myproject here"
:author "zhaose [email protected]"
:license "Specify license here"
:version "0.1"
:serial t
:build-operation "program-op" ;; leave as is
:build-pathname "lay"
:entry-point "lay:main"
:depends-on (#:cl-json #:trivial-download)
:components ((:file "package")
(:file "install")
(:file "search")
(:file "help")
(:file "lay")))
| 489 | Common Lisp | .asd | 16 | 24.5 | 47 | 0.599576 | zhaose233/lay | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 829db51a7e25ff4b5bbd6668b6b22a652e962e3a541655fb15f8d580573b7b41 | 40,684 | [
-1
] |
40,728 | .sbclrc | tabuyos_quicklisp/.sbclrc | ;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
| 259 | Common Lisp | .cl | 6 | 34.5 | 65 | 0.626984 | tabuyos/quicklisp | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 85eee079633f7cbc33b847f818544f27c1e2668145973b6e43703718fd960d07 | 40,728 | [
27306,
123513,
147557,
299394,
325805,
395630
] |
40,754 | releases.txt | tabuyos_quicklisp/quicklisp/dists/quicklisp/releases.txt | # project url size file-md5 content-sha1 prefix [system-file1..system-fileN]
1am http://beta.quicklisp.org/archive/1am/2014-11-06/1am-20141106-git.tgz 3490 c5e83c329157518e3ebfeef63e4ac269 83dfee1159cc630cc2453681a7caaf745f987d41 1am-20141106-git 1am.asd
3b-bmfont http://beta.quicklisp.org/archive/3b-bmfont/2020-04-27/3b-bmfont-20200427-git.tgz 8148 8bad47680a612d4ca06442f3a759df2a c72f6e3a93c47bd6568288dd6f705517e1e7ccd9 3b-bmfont-20200427-git 3b-bmfont.asd
3b-hdr http://beta.quicklisp.org/archive/3b-hdr/2020-09-25/3b-hdr-20200925-git.tgz 182755 09cc67fd82f54bab475eb7c6f9398faa 7d8d4c183aac97708d77283daf1ce247a25ca001 3b-hdr-20200925-git 3b-hdr.asd
3b-swf http://beta.quicklisp.org/archive/3b-swf/2012-01-07/3b-swf-20120107-git.tgz 75453 c130b35b44de03caa7cdf043d9d27dee 2dc75635c4d6a641618a63e61a9aa98252bbd2b7 3b-swf-20120107-git 3b-swf-swc.asd 3b-swf.asd
3bgl-shader http://beta.quicklisp.org/archive/3bgl-shader/2020-04-27/3bgl-shader-20200427-git.tgz 95653 b6cd3e5994902c8a6e841667bbfebe1c bc6c83bfe52c5e50aa8e41f6a353cc981476d6a1 3bgl-shader-20200427-git 3bgl-shader-example.asd 3bgl-shader.asd
3bmd http://beta.quicklisp.org/archive/3bmd/2021-04-11/3bmd-20210411-git.tgz 25953 09f9290aa1708aeb469fb5154ab1a397 5fd5bab111f66794f81cea7d6d364d1229171eb1 3bmd-20210411-git 3bmd-ext-code-blocks.asd 3bmd-ext-definition-lists.asd 3bmd-ext-math.asd 3bmd-ext-tables.asd 3bmd-ext-wiki-links.asd 3bmd-youtube-tests.asd 3bmd-youtube.asd 3bmd.asd
3bz http://beta.quicklisp.org/archive/3bz/2020-12-20/3bz-20201220-git.tgz 33098 a60b2ab5b383bfedeab4c127d164b853 51eeba0bbf0964e4f7a45042543a8480c503cb7c 3bz-20201220-git 3bz.asd
3d-matrices http://beta.quicklisp.org/archive/3d-matrices/2021-04-11/3d-matrices-20210411-git.tgz 41340 6f5c09878dc3a02352ed031c4abb46af c340d2560b528b36d5eba40c252be570f90e5952 3d-matrices-20210411-git 3d-matrices-test.asd 3d-matrices.asd
3d-vectors http://beta.quicklisp.org/archive/3d-vectors/2020-12-20/3d-vectors-20201220-git.tgz 27866 735fefa1fbc234d4d88bcf5f3ae58236 e4311d1925f3169ea6aaae27b7379dabf6ab5094 3d-vectors-20201220-git 3d-vectors-test.asd 3d-vectors.asd
a-cl-logger http://beta.quicklisp.org/archive/a-cl-logger/2020-04-27/a-cl-logger-20200427-git.tgz 18776 b446ca71eda01e4d4f8750256fae6cbb 87b4c6b34522e4f6b71977462c7153f1f364b757 a-cl-logger-20200427-git a-cl-logger-logstash.asd a-cl-logger.asd
able http://beta.quicklisp.org/archive/able/2017-12-27/able-20171227-git.tgz 30476 bf42d58fb2f32f239e9f98561fb11be1 3d1693e9704ba4fcd19a151baf16e3600447d83b able-20171227-git able.asd
access http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz 14749 d2d7d9826cbfb3de568d05a4d6bacdbe 13b367550f25a3a065dafb38e603939a39a8a6f7 access-20210124-git access.asd
acclimation http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz 5181 8ce10864baef6fb0e11c78e2ee0b0ddb 2c9236f219964ee110dd1b61b5e685be47b8d885 acclimation-20200925-git Temperature/acclimation-temperature.asd acclimation.asd
adopt http://beta.quicklisp.org/archive/adopt/2021-05-31/adopt-20210531-hg.tgz 24030 c7c34bb96cf2047010ff6c49b9baf9a8 a59e0ebb886e9ea957e6cdea6188262a5ed7b211 adopt-20210531-hg adopt.asd
adopt-subcommands http://beta.quicklisp.org/archive/adopt-subcommands/2021-05-31/adopt-subcommands-v0.2.2.tgz 10475 66bc9a0c3b0797aaf4244d40ac6ea03e 853b9148d18112a9a7c7ed53002f536c4f233a58 adopt-subcommands-v0.2.2 adopt-subcommands-test.asd adopt-subcommands.asd
advanced-readtable http://beta.quicklisp.org/archive/advanced-readtable/2013-07-20/advanced-readtable-20130720-git.tgz 10570 bcb3c8a4757047bf7a41117265b74a3f 163baeafd28c4f4cb0c3fb42529df5ee75a711cc advanced-readtable-20130720-git advanced-readtable.asd
adw-charting http://beta.quicklisp.org/archive/adw-charting/2012-09-09/adw-charting-20120909-http.tgz 291857 932a2a8f87a6a26b8aece05240850451 7a7e66124521f356ff6b6b9653f8b190b827b7e1 adw-charting-20120909-http adw-charting-google.asd adw-charting-vecto.asd adw-charting.asd
aether http://beta.quicklisp.org/archive/aether/2020-12-20/aether-v1.0.1.tgz 51621 f9eff2515443f18e865c38141fc1bbc9 2c4e09e20eec8edf0b135d6e6305e83593e2382f aether-v1.0.1 aether-tests.asd aether.asd
agnostic-lizard http://beta.quicklisp.org/archive/agnostic-lizard/2020-10-16/agnostic-lizard-20201016-git.tgz 32372 953bb99ad598a019e404910eeb2c14de b86544b9620ae94432fa8349918c05886050e489 agnostic-lizard-20201016-git agnostic-lizard-debugger-prototype.asd agnostic-lizard.asd
agutil http://beta.quicklisp.org/archive/agutil/2021-05-31/agutil-20210531-git.tgz 7087 99de7cd320ae2696c1707ca5b55cf40a e0472fd8324ea893d6cb8ae7225015d881938010 agutil-20210531-git agutil.asd
ahungry-fleece http://beta.quicklisp.org/archive/ahungry-fleece/2020-06-10/ahungry-fleece-20200610-git.tgz 95571 d0513c178f95e1b039255fdc7abf2158 02c3cee458071001e3993f325d2c02bfa17ded41 ahungry-fleece-20200610-git ahungry-fleece.asd skel/skeleton.asd
alexa http://beta.quicklisp.org/archive/alexa/2018-08-31/alexa-20180831-git.tgz 11101 322aae1831d32c65e4f7512a749e5794 d27375e85ec943d49b3fcb77b3ab606b2dd63e92 alexa-20180831-git alexa-tests.asd alexa.asd
alexandria http://beta.quicklisp.org/archive/alexandria/2021-04-11/alexandria-20210411-git.tgz 55807 415c43451862b490577b20ee4fb8e8d7 09a16e3dd7ad742000dd390228a27fecc3de2600 alexandria-20210411-git alexandria-tests.asd alexandria.asd
algae http://beta.quicklisp.org/archive/algae/2021-04-11/algae-20210411-git.tgz 17186 20adea288461116e9a470a9608b53608 17eb8af67727a177a423c9524cde40775cd90e51 algae-20210411-git algae.asd
algebraic-data-library http://beta.quicklisp.org/archive/algebraic-data-library/2018-08-31/algebraic-data-library-20180831-git.tgz 2657 4e0c9d6480ef5824821e38ef88ce7c0f 35e8cb9da56cd9b6f4bc6bbd9b6e7094f28e367a algebraic-data-library-20180831-git algebraic-data-library.asd
also-alsa http://beta.quicklisp.org/archive/also-alsa/2021-05-31/also-alsa-20210531-git.tgz 13637 73c8fddb66bef75f49fbd6bfaba56ac5 0b7bebea90a5c2209fb9d37b5fb810040701dd15 also-alsa-20210531-git also-alsa.asd
amazon-ecs http://beta.quicklisp.org/archive/amazon-ecs/2011-04-18/amazon-ecs-20110418-git.tgz 18915 6fdd5ad095bd4a492e0d5cd07b7fae98 f8aa169d0a8e927a8357b210570f72d0198d630d amazon-ecs-20110418-git amazon-ecs.asd
anaphora http://beta.quicklisp.org/archive/anaphora/2021-01-24/anaphora-20210124-git.tgz 6139 09a11971206da9d259b34c050783b74b f550edfb516b9ce4f9cb343910402024610af22b anaphora-20210124-git anaphora.asd
anaphoric-variants http://beta.quicklisp.org/archive/anaphoric-variants/2012-10-13/anaphoric-variants-1.0.1.tgz 3961 1958c6eed506b8dd7f7ebf4fb85142ed affec75bb8b78489722f937336342d2e003695db anaphoric-variants-1.0.1 anaphoric-variants.asd
antik http://beta.quicklisp.org/archive/antik/2019-10-08/antik-master-df14cb8c-git.tgz 1655490 1bfdd37b226dd77d2a83a8262c7f5c75 027e6a3fca896a523a6cd49cb6ae501605c6d953 antik-master-df14cb8c-git antik-base.asd antik.asd foreign-array.asd physical-dimension.asd science-data.asd
anypool http://beta.quicklisp.org/archive/anypool/2021-05-31/anypool-20210531-git.tgz 6088 c752d80e52cc4b64c8b671c3fc58c7fd 4de957af66eedc303fb342784e3d6ee20f64398b anypool-20210531-git anypool.asd lack-middleware-anypool.asd
apply-argv http://beta.quicklisp.org/archive/apply-argv/2015-06-08/apply-argv-20150608-git.tgz 2451 d6c331fb609e14d8e99c2c5235767ae5 41176149bfe25382fbeee01eef0ca9aaca6aa6ec apply-argv-20150608-git apply-argv.asd
april http://beta.quicklisp.org/archive/april/2021-05-31/april-20210531-git.tgz 136913 3eb48805608e0c0321725e96ad1b32e8 4dc807a5c771386cf1e26f58d19faa892242afa6 april-20210531-git aplesque/aplesque.asd april.asd demos/cnn/april-demo.cnn.asd demos/dfns/graph/april-demo.dfns.graph.asd vex/vex.asd
arc-compat http://beta.quicklisp.org/archive/arc-compat/2020-12-20/arc-compat-20201220-git.tgz 69005 a8244ed25144012ed9dbddf66229f1d6 bdd7e326846c5fc22b8c50a4ca9105ecc056c71c arc-compat-20201220-git arc-compat.asd
architecture.builder-protocol http://beta.quicklisp.org/archive/architecture.builder-protocol/2021-05-31/architecture.builder-protocol-20210531-git.tgz 42288 5794e0af3626f8bc96bb198444ac4869 938f2739fdbfc39fc08effe8ee42e1b91a579fce architecture.builder-protocol-20210531-git architecture.builder-protocol.asd architecture.builder-protocol.json.asd architecture.builder-protocol.universal-builder.asd architecture.builder-protocol.xpath.asd
architecture.hooks http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz 15541 698bdb1309cae19fb8f0e1e425ba4cd9 c5d4bd17509ba19d55913a247ef56853d51a4169 architecture.hooks-20181210-git cl-hooks.asd
architecture.service-provider http://beta.quicklisp.org/archive/architecture.service-provider/2019-10-07/architecture.service-provider-20191007-git.tgz 22626 7260877f29b3fe3ad6e94126360f0bd3 9ae3133023dfc49a6e891ce2a3d1eefdc25c0513 architecture.service-provider-20191007-git architecture.service-provider-and-hooks.asd architecture.service-provider.asd
archive http://beta.quicklisp.org/archive/archive/2016-03-18/archive-20160318-git.tgz 19507 5332faf00d7b8416c0468770fa9aaf1f 83bcf90b745c5d8967086741072f3b7496733868 archive-20160318-git archive.asd
arithmetic-operators-as-words http://beta.quicklisp.org/archive/arithmetic-operators-as-words/2020-06-10/arithmetic-operators-as-words-20200610-git.tgz 1443 8318181de7b11bd524aaf15f595615a6 3f27abd9563ba2d59a546085e1c3d9cde3215558 arithmetic-operators-as-words-20200610-git arithmetic-operators-as-words.asd
arnesi http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz 84553 bbb34e1a646b2cc489766690c741d964 c83ef816a3596038ebc507611c2c17bb822a1024 arnesi-20170403-git arnesi.asd
array-operations http://beta.quicklisp.org/archive/array-operations/2021-04-11/array-operations-20210411-git.tgz 26315 902c6034c006bc6ca88ef59e7ff2b1aa 06e6f3384b111ceceab4e207318707f5dac91b8b array-operations-20210411-git array-operations.asd
array-utils http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz 5803 d6ed906f28c46b2ab0335ec1fc05f8af 85f9c248fbda36cb4b09f5b4729c31e27abcae53 array-utils-20201220-git array-utils-test.asd array-utils.asd
arrival http://beta.quicklisp.org/archive/arrival/2020-06-10/arrival-20200610-git.tgz 206552 96b740c51a678e06a9ac772433389d12 f8e397760d3be00036aeba32abba3ace494c993a arrival-20200610-git arrival.asd
arrow-macros http://beta.quicklisp.org/archive/arrow-macros/2020-12-20/arrow-macros-20201220-git.tgz 6170 e88ff276ed8c1701d36d72dd2ba93dc4 959ad0c1e73017a47a8721165fc28b670c45e8ce arrow-macros-20201220-git arrow-macros-test.asd arrow-macros.asd
arrows http://beta.quicklisp.org/archive/arrows/2018-10-18/arrows-20181018-git.tgz 5067 c60b5d79680de19baad018a0fe87bc48 82ebf99cf60c78e451f73e515b418f7c2f40b18b arrows-20181018-git arrows.asd
asd-generator http://beta.quicklisp.org/archive/asd-generator/2019-01-07/asd-generator-20190107-git.tgz 17944 3d89b79133f9d2e7bff3e7735a299f96 b9e465de3e179e7a7c0b73aa62be878777b014ea asd-generator-20190107-git asd-generator.asd test/asd-generator-test.asd
asdf-dependency-grovel http://beta.quicklisp.org/archive/asdf-dependency-grovel/2017-04-03/asdf-dependency-grovel-20170403-git.tgz 41965 e5f32a1e82dd83fa6446c28c2e43a73d ecfb684ceed8f4a95d124aa4f5398ec35a2dc5e2 asdf-dependency-grovel-20170403-git asdf-dependency-grovel.asd tests/test-serial-system.asd
asdf-encodings http://beta.quicklisp.org/archive/asdf-encodings/2019-10-07/asdf-encodings-20191007-git.tgz 9259 76bd0a61aa4df19e683d16592e0e62cd e3a8f15e4b8e4c4b39d4bcbbb67c6e7c308cf3d1 asdf-encodings-20191007-git asdf-encodings.asd
asdf-finalizers http://beta.quicklisp.org/archive/asdf-finalizers/2017-04-03/asdf-finalizers-20170403-git.tgz 6663 a9e3c960e6b6fdbd69640b520ef8044b 3838733d2c72f1dfc49fd2adb186f490d9f4601a asdf-finalizers-20170403-git asdf-finalizers-test.asd asdf-finalizers.asd list-of.asd
asdf-flv http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz 2116 2b74b721b7e5335d2230d6b95fc6be56 7f61773346be3e61c241d597d02a3ec533d15989 asdf-flv-version-2.1 net.didierverna.asdf-flv.asd
asdf-linguist http://beta.quicklisp.org/archive/asdf-linguist/2015-09-23/asdf-linguist-20150923-git.tgz 4653 110db875b9d5cbdbc41fff8b50cc6688 b5929afb75c89ab6729d90da79686bc0885d7b55 asdf-linguist-20150923-git asdf-linguist.asd
asdf-manager http://beta.quicklisp.org/archive/asdf-manager/2016-02-08/asdf-manager-20160208-git.tgz 3156 67452d33f1e027b145ca8bfd0fa2806c eda6b453d5d3481e2d4e164c3206ae84012e7edd asdf-manager-20160208-git asdf-manager-test.asd asdf-manager.asd
asdf-package-system http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz 1383 9eee9d811aec4894843ac1d8ae6cbccd 910495edcf74671f08ba09181539bf644e0cbb3f asdf-package-system-20150608-git asdf-package-system.asd
asdf-system-connections http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz 4933 23bdbb69c433568e3e15ed705b803992 c49a358d1e61207c282e985905eae1810205fc2b asdf-system-connections-20170124-git asdf-system-connections.asd
asdf-viz http://beta.quicklisp.org/archive/asdf-viz/2020-06-10/asdf-viz-20200610-git.tgz 4137355 39c59335d40c2659e6091818ca8a207c be6f6901c363b7919b006c30c7a34ccff61248ed asdf-viz-20200610-git asdf-viz.asd
aserve http://beta.quicklisp.org/archive/aserve/2018-12-10/aserve-20181210-git.tgz 524530 4f5ddf1dcb415a1dc18a280bff91334b 8c71220d450d52b271ae7c3875eba2f37dbd80db aserve-20181210-git zaserve.asd
assert-p http://beta.quicklisp.org/archive/assert-p/2020-06-10/assert-p-20200610-git.tgz 17334 be2bb62f2e88664c514771abca4b0f7f f5a85d7f2dca68cee7c9800fbeed09254e4c81fe assert-p-20200610-git assert-p.asd
assertion-error http://beta.quicklisp.org/archive/assertion-error/2019-12-27/assertion-error-20191227-git.tgz 14185 797ad3c5cad14fb25eec76ccfb79b66a d9aff6bf141a59631d4371eace22a865bd29b0e6 assertion-error-20191227-git assertion-error.asd
assoc-utils http://beta.quicklisp.org/archive/assoc-utils/2020-02-18/assoc-utils-20200218-git.tgz 3461 eb07f3c17a92a0e09f0f1109c62ff09d f86830a3afbeeb05525ee6c4810993d0589b819e assoc-utils-20200218-git assoc-utils-test.asd assoc-utils.asd
asteroids http://beta.quicklisp.org/archive/asteroids/2019-10-07/asteroids-20191007-git.tgz 3522066 e6956f404d402140e6573e24d849fc7d 89a44fb3225d6525e4bd26d20992a10ae2a0917a asteroids-20191007-git asteroids.asd
astonish http://beta.quicklisp.org/archive/astonish/2021-01-24/astonish-20210124-git.tgz 15247 916d460e9a7245bae98f7b6dd0624096 cc4a3529a123420f92d3ec89b0925b74435d0750 astonish-20210124-git astonish.asd
async-process http://beta.quicklisp.org/archive/async-process/2021-05-31/async-process-20210531-git.tgz 309213 c382958d8638e1862c82b8815ac29a5a 026520b995abd94284df9c9737dedd9008781686 async-process-20210531-git src/async-process.asd
atdoc http://beta.quicklisp.org/archive/atdoc/2012-03-05/atdoc-20120305-git.tgz 36850 e9c40fd27b136fd9db0d0f13dc7d51a7 e60e3ca611b8eb9ff908091482932c14a119066a atdoc-20120305-git atdoc.asd example/blocks-world.asd
atomics http://beta.quicklisp.org/archive/atomics/2021-01-24/atomics-20210124-git.tgz 7493 f65bb9fd2324b45bcd5ec7066234be5e 35af2066e90539ed74eededdaa17d4afb1bbd5d1 atomics-20210124-git atomics-test.asd atomics.asd
audio-tag http://beta.quicklisp.org/archive/audio-tag/2021-05-31/audio-tag-20210531-git.tgz 10075 b6830b2edb7c5ca12bd090e351b8c408 014212d5271772cbde7b51c8c4b4a029cc5c49ba audio-tag-20210531-git audio-tag.asd
authenticated-encryption http://beta.quicklisp.org/archive/authenticated-encryption/2018-10-18/authenticated-encryption-20181018-git.tgz 3639 02feacbc3a7b22144c368c498d5c4376 e966e0e3779ca5769c995cf4dc16e241c708a37f authenticated-encryption-20181018-git authenticated-encryption-test.asd authenticated-encryption.asd
avatar-api http://beta.quicklisp.org/archive/avatar-api/2015-06-08/avatar-api-20150608-git.tgz 2129 52a2e667536e10f80124ae2436f5d9a6 9fda0ec095f9fbdb8073605703d792a0eb3e8398 avatar-api-20150608-git avatar-api-test.asd avatar-api.asd
aws-foundation http://beta.quicklisp.org/archive/aws-foundation/2018-07-11/aws-foundation-20180711-git.tgz 4880 1cc177097ef8968147370f9970f04174 a973090f169db7cbacba714b68499f442b084902 aws-foundation-20180711-git aws-foundation.asd
aws-sign4 http://beta.quicklisp.org/archive/aws-sign4/2020-12-20/aws-sign4-20201220-git.tgz 35606 52b5e933857d6fcd6d9ae09d96749994 670ce82da4d18c9f30c13ae086246e14fd530e9d aws-sign4-20201220-git aws-sign4.asd
ayah-captcha http://beta.quicklisp.org/archive/ayah-captcha/2018-02-28/ayah-captcha-20180228-git.tgz 4660 396998f1fc484ded0afe3209ff00a380 59257d29def50e9701cdef4d34f13242cc85db4b ayah-captcha-20180228-git ayah-captcha.asd demo/ayah-captcha-demo.asd
babel http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz 273336 7f64d3be80bcba19d9caeaede5dea6d8 3883704943f463c50718758d466e69d9cc794965 babel-20200925-git babel-streams.asd babel-tests.asd babel.asd
base-blobs http://beta.quicklisp.org/archive/base-blobs/2020-10-16/base-blobs-stable-git.tgz 3079693 7a1c3235949ef927220323889dce7249 8f7937f45ea5d3a21575fbf1040324ed215cbb8c base-blobs-stable-git base-blobs.asd
base64 http://beta.quicklisp.org/archive/base64/2018-10-18/base64-20181018-git.tgz 2014 e7d77c873d9111e6e0a6704422805b24 3d8e62f5d3313d09e1a9ecd8d66f25b24eb58e73 base64-20181018-git base64.asd
basic-binary-ipc http://beta.quicklisp.org/archive/basic-binary-ipc/2015-08-04/basic-binary-ipc-20150804-git.tgz 57492 800adaca3395dad2c379fb6d64a51b1c dbc53ed3a51db6ec3605366dfca6616efe79dbb6 basic-binary-ipc-20150804-git basic-binary-ipc-tests.asd basic-binary-ipc.asd
bdef http://beta.quicklisp.org/archive/bdef/2021-05-31/bdef-20210531-git.tgz 19045 c94fdf9e05cb1b428026b4aadecb34e3 e2d6299e54ebf887ef4b3639a5a20ca4e1b56c7e bdef-20210531-git bdef.asd
beast http://beta.quicklisp.org/archive/beast/2020-10-16/beast-20201016-hg.tgz 13734 0a56927c0b89b3a454ba5bcad2de0ff6 73303e443b38cb70ff1c03868406d929e6abec4b beast-20201016-hg beast-test.asd beast.asd
beirc http://beta.quicklisp.org/archive/beirc/2015-05-05/beirc-20150505-git.tgz 27301 50b1ea2e799d918ee68ff607f2ed7c98 091f2c11d2b297704101697235a411841ceb23ad beirc-20150505-git beirc.asd
big-string http://beta.quicklisp.org/archive/big-string/2019-03-07/big-string-20190307-hg.tgz 3949 bdffed5d0ef77e065911aba09e1bdf8c 5489c493ce7ca3c482880797a0d80c9c84e91384 big-string-20190307-hg big-string.asd
bike http://beta.quicklisp.org/archive/bike/2020-03-25/bike-20200325-git.tgz 74254 459139be9cd1b8baa26ab815f4231c39 5ae06ddb0727c1a115db045367474661a64dbed2 bike-20200325-git bike-examples.asd bike-internals.asd bike-tests.asd bike.asd
binary-io http://beta.quicklisp.org/archive/binary-io/2020-10-16/binary-io-20201016-git.tgz 9283 cc19c739c754326ce39f668c3edd603d 5b60a4449b7b4285c20c9fa33460f4eb2f5c7a97 binary-io-20201016-git binary-io.asd
binary-types http://beta.quicklisp.org/archive/binary-types/2013-06-15/binary-types-20130615-git.tgz 21337 e26f69cddf40a07beb89d9066830c44a 2f1a13a9ef75be93d53cf55d7c4c07260a620c3e binary-types-20130615-git binary-types.asd
binascii http://beta.quicklisp.org/archive/binascii/2015-07-09/binascii-20150709-git.tgz 196802 23f4db8372bd521725dd78dd667c2be1 e02502e8146770e87fa5b6e461b7729ee1117ad2 binascii-20150709-git binascii.asd
binding-arrows http://beta.quicklisp.org/archive/binding-arrows/2020-12-20/binding-arrows-20201220-git.tgz 12121 715089a2af58af14dad69ad886cd541e c4d79c3059c038b639914bb8f00a4ad39a9384da binding-arrows-20201220-git binding-arrows.asd
binfix http://beta.quicklisp.org/archive/binfix/2019-08-13/binfix-20190813-git.tgz 103896 916f3d55cf63c374ff9afacf03f9e9cc b3848eabd74026fd5a24d290bff94cdacd7d6dd3 binfix-20190813-git binfix.asd
binomial-heap http://beta.quicklisp.org/archive/binomial-heap/2013-04-20/binomial-heap-20130420-git.tgz 6211 ca40cb01b88a3fe902cc4cc25fb2d242 81583c3945e9f392cb8943713ed18724f72296f2 binomial-heap-20130420-git binomial-heap.asd
binpack http://beta.quicklisp.org/archive/binpack/2020-12-20/binpack-20201220-git.tgz 65407 1ac4eaa76586091edb77111ea033f316 6e28b6a2ed44d77f963449fe56e2dcef4bcb9e45 binpack-20201220-git binpack-test.asd binpack.asd
birch http://beta.quicklisp.org/archive/birch/2016-03-18/birch-20160318-git.tgz 20320 1ce06aa2cbcef122fcef36186955cbd4 7deb668bd53ed29ac66d33e598efedccfe5ae6e5 birch-20160318-git birch.asd birch.test.asd
bit-ops http://beta.quicklisp.org/archive/bit-ops/2018-02-28/bit-ops-20180228-git.tgz 7131 487abc6e8afc586eb96300931a43d7be 923abf5d89d48ea17333f812c9c4bc1ab3092d90 bit-ops-20180228-git bit-ops.asd bit-ops.test.asd
bit-smasher http://beta.quicklisp.org/archive/bit-smasher/2018-10-18/bit-smasher-20181018-git.tgz 8790 bbb6df9cffc70ad72fe3a5b06664a0bc 6a4942aee4a5d892bd3b89cd5f2684dea079e951 bit-smasher-20181018-git bit-smasher.asd
bitfield http://beta.quicklisp.org/archive/bitfield/2020-12-20/bitfield-20201220-git.tgz 7032 83b4dd4175adfe92a1c7ce5335d4fa83 400f8215c6a5da0300ff1f381e29bae70af03b77 bitfield-20201220-git code/bitfield.asd
bitfield-schema http://beta.quicklisp.org/archive/bitfield-schema/2012-01-07/bitfield-schema-20120107-git.tgz 6659 fac865d5c6379fd8e4a8526b99ec0662 5b4bf17a55e13ed80e657a545b9ea1ca5ceb77ec bitfield-schema-20120107-git bitfield-schema.asd
bitio http://beta.quicklisp.org/archive/bitio/2017-10-23/bitio-20171023-git.tgz 19253 4f906c8f8928bd703b72eb2207fbb623 d70390717f22b95bdbab594c14f468d674809844 bitio-20171023-git bitio.asd
bk-tree http://beta.quicklisp.org/archive/bk-tree/2013-04-20/bk-tree-20130420-git.tgz 21425 5ae53564f2a64abdc1424a054f965485 e0690274745029d8135d91abcdb18598e60e2999 bk-tree-20130420-git bk-tree.asd
bknr-datastore http://beta.quicklisp.org/archive/bknr-datastore/2019-12-27/bknr-datastore-20191227-git.tgz 630259 48d376b77c3e4bf912d25e7606f96bc1 b31c08ff484786b46311c972c2cc02ee9cc71ec1 bknr-datastore-20191227-git src/bknr.data.impex.asd src/bknr.datastore.asd src/bknr.impex.asd src/bknr.indices.asd src/bknr.skip-list.asd src/bknr.utils.asd src/bknr.xml.asd
bknr-web http://beta.quicklisp.org/archive/bknr-web/2014-07-13/bknr-web-20140713-git.tgz 172044 e867c9d79b03ea02d3e8af6d5d4a1fd7 80c17f624bf44065d7992880117d8a2373cf6744 bknr-web-20140713-git modules/bknr.modules.asd modules/spider/leech.asd src/bknr.web.asd src/html-match/html-match.asd
black-tie http://beta.quicklisp.org/archive/black-tie/2021-02-28/black-tie-20210228-git.tgz 13787 caf4a67d839e4e269ced3b7eff37a795 258ad9251176a12693e986d6314e650348dce92c black-tie-20210228-git black-tie.asd
blackbird http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz 12865 5cb13dc06a0eae8dcba14714d2b5365d 956c28da3fa238c46a3c52bcfc15afa415af452b blackbird-20160531-git blackbird-test.asd blackbird.asd
bnf http://beta.quicklisp.org/archive/bnf/2021-05-31/bnf-20210531-git.tgz 3722 c54f4deb7bffd918a23286055018beba 315154ecfca70f523d73ff306fdfde1ae28a6aa1 bnf-20210531-git bnf.asd spec/bnf.test.asd
bobbin http://beta.quicklisp.org/archive/bobbin/2020-10-16/bobbin-20201016-hg.tgz 6329 d1153e0b4a8367d2bd2999d4b9d4ffc5 8e5f5d627e6bb104b54de473fb5abe916d1d680e bobbin-20201016-hg bobbin.asd
bodge-blobs-support http://beta.quicklisp.org/archive/bodge-blobs-support/2020-10-16/bodge-blobs-support-stable-git.tgz 2376 14151bc3bd37194b6d16a279e423ce03 f57f21f32160247bc3f674a73c7c165cdcc663f7 bodge-blobs-support-stable-git bodge-blobs-support.asd
bodge-chipmunk http://beta.quicklisp.org/archive/bodge-chipmunk/2020-10-16/bodge-chipmunk-stable-git.tgz 573748 d3d0ce97b33380a19f48b47c3735c37e f72a179ba3d13e849e1b61877fab83c0d99711e1 bodge-chipmunk-stable-git bodge-chipmunk.asd
bodge-concurrency http://beta.quicklisp.org/archive/bodge-concurrency/2020-10-16/bodge-concurrency-stable-git.tgz 4049 79a73e12c8c4a70871067f68dade5b9e bd81a970496d4163fe1394dde017faaa45681dd3 bodge-concurrency-stable-git bodge-concurrency.asd
bodge-glad http://beta.quicklisp.org/archive/bodge-glad/2020-10-16/bodge-glad-stable-git.tgz 55615 8696869c8bdaf569287ef8f1f31f3f15 d4f3c4bd83a053d7e9371a194a9cdacf31d35a12 bodge-glad-stable-git bodge-glad.asd
bodge-glfw http://beta.quicklisp.org/archive/bodge-glfw/2020-10-16/bodge-glfw-stable-git.tgz 806212 59b75f4c658ed119447fc68dcd7dc545 6d0e70f5fc86b33bb848db7041c25a776d8ea637 bodge-glfw-stable-git bodge-glfw.asd
bodge-heap http://beta.quicklisp.org/archive/bodge-heap/2020-10-16/bodge-heap-stable-git.tgz 3310 0f641e0438af5c6d9fd40199a2e663b8 5ef371ace55126b39d9be22d6415ea94cad524c3 bodge-heap-stable-git bodge-heap.asd
bodge-host http://beta.quicklisp.org/archive/bodge-host/2020-10-16/bodge-host-stable-git.tgz 10946 056c3c0f5d555c55f8f22332d17d0e88 9feb229856801a8dbe137dd6905a43914f3e1199 bodge-host-stable-git bodge-host.asd
bodge-libc-essentials http://beta.quicklisp.org/archive/bodge-libc-essentials/2020-10-16/bodge-libc-essentials-stable-git.tgz 2264 91cd137de7bc7c81014e057320b15be6 f4e6073aff1f377285054ff52d1efae5a046b18c bodge-libc-essentials-stable-git bodge-libc-essentials.asd
bodge-math http://beta.quicklisp.org/archive/bodge-math/2020-10-16/bodge-math-stable-git.tgz 6347 5a37cba2138f762ac18c7819b082bae3 595bfd536066837202344127d1299fca02e78c71 bodge-math-stable-git bodge-math.asd
bodge-memory http://beta.quicklisp.org/archive/bodge-memory/2020-10-16/bodge-memory-stable-git.tgz 2712 40afeaca44d7157599420e1821743c34 9858f8a1f18d58a12755c79e88399d60c4de7b87 bodge-memory-stable-git bodge-memory.asd
bodge-nanovg http://beta.quicklisp.org/archive/bodge-nanovg/2020-10-16/bodge-nanovg-stable-git.tgz 2130841 56467b37c015a2207d72e52254a6ff1f f731ed3414124e777ffbc190baab60da9e505a70 bodge-nanovg-stable-git bodge-nanovg.asd
bodge-nuklear http://beta.quicklisp.org/archive/bodge-nuklear/2020-10-16/bodge-nuklear-stable-git.tgz 2014134 5f48d8782dbd8b30bfd3dbc664d3f412 29ad11538c79aa3a67feea7fde09d558927df4af bodge-nuklear-stable-git bodge-nuklear.asd
bodge-ode http://beta.quicklisp.org/archive/bodge-ode/2020-10-16/bodge-ode-stable-git.tgz 2330922 67af727dd796765c220516e430d1ae02 a45886fcaddce838dfad7822077f33ead66fbdf1 bodge-ode-stable-git bodge-ode.asd
bodge-openal http://beta.quicklisp.org/archive/bodge-openal/2020-10-16/bodge-openal-stable-git.tgz 847505 8767b3f5b6247665659180c5559debe4 42f4dab30f0461b5175d9cef9e4c0c17871c4383 bodge-openal-stable-git bodge-openal.asd
bodge-queue http://beta.quicklisp.org/archive/bodge-queue/2020-10-16/bodge-queue-stable-git.tgz 2583 1fa840983aa191d81fee17de2f2fc1ed 9de215906b47296d6e890603ee3083a9c8188ef1 bodge-queue-stable-git bodge-queue.asd
bodge-sndfile http://beta.quicklisp.org/archive/bodge-sndfile/2020-10-16/bodge-sndfile-stable-git.tgz 3990428 087ac59a98cc6a5d85d10f5fd64008d7 5f6dad7f7b32affa25840bd96832838f621da339 bodge-sndfile-stable-git bodge-sndfile.asd
bodge-utilities http://beta.quicklisp.org/archive/bodge-utilities/2020-10-16/bodge-utilities-stable-git.tgz 7639 d6a3b19402ec8f781301f5aac4be1115 7492bc696540b38f4c0ff2042918280611d7ccc8 bodge-utilities-stable-git bodge-utilities.asd
bordeaux-fft http://beta.quicklisp.org/archive/bordeaux-fft/2015-06-08/bordeaux-fft-20150608-http.tgz 13857 99bee7dc569e71f40783551c792295bd a0caf5c27a3c3734178472333279926177ffb23a bordeaux-fft-20150608-http bordeaux-fft.asd
bordeaux-threads http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz 23709 1922316721bcaa10142ed07c31b178e5 3a3df476335f1d101e09fd7a93b2de42076fc87b bordeaux-threads-v0.8.8 bordeaux-threads.asd
bourbaki http://beta.quicklisp.org/archive/bourbaki/2011-01-10/bourbaki-20110110-http.tgz 133787 64d23b156e8cf295c76a144e6522749b c224635f433be2ab0e45fd2e0ec13c6d735751ab bourbaki-20110110-http bourbaki.asd
bp http://beta.quicklisp.org/archive/bp/2021-04-11/bp-20210411-git.tgz 58372 fc9467469f9473527df7dd8218ed4f04 5cdfc6daf390df9732e13dd0a723549a950b94ae bp-20210411-git bp.asd
bst http://beta.quicklisp.org/archive/bst/2020-09-25/bst-20200925-git.tgz 18632 633c0509b643ea326fcf6586b15cf005 9abd66db99813cf84f27b4f08d60855b32aca56f bst-20200925-git bst.asd
bt-semaphore http://beta.quicklisp.org/archive/bt-semaphore/2018-07-11/bt-semaphore-20180711-git.tgz 4185 f70c869eaf18e277056a16eb3a21fd4a 23d9c3966166a46e5c42bbdacab7a2f684bfcd0c bt-semaphore-20180711-git bt-semaphore-test.asd bt-semaphore.asd
btrie http://beta.quicklisp.org/archive/btrie/2014-07-13/btrie-20140713-git.tgz 6389 1fdf3a46133861b59f7a1063f5fe6696 9d9e506112d4b87225944df068090c68d4b2c563 btrie-20140713-git btrie.asd
bubble-operator-upwards http://beta.quicklisp.org/archive/bubble-operator-upwards/2012-11-25/bubble-operator-upwards-1.0.tgz 2943 390c6f1aad23154fc613a1941ab0ee90 e5c62a9e32928fc4e4d38f9949acd9b30b0a7187 bubble-operator-upwards-1.0 bubble-operator-upwards.asd
buildapp http://beta.quicklisp.org/archive/buildapp/2015-12-18/buildapp-1.5.6.tgz 16389 b6c1450b19370d7e4ac21bf565b62c89 33832bc72acbd9b3c4a097b054bd0de1921b873a buildapp-1.5.6 buildapp.asd
buildnode http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz 66725 b917f0d6c20489febbef0d5b954c350d dfe5d7aec7c73eb6797069f1d5b7fdc2d60fb610 buildnode-20170403-git buildnode-excel.asd buildnode-html5.asd buildnode-kml.asd buildnode-xhtml.asd buildnode-xul.asd buildnode.asd
burgled-batteries http://beta.quicklisp.org/archive/burgled-batteries/2016-08-25/burgled-batteries-20160825-git.tgz 42019 d20613a907e062fd32128fe25aead746 3124f87459f2bf2ad793179593df364aa383c3b1 burgled-batteries-20160825-git burgled-batteries-tests.asd burgled-batteries.asd
burgled-batteries.syntax http://beta.quicklisp.org/archive/burgled-batteries.syntax/2021-05-31/burgled-batteries.syntax-20210531-git.tgz 8237 bbee40c9fb275fa8e9e17f78e8f155b8 d239c8d9d3579d14f8905765be6caa9320b2816d burgled-batteries.syntax-20210531-git burgled-batteries.syntax-test.asd burgled-batteries.syntax.asd
bytecurry.asdf-ext http://beta.quicklisp.org/archive/bytecurry.asdf-ext/2015-05-05/bytecurry.asdf-ext-20150505-git.tgz 2750 9fb33756e2edcb3ab0074dd8c32b73e4 32af33d3211f1d3aa8cb3a32d125ee5e49ae4236 bytecurry.asdf-ext-20150505-git bytecurry.asdf-ext.asd
bytecurry.mocks http://beta.quicklisp.org/archive/bytecurry.mocks/2020-03-25/bytecurry.mocks-20200325-git.tgz 4189 9a0dfcbd9ead50439763674cd9fea60c 22bde407990ff5eecc36b47f3500716ef4de4811 bytecurry.mocks-20200325-git bytecurry.mocks.asd
c2ffi-blob http://beta.quicklisp.org/archive/c2ffi-blob/2020-10-16/c2ffi-blob-stable-git.tgz 31810192 c190cf57ac9b9fc4bee219269f478940 d4ac9c0ff84cb336d9f662c890ce80ac33b81182 c2ffi-blob-stable-git c2ffi-blob.asd
cacau http://beta.quicklisp.org/archive/cacau/2020-06-10/cacau-20200610-git.tgz 316796 9cfdc54a8168b70f0dd9a7d1ac99ec02 6d047cae0a43c3cc2a695ee06b481201091241f8 cacau-20200610-git cacau-asdf.asd cacau-test.asd cacau.asd examples/asdf-intregration/cacau-examples-asdf-integration-test.asd examples/asdf-intregration/cacau-examples-asdf-integration.asd
cacle http://beta.quicklisp.org/archive/cacle/2019-05-21/cacle-20190521-git.tgz 16699 8ea845a295a43d0794dc43c22d36ec2c edfe4bf4dc852fac85daf536ae908816aa269d28 cacle-20190521-git cacle.asd
calispel http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz 28640 1fba6e4b2055f5d1f0a78387e29552b1 1035e7249ad45cc5fb7aa5d6e362b0a80fefb7b8 calispel-20170830-git calispel.asd
cambl http://beta.quicklisp.org/archive/cambl/2018-12-10/cambl-20181210-git.tgz 45991 e5857aaf953cfdb3ebb1c4c49a02e92c 8d9ad22f71869a88fa184ae7e2510e73ff7c669e cambl-20181210-git cambl-test.asd cambl.asd fprog.asd
can http://beta.quicklisp.org/archive/can/2018-03-28/can-20180328-git.tgz 2565 6ef0d28d5aa6bc2936078cc116b70f39 0e6ad110295f63dba70e4f4d5f467734c8b52e20 can-20180328-git can-test.asd can.asd
canonicalized-initargs http://beta.quicklisp.org/archive/canonicalized-initargs/2021-04-11/canonicalized-initargs_2.0.tgz 7268 1da53e811cdc982f3d4c208b48440e86 cecd08ca17ea43dbc1850e5bb807925e22796399 canonicalized-initargs_2.0 canonicalized-initargs.asd tests/canonicalized-initargs_tests.asd
caramel http://beta.quicklisp.org/archive/caramel/2013-04-20/caramel-20130420-git.tgz 4745 b6e6020c467971a5118dd7dba8276270 5d89e63be813fb25e31975f4d42db250aa2aecb2 caramel-20130420-git caramel.asd
cardiogram http://beta.quicklisp.org/archive/cardiogram/2020-03-25/cardiogram-20200325-git.tgz 11618 f9733b7da71143ebb7af4a4196f8f9b2 c97938b979095994667ecaf4362a886c21492b57 cardiogram-20200325-git cardiogram.asd example/cardioex.asd
cari3s http://beta.quicklisp.org/archive/cari3s/2020-03-25/cari3s-20200325-git.tgz 25096 393eb58f2f0e592f324d71a50c08f004 ed6be61d844c7a624978e7489bb62aaa19cc4e45 cari3s-20200325-git cari3s.asd
carrier http://beta.quicklisp.org/archive/carrier/2018-12-10/carrier-20181210-git.tgz 3881 f831e7a8f590a9c634eaacdc8f145fe5 d2f6c847ae390bf95b2b392f562fbe17e6530563 carrier-20181210-git carrier.asd
cartesian-product-switch http://beta.quicklisp.org/archive/cartesian-product-switch/2012-09-09/cartesian-product-switch-2.0.tgz 4502 0f48da4205f8cd3b201eae1e07131fcd 82200c07f66d5d80ebeb62388108699e03e27f49 cartesian-product-switch-2.0 cartesian-product-switch.asd
caveman http://beta.quicklisp.org/archive/caveman/2021-05-31/caveman-20210531-git.tgz 30042 089ec7df79a4f0e18c5a9186b8965489 7745e263325ba1cc8f138952fce60af2fc0fa5f8 caveman-20210531-git caveman-middleware-dbimanager.asd caveman-test.asd caveman.asd caveman2-db.asd caveman2-test.asd caveman2.asd
caveman2-widgets http://beta.quicklisp.org/archive/caveman2-widgets/2018-02-28/caveman2-widgets-20180228-git.tgz 115350 960ba92d1ac86f49ce553bffd7136b25 446246d6fb1f1a2891175b7e88f45704fa72c728 caveman2-widgets-20180228-git caveman2-widgets-test.asd caveman2-widgets.asd
caveman2-widgets-bootstrap http://beta.quicklisp.org/archive/caveman2-widgets-bootstrap/2018-02-28/caveman2-widgets-bootstrap-20180228-git.tgz 4962 b6fc04d5468c9b3d6a502024eaaa8750 7ce56c2e7c5eb75f32208c90695e44a3006c10be caveman2-widgets-bootstrap-20180228-git caveman2-widgets-bootstrap-test.asd caveman2-widgets-bootstrap.asd
ccl-compat http://beta.quicklisp.org/archive/ccl-compat/2017-11-30/ccl-compat-20171130-git.tgz 7068 3229bd0be4ffa2a90e882433253a0100 fc117e973fdd6c08994c81baf99e5cc025877654 ccl-compat-20171130-git ccl-compat.asd
ccldoc http://beta.quicklisp.org/archive/ccldoc/2020-04-27/ccldoc-20200427-git.tgz 47058 27125f8c5fc4e77ed05d8b98c82c9d1a 6b9aa6ee639c5b054c84e6236306b5dd1d0a9189 ccldoc-20200427-git source/ccldoc-libraries.asd source/ccldoc.asd
cells http://beta.quicklisp.org/archive/cells/2018-03-28/cells-20180328-git.tgz 20813259 c28d3bfb8ee51a0d8fae9c2357b6833a 49c5235fd154b630c785941523c910666b970a64 cells-20180328-git cells-test.asd cells.asd
cepl http://beta.quicklisp.org/archive/cepl/2021-02-28/cepl-release-quicklisp-d1a10b6c-git.tgz 436157 43cba4741a3ae9a738a7f7134cb4f156 aa98687dd705f2b00485cdd7ba40a4a1f45901b4 cepl-release-quicklisp-d1a10b6c-git cepl.asd cepl.build.asd
cepl.camera http://beta.quicklisp.org/archive/cepl.camera/2018-02-28/cepl.camera-release-quicklisp-1292212a-git.tgz 3590 ea3319909269d1defe329ae8e126a314 6ef8df0aa73f50df2b63f462301c0bf9331d6007 cepl.camera-release-quicklisp-1292212a-git cepl.camera.asd
cepl.devil http://beta.quicklisp.org/archive/cepl.devil/2018-02-28/cepl.devil-release-quicklisp-ea5f8514-git.tgz 1930 3ca7236c320de5b217c7cd924bf8e063 6b6f880612fd28a8573cc6b4795bfa663131cf83 cepl.devil-release-quicklisp-ea5f8514-git cepl.devil.asd
cepl.drm-gbm http://beta.quicklisp.org/archive/cepl.drm-gbm/2019-05-21/cepl.drm-gbm-20190521-git.tgz 4081 1303fc696e495ec12e2ece9ee4dc6344 b74136275913799eaae407b967c32eac5baec46c cepl.drm-gbm-20190521-git cepl.drm-gbm.asd
cepl.glop http://beta.quicklisp.org/archive/cepl.glop/2018-02-28/cepl.glop-release-quicklisp-8ec09801-git.tgz 2915 33579536bbfc7037efe4ee830ecaed5f b72f80288063b5d214cf27257d1bcdf8b703878b cepl.glop-release-quicklisp-8ec09801-git cepl.glop.asd
cepl.sdl2 http://beta.quicklisp.org/archive/cepl.sdl2/2018-02-28/cepl.sdl2-release-quicklisp-6da5a030-git.tgz 4119 8e30fec5d59a4cf8f21525d1cdb9f7d3 61e4d1868d907fc092236d7f6ad8b36b685b181c cepl.sdl2-release-quicklisp-6da5a030-git cepl.sdl2.asd
cepl.sdl2-image http://beta.quicklisp.org/archive/cepl.sdl2-image/2018-02-28/cepl.sdl2-image-release-quicklisp-94a77649-git.tgz 2449 7e83fbc6868c8a13579dd590377c15fa c784ddba948e3260da76df22b18b7cc41fba7fda cepl.sdl2-image-release-quicklisp-94a77649-git cepl.sdl2-image.asd
cepl.sdl2-ttf http://beta.quicklisp.org/archive/cepl.sdl2-ttf/2018-01-31/cepl.sdl2-ttf-release-quicklisp-11b498a3-git.tgz 2404 d5e31a84c08ec2bf453a0a9cf00fa4e9 7c4640f10b7220bee04db63eef4cbf6ecae2f757 cepl.sdl2-ttf-release-quicklisp-11b498a3-git cepl.sdl2-ttf.asd
cepl.skitter http://beta.quicklisp.org/archive/cepl.skitter/2018-02-28/cepl.skitter-release-quicklisp-f52b9240-git.tgz 1755 64a97da55e6074842428311cafc99bed 63f431bc9eaa088c5c77dda2f4d983c9aa17bfdb cepl.skitter-release-quicklisp-f52b9240-git cepl.skitter.glop.asd cepl.skitter.sdl2.asd
cepl.spaces http://beta.quicklisp.org/archive/cepl.spaces/2018-03-28/cepl.spaces-release-quicklisp-c7f83f26-git.tgz 24762 53d77882ea7a52043103f436138b5496 765133bddb709078ff096c43c9ff4d98cf8fabe2 cepl.spaces-release-quicklisp-c7f83f26-git cepl.spaces.asd
ceramic http://beta.quicklisp.org/archive/ceramic/2019-11-30/ceramic-20191130-git.tgz 86783 fe8e29a2f02e11260e50449dc17d9a2d 79c7d3bfc3315beb09afa2f9fcc36f08f54e0af8 ceramic-20191130-git ceramic.asd examples/hello-world/ceramic-hello-world.asd t/app/ceramic-test-app.asd
cerberus http://beta.quicklisp.org/archive/cerberus/2020-02-18/cerberus-20200218-git.tgz 1718743 fdb273cdd83fc07b1641dfd30c3b3e8d 1c645e03f9445f5d3deb78134c6112cf3214f6d8 cerberus-20200218-git cerberus.asd
cesdi http://beta.quicklisp.org/archive/cesdi/2020-07-15/cesdi_1.0.1.tgz 6265 f98c6571658b61ac2c83125917250545 81c12dc086fb0c2f75ea1f8da8bdc027835736f2 cesdi_1.0.1 cesdi.asd tests/cesdi_tests.asd
cffi http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz 262118 c3df5c460e00e5af8b8bd2cd03a4b5cc e2767d598164ea88c0aa74a99efb2c0314a00506 cffi_0.24.1 cffi-examples.asd cffi-grovel.asd cffi-libffi.asd cffi-tests.asd cffi-toolchain.asd cffi-uffi-compat.asd cffi.asd
cffi-c-ref http://beta.quicklisp.org/archive/cffi-c-ref/2020-10-16/cffi-c-ref-stable-git.tgz 4291 b97790196796d5231f13ae4b57059214 6bc0609f487c3d5d566c5f2e078361e3418a35dc cffi-c-ref-stable-git cffi-c-ref.asd
chameleon http://beta.quicklisp.org/archive/chameleon/2019-11-30/chameleon-v1.1.0.tgz 4071 5d1819290c08797f2cd42cdeae0f4795 48012faabe08d783071117c747b80414550e3915 chameleon-v1.1.0 chameleon.asd
chancery http://beta.quicklisp.org/archive/chancery/2020-10-16/chancery-20201016-hg.tgz 15393 dd75eddc0307826b7035ff17abac679e e0a0e4441f2807a657d669ce84920556b142ca83 chancery-20201016-hg chancery.asd chancery.test.asd
changed-stream http://beta.quicklisp.org/archive/changed-stream/2013-01-28/changed-stream-20130128-git.tgz 233624 08dfb9234851b9bbe3d2b774efc809b6 153aecf366d19d2091f7e4c8a4aa22293cd0a66b changed-stream-20130128-git changed-stream.asd changed-stream.test.asd
chanl http://beta.quicklisp.org/archive/chanl/2021-04-11/chanl-20210411-git.tgz 27608 efaa5705b5feaa718290d25a95e2a684 0926e91860356aa2b291a418782e1a22cdf45d29 chanl-20210411-git chanl.asd
cheat-js http://beta.quicklisp.org/archive/cheat-js/2012-10-13/cheat-js-20121013-git.tgz 27000 d23fc2a4dfd3a0ce8c7fb42c773feb2d 288b962ed29320e097d0bf871dcd0189aa5de94d cheat-js-20121013-git cheat-js.asd
check-bnf http://beta.quicklisp.org/archive/check-bnf/2020-12-20/check-bnf-20201220-git.tgz 12590 1f3d84c1f9b3195cafd5affe19244f2f ba9cc1bd389105d2f04ab564d41039b7cc629466 check-bnf-20201220-git check-bnf.asd spec/check-bnf.test.asd
check-it http://beta.quicklisp.org/archive/check-it/2015-07-09/check-it-20150709-git.tgz 19988 0baae55e5a9c8c884202cbc51e634c42 49933b16fc112096734546df0d91bb76bef3044e check-it-20150709-git check-it.asd
checkl http://beta.quicklisp.org/archive/checkl/2018-03-28/checkl-20180328-git.tgz 8294 a5050385e2ef2977ba2112ea88128535 aca1cf3498cb81a443772c0bc306b11e037d5dd6 checkl-20180328-git checkl-docs.asd checkl-test.asd checkl.asd
chemical-compounds http://beta.quicklisp.org/archive/chemical-compounds/2011-10-01/chemical-compounds-1.0.2.tgz 5119 05d45cf42a61e9dabab409d345b778c1 1fc077075d4b580f4b363a131f670bab602e8886 chemical-compounds-1.0.2 chemical-compounds.asd
chillax http://beta.quicklisp.org/archive/chillax/2015-03-02/chillax-20150302-git.tgz 207342 f173c34bb131fe6192f5c6c87bf1be7e 860cd942dd71757d22f1b81d24919e36cca850c5 chillax-20150302-git chillax.asd chillax.core.asd chillax.jsown.asd chillax.view-server.asd chillax.yason.asd
chipmunk-blob http://beta.quicklisp.org/archive/chipmunk-blob/2020-10-16/chipmunk-blob-stable-git.tgz 722617 289c1b1ec15f4357595966ba19df64e5 30464528704e2f69b8cd95eb0dabf4c69fb3b53a chipmunk-blob-stable-git chipmunk-blob.asd
chipz http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz 37110 e3533408ca6899fe996eede390e820c7 b2a2321ae7eab3609bf20ffa01f7bddc307bf087 chipz-20190202-git chipz.asd
chirp http://beta.quicklisp.org/archive/chirp/2021-05-31/chirp-20210531-git.tgz 87777 30747be4baac36968cf08c1962e87bbc 889841deff669cdf3febe6bc874a888d3f11a20e chirp-20210531-git chirp-core.asd chirp-dexador.asd chirp-drakma.asd chirp.asd
chrome-native-messaging http://beta.quicklisp.org/archive/chrome-native-messaging/2015-03-02/chrome-native-messaging-20150302-git.tgz 1973 3fae36a2473eb7095d50f8472d31bd6c beeb53f51396f5fd05217c00b07306835a566943 chrome-native-messaging-20150302-git chrome-native-messaging.asd
chronicity http://beta.quicklisp.org/archive/chronicity/2019-02-02/chronicity-20190202-git.tgz 30517 43ca1a6e3f5f16f3c3fa8708aa6f8abb 8d561cd975aec6eceaabd245b8fc4e26f9450081 chronicity-20190202-git chronicity-test.asd chronicity.asd
chtml-matcher http://beta.quicklisp.org/archive/chtml-matcher/2011-10-01/chtml-matcher-20111001-git.tgz 9772 b78c982a080fa6264d0524f5aabb6440 c328ea450fd88170ce98235761bcd3973ce2fc1e chtml-matcher-20111001-git chtml-matcher.asd
chunga http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz 20599 ec31aa63a1b594a197ad45e5e65c4cc4 7a341e0e55681847160bce6941e8aec36f928228 chunga-20200427-git chunga.asd
ci-utils http://beta.quicklisp.org/archive/ci-utils/2021-04-11/ci-utils-20210411-git.tgz 17943 5d1757561d148bc145b37f8e2bac762a 81b5d13fc062178468661d1c54518955b95a2023 ci-utils-20210411-git ci-utils-features.asd ci-utils.asd
circular-streams http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz 3335 2383f3b82fa3335d9106e1354a678db8 aaeec87552396bc112300d66e93905c546e2c0ec circular-streams-20161204-git circular-streams-test.asd circular-streams.asd
city-hash http://beta.quicklisp.org/archive/city-hash/2020-09-25/city-hash-20200925-git.tgz 33787 dd5a769949cb213dc9138e71cdf4431e 27ea6a0862e8090ebdfb73c599dffbf5c3700fb6 city-hash-20200925-git city-hash-test.asd city-hash.asd
cl+ssl http://beta.quicklisp.org/archive/cl+ssl/2021-05-31/cl+ssl-20210531-git.tgz 63818 a18af799613229045e9d47827c5b9bfe 10d9676aede6adc4e143bee6ef5d13c1d0cbfbea cl+ssl-20210531-git cl+ssl.asd cl+ssl.test.asd
cl-6502 http://beta.quicklisp.org/archive/cl-6502/2015-09-23/cl-6502-20150923-git.tgz 67684 b4396714cfa3693fd1f40d3464622304 f55e04108665aa220401d15ec2b08b8cf6739e35 cl-6502-20150923-git cl-6502.asd
cl-abnf http://beta.quicklisp.org/archive/cl-abnf/2020-03-25/cl-abnf-20200325-git.tgz 8343 4d550c68017593ef5c5c0ef945e095e0 02ec1aaf88657f245033848b58f9b22cd51b37a5 cl-abnf-20200325-git abnf.asd
cl-abstract-classes http://beta.quicklisp.org/archive/cl-abstract-classes/2019-03-07/cl-abstract-classes-20190307-hg.tgz 4719 9f70affac8015d8fc4e29f16c642890e 9c691e814b9e541e024751edd4e3e26c87082b0b cl-abstract-classes-20190307-hg abstract-classes.asd singleton-classes.asd
cl-acronyms http://beta.quicklisp.org/archive/cl-acronyms/2015-03-02/cl-acronyms-20150302-git.tgz 927131 99e7304da8f6408227323fdab76e07db 695aaa263b152453e6f8130afb6cfcea1165a463 cl-acronyms-20150302-git cl-acronyms.asd
cl-algebraic-data-type http://beta.quicklisp.org/archive/cl-algebraic-data-type/2019-10-07/cl-algebraic-data-type-20191007-git.tgz 7396 022de40e52b252919ea9c7f77ab90435 eec9f2941bcad980c2f76a5f94df20f1f920c87f cl-algebraic-data-type-20191007-git cl-algebraic-data-type.asd
cl-all http://beta.quicklisp.org/archive/cl-all/2020-09-25/cl-all-20200925-git.tgz 5667 9a0aad5fa1a7daf44e49ff2cc5494be4 efa1b118bd20e3efe96d970febe3959e97a4ebe6 cl-all-20200925-git cl-all.asd
cl-amqp http://beta.quicklisp.org/archive/cl-amqp/2019-10-08/cl-amqp-v0.4.1.tgz 58162 1867a1d1ecdf4606ed8c50d583b1b876 92e5c46f853154df29fb8e8a1a62bbbf23b34332 cl-amqp-v0.4.1 cl-amqp.asd cl-amqp.test.asd
cl-ana http://beta.quicklisp.org/archive/cl-ana/2021-05-31/cl-ana-20210531-git.tgz 594543 d9824a73ef7f357eb48e5bc8bb001faa 32b41fb1a033f8aab5dec46d06240b3bf6efe2fc cl-ana-20210531-git binary-tree/cl-ana.binary-tree.asd calculus/cl-ana.calculus.asd cl-ana.asd clos-utils/cl-ana.clos-utils.asd columnar-table/cl-ana.columnar-table.asd csv-table/cl-ana.csv-table.asd error-propogation/cl-ana.error-propogation.asd file-utils/cl-ana.file-utils.asd fitting/cl-ana.fitting.asd functional-utils/cl-ana.functional-utils.asd generic-math/cl-ana.generic-math.asd gnuplot-interface/cl-ana.gnuplot-interface.asd gsl-cffi/cl-ana.gsl-cffi.asd hash-table-utils/cl-ana.hash-table-utils.asd hdf-cffi/cl-ana.hdf-cffi.asd hdf-table/cl-ana.hdf-table.asd hdf-typespec/cl-ana.hdf-typespec.asd hdf-utils/cl-ana.hdf-utils.asd histogram/cl-ana.histogram.asd int-char/cl-ana.int-char.asd linear-algebra/cl-ana.linear-algebra.asd list-utils/cl-ana.list-utils.asd lorentz/cl-ana.lorentz.asd macro-utils/cl-ana.macro-utils.asd makeres-block/cl-ana.makeres-block.asd makeres-branch/cl-ana.makeres-branch.asd makeres-graphviz/cl-ana.makeres-graphviz.asd makeres-macro/cl-ana.makeres-macro.asd makeres-progress/cl-ana.makeres-progress.asd makeres-table/cl-ana.makeres-table.asd makeres-utils/cl-ana.makeres-utils.asd makeres/cl-ana.makeres.asd map/cl-ana.map.asd math-functions/cl-ana.math-functions.asd memoization/cl-ana.memoization.asd ntuple-table/cl-ana.ntuple-table.asd package-utils/cl-ana.package-utils.asd pathname-utils/cl-ana.pathname-utils.asd plotting/cl-ana.plotting.asd quantity/cl-ana.quantity.asd reusable-table/cl-ana.reusable-table.asd serialization/cl-ana.serialization.asd spline/cl-ana.spline.asd statistical-learning/cl-ana.statistical-learning.asd statistics/cl-ana.statistics.asd string-utils/cl-ana.string-utils.asd symbol-utils/cl-ana.symbol-utils.asd table-utils/cl-ana.table-utils.asd table-viewing/cl-ana.table-viewing.asd table/cl-ana.table.asd tensor/cl-ana.tensor.asd typed-table/cl-ana.typed-table.asd typespec/cl-ana.typespec.asd
cl-annot http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz 10039 35d8f79311bda4dd86002d11edcd0a21 31e415954f5e033907cd5d88ee4735e4ed940f12 cl-annot-20150608-git cl-annot.asd
cl-annot-prove http://beta.quicklisp.org/archive/cl-annot-prove/2015-09-23/cl-annot-prove-20150923-git.tgz 9244 d7ee8d5c35f1aaa036b77bbd1092b77c 25a765cde6977c027de5adf3067647623e96ba05 cl-annot-prove-20150923-git cl-annot-prove-test.asd cl-annot-prove.asd
cl-anonfun http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz 2163 915bda1a7653d42090f8d20a1ad85d0b a0a38ada878271e7bc8ebc9cb75a0bd7b5cc7aa5 cl-anonfun-20111203-git cl-anonfun.asd
cl-ansi-term http://beta.quicklisp.org/archive/cl-ansi-term/2020-06-10/cl-ansi-term-20200610-git.tgz 40854 bdeb1c2e5574141975d944b2e4847381 85f263b58d4b86280e6e152ee0d37a435e3f2f01 cl-ansi-term-20200610-git cl-ansi-term.asd
cl-ansi-text http://beta.quicklisp.org/archive/cl-ansi-text/2021-01-24/cl-ansi-text-20210124-git.tgz 6689 76f54998b056919978737815468e31b6 bf0b848da01f6f967b7c063437a71ccfff9cbaaf cl-ansi-text-20210124-git cl-ansi-text.asd cl-ansi-text.test.asd
cl-apple-plist http://beta.quicklisp.org/archive/cl-apple-plist/2011-11-05/cl-apple-plist-20111105-git.tgz 2720 95b6163c11c22fbb84c1f43c6703e612 b973e5c37b48d524c34b1ea2e8b89f636d69ad06 cl-apple-plist-20111105-git cl-apple-plist.asd
cl-arff-parser http://beta.quicklisp.org/archive/cl-arff-parser/2013-04-21/cl-arff-parser-20130421-git.tgz 4500 8ae977859eb11df65a1694b52436b0b5 d2342be9fa7b9a7aea26935b6268b7f556f7ff81 cl-arff-parser-20130421-git cl-arff-parser.asd
cl-argparse http://beta.quicklisp.org/archive/cl-argparse/2021-05-31/cl-argparse-20210531-git.tgz 7385 fe3efa33c6024235af44973dfb585b22 a918459cb3cee0b33fe29d189c0c4be28c38998d cl-argparse-20210531-git src/cl-argparse.asd
cl-aristid http://beta.quicklisp.org/archive/cl-aristid/2020-09-25/cl-aristid-20200925-git.tgz 4076577 472e0faacec6384973f9f5e24d78f942 127e11031f6eea32ff06fdee9f9329487095ac21 cl-aristid-20200925-git cl-aristid.asd
cl-arxiv-api http://beta.quicklisp.org/archive/cl-arxiv-api/2017-04-03/cl-arxiv-api-20170403-git.tgz 9013 3537c564323f050ba434a8198e525455 7c066716a5453b08d60181849bfb302517009806 cl-arxiv-api-20170403-git cl-arxiv-api.asd
cl-ascii-art http://beta.quicklisp.org/archive/cl-ascii-art/2017-10-19/cl-ascii-art-20171019-git.tgz 2500481 cf7fe4d84658d5d65d899e5b2c2f88fe 1fce75ccdd44c7ff91be24c51e6d570f009ccd94 cl-ascii-art-20171019-git cl-ascii-art.asd
cl-ascii-table http://beta.quicklisp.org/archive/cl-ascii-table/2020-06-10/cl-ascii-table-20200610-git.tgz 3572 6f2eaaae3fb03ba719d77ed3ffaeaf4f 4e3b075ac1131295ec488222930019dc43725617 cl-ascii-table-20200610-git cl-ascii-table.asd
cl-association-rules http://beta.quicklisp.org/archive/cl-association-rules/2017-04-03/cl-association-rules-20170403-git.tgz 4370 641b30a4fcf913cf91acbe6aaf2cae1a cf2b99cd6350ac6eef1a1301b6f80d5d27d5e305 cl-association-rules-20170403-git cl-association-rules.asd
cl-async http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz 56987 bf2b1337e09df5ecca329c3e92622376 aacf44245d3b35929b107760058a782af651a1f9 cl-async-20210531-git cl-async-repl.asd cl-async-ssl.asd cl-async-test.asd cl-async.asd
cl-async-await http://beta.quicklisp.org/archive/cl-async-await/2020-10-16/cl-async-await-20201016-git.tgz 14628 66d91f98068c3e9c57274f291bbf13fd 0728371bd39642b3d703378c21477c85a6bbfa4a cl-async-await-20201016-git cl-async-await.asd
cl-async-future http://beta.quicklisp.org/archive/cl-async-future/2015-01-13/cl-async-future-20150113-git.tgz 5719 961dbcb0bad3515ac7170f96dfd626ef 50751c2b573e0323f4c4687427df1d15b901cc38 cl-async-future-20150113-git cl-async-future.asd
cl-aubio http://beta.quicklisp.org/archive/cl-aubio/2020-04-27/cl-aubio-20200427-git.tgz 2886851 4125b5ea70516056040c017f9d6f5cd0 2b171fc15cf98fe4e5051370b50a1f1256f1a190 cl-aubio-20200427-git cl-aubio.asd
cl-autorepo http://beta.quicklisp.org/archive/cl-autorepo/2018-07-11/cl-autorepo-20180711-git.tgz 2223 333fc8779ce41c4e87ed5bdae6a18047 93fa8ee37a34306d513fbdcdfef0b32b6e50723d cl-autorepo-20180711-git cl-autorepo.asd
cl-autowrap http://beta.quicklisp.org/archive/cl-autowrap/2021-04-11/cl-autowrap-20210411-git.tgz 74839 95650d1b2791974c634412f0ec33ca15 33cc50f378936d32c2d41712ca92b2bea361c1b9 cl-autowrap-20210411-git cl-autowrap-test.asd cl-autowrap.asd cl-plus-c.asd
cl-azure http://beta.quicklisp.org/archive/cl-azure/2016-08-25/cl-azure-20160825-git.tgz 16121 b85ed39bbbe3dc96b008dba7f7832365 e6bc24f54ee60ad9c51143995e36e9344f450b57 cl-azure-20160825-git cl-azure.asd
cl-base16 http://beta.quicklisp.org/archive/cl-base16/2020-09-25/cl-base16-20200925-git.tgz 15063 7f03987a109fbea2e7f28a4bf4f50ca4 1aff70774c128088935caf98ba76ed3a0c075248 cl-base16-20200925-git cl-base16.asd
cl-base32 http://beta.quicklisp.org/archive/cl-base32/2013-04-20/cl-base32-20130420-git.tgz 3417 e5066e4e4947e6f9d4debcbb38c008b9 ae9f24b9a9f4055650d2cc5aafd986cd4251b19b cl-base32-20130420-git cl-base32.asd
cl-base58 http://beta.quicklisp.org/archive/cl-base58/2015-01-13/cl-base58-20150113-git.tgz 2327 18cbd835ced24e94b0eff6380d7ee088 114d203cecd45d09c54756b5042d493c31f37d51 cl-base58-20150113-git cl-base58-test.asd cl-base58.asd
cl-base64 http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz 10373 f556f7c61f785c84abdc1beb63c906ae f995d12a8885d3738a7ddea4ea8ef00ca8c88a2a cl-base64-20201016-git cl-base64.asd
cl-batis http://beta.quicklisp.org/archive/cl-batis/2020-06-10/cl-batis-20200610-git.tgz 9130 b27bb943b16fc0eb606131efd0c9fc8f a68412091d2bbbe32919dc0238ff3d504d5bacae cl-batis-20200610-git batis-test.asd batis.asd cl-batis.asd
cl-bayesnet http://beta.quicklisp.org/archive/cl-bayesnet/2013-04-20/cl-bayesnet-20130420-git.tgz 1176067 bfbc8a2a51d5b76c4c53993d2280d94f ff6228f63582e6f4a5665fb845bce62df365347a cl-bayesnet-20130420-git cl-bayesnet.asd
cl-bcrypt http://beta.quicklisp.org/archive/cl-bcrypt/2020-09-25/cl-bcrypt-20200925-git.tgz 6939 e39524f515977708479c414e7c654246 db9b71109df120dca378e2284445aad633fbdd1f cl-bcrypt-20200925-git cl-bcrypt.asd cl-bcrypt.test.asd
cl-beanstalk http://beta.quicklisp.org/archive/cl-beanstalk/2011-06-19/cl-beanstalk-20110619-git.tgz 8888 a0cc4fd21e978722d70185c8cb908053 657eca4550127ddf554db273999f89f5a4e1b7e7 cl-beanstalk-20110619-git cl-beanstalk.asd
cl-bencode http://beta.quicklisp.org/archive/cl-bencode/2018-02-28/cl-bencode-20180228-git.tgz 6343 4eaa85d018a4fbb35378c07c727bf585 0548331a29e838863d1f0573ca8c788647ea8196 cl-bencode-20180228-git bencode.asd
cl-bert http://beta.quicklisp.org/archive/cl-bert/2014-11-06/cl-bert-20141106-git.tgz 3107 146379540abc497d942ef89d33df9672 d7082e37cc22c2d99b2dba50f6cf8ea1060f85a9 cl-bert-20141106-git bert.asd
cl-bibtex http://beta.quicklisp.org/archive/cl-bibtex/2018-12-10/cl-bibtex-20181210-git.tgz 76724 83cf40c69b449a4b543538f67fdf69cd 05c1cf877743b2f32a2d8f87fc871858d9b403a5 cl-bibtex-20181210-git bibtex.asd
cl-bip39 http://beta.quicklisp.org/archive/cl-bip39/2018-07-11/cl-bip39-20180711-git.tgz 10742 a791287d7b55d8a813f3239016b321ea f24dffe751c80eaa3e0042545289be79c7447be2 cl-bip39-20180711-git cl-bip39.asd
cl-bloggy http://beta.quicklisp.org/archive/cl-bloggy/2020-12-20/cl-bloggy-20201220-git.tgz 6544 e3bb6435b30c8afd3dd3206c95b1e0cd b43c5e1e76d52c60a65e35c6cf3c5a715073d049 cl-bloggy-20201220-git cl-bloggy.asd
cl-bloom http://beta.quicklisp.org/archive/cl-bloom/2018-02-28/cl-bloom-20180228-git.tgz 4302 89f0727b66223ccb6aeb294fc0cc011f ad6f0142aefcc1bfbeeec81e09627a2a74e78047 cl-bloom-20180228-git cl-bloom.asd
cl-bnf http://beta.quicklisp.org/archive/cl-bnf/2020-09-25/cl-bnf-20200925-git.tgz 5695 61b1aaf5309504eb04ffdf0d0922c947 af30c5338cfc39ad06199a4b205327c53ba7d826 cl-bnf-20200925-git cl-bnf-examples.asd cl-bnf-tests.asd cl-bnf.asd
cl-bootstrap http://beta.quicklisp.org/archive/cl-bootstrap/2018-08-31/cl-bootstrap-20180831-git.tgz 161893 cee57823b000ebedbf0ca2a5bc745e8b 832338aec105f68f8982c4e6ecdc1209361ce3e8 cl-bootstrap-20180831-git cl-bootstrap-demo.asd cl-bootstrap-test.asd cl-bootstrap.asd
cl-bplustree http://beta.quicklisp.org/archive/cl-bplustree/2018-03-28/cl-bplustree-20180328-git.tgz 8921 e5a31bafa8e9e42a5da16d675b852697 84702c33e5625e787ea4df04d7d5c2cf82336bde cl-bplustree-20180328-git cl-bplustree.asd
cl-bson http://beta.quicklisp.org/archive/cl-bson/2017-04-03/cl-bson-20170403-git.tgz 35505 c9359beeeb67fde4566ca3fdcd2e7ba6 74baa529bd8c1038f4dc509baabba84f545f001f cl-bson-20170403-git cl-bson-test.asd cl-bson.asd
cl-buchberger http://beta.quicklisp.org/archive/cl-buchberger/2020-10-16/cl-buchberger-20201016-git.tgz 7929 c2c1e6f2fd6cf9c61bb2c803478c416a 8d5eef1b76316d207172e92fd4c30ff644d49586 cl-buchberger-20201016-git cl-buchberger.asd
cl-bunny http://beta.quicklisp.org/archive/cl-bunny/2020-12-20/cl-bunny-0.4.6.tgz 47915 92f82851305e12d379dce3fdb5fdaeee d92fa494d450231663ed556666c1bc6fb1a0202f cl-bunny-0.4.6 cl-bunny.asd cl-bunny.examples.asd cl-bunny.test.asd
cl-ca http://beta.quicklisp.org/archive/cl-ca/2016-12-04/cl-ca-20161204-git.tgz 4056 e20a120a4bdea1da122f67d1c748c164 250c6a1fd47118fd4634c1ca7b67f6eec8822e29 cl-ca-20161204-git cl-ca.asd
cl-cache-tables http://beta.quicklisp.org/archive/cl-cache-tables/2017-10-19/cl-cache-tables-20171019-git.tgz 5219 24fcc0c7e5c4b56aa4d3c0ccf8013804 8467ba23db68b1b2136216eb37934664bbc56560 cl-cache-tables-20171019-git cl-cache-tables.asd
cl-cairo2 http://beta.quicklisp.org/archive/cl-cairo2/2016-05-31/cl-cairo2-20160531-git.tgz 219593 aa81d669f8c3feb77dd952f0e4d41719 34fc6c321105781ff8edce95e921dddf81f85a40 cl-cairo2-20160531-git a-cl-cairo2-loader.asd cl-cairo2-demos.asd cl-cairo2-gtk2.asd cl-cairo2-xlib.asd cl-cairo2.asd
cl-capstone http://beta.quicklisp.org/archive/cl-capstone/2020-10-16/cl-capstone-20201016-git.tgz 12158 f0e700635049a96f1d6b05feb9114581 9eca7b1a93a1a30555a640f90306938459394948 cl-capstone-20201016-git capstone.asd
cl-case-control http://beta.quicklisp.org/archive/cl-case-control/2014-11-06/cl-case-control-20141106-git.tgz 4262 9bd926eaf15cc7053ef7e6676491aa23 a2d273abfa6ff8f0680f0f9d6545064ba133908a cl-case-control-20141106-git cl-case-control.asd
cl-catmull-rom-spline http://beta.quicklisp.org/archive/cl-catmull-rom-spline/2020-12-20/cl-catmull-rom-spline-20201220-git.tgz 25422 85a5ee2757b3b6119204c508807ee226 9d82f726bbf22ad7008b7f1ec648933b7c7919f6 cl-catmull-rom-spline-20201220-git cl-catmull-rom-spline.asd
cl-cerf http://beta.quicklisp.org/archive/cl-cerf/2021-05-31/cl-cerf-20210531-git.tgz 1923 fc9737d516b648716dbe5fdb70938e42 2eec3e62b0bebeee2b74fc545261be8a8264eee8 cl-cerf-20210531-git cl-cerf.asd
cl-cffi-gtk http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz 6290907 954beac0970a46263153c2863ad1cb5f 0d9561465c894d6dc57a9329ff950fe07cacbd0d cl-cffi-gtk-20201220-git cairo/cl-cffi-gtk-cairo.asd demo/cairo-demo/cl-cffi-gtk-demo-cairo.asd demo/glib-demo/cl-cffi-gtk-demo-glib.asd demo/gobject-demo/cl-cffi-gtk-demo-gobject.asd demo/gtk-example/cl-cffi-gtk-example-gtk.asd demo/opengl-demo/cl-cffi-gtk-opengl-demo.asd gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd gdk/cl-cffi-gtk-gdk.asd gio/cl-cffi-gtk-gio.asd glib/cl-cffi-gtk-glib.asd gobject/cl-cffi-gtk-gobject.asd gtk/cl-cffi-gtk.asd pango/cl-cffi-gtk-pango.asd
cl-change-case http://beta.quicklisp.org/archive/cl-change-case/2021-04-11/cl-change-case-20210411-git.tgz 4792 df72a3d71a6c65e149704688aec859b9 d19d49e30d952a38429ac25dc2005999bcfe003c cl-change-case-20210411-git cl-change-case.asd
cl-charms http://beta.quicklisp.org/archive/cl-charms/2020-02-18/cl-charms-20200218-git.tgz 27230 8a9b63ddc6e7bca2dc282f4bc61f6588 5c6de8748572fc46adf2f2b06fe9067bf63febec cl-charms-20200218-git cl-charms-paint.asd cl-charms-timer.asd cl-charms.asd
cl-cheshire-cat http://beta.quicklisp.org/archive/cl-cheshire-cat/2012-11-25/cl-cheshire-cat-20121125-git.tgz 23482 729d03cde121deedf97f3669c262e82e d2797915bed6422d5516abeb9f3c4a33809c306b cl-cheshire-cat-20121125-git cl-cheshire-cat.asd
cl-clblas http://beta.quicklisp.org/archive/cl-clblas/2018-10-18/cl-clblas-20181018-git.tgz 8535 ae2ac2ceba89561bc472677ab373017f ecca33c74178a2f77c94fdb3f40a9fee5e87c399 cl-clblas-20181018-git cl-clblas-test.asd cl-clblas.asd
cl-cli http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz 6467 820e5c7dde6800fcfa44b1fbc7a9d62b 95d3aaf9325b6317343844e8b40efdf7c302a47f cl-cli-20151218-git cl-cli.asd
cl-cli-parser http://beta.quicklisp.org/archive/cl-cli-parser/2015-06-08/cl-cli-parser-20150608-git.tgz 8093 38fc199ad50a98819a3cd0d82665fe68 a7e3a4d60a6069b08ecd5ebf477609c6927710c3 cl-cli-parser-20150608-git cli-parser.asd
cl-clon http://beta.quicklisp.org/archive/cl-clon/2021-04-11/clon-1.0b25.tgz 247117 ff8cb8e1a7988e4d0475a3a51e804f9e 39a0a227047d8afb94f980638e14faef500feccd clon-1.0b25 core/net.didierverna.clon.core.asd demos/advanced.asd demos/simple.asd net.didierverna.clon.asd setup/net.didierverna.clon.setup.asd
cl-closure-template http://beta.quicklisp.org/archive/cl-closure-template/2015-08-04/cl-closure-template-20150804-git.tgz 98945 d2b36fa36a3bbb532c7898c2ff6211f7 b58d01914b50c26a7a43ed1e0848562a212017b3 cl-closure-template-20150804-git closure-template.asd
cl-clsparse http://beta.quicklisp.org/archive/cl-clsparse/2019-08-13/cl-clsparse-20190813-git.tgz 5431 f52ee9a080bc55364c817ea7c032588d e9b211b3f6c39cca6e07516292673c76271b2349 cl-clsparse-20190813-git cl-clsparse.asd
cl-cognito http://beta.quicklisp.org/archive/cl-cognito/2018-12-10/cl-cognito-20181210-git.tgz 10532 6372b22b37cd2f092542cf4add7f336b a31ce281d683c6d15bd458f2dc366ea5ba641b86 cl-cognito-20181210-git cl-cognito.asd
cl-collider http://beta.quicklisp.org/archive/cl-collider/2021-05-31/cl-collider-20210531-git.tgz 64086 35b522b6c3229b1c15eba8934306a42f 2849ba25fad6de081c28c1377e7cf48cc5247ad6 cl-collider-20210531-git cl-collider.asd osc/sc-osc.asd
cl-colors http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz 14566 5e59ea59b32a0254df9610a5662ae2ec 08d7a2af682802fce159e47ff3511112f24e892a cl-colors-20180328-git cl-colors.asd
cl-colors2 http://beta.quicklisp.org/archive/cl-colors2/2021-04-11/cl-colors2-20210411-git.tgz 23502 e6b54e76e7d1cfcff45955dbd4752f1d 28a62f249a29c44c7a078851773d3c33d1352792 cl-colors2-20210411-git cl-colors2.asd
cl-conllu http://beta.quicklisp.org/archive/cl-conllu/2020-12-20/cl-conllu-20201220-git.tgz 41937 513bd9fdd2dbcce4d82853f67edb84c4 d09bff61a2b8097185efe2a34e3937482b34a43f cl-conllu-20201220-git cl-conllu.asd
cl-conspack http://beta.quicklisp.org/archive/cl-conspack/2017-04-03/cl-conspack-20170403-git.tgz 46289 43b17d3d9bb969ffd1919f7c05453c14 6f2acf5bb1d4c2d18573fc5f6eec367325131924 cl-conspack-20170403-git cl-conspack-test.asd cl-conspack.asd
cl-cont http://beta.quicklisp.org/archive/cl-cont/2011-02-19/cl-cont-20110219-darcs.tgz 11715 204ad0178da3de604e92fab5ac1c20b6 f24ffb4d90a98f4ab82841279f29ac64615069de cl-cont-20110219-darcs cl-cont-test.asd cl-cont.asd
cl-containers http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz 231463 bb0e03a581e9b617dd166a3f511eaf6a dfeb22f02e3cf62dc0767340354bb021cda4414b cl-containers-20200427-git cl-containers-test.asd cl-containers.asd
cl-cookie http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz 4880 37595a6705fdd77415b859aea90d30bc c1dad8b9e287398c5f909af268f1b3908dabc760 cl-cookie-20191007-git cl-cookie-test.asd cl-cookie.asd
cl-coroutine http://beta.quicklisp.org/archive/cl-coroutine/2016-09-29/cl-coroutine-20160929-git.tgz 3335 d89c78cb0a94768603c8f581227af23f 934dcbb769a9199affe633368462e104fbf2c03f cl-coroutine-20160929-git cl-coroutine-test.asd cl-coroutine.asd
cl-coveralls http://beta.quicklisp.org/archive/cl-coveralls/2021-04-11/cl-coveralls-20210411-git.tgz 7733 6042f6fd3f0d1aff5bffb99ee72f3459 fc7fea5d98341ae5580b60f3e8baa38f093ac5e6 cl-coveralls-20210411-git cl-coveralls-test.asd cl-coveralls.asd
cl-covid19 http://beta.quicklisp.org/archive/cl-covid19/2021-05-31/cl-covid19-20210531-git.tgz 7711526 868a9b1115dd9baf6ca6a60edfc347b1 81be10d4c014e25de4a119b7d10aaf1562ea41b0 cl-covid19-20210531-git cl-covid19.asd
cl-cpus http://beta.quicklisp.org/archive/cl-cpus/2018-04-30/cl-cpus-20180430-git.tgz 2505 8144fd890f060d558d896c2b10538f02 1c38814243fe2a8f437189d7a7496cd51574f1bb cl-cpus-20180430-git cl-cpus.asd
cl-crc64 http://beta.quicklisp.org/archive/cl-crc64/2014-07-13/cl-crc64-20140713-git.tgz 3436 d97cf9231647235a938707e64a1766ad 3140afa99b2ee11f7cda85f9563b975c45cdb9d2 cl-crc64-20140713-git cl-crc64.asd
cl-creditcard http://beta.quicklisp.org/archive/cl-creditcard/2015-01-13/cl-creditcard-20150113-git.tgz 10834 35f506d0dcef15f26a46b6419c0f060b 0b816115dbedc264e2d3724088267220a8e43a5a cl-creditcard-20150113-git cl-authorize-net.asd cl-creditcard.asd
cl-cron http://beta.quicklisp.org/archive/cl-cron/2019-03-07/cl-cron-20190307-hg.tgz 15874 d5d1bace9780975f4f4144e0c0f4b0fc 35ccdd808c6e532928a100f25fc95bb5fcaf5b2a cl-cron-20190307-hg cl-cron.asd
cl-crypt http://beta.quicklisp.org/archive/cl-crypt/2012-05-20/cl-crypt-20120520-git.tgz 7279 0e6b5ba0cd7a565686e847197622698f f66ea06ec261e994f5ba7d71236c93a3a4edd113 cl-crypt-20120520-git crypt.asd
cl-css http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz 4907 a91f5a5d6a751af31d5c4fd8170f6ece 0b25eb863296f4d83523535c606514502ad6aac5 cl-css-20140914-git cl-css.asd
cl-csv http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz 25202 3e067784236ab620857fe738dafedb4b 50b9ecb493ce094c7eba3b9bcb6998774b06c3d6 cl-csv-20201016-git cl-csv-clsql.asd cl-csv-data-table.asd cl-csv.asd
cl-cuda http://beta.quicklisp.org/archive/cl-cuda/2021-05-31/cl-cuda-20210531-git.tgz 73660 a9e0047ce664a504f789702771241b3a 6d5e40f0c1bd5f9d9118310122e847d5a27ae0bb cl-cuda-20210531-git cl-cuda-examples.asd cl-cuda-interop-examples.asd cl-cuda-interop.asd cl-cuda-misc.asd cl-cuda.asd
cl-custom-hash-table http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz 7660 bd0f2f4a8e808911133af19c03e5c511 0c417f960bf62104ede823c1d48c380ea03c3d58 cl-custom-hash-table-20201220-git cl-custom-hash-table-test.asd cl-custom-hash-table.asd
cl-cut http://beta.quicklisp.org/archive/cl-cut/2018-01-31/cl-cut-20180131-git.tgz 5001 e020c977e8064ff8b5a6e00c43b2612e 6a7a89a4568e71e2d4b41cb711cd54c4a63ef928 cl-cut-20180131-git cl-cut.asd cl-cut.test.asd
cl-cxx http://beta.quicklisp.org/archive/cl-cxx/2021-04-11/cl-cxx-20210411-git.tgz 6714 fe57ef065e53ba371cf9b4677c4a7993 61294f8511952da27d84b28491b5d6f5d47e9167 cl-cxx-20210411-git cxx-test.asd cxx.asd
cl-cxx-jit http://beta.quicklisp.org/archive/cl-cxx-jit/2021-05-31/cl-cxx-jit-20210531-git.tgz 1258531 3853395a56d0573568a18d663d06c9cc ae9219093543d7421f1b1cdb9e0bc8e03c456b6e cl-cxx-jit-20210531-git cxx-jit.asd
cl-darksky http://beta.quicklisp.org/archive/cl-darksky/2018-07-11/cl-darksky-20180711-git.tgz 2006 c62b43b0d00975df19b5c5e72433b462 4b55a096708a83a7fa703813c4ddb02178e45ab3 cl-darksky-20180711-git cl-darksky-test.asd cl-darksky.asd
cl-data-format-validation http://beta.quicklisp.org/archive/cl-data-format-validation/2014-07-13/cl-data-format-validation-20140713-git.tgz 37403 2d13446e593b3b0c46fb83ee9fc5da7f 0a085113a3c0e2c28735f4709b31ff46ee54b68b cl-data-format-validation-20140713-git data-format-validation.asd
cl-data-frame http://beta.quicklisp.org/archive/cl-data-frame/2021-05-31/cl-data-frame-20210531-git.tgz 8843 1d1f7444704e6b05f7ca4e95cf3cd222 e67914091fae9be9199cc85b51275c43e82b10a9 cl-data-frame-20210531-git cl-data-frame.asd
cl-data-structures http://beta.quicklisp.org/archive/cl-data-structures/2021-05-31/cl-data-structures-20210531-git.tgz 1230386 6efcde855e2187a6faf91ce54da4e97c 716f4a511a921a2e870489ff3e065a2e56109fdb cl-data-structures-20210531-git cl-data-structures-tests.asd cl-data-structures.asd
cl-date-time-parser http://beta.quicklisp.org/archive/cl-date-time-parser/2014-07-13/cl-date-time-parser-20140713-git.tgz 10231 a5c384eafcdcf063499341b40c09129a 7633ae11684c9c8cd219f4cf615869bc2b5d2c42 cl-date-time-parser-20140713-git cl-date-time-parser.asd
cl-db3 http://beta.quicklisp.org/archive/cl-db3/2020-02-18/cl-db3-20200218-git.tgz 6162 42a8e17c70e8a4ded2771207546bf498 46fd1c5dff7709bd9a7fe3d8316aefc51446b2cc cl-db3-20200218-git db3.asd
cl-dbi http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz 19523 7cfb5ad172bc30906ae32ca620099a1f 30676f666878db1e62d8489bdc229013d207f684 cl-dbi-20210228-git cl-dbi.asd dbd-mysql.asd dbd-postgres.asd dbd-sqlite3.asd dbi-test.asd dbi.asd
cl-dbi-connection-pool http://beta.quicklisp.org/archive/cl-dbi-connection-pool/2020-06-10/cl-dbi-connection-pool-20200610-git.tgz 6070 2977bb278424f3207605b80f03f8d8ed 1a6d860a2fd5c64ededc5f8a80c7295d78b67e5e cl-dbi-connection-pool-20200610-git cl-dbi-connection-pool.asd dbi-cp-test.asd dbi-cp.asd
cl-dct http://beta.quicklisp.org/archive/cl-dct/2019-11-30/cl-dct-20191130-git.tgz 6823 6f4faa9be0f2ce2a6a959ea705fe8617 8eff1202d59f2f0e27b94d4587f9e2b142946272 cl-dct-20191130-git dct-test.asd dct.asd
cl-debug-print http://beta.quicklisp.org/archive/cl-debug-print/2021-02-28/cl-debug-print-20210228-git.tgz 2933 dea67456dcc4875f6f1255bde1ee0212 ab3e27f461c44c48027f55bfb0551392969d7d98 cl-debug-print-20210228-git cl-debug-print-test.asd cl-debug-print.asd cl-syntax-debug-print.asd
cl-decimals http://beta.quicklisp.org/archive/cl-decimals/2019-07-10/cl-decimals-20190710-git.tgz 8044 978ca67fae1ab66015c551505734a149 14ba8ef7eae9319a141e0141f4d8d571b38d8dbb cl-decimals-20190710-git decimals.asd
cl-dejavu http://beta.quicklisp.org/archive/cl-dejavu/2021-01-24/cl-dejavu-20210124-git.tgz 5512426 08375ca2692adc30b20594cb91c3361e 2ea010200840ea7a82cb49619783a5be512a6533 cl-dejavu-20210124-git cl-dejavu.asd
cl-devil http://beta.quicklisp.org/archive/cl-devil/2015-03-02/cl-devil-20150302-git.tgz 7271 2386d79fa23a831b46dd3a851b635165 81f0c286536f30795267f35614562d2459c41cea cl-devil-20150302-git cl-devil.asd cl-ilu.asd cl-ilut.asd
cl-diceware http://beta.quicklisp.org/archive/cl-diceware/2015-09-23/cl-diceware-20150923-git.tgz 46217 1effc5add086f20640ecca3ea9fb6d44 26501cee6304c77b9db6320e1f2b3fbba88ede2b cl-diceware-20150923-git cl-diceware.asd
cl-difflib http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz 11909 e8a3434843a368373b67d09983d2b809 2acef03b40d410454539b26882762b25f60da136 cl-difflib-20130128-git cl-difflib-tests.asd cl-difflib.asd
cl-digraph http://beta.quicklisp.org/archive/cl-digraph/2021-04-11/cl-digraph-20210411-hg.tgz 36853 c7c947fb7471213b24505bff1e9287de a0b7902890810abbe2d1622e2ecc61c95a1b043e cl-digraph-20210411-hg cl-digraph.asd cl-digraph.dot.asd cl-digraph.test.asd
cl-diskspace http://beta.quicklisp.org/archive/cl-diskspace/2018-01-31/cl-diskspace-20180131-git.tgz 5005 e82009d42eb86994120bccb7ac5e85a7 f648ea789bba382408ad523e1117a48885ccf290 cl-diskspace-20180131-git cl-diskspace.asd
cl-disque http://beta.quicklisp.org/archive/cl-disque/2017-12-27/cl-disque-20171227-git.tgz 12120 422f594efe55882f080273d68d26c561 f0a7b26834d07a6b35c03c16ba8aeeae18df6160 cl-disque-20171227-git cl-disque-test.asd cl-disque.asd
cl-docutils http://beta.quicklisp.org/archive/cl-docutils/2013-01-28/cl-docutils-20130128-git.tgz 115606 e83e70398da47984339dd29632a78072 014884afae1335295230482b54b560ed7bc51db6 cl-docutils-20130128-git docutils.asd
cl-dot http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz 187432 35c68f431f188d4c1c7604b4b1af220f e4defa6435b3cc2e50f1e76479ac8c89327ba36c cl-dot-20200925-git cl-dot.asd
cl-dotenv http://beta.quicklisp.org/archive/cl-dotenv/2018-10-18/cl-dotenv-20181018-git.tgz 5339 ea905b934f2a2dc8ee3bfc88fc35ac49 3fe52852f1350c31baa11f85094ad6b7c433ea42 cl-dotenv-20181018-git cl-dotenv-test.asd cl-dotenv.asd
cl-drm http://beta.quicklisp.org/archive/cl-drm/2016-12-04/cl-drm-20161204-git.tgz 3310 dc45def8e5c9df2d9622193b400aa968 5f5474b54ced85e2eaba592dac37c07eb12f702c cl-drm-20161204-git cl-drm.asd
cl-dropbox http://beta.quicklisp.org/archive/cl-dropbox/2015-06-08/cl-dropbox-20150608-git.tgz 3127 cb8e142a42e59c3ad3ebc51243f0e9fd 692318495dcbb349116b544b33482119a1620ff7 cl-dropbox-20150608-git cl-dropbox.asd
cl-dsl http://beta.quicklisp.org/archive/cl-dsl/2013-07-20/cl-dsl-20130720-git.tgz 14073 fce58e9d8682e3224120cc794922de84 a93b21d4833d1d92609d2399028cbba3e908cbbf cl-dsl-20130720-git cl-dsl.asd
cl-durian http://beta.quicklisp.org/archive/cl-durian/2015-06-08/cl-durian-20150608-git.tgz 4819 9da8dd551e1ee63907a79bea0b1565d3 a0ca0ed4bf0257b86270d66bda9a963d0d30529b cl-durian-20150608-git cl-durian.asd
cl-ecma-48 http://beta.quicklisp.org/archive/cl-ecma-48/2020-02-18/cl-ecma-48-20200218-http.tgz 22774 56ae2f232dd645265277ab2d7efbe6be 1e278da3a619022949333d7612ddcbdef11a507e cl-ecma-48-20200218-http cl-ecma-48.asd
cl-editdistance http://beta.quicklisp.org/archive/cl-editdistance/2019-11-30/cl-editdistance-20191130-git.tgz 11143 a3daec92c5fb9595cec446bfa494ddfc d2c99d886ba1b4febe00a07cd7fa247ea44014c3 cl-editdistance-20191130-git edit-distance-test.asd edit-distance.asd
cl-egl http://beta.quicklisp.org/archive/cl-egl/2019-05-21/cl-egl-20190521-git.tgz 3064 022f1ac3d01a265e700d0aa99ff47d71 03446e74bcaa71e61d1f0e9352c9df99ad3ad403 cl-egl-20190521-git cl-egl.asd
cl-elastic http://beta.quicklisp.org/archive/cl-elastic/2020-02-18/cl-elastic-20200218-git.tgz 5458 f43f47ae74b7710cb82d0da99188911f 4f3a41888a760f6964be8c7aa2a38738a7bffdcd cl-elastic-20200218-git cl-elastic-test.asd cl-elastic.asd
cl-emacs-if http://beta.quicklisp.org/archive/cl-emacs-if/2012-03-05/cl-emacs-if-20120305-git.tgz 5080 79a7e7ed0dce7b6b937481da97bc5490 3328115dfa0afe358d2301ce9d0335fb323b7b3f cl-emacs-if-20120305-git cl-emacs-if.asd
cl-emb http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz 14557 b27bbe8de2206ab7c461700b58d4d527 04a32481580be674abe707cdfd25f20ff710ac7a cl-emb-20190521-git cl-emb.asd
cl-emoji http://beta.quicklisp.org/archive/cl-emoji/2020-02-18/cl-emoji-20200218-git.tgz 130250 62689fcd13290ef045ab41dff55882b3 45728356401d4dbcc426527cd0278d6a8d93bf9f cl-emoji-20200218-git cl-emoji-test.asd cl-emoji.asd
cl-enchant http://beta.quicklisp.org/archive/cl-enchant/2019-05-21/cl-enchant-20190521-git.tgz 8136 2a868c280fd5a74f9c298c384567e31b 724cc1533724de27d433c210bd63db8a65ecbdf4 cl-enchant-20190521-git enchant-autoload.asd enchant.asd
cl-enumeration http://beta.quicklisp.org/archive/cl-enumeration/2020-02-18/cl-enumeration-20200218-git.tgz 116103 9938b63859d298c27ee703adf21b1812 244aa643d51584dc49c284a1a892df513fc9171a cl-enumeration-20200218-git enumerations.asd
cl-env http://beta.quicklisp.org/archive/cl-env/2018-04-30/cl-env-20180430-git.tgz 2808 881867f2aee6a8f22acb2dc1db3b5a62 d79b84e8739451c189fa50a6df245db1d4dd0953 cl-env-20180430-git cl-env.asd
cl-environments http://beta.quicklisp.org/archive/cl-environments/2021-05-31/cl-environments-20210531-git.tgz 46436 49b150253abd48991f941c415fb9f02f f56917ab67bd7adee35db4f60edee019785f3aba cl-environments-20210531-git cl-environments.asd
cl-epmd http://beta.quicklisp.org/archive/cl-epmd/2014-02-11/cl-epmd-20140211-git.tgz 8497 535d47c3fdcbf90656549f48da838151 1e5e823a18ae86b707ebfae97acd4af7a31ef36e cl-epmd-20140211-git epmd-test.asd epmd.asd
cl-epoch http://beta.quicklisp.org/archive/cl-epoch/2018-12-10/cl-epoch-20181210-git.tgz 772 677d6391a0c4ae9b20e4115cb0681706 3266833985cfc3447642de88f2b808fd0e25d222 cl-epoch-20181210-git cl-epoch.asd
cl-erlang-term http://beta.quicklisp.org/archive/cl-erlang-term/2020-09-25/cl-erlang-term-20200925-git.tgz 19327 a1cdc915f7a288ba5ebab1b3712a5500 5f6d1382c0149c029f839b31872c3b542c5d3e62 cl-erlang-term-20200925-git erlang-term.asd
cl-ev http://beta.quicklisp.org/archive/cl-ev/2015-09-23/cl-ev-20150923-git.tgz 6322 802c3966a9dbd25d22407825271e70fd d90c2e7c18e3710e25ecd2206430926dc4307891 cl-ev-20150923-git ev.asd
cl-events http://beta.quicklisp.org/archive/cl-events/2016-03-18/cl-events-20160318-git.tgz 7199 064df9efa3a6db5b1540d61a91671ca8 21f4cb9f76b3ffd12d7b6d5d17e0960cd8b57819 cl-events-20160318-git cl-events.asd cl-events.test.asd
cl-ewkb http://beta.quicklisp.org/archive/cl-ewkb/2011-06-19/cl-ewkb-20110619-git.tgz 9929 cbcc96a62750e5aee99f2261d4b2171c 262f1978c053c76a4fa288411f8fbd150d29fcbb cl-ewkb-20110619-git cl-ewkb.asd
cl-factoring http://beta.quicklisp.org/archive/cl-factoring/2018-04-30/cl-factoring-20180430-git.tgz 22615 d394be277a6a2639cf86f4547b31e959 773a33d4c38725d5eb0282dc64e2c880c48c38a5 cl-factoring-20180430-git cl-factoring-test.asd cl-factoring.asd
cl-fad http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz 25201 aa8705a0dd8ca1b43d8c76a177efdf74 9a3099492dd1228936298aa3959d4333b7fe50b4 cl-fad-20210124-git cl-fad.asd
cl-fam http://beta.quicklisp.org/archive/cl-fam/2012-11-25/cl-fam-20121125-git.tgz 8597 4844d1092223363858a0963b56b09d10 9def84e89f75f5d2449f31db352fc1d6d51c156a cl-fam-20121125-git cl-fam.asd
cl-fastcgi http://beta.quicklisp.org/archive/cl-fastcgi/2021-01-24/cl-fastcgi-20210124-git.tgz 4536 e4339af9b66e7d2503b9ddd3b0d2d83b 5e26a1b4849db423804da361e2074440b128a7b9 cl-fastcgi-20210124-git cl-fastcgi.asd
cl-fbclient http://beta.quicklisp.org/archive/cl-fbclient/2014-01-13/cl-fbclient-20140113-git.tgz 9685 48d0afd4a519cac7c0b219063d51f6d9 09f3e78c416b6524ebe3c2d75e279eeda08b2277 cl-fbclient-20140113-git cl-fbclient.asd
cl-feedparser http://beta.quicklisp.org/archive/cl-feedparser/2019-07-10/cl-feedparser-20190710-git.tgz 1144159 fbb3d704161400b6fa1d59a067a21e01 ccece16e6ca4b553ce6425e08a33c2ed5c511a1d cl-feedparser-20190710-git cl-feedparser.asd test/cl-feedparser-tests.asd
cl-fix http://beta.quicklisp.org/archive/cl-fix/2020-09-25/cl-fix-20200925-git.tgz 132938 f752d1a10c5c1d3bcf390b1ea0e85e95 b8fcb6959cc56c52f81a92a0b1bac7a5ae509c53 cl-fix-20200925-git cl-fix.asd
cl-fixtures http://beta.quicklisp.org/archive/cl-fixtures/2020-03-25/cl-fixtures-20200325-git.tgz 14909 0cc96fe9bc78cf66a30f3d93b00a0741 f6f5929b83592b29e2001fe95b444315401bb79b cl-fixtures-20200325-git cl-fixtures-test.asd cl-fixtures.asd
cl-flac http://beta.quicklisp.org/archive/cl-flac/2019-07-10/cl-flac-20190710-git.tgz 290402 a987ae59d6785b72735a7a102cbc9907 399983a24191cc0bc3e9657d3b4ba3bb0c9d6142 cl-flac-20190710-git cl-flac.asd
cl-flat-tree http://beta.quicklisp.org/archive/cl-flat-tree/2019-08-13/cl-flat-tree-20190813-git.tgz 5132 8705ad941f264bdedb08e4a1ad6afcfb 3f0fb91a38e4246e34d9a76d4c1dddb4515063b5 cl-flat-tree-20190813-git flat-tree.asd
cl-flow http://beta.quicklisp.org/archive/cl-flow/2020-10-16/cl-flow-stable-git.tgz 7254 3205698421501e254fd86fcaa10e3713 0491441645c322232c7e10a6b28b86fa2d73504c cl-flow-stable-git cl-flow.asd
cl-flowd http://beta.quicklisp.org/archive/cl-flowd/2014-07-13/cl-flowd-20140713-git.tgz 5753 c8ec0147510ab231d0e3377beaf5f897 b5382880a7203fb47f6d55b6b587a5645eb2322e cl-flowd-20140713-git cl-flowd.asd
cl-fluent-logger http://beta.quicklisp.org/archive/cl-fluent-logger/2019-02-02/cl-fluent-logger-20190202-git.tgz 4829 db5f23548d9f4c7c93375456cc12ba6a 4c8b44df1de4e803896bdfe72c55b3f5995738de cl-fluent-logger-20190202-git cl-fluent-logger.asd
cl-fluidinfo http://beta.quicklisp.org/archive/cl-fluidinfo/2013-03-12/cl-fluidinfo-20130312-git.tgz 8963 31baff1a738ad8dcf30b4f466d71366c 0c8485eba076578d271d6190ba75dd853ad5867c cl-fluidinfo-20130312-git cl-fluiddb-test.asd cl-fluiddb.asd cl-fluidinfo.asd
cl-fond http://beta.quicklisp.org/archive/cl-fond/2019-11-30/cl-fond-20191130-git.tgz 328112 15c6094682447b9bc49bfa253a064360 df52e6e1d9515e749da9cca6ee1e54d378153ea3 cl-fond-20191130-git cl-fond.asd
cl-form-types http://beta.quicklisp.org/archive/cl-form-types/2021-05-31/cl-form-types-20210531-git.tgz 27017 c8d82b9872109d958b594c677a0dc3ca 7f92af4975ca4626a80eb9a45de40f50afa60f08 cl-form-types-20210531-git cl-form-types.asd
cl-forms http://beta.quicklisp.org/archive/cl-forms/2021-05-31/cl-forms-20210531-git.tgz 843990 a058fc2edf85151feb9e886554d38dcd d3e587a14707d1cc7afee4b6154cd97c63fca0f0 cl-forms-20210531-git cl-forms.asd cl-forms.demo.asd cl-forms.djula.asd cl-forms.peppol.asd cl-forms.test.asd cl-forms.who.asd cl-forms.who.bootstrap.asd
cl-freeimage http://beta.quicklisp.org/archive/cl-freeimage/2017-04-03/cl-freeimage-20170403-git.tgz 10611 92c8fff7a488a73ff5793f43145cb641 ca94e56e0a67d03b054160c6a78c705b0172f14d cl-freeimage-20170403-git cl-freeimage.asd
cl-freetype2 http://beta.quicklisp.org/archive/cl-freetype2/2019-10-07/cl-freetype2-20191007-git.tgz 43368 0d4482c5201de0ff9b959deac59d1d25 ca147fa768c83e540583b780d38067bec7314d48 cl-freetype2-20191007-git cl-freetype2-tests.asd cl-freetype2.asd
cl-fsnotify http://beta.quicklisp.org/archive/cl-fsnotify/2015-03-02/cl-fsnotify-20150302-git.tgz 5979 54fe23d75d2baa6f404aef9c4da39449 6a6f82a1fc13f6286e1e9ae071e4a827830192d4 cl-fsnotify-20150302-git cl-fsnotify.asd
cl-ftp http://beta.quicklisp.org/archive/cl-ftp/2015-06-08/cl-ftp-20150608-http.tgz 9367 0743157a9fe2eea7c4a3a79874df1d55 e2ffb352da8b73a6895499ab6a1c1004e8bc5198 cl-ftp-20150608-http cl-ftp.asd ftp.asd
cl-fuse http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz 23682 0342ea914801f40d804629170a435e54 b0fa74fa7c0b78e39aae5161a32abe003e5b2b4e cl-fuse-20200925-git cl-fuse.asd
cl-fuse-meta-fs http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz 16844 461f7023274fb273e6c759e881bdd636 ab7279115b939e7a1d701d8d74538109313db2dc cl-fuse-meta-fs-20190710-git cl-fuse-meta-fs.asd
cl-fuzz http://beta.quicklisp.org/archive/cl-fuzz/2018-10-18/cl-fuzz-20181018-git.tgz 4141 22e715b370ea886bbff1e09db20c4e32 bd6ff387648fcf0c47266b2be40c7214b6e84bb3 cl-fuzz-20181018-git cl-fuzz.asd
cl-fxml http://beta.quicklisp.org/archive/cl-fxml/2021-02-28/cl-fxml-20210228-git.tgz 3120 7e67a10d8e14132b6a2f2e1fa60ee345 fddeb7fc6ffae88d9df7c8e2aa1d955c75ad1990 cl-fxml-20210228-git cl-fxml.asd
cl-gamepad http://beta.quicklisp.org/archive/cl-gamepad/2021-05-31/cl-gamepad-20210531-git.tgz 50742 12aacdb33ea7b0c48c9e9e0254ccb24b cb982ee6a2265db845d1d2724504c1706cdba90a cl-gamepad-20210531-git cl-gamepad.asd
cl-gap-buffer http://beta.quicklisp.org/archive/cl-gap-buffer/2019-03-07/cl-gap-buffer-20190307-hg.tgz 4587 48de07c260d666659464734743de3646 05aa46f3548f072197a6e75c075b1b8ae60d15f7 cl-gap-buffer-20190307-hg cl-gap-buffer.asd
cl-gbm http://beta.quicklisp.org/archive/cl-gbm/2018-04-30/cl-gbm-20180430-git.tgz 2187 d5f7e5c5d37248986d4a882b44ac43a9 b504515681fb74f54f2e0c3dd4e05226a72ae03c cl-gbm-20180430-git cl-gbm.asd
cl-gd http://beta.quicklisp.org/archive/cl-gd/2020-12-20/cl-gd-20201220-git.tgz 202126 647e64e38d0f0ee3979e19dcb821d011 ce3c9f685fe2790f3a214380f857b2e72967d512 cl-gd-20201220-git cl-gd-test.asd cl-gd.asd
cl-gdata http://beta.quicklisp.org/archive/cl-gdata/2017-11-30/cl-gdata-20171130-git.tgz 31765 94763ae151858d354d5e9d8af3bdc538 cbcb9f87b27846e757bf70cf5cea38394ec414d4 cl-gdata-20171130-git cl-gdata.asd
cl-gearman http://beta.quicklisp.org/archive/cl-gearman/2020-07-15/cl-gearman-20200715-git.tgz 8403 ecd68da4b757bbacf9e1ad2278f69c47 1a392c02aa75be78c1ae449e04b504ffcbf0c89b cl-gearman-20200715-git cl-gearman-test.asd cl-gearman.asd
cl-gendoc http://beta.quicklisp.org/archive/cl-gendoc/2018-08-31/cl-gendoc-20180831-git.tgz 6187 f74903585bca304a72b9739261c5c980 c0b1fec403200e417008b960c5ddbb6bb6bc9f53 cl-gendoc-20180831-git cl-gendoc.asd
cl-gene-searcher http://beta.quicklisp.org/archive/cl-gene-searcher/2011-10-01/cl-gene-searcher-20111001-git.tgz 3309 1350073f7965574a146421e59533bb00 35abc2a2a5b5091f0bb821269bfc6980260ed1fa cl-gene-searcher-20111001-git cl-gene-searcher.asd
cl-general-accumulator http://beta.quicklisp.org/archive/cl-general-accumulator/2019-05-21/cl-general-accumulator-20190521-git.tgz 5408 a60a9c5cff36fd49591f3f4cfd8c1cfd f68acdcdf203c36c6ed525bffd8884a59d3a931f cl-general-accumulator-20190521-git general-accumulator.asd
cl-generator http://beta.quicklisp.org/archive/cl-generator/2019-03-07/cl-generator-20190307-git.tgz 4308 e5ea88e49ed25ffacc11cdab4c6d77f6 5f7b67551d6628ea14667d8a54e95368016e1adb cl-generator-20190307-git cl-generator-test.asd cl-generator.asd
cl-geocode http://beta.quicklisp.org/archive/cl-geocode/2019-08-13/cl-geocode-20190813-git.tgz 583489 9c5dea4fa9d4d25ecb5a12d58ca518d3 a6b99dd47185ed88a289271cc668ba1c6d5a9961 cl-geocode-20190813-git cl-geocode.asd
cl-geoip http://beta.quicklisp.org/archive/cl-geoip/2013-06-15/cl-geoip-20130615-git.tgz 1698 2d174e9d08cead4ae9a320273c332844 08916ca6c4253b06adce2a03210916935d88e797 cl-geoip-20130615-git cl-geoip.asd
cl-geometry http://beta.quicklisp.org/archive/cl-geometry/2016-05-31/cl-geometry-20160531-git.tgz 17003 c0aaccbb4e2df6c504e6c1cd15155353 940f33dadfdfc8be044a94b0166ad99b29893865 cl-geometry-20160531-git cl-geometry-tests.asd cl-geometry.asd
cl-geos http://beta.quicklisp.org/archive/cl-geos/2018-07-11/cl-geos-20180711-git.tgz 18007 087b13649ed86240dead36394b5fea89 a32b0710b2ab3febb1af0fccec6a9e294675abb3 cl-geos-20180711-git cl-geos.asd
cl-getx http://beta.quicklisp.org/archive/cl-getx/2020-09-25/cl-getx-20200925-git.tgz 5801 5998519d91d569c66588020035ac78bf bedde1af62586c52a0bc955cffe15df31e6a061a cl-getx-20200925-git cl-getx.asd
cl-gimei http://beta.quicklisp.org/archive/cl-gimei/2018-03-28/cl-gimei-20180328-git.tgz 148851 14be1ab4a8a88f11d8ad44c14f66a57b e1115122633adac652992deb4777015ed62f9444 cl-gimei-20180328-git cl-gimei.asd
cl-gists http://beta.quicklisp.org/archive/cl-gists/2018-02-28/cl-gists-20180228-git.tgz 10807 adbd22dbdccd05776ad5589add0983b8 1d8c375299852e4a7de3e5495eaa066147cb445d cl-gists-20180228-git cl-gists-test.asd cl-gists.asd
cl-git http://beta.quicklisp.org/archive/cl-git/2015-07-09/cl-git-20150709-git.tgz 60507 cbe03f1b837c775729c0b66fa707577f c3e37ce1e8437f76664b6779bd35b40b9485a8b4 cl-git-20150709-git cl-git.asd
cl-github-v3 http://beta.quicklisp.org/archive/cl-github-v3/2019-12-27/cl-github-v3-20191227-git.tgz 2857 e116ddd20a76120573acfe6583c24cb3 353704ab1cf6849d9e4a12e9e0f4dfb9c99d2135 cl-github-v3-20191227-git cl-github-v3.asd
cl-glfw http://beta.quicklisp.org/archive/cl-glfw/2015-03-02/cl-glfw-20150302-git.tgz 461048 c939bd97538b254d445f4b0904bbb8fa 03b779d59b8807cc72bdc2a5d407a393f24fa7fd cl-glfw-20150302-git cl-glfw-ftgl.asd cl-glfw-glu.asd cl-glfw-opengl-core.asd cl-glfw-opengl-version_1_0.asd cl-glfw-opengl-version_1_1.asd cl-glfw-opengl-version_1_2.asd cl-glfw-opengl-version_1_3.asd cl-glfw-opengl-version_1_4.asd cl-glfw-opengl-version_1_5.asd cl-glfw-opengl-version_2_0.asd cl-glfw-opengl-version_2_1.asd cl-glfw-types.asd cl-glfw.asd lib/cl-glfw-opengl-3dfx_multisample.asd lib/cl-glfw-opengl-3dfx_tbuffer.asd lib/cl-glfw-opengl-3dfx_texture_compression_fxt1.asd lib/cl-glfw-opengl-amd_blend_minmax_factor.asd lib/cl-glfw-opengl-amd_depth_clamp_separate.asd lib/cl-glfw-opengl-amd_draw_buffers_blend.asd lib/cl-glfw-opengl-amd_multi_draw_indirect.asd lib/cl-glfw-opengl-amd_name_gen_delete.asd lib/cl-glfw-opengl-amd_performance_monitor.asd lib/cl-glfw-opengl-amd_sample_positions.asd lib/cl-glfw-opengl-amd_seamless_cubemap_per_texture.asd lib/cl-glfw-opengl-amd_vertex_shader_tesselator.asd lib/cl-glfw-opengl-apple_aux_depth_stencil.asd lib/cl-glfw-opengl-apple_client_storage.asd lib/cl-glfw-opengl-apple_element_array.asd lib/cl-glfw-opengl-apple_fence.asd lib/cl-glfw-opengl-apple_float_pixels.asd lib/cl-glfw-opengl-apple_flush_buffer_range.asd lib/cl-glfw-opengl-apple_object_purgeable.asd lib/cl-glfw-opengl-apple_rgb_422.asd lib/cl-glfw-opengl-apple_row_bytes.asd lib/cl-glfw-opengl-apple_specular_vector.asd lib/cl-glfw-opengl-apple_texture_range.asd lib/cl-glfw-opengl-apple_transform_hint.asd lib/cl-glfw-opengl-apple_vertex_array_object.asd lib/cl-glfw-opengl-apple_vertex_array_range.asd lib/cl-glfw-opengl-apple_vertex_program_evaluators.asd lib/cl-glfw-opengl-apple_ycbcr_422.asd lib/cl-glfw-opengl-arb_blend_func_extended.asd lib/cl-glfw-opengl-arb_color_buffer_float.asd lib/cl-glfw-opengl-arb_copy_buffer.asd lib/cl-glfw-opengl-arb_depth_buffer_float.asd lib/cl-glfw-opengl-arb_depth_clamp.asd lib/cl-glfw-opengl-arb_depth_texture.asd lib/cl-glfw-opengl-arb_draw_buffers.asd lib/cl-glfw-opengl-arb_draw_buffers_blend.asd lib/cl-glfw-opengl-arb_draw_elements_base_vertex.asd lib/cl-glfw-opengl-arb_draw_indirect.asd lib/cl-glfw-opengl-arb_draw_instanced.asd lib/cl-glfw-opengl-arb_es2_compatibility.asd lib/cl-glfw-opengl-arb_fragment_program.asd lib/cl-glfw-opengl-arb_fragment_shader.asd lib/cl-glfw-opengl-arb_framebuffer_object.asd lib/cl-glfw-opengl-arb_framebuffer_object_deprecated.asd lib/cl-glfw-opengl-arb_framebuffer_srgb.asd lib/cl-glfw-opengl-arb_geometry_shader4.asd lib/cl-glfw-opengl-arb_get_program_binary.asd lib/cl-glfw-opengl-arb_gpu_shader5.asd lib/cl-glfw-opengl-arb_gpu_shader_fp64.asd lib/cl-glfw-opengl-arb_half_float_pixel.asd lib/cl-glfw-opengl-arb_half_float_vertex.asd lib/cl-glfw-opengl-arb_imaging.asd lib/cl-glfw-opengl-arb_imaging_deprecated.asd lib/cl-glfw-opengl-arb_instanced_arrays.asd lib/cl-glfw-opengl-arb_map_buffer_range.asd lib/cl-glfw-opengl-arb_matrix_palette.asd lib/cl-glfw-opengl-arb_multisample.asd lib/cl-glfw-opengl-arb_multitexture.asd lib/cl-glfw-opengl-arb_occlusion_query.asd lib/cl-glfw-opengl-arb_occlusion_query2.asd lib/cl-glfw-opengl-arb_pixel_buffer_object.asd lib/cl-glfw-opengl-arb_point_parameters.asd lib/cl-glfw-opengl-arb_point_sprite.asd lib/cl-glfw-opengl-arb_provoking_vertex.asd lib/cl-glfw-opengl-arb_robustness.asd lib/cl-glfw-opengl-arb_sample_shading.asd lib/cl-glfw-opengl-arb_sampler_objects.asd lib/cl-glfw-opengl-arb_seamless_cube_map.asd lib/cl-glfw-opengl-arb_separate_shader_objects.asd lib/cl-glfw-opengl-arb_shader_objects.asd lib/cl-glfw-opengl-arb_shader_subroutine.asd lib/cl-glfw-opengl-arb_shading_language_100.asd lib/cl-glfw-opengl-arb_shading_language_include.asd lib/cl-glfw-opengl-arb_shadow.asd lib/cl-glfw-opengl-arb_shadow_ambient.asd lib/cl-glfw-opengl-arb_tessellation_shader.asd lib/cl-glfw-opengl-arb_texture_border_clamp.asd lib/cl-glfw-opengl-arb_texture_buffer_object.asd lib/cl-glfw-opengl-arb_texture_buffer_object_rgb32.asd lib/cl-glfw-opengl-arb_texture_compression.asd lib/cl-glfw-opengl-arb_texture_compression_bptc.asd lib/cl-glfw-opengl-arb_texture_compression_rgtc.asd lib/cl-glfw-opengl-arb_texture_cube_map.asd lib/cl-glfw-opengl-arb_texture_cube_map_array.asd lib/cl-glfw-opengl-arb_texture_env_combine.asd lib/cl-glfw-opengl-arb_texture_env_dot3.asd lib/cl-glfw-opengl-arb_texture_float.asd lib/cl-glfw-opengl-arb_texture_gather.asd lib/cl-glfw-opengl-arb_texture_mirrored_repeat.asd lib/cl-glfw-opengl-arb_texture_multisample.asd lib/cl-glfw-opengl-arb_texture_rectangle.asd lib/cl-glfw-opengl-arb_texture_rg.asd lib/cl-glfw-opengl-arb_texture_rgb10_a2ui.asd lib/cl-glfw-opengl-arb_texture_swizzle.asd lib/cl-glfw-opengl-arb_timer_query.asd lib/cl-glfw-opengl-arb_transform_feedback2.asd lib/cl-glfw-opengl-arb_transpose_matrix.asd lib/cl-glfw-opengl-arb_uniform_buffer_object.asd lib/cl-glfw-opengl-arb_vertex_array_bgra.asd lib/cl-glfw-opengl-arb_vertex_array_object.asd lib/cl-glfw-opengl-arb_vertex_attrib_64bit.asd lib/cl-glfw-opengl-arb_vertex_blend.asd lib/cl-glfw-opengl-arb_vertex_buffer_object.asd lib/cl-glfw-opengl-arb_vertex_program.asd lib/cl-glfw-opengl-arb_vertex_shader.asd lib/cl-glfw-opengl-arb_vertex_type_2_10_10_10_rev.asd lib/cl-glfw-opengl-arb_viewport_array.asd lib/cl-glfw-opengl-arb_window_pos.asd lib/cl-glfw-opengl-ati_draw_buffers.asd lib/cl-glfw-opengl-ati_element_array.asd lib/cl-glfw-opengl-ati_envmap_bumpmap.asd lib/cl-glfw-opengl-ati_fragment_shader.asd lib/cl-glfw-opengl-ati_map_object_buffer.asd lib/cl-glfw-opengl-ati_meminfo.asd lib/cl-glfw-opengl-ati_pixel_format_float.asd lib/cl-glfw-opengl-ati_pn_triangles.asd lib/cl-glfw-opengl-ati_separate_stencil.asd lib/cl-glfw-opengl-ati_text_fragment_shader.asd lib/cl-glfw-opengl-ati_texture_env_combine3.asd lib/cl-glfw-opengl-ati_texture_float.asd lib/cl-glfw-opengl-ati_texture_mirror_once.asd lib/cl-glfw-opengl-ati_vertex_array_object.asd lib/cl-glfw-opengl-ati_vertex_attrib_array_object.asd lib/cl-glfw-opengl-ati_vertex_streams.asd lib/cl-glfw-opengl-ext_422_pixels.asd lib/cl-glfw-opengl-ext_abgr.asd lib/cl-glfw-opengl-ext_bgra.asd lib/cl-glfw-opengl-ext_bindable_uniform.asd lib/cl-glfw-opengl-ext_blend_color.asd lib/cl-glfw-opengl-ext_blend_equation_separate.asd lib/cl-glfw-opengl-ext_blend_func_separate.asd lib/cl-glfw-opengl-ext_blend_minmax.asd lib/cl-glfw-opengl-ext_blend_subtract.asd lib/cl-glfw-opengl-ext_clip_volume_hint.asd lib/cl-glfw-opengl-ext_cmyka.asd lib/cl-glfw-opengl-ext_color_subtable.asd lib/cl-glfw-opengl-ext_compiled_vertex_array.asd lib/cl-glfw-opengl-ext_convolution.asd lib/cl-glfw-opengl-ext_coordinate_frame.asd lib/cl-glfw-opengl-ext_copy_texture.asd lib/cl-glfw-opengl-ext_cull_vertex.asd lib/cl-glfw-opengl-ext_depth_bounds_test.asd lib/cl-glfw-opengl-ext_direct_state_access.asd lib/cl-glfw-opengl-ext_draw_buffers2.asd lib/cl-glfw-opengl-ext_draw_instanced.asd lib/cl-glfw-opengl-ext_draw_range_elements.asd lib/cl-glfw-opengl-ext_fog_coord.asd lib/cl-glfw-opengl-ext_framebuffer_blit.asd lib/cl-glfw-opengl-ext_framebuffer_multisample.asd lib/cl-glfw-opengl-ext_framebuffer_object.asd lib/cl-glfw-opengl-ext_framebuffer_srgb.asd lib/cl-glfw-opengl-ext_geometry_shader4.asd lib/cl-glfw-opengl-ext_gpu_program_parameters.asd lib/cl-glfw-opengl-ext_gpu_shader4.asd lib/cl-glfw-opengl-ext_histogram.asd lib/cl-glfw-opengl-ext_index_array_formats.asd lib/cl-glfw-opengl-ext_index_func.asd lib/cl-glfw-opengl-ext_index_material.asd lib/cl-glfw-opengl-ext_light_texture.asd lib/cl-glfw-opengl-ext_multi_draw_arrays.asd lib/cl-glfw-opengl-ext_multisample.asd lib/cl-glfw-opengl-ext_packed_depth_stencil.asd lib/cl-glfw-opengl-ext_packed_float.asd lib/cl-glfw-opengl-ext_packed_pixels.asd lib/cl-glfw-opengl-ext_paletted_texture.asd lib/cl-glfw-opengl-ext_pixel_buffer_object.asd lib/cl-glfw-opengl-ext_pixel_transform.asd lib/cl-glfw-opengl-ext_point_parameters.asd lib/cl-glfw-opengl-ext_polygon_offset.asd lib/cl-glfw-opengl-ext_provoking_vertex.asd lib/cl-glfw-opengl-ext_secondary_color.asd lib/cl-glfw-opengl-ext_separate_shader_objects.asd lib/cl-glfw-opengl-ext_separate_specular_color.asd lib/cl-glfw-opengl-ext_shader_image_load_store.asd lib/cl-glfw-opengl-ext_stencil_clear_tag.asd lib/cl-glfw-opengl-ext_stencil_two_side.asd lib/cl-glfw-opengl-ext_stencil_wrap.asd lib/cl-glfw-opengl-ext_subtexture.asd lib/cl-glfw-opengl-ext_texture.asd lib/cl-glfw-opengl-ext_texture3d.asd lib/cl-glfw-opengl-ext_texture_array.asd lib/cl-glfw-opengl-ext_texture_buffer_object.asd lib/cl-glfw-opengl-ext_texture_compression_latc.asd lib/cl-glfw-opengl-ext_texture_compression_rgtc.asd lib/cl-glfw-opengl-ext_texture_compression_s3tc.asd lib/cl-glfw-opengl-ext_texture_cube_map.asd lib/cl-glfw-opengl-ext_texture_env_combine.asd lib/cl-glfw-opengl-ext_texture_env_dot3.asd lib/cl-glfw-opengl-ext_texture_filter_anisotropic.asd lib/cl-glfw-opengl-ext_texture_integer.asd lib/cl-glfw-opengl-ext_texture_lod_bias.asd lib/cl-glfw-opengl-ext_texture_mirror_clamp.asd lib/cl-glfw-opengl-ext_texture_object.asd lib/cl-glfw-opengl-ext_texture_perturb_normal.asd lib/cl-glfw-opengl-ext_texture_shared_exponent.asd lib/cl-glfw-opengl-ext_texture_snorm.asd lib/cl-glfw-opengl-ext_texture_srgb.asd lib/cl-glfw-opengl-ext_texture_srgb_decode.asd lib/cl-glfw-opengl-ext_texture_swizzle.asd lib/cl-glfw-opengl-ext_timer_query.asd lib/cl-glfw-opengl-ext_transform_feedback.asd lib/cl-glfw-opengl-ext_vertex_array.asd lib/cl-glfw-opengl-ext_vertex_array_bgra.asd lib/cl-glfw-opengl-ext_vertex_attrib_64bit.asd lib/cl-glfw-opengl-ext_vertex_shader.asd lib/cl-glfw-opengl-ext_vertex_weighting.asd lib/cl-glfw-opengl-gremedy_frame_terminator.asd lib/cl-glfw-opengl-gremedy_string_marker.asd lib/cl-glfw-opengl-hp_convolution_border_modes.asd lib/cl-glfw-opengl-hp_image_transform.asd lib/cl-glfw-opengl-hp_occlusion_test.asd lib/cl-glfw-opengl-hp_texture_lighting.asd lib/cl-glfw-opengl-ibm_cull_vertex.asd lib/cl-glfw-opengl-ibm_multimode_draw_arrays.asd lib/cl-glfw-opengl-ibm_rasterpos_clip.asd lib/cl-glfw-opengl-ibm_texture_mirrored_repeat.asd lib/cl-glfw-opengl-ibm_vertex_array_lists.asd lib/cl-glfw-opengl-ingr_blend_func_separate.asd lib/cl-glfw-opengl-ingr_color_clamp.asd lib/cl-glfw-opengl-ingr_interlace_read.asd lib/cl-glfw-opengl-intel_parallel_arrays.asd lib/cl-glfw-opengl-mesa_pack_invert.asd lib/cl-glfw-opengl-mesa_packed_depth_stencil.asd lib/cl-glfw-opengl-mesa_program_debug.asd lib/cl-glfw-opengl-mesa_resize_buffers.asd lib/cl-glfw-opengl-mesa_shader_debug.asd lib/cl-glfw-opengl-mesa_trace.asd lib/cl-glfw-opengl-mesa_window_pos.asd lib/cl-glfw-opengl-mesa_ycbcr_texture.asd lib/cl-glfw-opengl-mesax_texture_stack.asd lib/cl-glfw-opengl-nv_conditional_render.asd lib/cl-glfw-opengl-nv_copy_depth_to_color.asd lib/cl-glfw-opengl-nv_copy_image.asd lib/cl-glfw-opengl-nv_depth_buffer_float.asd lib/cl-glfw-opengl-nv_depth_clamp.asd lib/cl-glfw-opengl-nv_evaluators.asd lib/cl-glfw-opengl-nv_explicit_multisample.asd lib/cl-glfw-opengl-nv_fence.asd lib/cl-glfw-opengl-nv_float_buffer.asd lib/cl-glfw-opengl-nv_fog_distance.asd lib/cl-glfw-opengl-nv_fragment_program.asd lib/cl-glfw-opengl-nv_fragment_program2.asd lib/cl-glfw-opengl-nv_framebuffer_multisample_coverage.asd lib/cl-glfw-opengl-nv_geometry_program4.asd lib/cl-glfw-opengl-nv_gpu_program4.asd lib/cl-glfw-opengl-nv_gpu_program5.asd lib/cl-glfw-opengl-nv_gpu_shader5.asd lib/cl-glfw-opengl-nv_half_float.asd lib/cl-glfw-opengl-nv_light_max_exponent.asd lib/cl-glfw-opengl-nv_multisample_coverage.asd lib/cl-glfw-opengl-nv_multisample_filter_hint.asd lib/cl-glfw-opengl-nv_occlusion_query.asd lib/cl-glfw-opengl-nv_packed_depth_stencil.asd lib/cl-glfw-opengl-nv_parameter_buffer_object.asd lib/cl-glfw-opengl-nv_pixel_data_range.asd lib/cl-glfw-opengl-nv_point_sprite.asd lib/cl-glfw-opengl-nv_present_video.asd lib/cl-glfw-opengl-nv_primitive_restart.asd lib/cl-glfw-opengl-nv_register_combiners.asd lib/cl-glfw-opengl-nv_register_combiners2.asd lib/cl-glfw-opengl-nv_shader_buffer_load.asd lib/cl-glfw-opengl-nv_shader_buffer_store.asd lib/cl-glfw-opengl-nv_tessellation_program5.asd lib/cl-glfw-opengl-nv_texgen_emboss.asd lib/cl-glfw-opengl-nv_texgen_reflection.asd lib/cl-glfw-opengl-nv_texture_barrier.asd lib/cl-glfw-opengl-nv_texture_env_combine4.asd lib/cl-glfw-opengl-nv_texture_expand_normal.asd lib/cl-glfw-opengl-nv_texture_multisample.asd lib/cl-glfw-opengl-nv_texture_rectangle.asd lib/cl-glfw-opengl-nv_texture_shader.asd lib/cl-glfw-opengl-nv_texture_shader2.asd lib/cl-glfw-opengl-nv_texture_shader3.asd lib/cl-glfw-opengl-nv_transform_feedback.asd lib/cl-glfw-opengl-nv_transform_feedback2.asd lib/cl-glfw-opengl-nv_vertex_array_range.asd lib/cl-glfw-opengl-nv_vertex_array_range2.asd lib/cl-glfw-opengl-nv_vertex_attrib_integer_64bit.asd lib/cl-glfw-opengl-nv_vertex_buffer_unified_memory.asd lib/cl-glfw-opengl-nv_vertex_program.asd lib/cl-glfw-opengl-nv_vertex_program2_option.asd lib/cl-glfw-opengl-nv_vertex_program3.asd lib/cl-glfw-opengl-nv_vertex_program4.asd lib/cl-glfw-opengl-oes_read_format.asd lib/cl-glfw-opengl-oml_interlace.asd lib/cl-glfw-opengl-oml_resample.asd lib/cl-glfw-opengl-oml_subsample.asd lib/cl-glfw-opengl-pgi_misc_hints.asd lib/cl-glfw-opengl-pgi_vertex_hints.asd lib/cl-glfw-opengl-rend_screen_coordinates.asd lib/cl-glfw-opengl-s3_s3tc.asd lib/cl-glfw-opengl-sgi_color_table.asd lib/cl-glfw-opengl-sgi_depth_pass_instrument.asd lib/cl-glfw-opengl-sgis_detail_texture.asd lib/cl-glfw-opengl-sgis_fog_function.asd lib/cl-glfw-opengl-sgis_multisample.asd lib/cl-glfw-opengl-sgis_pixel_texture.asd lib/cl-glfw-opengl-sgis_point_parameters.asd lib/cl-glfw-opengl-sgis_sharpen_texture.asd lib/cl-glfw-opengl-sgis_texture4d.asd lib/cl-glfw-opengl-sgis_texture_color_mask.asd lib/cl-glfw-opengl-sgis_texture_filter4.asd lib/cl-glfw-opengl-sgis_texture_select.asd lib/cl-glfw-opengl-sgix_async.asd lib/cl-glfw-opengl-sgix_depth_texture.asd lib/cl-glfw-opengl-sgix_flush_raster.asd lib/cl-glfw-opengl-sgix_fog_scale.asd lib/cl-glfw-opengl-sgix_fragment_lighting.asd lib/cl-glfw-opengl-sgix_framezoom.asd lib/cl-glfw-opengl-sgix_igloo_interface.asd lib/cl-glfw-opengl-sgix_instruments.asd lib/cl-glfw-opengl-sgix_line_quality_hint.asd lib/cl-glfw-opengl-sgix_list_priority.asd lib/cl-glfw-opengl-sgix_pixel_texture.asd lib/cl-glfw-opengl-sgix_polynomial_ffd.asd lib/cl-glfw-opengl-sgix_reference_plane.asd lib/cl-glfw-opengl-sgix_resample.asd lib/cl-glfw-opengl-sgix_scalebias_hint.asd lib/cl-glfw-opengl-sgix_shadow.asd lib/cl-glfw-opengl-sgix_shadow_ambient.asd lib/cl-glfw-opengl-sgix_slim.asd lib/cl-glfw-opengl-sgix_sprite.asd lib/cl-glfw-opengl-sgix_tag_sample_buffer.asd lib/cl-glfw-opengl-sgix_texture_coordinate_clamp.asd lib/cl-glfw-opengl-sgix_texture_lod_bias.asd lib/cl-glfw-opengl-sgix_texture_multi_buffer.asd lib/cl-glfw-opengl-sgix_ycrcba.asd lib/cl-glfw-opengl-sun_convolution_border_modes.asd lib/cl-glfw-opengl-sun_global_alpha.asd lib/cl-glfw-opengl-sun_mesh_array.asd lib/cl-glfw-opengl-sun_slice_accum.asd lib/cl-glfw-opengl-sun_triangle_list.asd lib/cl-glfw-opengl-sun_vertex.asd lib/cl-glfw-opengl-sunx_constant_data.asd lib/cl-glfw-opengl-win_phong_shading.asd lib/cl-glfw-opengl-win_specular_fog.asd
cl-glfw3 http://beta.quicklisp.org/archive/cl-glfw3/2021-05-31/cl-glfw3-20210531-git.tgz 14642 3309ed23c7dffce0cd6759550c3a21d9 f5b86163d1d8e2406793e9214670e34d7181e79f cl-glfw3-20210531-git cl-glfw3-examples.asd cl-glfw3.asd
cl-gobject-introspection http://beta.quicklisp.org/archive/cl-gobject-introspection/2021-01-24/cl-gobject-introspection-20210124-git.tgz 43072 ad760b820c86142c0a1309af29541680 f97e90e24bbed4cd30246836b9ae3920d76b4710 cl-gobject-introspection-20210124-git cl-gobject-introspection-test.asd cl-gobject-introspection.asd
cl-gopher http://beta.quicklisp.org/archive/cl-gopher/2018-07-11/cl-gopher-20180711-git.tgz 10415 44843a10189c3f1b5ac6707512d1ab00 ba36371f358918f0724384537577da53ad71d657 cl-gopher-20180711-git cl-gopher.asd
cl-gpio http://beta.quicklisp.org/archive/cl-gpio/2019-07-10/cl-gpio-20190710-git.tgz 9091 1b490421fce75d573674f59e131a77c2 c69382364c82981b1eda62b5a7b8891e10824237 cl-gpio-20190710-git cl-gpio.asd
cl-graph http://beta.quicklisp.org/archive/cl-graph/2017-12-27/cl-graph-20171227-git.tgz 60626 b133594d59ade148c07ad6fdec4cbdf6 2163417e2d2d61b2ad9d7c4eac1298d33573cdeb cl-graph-20171227-git cl-graph+hu.dwim.graphviz.asd cl-graph.asd
cl-gravatar http://beta.quicklisp.org/archive/cl-gravatar/2011-03-20/cl-gravatar-20110320-git.tgz 2127 6d4e5c83f238a7c301a572ddc926ef9b ae2e3b442465a3395c5f7d0948346bcd9562664e cl-gravatar-20110320-git gravatar.asd
cl-graylog http://beta.quicklisp.org/archive/cl-graylog/2018-04-30/cl-graylog-20180430-git.tgz 3582 4a821f6c2a6496f3fa7fefb4052186d5 5aa806c058074da350fd0208d5049bf1d4b1e4b9 cl-graylog-20180430-git graylog-log5.asd graylog.asd
cl-grip http://beta.quicklisp.org/archive/cl-grip/2021-02-28/cl-grip-20210228-git.tgz 16542 94cd3a5db0c63b3e45ed0329dcfe7c81 f0b4db31df493490af718d38820aa183976cfccf cl-grip-20210228-git cl-grip.asd
cl-grnm http://beta.quicklisp.org/archive/cl-grnm/2018-01-31/cl-grnm-20180131-git.tgz 9511 9442e2489cf6894f4e61f9ec610d5c04 0609e0ac48299f120f71c2b86b7fec1f14897a08 cl-grnm-20180131-git cl-grnm.asd
cl-groupby http://beta.quicklisp.org/archive/cl-groupby/2017-08-30/cl-groupby-20170830-git.tgz 4240 5eab5f4784f0a154087daa7aa0caa930 9d7699457042096e05968c011013ad27b9271613 cl-groupby-20170830-git groupby.asd
cl-growl http://beta.quicklisp.org/archive/cl-growl/2016-12-08/cl-growl-20161208-git.tgz 9956 2a99024043323daf84837ae36fb89b2c 6dd1dfb8cec367fe2602a0b2b1bbaff83130f86c cl-growl-20161208-git cl-growl.asd
cl-gserver http://beta.quicklisp.org/archive/cl-gserver/2021-05-31/cl-gserver-20210531-git.tgz 710457 f4edd39fef675a454264b2a72acce178 f608e50477c0d8984c3de411a8118cc26707b97c cl-gserver-20210531-git cl-gserver.asd
cl-gss http://beta.quicklisp.org/archive/cl-gss/2018-02-28/cl-gss-20180228-git.tgz 11188 62e9ab1eb233059a0b7f2276a95814d0 23537f4151f9472047e0725bd9e1f2899e766088 cl-gss-20180228-git cl-gss.asd
cl-gtk2 http://beta.quicklisp.org/archive/cl-gtk2/2012-09-09/cl-gtk2-20120909-git.tgz 377784 c61a7112e72154bf151b55d7ad6d93aa a5dc2aafc070b34b1ab09fdcd59dfed9ddd7b9c0 cl-gtk2-20120909-git cairo/cl-gtk2-cairo.asd gdk/cl-gtk2-gdk.asd glib/cl-gtk2-glib.asd gtk/cl-gtk2-gtk.asd pango/cl-gtk2-pango.asd
cl-hamcrest http://beta.quicklisp.org/archive/cl-hamcrest/2020-07-15/cl-hamcrest-20200715-git.tgz 26157 e2d9f6bb0ec804890d7d4dfdfc059254 c2c245596cb8d659e5f5282235534cbe0bb4ee72 cl-hamcrest-20200715-git hamcrest.asd
cl-haml http://beta.quicklisp.org/archive/cl-haml/2018-02-28/cl-haml-20180228-git.tgz 17830 0cc73c605a2f182eec47b645ace67498 474bdbb68dfaea7ffefd3396a6b1c14c63ecdfcb cl-haml-20180228-git cl-haml.asd
cl-hamt http://beta.quicklisp.org/archive/cl-hamt/2020-03-25/cl-hamt-20200325-git.tgz 14108 00d8149d1b7178697404ae292761d56a 675720b4cfa7c1bd3c4e08298e0eeec2aba8db6a cl-hamt-20200325-git cl-hamt-examples.asd cl-hamt-test.asd cl-hamt.asd
cl-hash-table-destructuring http://beta.quicklisp.org/archive/cl-hash-table-destructuring/2016-05-31/cl-hash-table-destructuring-20160531-git.tgz 2604 05fb57c755f09ec4f2f5933fdaaedd4c 40d1d6441dd49fb7c51896d5f518d1addf4d2b7c cl-hash-table-destructuring-20160531-git cl-hash-table-destructuring.asd
cl-hash-util http://beta.quicklisp.org/archive/cl-hash-util/2019-01-07/cl-hash-util-20190107-git.tgz 7291 ff5044132c9684cf49f8b841096c67a2 c39b42dde00c70c608089c1c58c958bf46d152e9 cl-hash-util-20190107-git cl-hash-util-test.asd cl-hash-util.asd
cl-heap http://beta.quicklisp.org/archive/cl-heap/2013-03-12/cl-heap-0.1.6.tgz 26979 a12d71f7bbe22d6acdcc7cf36fb907b0 defa03668605e5a14a0431715adf2febf0aaa65a cl-heap-0.1.6 cl-heap-tests.asd cl-heap.asd
cl-heredoc http://beta.quicklisp.org/archive/cl-heredoc/2021-04-11/cl-heredoc-20210411-git.tgz 17312 5aaefe989b1644d7a4ec7e87263192c0 5d52de72ce1269d23e89a9f7e7bd0cd6beaee6a9 cl-heredoc-20210411-git cl-heredoc-test.asd cl-heredoc.asd
cl-html-diff http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz 4134 70f93e60e968dad9a44ede60856dc343 62480247479faf7bad6c1bbd4f4135ac2485694e cl-html-diff-20130128-git cl-html-diff.asd
cl-html-parse http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz 24755 3333eedf037a48900c663fceae3e4cfd e0ff6f78f80aa226f4f6939eae69e276a8fd710f cl-html-parse-20200925-git cl-html-parse.asd
cl-html-readme http://beta.quicklisp.org/archive/cl-html-readme/2021-02-28/cl-html-readme-quicklisp-current-release-fa304a63-git.tgz 13877 26b27e698d0dbd108e0aace4b9435465 7c3f4521f13121d47bd5e1b4d3a48e22da647873 cl-html-readme-quicklisp-current-release-fa304a63-git cl-html-readme.asd
cl-html5-parser http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz 192746 149e5609d0a96c867fac6c22693c5e30 4b9882d952d5cf90ce0c874e0b134a04db64d0a4 cl-html5-parser-20190521-git cl-html5-parser.asd cxml/cl-html5-parser-cxml.asd tests/cl-html5-parser-tests.asd
cl-htmlprag http://beta.quicklisp.org/archive/cl-htmlprag/2016-06-28/cl-htmlprag-20160628-git.tgz 41128 8232a485fcb90e422bca541c4e81c263 3a1eb22bd66998acf5eb018237f4a85e0935d6c8 cl-htmlprag-20160628-git cl-htmlprag.asd
cl-httpsqs http://beta.quicklisp.org/archive/cl-httpsqs/2018-02-28/cl-httpsqs-20180228-git.tgz 2303 4ed58c978ada913cbff3fffa002f15eb 446c6bd9937ed987e9ed7bd0023b44512cb462c8 cl-httpsqs-20180228-git cl-httpsqs.asd
cl-hue http://beta.quicklisp.org/archive/cl-hue/2015-01-13/cl-hue-20150113-git.tgz 2734 c5703adb29241896c35f365be6470811 51c697d52abb18f0a370c50c7d9e83cf8d84c43a cl-hue-20150113-git cl-hue.asd
cl-i18n http://beta.quicklisp.org/archive/cl-i18n/2020-07-15/cl-i18n-20200715-git.tgz 50545 296fa1653e755263b7bde9f9daed02d5 1c6dd3e1933fb5df7e1897caa290cf048037614b cl-i18n-20200715-git cl-i18n.asd
cl-iconv http://beta.quicklisp.org/archive/cl-iconv/2017-12-27/cl-iconv-20171227-git.tgz 4909 3b6bccf9f50224194d2d0910cd563a6a 3509872d765d9d3a7557cecaa8fadd804f46fc4c cl-iconv-20171227-git iconv.asd
cl-incognia http://beta.quicklisp.org/archive/cl-incognia/2021-05-31/cl-incognia-20210531-git.tgz 6962 97f7b6c065eb183b2d1316dfd800dafe a6eddddd064d57d8f6c74849b0392a5cf11fc15b cl-incognia-20210531-git cl-incognia.asd
cl-indentify http://beta.quicklisp.org/archive/cl-indentify/2020-09-25/cl-indentify-20200925-git.tgz 10559 d4dd445c9f239c8ff23e8f5c3e5b0e5e 482dbeee26e1da6aaa9d282fc0440d83b7c2f08d cl-indentify-20200925-git cl-indentify.asd
cl-inflector http://beta.quicklisp.org/archive/cl-inflector/2015-01-13/cl-inflector-20150113-git.tgz 6368 8563dd864200dc23b64648581ccec94f 7ef99cde744b4c4645bac4ea440fc1f2a709fdee cl-inflector-20150113-git cl-inflector.asd
cl-influxdb http://beta.quicklisp.org/archive/cl-influxdb/2018-01-31/cl-influxdb-20180131-git.tgz 15600 a34f8d1f70690f6c19465f9bd65f491c 8eb53449dbba61449beec84d34dcc989b06dd5a3 cl-influxdb-20180131-git cl-influxdb.asd
cl-info http://beta.quicklisp.org/archive/cl-info/2021-05-31/cl-info-20210531-git.tgz 7557 8a72bd6fcf47da703760dd53cc32e096 3ece8affb99ed1d1887a66e99ab8ec3f3747fecc cl-info-20210531-git cl-info-test.asd cl-info.asd
cl-ini http://beta.quicklisp.org/archive/cl-ini/2020-12-20/cl-ini-20201220-git.tgz 2753 ba16d72675a2b96cb4c7e6f60d5a25f7 3371e6d7b1393111d724073515a531398d15d7da cl-ini-20201220-git cl-ini-test.asd cl-ini.asd
cl-inotify http://beta.quicklisp.org/archive/cl-inotify/2020-04-27/cl-inotify-20200427-git.tgz 11674 99fadc048cfbcad935b544b0395e422e 5d7898d3baf2da482e076c07c919f11e2158ac1e cl-inotify-20200427-git cl-inotify-tests.asd cl-inotify.asd
cl-intbytes http://beta.quicklisp.org/archive/cl-intbytes/2015-09-23/cl-intbytes-20150923-git.tgz 3789 690cdfa2b0bc4829eeb1f8606291f0f5 f2a1bf6b3052fbd84755e3589d3370511f86b05c cl-intbytes-20150923-git cl-intbytes-test.asd cl-intbytes.asd
cl-interpol http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz 43712 d678c521474e1774185b78883396da49 947bdd72ec95e8206be01a59f3bed8c234480b19 cl-interpol-20201220-git cl-interpol.asd
cl-interval http://beta.quicklisp.org/archive/cl-interval/2020-07-15/cl-interval-20200715-git.tgz 10609 22fa5053c3fcbbf0fedebf0a3dffa38a 56dae5e7501d9255853fe9153f03189bc54d01a9 cl-interval-20200715-git cl-interval-docs.asd cl-interval.asd
cl-ipfs-api2 http://beta.quicklisp.org/archive/cl-ipfs-api2/2021-02-28/cl-ipfs-api2-20210228-git.tgz 14648 355c0ebfac16fa56ebdb8269acff7351 3a65b6d1798b199461638bf47ff4050806d68619 cl-ipfs-api2-20210228-git cl-ipfs-api2.asd
cl-irc http://beta.quicklisp.org/archive/cl-irc/2015-09-23/cl-irc-0.9.2.tgz 921763 73e8ba73d8e4222cec427704c1a6aabd 8f0bf062ea520bfb6e4b0a0395c85c4250425cfb cl-irc-0.9.2 cl-irc.asd test/cl-irc-test.asd
cl-irregsexp http://beta.quicklisp.org/archive/cl-irregsexp/2016-08-25/cl-irregsexp-20160825-git.tgz 21596 717edf273168ca0ca638dcb8721ce4ac 40dd190eaf28eea03b2208469408590b390d07c2 cl-irregsexp-20160825-git cl-irregsexp.asd
cl-isaac http://beta.quicklisp.org/archive/cl-isaac/2015-08-04/cl-isaac-20150804-git.tgz 8731 03beb7c110fa638fa32c4afcb5a9d604 b879c74b9584ad644172e6cc616d159682e71029 cl-isaac-20150804-git cl-isaac.asd
cl-isolated http://beta.quicklisp.org/archive/cl-isolated/2020-02-18/cl-isolated-20200218-git.tgz 19937 821b4b00dc524fc49a65fdda4dba3350 83ece69656138758b0737c90544914c38b347475 cl-isolated-20200218-git isolated.asd
cl-iterative http://beta.quicklisp.org/archive/cl-iterative/2016-03-18/cl-iterative-20160318-git.tgz 8987 7fc7c0e9e4451fc95b57db27e2e42f2c 85c5a21c03dc6e5c88bc3c9a2c1ece9731732a91 cl-iterative-20160318-git cl-iterative-tests.asd cl-iterative.asd
cl-itertools http://beta.quicklisp.org/archive/cl-itertools/2016-04-21/cl-itertools-20160421-git.tgz 6199 03577f82ecdbba2ed0977237a06c0017 97812f1df7ea506f413fee176e6897c85962a1bd cl-itertools-20160421-git cl-itertools.asd
cl-ixf http://beta.quicklisp.org/archive/cl-ixf/2018-02-28/cl-ixf-20180228-git.tgz 8677 23732795aa317d24c1a40cc321a0e394 7b99b33ef1a21049bc8eac1245f1d87fb38f98ea cl-ixf-20180228-git ixf.asd
cl-jpeg http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz 25088 b6eb4ca5d893f428b5bbe46cd49f76ad 1e8f15736d3c038aae73b8283c5d13b50e23bdd0 cl-jpeg-20170630-git cl-jpeg.asd
cl-jpl-util http://beta.quicklisp.org/archive/cl-jpl-util/2015-10-31/cl-jpl-util-20151031-git.tgz 36026 e294bedace729724873e7633b8265a00 0d6d0d8d68c636de34c02e5b0f15b34758e50ac5 cl-jpl-util-20151031-git jpl-util.asd
cl-json http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz 61399 9d873fa462b93c76d90642d8e3fb4881 a506ef6a9ce15a1b58b4d7fbeb9fd774e24008e2 cl-json-20141217-git cl-json.asd
cl-json-helper http://beta.quicklisp.org/archive/cl-json-helper/2018-12-10/cl-json-helper-20181210-git.tgz 2779 a681ca1edff40c68c65e2a6f4457ac01 38cfe3a53def3c09c9b013bc09a9b0c18577f24a cl-json-helper-20181210-git cl-json-helper.asd
cl-json-pointer http://beta.quicklisp.org/archive/cl-json-pointer/2021-04-11/cl-json-pointer-20210411-git.tgz 18574 8c0c3009d08c2cec4e3038533b86072f a9f74d9016eab601c9cdcd3a0080899bd769b684 cl-json-pointer-20210411-git cl-json-pointer.asd
cl-json-schema http://beta.quicklisp.org/archive/cl-json-schema/2021-02-28/cl-json-schema-20210228-git.tgz 10520 c0299dbdcb97bb418c0dd738ac126ec3 d49b93b456532aebde56f262c059ca973873acbf cl-json-schema-20210228-git cl-json-schema-tests.asd cl-json-schema.asd
cl-json-template http://beta.quicklisp.org/archive/cl-json-template/2017-06-30/cl-json-template-20170630-git.tgz 12106 cff23f61f7f349c6e9059e4083d95826 6b7435913677413c99e291886a0fab904128c2f9 cl-json-template-20170630-git json-template.asd
cl-jsx http://beta.quicklisp.org/archive/cl-jsx/2016-02-08/cl-jsx-20160208-git.tgz 6265 4e93808606526155d02fd3262e84e8bb 3e7d40b520e361bd8bc2dcd4c6e1fd92c3933672 cl-jsx-20160208-git cl-jsx-test.asd cl-jsx.asd
cl-junit-xml http://beta.quicklisp.org/archive/cl-junit-xml/2015-01-13/cl-junit-xml-20150113-git.tgz 5173 2a8e063e7431b6380ef6a6d268075af3 3d075953049523bb9b6071878607f59344201121 cl-junit-xml-20150113-git cl-junit-xml.asd cl-junit-xml.lisp-unit.asd cl-junit-xml.lisp-unit2.asd
cl-just-getopt-parser http://beta.quicklisp.org/archive/cl-just-getopt-parser/2019-07-10/cl-just-getopt-parser-20190710-git.tgz 7347 64419b6018a5f8012f7bc9445b2c1e8b 290fb2f9c52cf26680af825d1ab6866f22bafd9a cl-just-getopt-parser-20190710-git just-getopt-parser.asd
cl-k8055 http://beta.quicklisp.org/archive/cl-k8055/2019-07-10/cl-k8055-20190710-git.tgz 32114 4038e38dfb899c604beb50682fc85ace c20da9e467984ec6a920f95d12e1d60b1dcfb322 cl-k8055-20190710-git cl-k8055.asd
cl-kanren http://beta.quicklisp.org/archive/cl-kanren/2019-10-07/cl-kanren-20191007-git.tgz 12189 c6a29b570ac5047d4c5b1eb05a9f3b34 f11814e7348abcc947e9f22cfba4974d1277b691 cl-kanren-20191007-git cl-kanren.asd tests/cl-kanren-test.asd
cl-kanren-trs http://beta.quicklisp.org/archive/cl-kanren-trs/2012-03-05/cl-kanren-trs-20120305-svn.tgz 11024 7be1f8c2a6b396bf2403a51d9f5cd4b2 76bc8c61f0425273e137925aa278072284d5f6ef cl-kanren-trs-20120305-svn cl-kanren-trs/kanren-trs.asd cl-kanren-trs/tests/kanren-trs-test.asd
cl-kaputt http://beta.quicklisp.org/archive/cl-kaputt/2020-10-16/cl-kaputt-20201016-git.tgz 15380 bcf29aebb5e18f3fc4cb2c67fd155c86 480b58176f89484f1cf09d89d8c2e40a4b3e024a cl-kaputt-20201016-git kaputt.asd
cl-keycloak http://beta.quicklisp.org/archive/cl-keycloak/2019-07-10/cl-keycloak-20190710-git.tgz 13878 c1fd4adadecb6bb9c8db69ea2a4a731e 08895e7fe14432588a82c1920c30d1865bbe63ea cl-keycloak-20190710-git cl-keycloak.asd
cl-kraken http://beta.quicklisp.org/archive/cl-kraken/2021-05-31/cl-kraken-20210531-git.tgz 26274 4d1e2a5d7b0c62578e706871422d1165 0fcdc581e2d0fce975bc77159a6286224e6dc03f cl-kraken-20210531-git cl-kraken.asd
cl-ksuid http://beta.quicklisp.org/archive/cl-ksuid/2017-08-30/cl-ksuid-20170830-git.tgz 15810 0d6c51c80711463b0d276455fc2d4bf9 63b788ba0f5bb0d1e4c436979e4be5a053b10994 cl-ksuid-20170830-git cl-ksuid.asd
cl-kyoto-cabinet http://beta.quicklisp.org/archive/cl-kyoto-cabinet/2019-11-30/cl-kyoto-cabinet-20191130-git.tgz 11166 e9ec82383fe859240e7711142878f8fa 9921f6a8e5750dfe6c300c3e6a7ccc41543bc203 cl-kyoto-cabinet-20191130-git cl-kyoto-cabinet.asd
cl-l10n http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz 66664 c7cb0bb584b061799abaaaf2bd65c9c5 ea99b5ca38a28b28302222f9861a8c552cac4d67 cl-l10n-20161204-darcs cl-l10n.asd
cl-l10n-cldr http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz 3538114 466e776f2f6b931d9863e1fc4d0b514e 6b3a2e8fbf2b933e13d85fb21d87943eac67cbf8 cl-l10n-cldr-20120909-darcs cl-l10n-cldr.asd
cl-langutils http://beta.quicklisp.org/archive/cl-langutils/2012-11-25/cl-langutils-20121125-git.tgz 2482768 ba2d1e4abbc7757c135273d76e8147db 0861ac6408e69c6bb155dc62a637ede5fac467de cl-langutils-20121125-git langutils.asd
cl-las http://beta.quicklisp.org/archive/cl-las/2021-04-11/cl-las-20210411-git.tgz 11248 bf06066b63cd542444867f45585e5177 9e17446279c4dab94cc58a7868a53b70c6c4131f cl-las-20210411-git cl-las.asd
cl-lastfm http://beta.quicklisp.org/archive/cl-lastfm/2014-07-13/cl-lastfm-0.2.1.tgz 22260 2eb42fa1964fe361108aa752fe7a9089 160d3d3dce74b91fadef38768494f1785882ad5b cl-lastfm-0.2.1 cl-lastfm-test.asd cl-lastfm.asd
cl-launch http://beta.quicklisp.org/archive/cl-launch/2015-10-31/cl-launch-4.1.4.1.tgz 94539 5f3d1dc76a5c734a8fd2dba5e567f2ad e809f8f3dcbb3d0b3f239ef3ade7686005aee383 cl-launch-4.1.4.1 cl-launch.asd
cl-ledger http://beta.quicklisp.org/archive/cl-ledger/2020-02-18/cl-ledger-20200218-git.tgz 1183090 46d7a3c5f0e284e868b05cb5100af9d9 575534a3fc8e45910662a1c78a2a1f9549fc42f3 cl-ledger-20200218-git cl-ledger.asd
cl-lex http://beta.quicklisp.org/archive/cl-lex/2016-09-29/cl-lex-20160929-git.tgz 15959 03ca8860afad55575c8747a12e58370a 249a1fb7e5d2070536213b83e9608bcba9cd79b1 cl-lex-20160929-git cl-lex.asd
cl-lexer http://beta.quicklisp.org/archive/cl-lexer/2019-10-07/cl-lexer-20191007-git.tgz 5477 810e054e68d67b18eaa3859114b62662 e8b213a35c04e07c34ca676ee5f7919548e092e2 cl-lexer-20191007-git cl-lexer.asd
cl-liballegro http://beta.quicklisp.org/archive/cl-liballegro/2021-05-31/cl-liballegro-20210531-git.tgz 47086 a28ea01a316dc64834e7c362440dfed2 5e93f5e91ba1e91da36f4f614f3864ffd5101ef6 cl-liballegro-20210531-git cl-liballegro.asd
cl-liballegro-nuklear http://beta.quicklisp.org/archive/cl-liballegro-nuklear/2021-05-31/cl-liballegro-nuklear-20210531-git.tgz 483011 6e029073bb887dfeec017e3ca851b484 1d96c9c4c6f8295b2fa65ed478d7144a56232104 cl-liballegro-nuklear-20210531-git cl-liballegro-nuklear.asd
cl-libevent2 http://beta.quicklisp.org/archive/cl-libevent2/2019-01-07/cl-libevent2-20190107-git.tgz 17801 e6cf8f0a5ead1184043107ae05505309 a0f45ed59ab51638f6a3081ab21a476ad495ea5d cl-libevent2-20190107-git cl-libevent2-ssl.asd cl-libevent2.asd
cl-libfarmhash http://beta.quicklisp.org/archive/cl-libfarmhash/2016-10-31/cl-libfarmhash-20161031-git.tgz 14254 18f1d5557e8cb18a8508d5aea161c29b f6246aa6bfc3d7d6add3f2f3cabbe574341a87ae cl-libfarmhash-20161031-git cl-libfarmhash.asd
cl-libhoedown http://beta.quicklisp.org/archive/cl-libhoedown/2016-10-31/cl-libhoedown-20161031-git.tgz 6116 e3e02a0108dd00d7d3d47eb7cb8933ba 8265b5849763171d07d9132a68fdf035e1e61f7e cl-libhoedown-20161031-git cl-libhoedown.asd
cl-libiio http://beta.quicklisp.org/archive/cl-libiio/2019-11-30/cl-libiio-20191130-git.tgz 8149 cc70d023b770af0ecdfd1f9e401ee6ff 2caa1a95b175464b2447926ca089babaa7656877 cl-libiio-20191130-git cl-libiio.asd
cl-libpuzzle http://beta.quicklisp.org/archive/cl-libpuzzle/2015-06-08/cl-libpuzzle-20150608-git.tgz 2604 6721ae95e9eaaac4b5cb23403c43f67c 9515ee0dbfe8dfc9af92c36c5bdd97d2cd754c88 cl-libpuzzle-20150608-git cl-libpuzzle-test.asd cl-libpuzzle.asd
cl-libssh2 http://beta.quicklisp.org/archive/cl-libssh2/2016-05-31/cl-libssh2-20160531-git.tgz 21638 f4fdafbe1ef21b9e9c9e07dd564faacd 479298ef75e5cc50679e6eb052606b3a7ebe8df7 cl-libssh2-20160531-git libssh2.asd libssh2.test.asd
cl-libsvm http://beta.quicklisp.org/archive/cl-libsvm/2014-11-06/cl-libsvm-20141106-git.tgz 295884 bf492a44400d6817b61a3ede9ddc6ed3 91d879748fa3b12f9144a1d1d5d6a4f7080e7201 cl-libsvm-20141106-git cl-liblinear.asd cl-libsvm.asd
cl-libsvm-format http://beta.quicklisp.org/archive/cl-libsvm-format/2018-07-11/cl-libsvm-format-20180711-git.tgz 9951 bac7636204a46c66cdfa135cdd147ca6 87adb8326851e29f2c96f0a02dca122336d95520 cl-libsvm-format-20180711-git cl-libsvm-format-test.asd cl-libsvm-format.asd
cl-libusb http://beta.quicklisp.org/archive/cl-libusb/2021-02-28/cl-libusb-20210228-git.tgz 7807 ae227dc6c4e458ec1e26d1a4788f1f6a 606104c990fadf4284debc82138a11538357a5cc cl-libusb-20210228-git cl-libusb.asd libusb-ffi.asd
cl-libuv http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz 14235 e6b3f8ffa7b8fb642350f09d1afa7f38 f98c2e96d9b2f1ea325283c22d17ea8367269bbf cl-libuv-20200610-git cl-libuv.asd
cl-libxml2 http://beta.quicklisp.org/archive/cl-libxml2/2013-06-15/cl-libxml2-20130615-git.tgz 55579 88317bf302b5f1d2c1ac9efa6538fbe0 75977fe851405c2d85d67ed6df8dc3462628c661 cl-libxml2-20130615-git cl-libxml2.asd xfactory.asd xoverlay.asd
cl-libyaml http://beta.quicklisp.org/archive/cl-libyaml/2020-12-20/cl-libyaml-20201220-git.tgz 9421 2c8d064e95a1a06f854b8f2f875e66ab 0855f89ce8ae059c10aac9878856a9dde09b6fe8 cl-libyaml-20201220-git cl-libyaml-test.asd cl-libyaml.asd
cl-locale http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz 3916 7a8fb3678938af6dc5c9fd6431428aff b5e33ecae4ad91db85d6f3ead72a52a02547fd23 cl-locale-20151031-git cl-locale-syntax.asd cl-locale-test.asd cl-locale.asd
cl-locatives http://beta.quicklisp.org/archive/cl-locatives/2019-03-07/cl-locatives-20190307-hg.tgz 2705 f7dc0d49dccf787bc27c859ede74537e 83d8f4cc9457e0d907b44ab9d1422e9f75cec721 cl-locatives-20190307-hg cl-locatives.asd
cl-log http://beta.quicklisp.org/archive/cl-log/2013-01-28/cl-log.1.0.1.tgz 18463 fb960933eb748c14adc3ccb376ac8066 79eba93cc6a981a79d95b35533063b70083c6353 cl-log.1.0.1 cl-log-test.asd cl-log.asd
cl-logic http://beta.quicklisp.org/archive/cl-logic/2014-12-17/cl-logic-20141217-git.tgz 19237 1d2c46cd6d6b22eec42b0634ee6aad02 832125e585ebc79b14bad28a34bab16dede39272 cl-logic-20141217-git cl-logic.asd
cl-ltsv http://beta.quicklisp.org/archive/cl-ltsv/2014-07-13/cl-ltsv-20140713-git.tgz 1768 b0f6141d4d431c30cd3f89ed9b915cf9 78beea35eb74ae8e22963cbe6f5e8b7e03d5a578 cl-ltsv-20140713-git cl-ltsv-test.asd cl-ltsv.asd
cl-lzlib http://beta.quicklisp.org/archive/cl-lzlib/2020-12-20/cl-lzlib-20201220-git.tgz 585862 c248cc6e7ff96d661d2469f375582673 c2ae07561be6df2c304257201fc6c89d1f90caa6 cl-lzlib-20201220-git lzlib-tests.asd lzlib.asd
cl-lzma http://beta.quicklisp.org/archive/cl-lzma/2019-11-30/cl-lzma-20191130-git.tgz 391732 839b371f342610b221e8455ec0e5ab9e 2d6b69f5e810f08f2c943ed3b5a977041608e1cc cl-lzma-20191130-git cl-lzma.asd
cl-m4 http://beta.quicklisp.org/archive/cl-m4/2013-03-12/cl-m4-20130312-git.tgz 43800 1b3c29d5e7fb294f95afd4a845f4c6b4 7dbee2d1711f7b212ba1f6b9a04ac1ba873f4e31 cl-m4-20130312-git cl-m4-test.asd cl-m4.asd
cl-mango http://beta.quicklisp.org/archive/cl-mango/2020-09-25/cl-mango-20200925-git.tgz 102718 7f120c5a1186511963ac1f0d79839e06 0e2893031c03a5bd35e5ea34d283063fd7f07a28 cl-mango-20200925-git cl-mango.asd
cl-markdown http://beta.quicklisp.org/archive/cl-markdown/2019-12-27/cl-markdown-20191227-git.tgz 73424 630fdb2615d0c7cd7b31a5d6295ae552 eebe40f532720a42422ecfca77bbb2ef60ecfe19 cl-markdown-20191227-git cl-markdown-comparisons.asd cl-markdown-test.asd cl-markdown.asd
cl-markless http://beta.quicklisp.org/archive/cl-markless/2021-05-31/cl-markless-20210531-git.tgz 76469 2994cdaee49b49233aa7e6cf38d5b8c1 e780fadcdc013d0d1bed3b7b97dcdcaabeaef87e cl-markless-20210531-git cl-markless-test.asd cl-markless.asd epub/cl-markless-epub.asd markdown/cl-markless-markdown.asd plump/cl-markless-plump.asd standalone/cl-markless-standalone.asd
cl-marklogic http://beta.quicklisp.org/archive/cl-marklogic/2021-01-24/cl-marklogic-20210124-git.tgz 1814659 5af815613b7a90391fe6b8a0b1b4872a 53b10052d9476d0297819024f92600900984da1f cl-marklogic-20210124-git cl-marklogic.asd subsystem/ml-dsl/ml-dsl.asd subsystem/ml-optimizer/ml-optimizer.asd subsystem/ml-test/ml-test.asd
cl-markup http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz 5785 3ec36b8e15435933f614959032987848 6aa4346b3ea4f1113934de898307229892252b12 cl-markup-20131003-git cl-markup-test.asd cl-markup.asd
cl-marshal http://beta.quicklisp.org/archive/cl-marshal/2021-04-11/cl-marshal-20210411-git.tgz 11582 2463314a6bcd1a18bea2690deb6bce55 5d6b7cc076cf53b73119896e360fc56a78123d55 cl-marshal-20210411-git marshal-tests.asd marshal.asd
cl-match http://beta.quicklisp.org/archive/cl-match/2012-11-25/cl-match-20121125-git.tgz 23798 790a315e08136b3e9b3a42eaadc558a4 a747badf5dabd5b345df787c4b5765ee1d7bbe78 cl-match-20121125-git cl-match-test.asd cl-match.asd pcl-unit-test.asd standard-cl.asd
cl-mathstats http://beta.quicklisp.org/archive/cl-mathstats/2014-07-13/cl-mathstats-20140713-git.tgz 82601 f42fba86de264be6d626064228d15258 f53ab8b4758c0915a3389eb9d02824d226d128ab cl-mathstats-20140713-git cl-mathstats-test.asd cl-mathstats.asd
cl-maxminddb http://beta.quicklisp.org/archive/cl-maxminddb/2021-04-11/cl-maxminddb-20210411-git.tgz 7485 343a4cdbeb93e789492c539709c01d25 8765cff9e41e8be02a058379cc1e6d236a37d6a3 cl-maxminddb-20210411-git cl-maxminddb.asd
cl-maxsat http://beta.quicklisp.org/archive/cl-maxsat/2020-02-18/cl-maxsat-20200218-git.tgz 23748 d3a87dd7ed4354e80ed809a1f80a84be 2817cb160f759fdc66bf06b6fc1c9628d1b3c295 cl-maxsat-20200218-git cl-maxsat.asd cl-maxsat.test.asd
cl-mecab http://beta.quicklisp.org/archive/cl-mecab/2018-10-18/cl-mecab-20181018-git.tgz 2767 2ab93a1f4c43bab2428e5175108169a2 785e78ddcb996dc7d517f7796063d78f853c658c cl-mecab-20181018-git cl-mecab-test.asd cl-mecab.asd
cl-mechanize http://beta.quicklisp.org/archive/cl-mechanize/2018-07-11/cl-mechanize-20180711-git.tgz 3722 232d80473f28373048d93ca69f2b67a0 bfb4e5e0fcc4181fb4ba09c65c8b21e6bdafc9cc cl-mechanize-20180711-git cl-mechanize.asd
cl-mediawiki http://beta.quicklisp.org/archive/cl-mediawiki/2016-12-04/cl-mediawiki-20161204-git.tgz 16116 25991d3a28d94bf01f7a3a9464e2c3e9 5b3f1c43c010085a50b3459daec5b6b2fe16bd8a cl-mediawiki-20161204-git cl-mediawiki-test.asd cl-mediawiki.asd
cl-memcached http://beta.quicklisp.org/archive/cl-memcached/2015-06-08/cl-memcached-20150608-git.tgz 16575 d53b92973d51e95558aafaba56942c92 694deb82afc44290d593d4ca6d1242077af14fc9 cl-memcached-20150608-git cl-memcached.asd
cl-messagepack http://beta.quicklisp.org/archive/cl-messagepack/2020-10-16/cl-messagepack-20201016-git.tgz 11722 cd56b756012a71083838ac2e8846ea98 de3627c3a1113dcbacfe1f924e5cb2f253eb0629 cl-messagepack-20201016-git cl-messagepack-tests.asd cl-messagepack.asd
cl-messagepack-rpc http://beta.quicklisp.org/archive/cl-messagepack-rpc/2017-12-27/cl-messagepack-rpc-20171227-git.tgz 11177 6de2befbdd2a7e7ee028e0f9cc82bd7f 7b4c77bdb4dad0a365868591dbd75ad1ae3d4c10 cl-messagepack-rpc-20171227-git cl-messagepack-rpc-tests.asd cl-messagepack-rpc.asd
cl-migrations http://beta.quicklisp.org/archive/cl-migrations/2011-01-10/cl-migrations-20110110-http.tgz 3843 af513b9cd5bf182bd7c0910a98107823 cb5ae65cdda19f45cee7eaf4ad1726eddd3fd794 cl-migrations-20110110-http cl-migrations.asd
cl-migratum http://beta.quicklisp.org/archive/cl-migratum/2020-09-25/cl-migratum-20200925-git.tgz 14471 6c121d820bdf559ae4896aee9c3e8322 620732190a459af4331e76503ef1229923ccadc6 cl-migratum-20200925-git cl-migratum.asd cl-migratum.driver.sql.asd cl-migratum.provider.local-path.asd cl-migratum.test.asd
cl-mime http://beta.quicklisp.org/archive/cl-mime/2020-12-20/cl-mime-20201220-git.tgz 16952 1cfd9c5ccd0ee9fab358db47228d19ce 7136e1c4c5888b58a8499e16b003fe3146a8720b cl-mime-20201220-git cl-mime-test.asd cl-mime.asd
cl-mime-from-string http://beta.quicklisp.org/archive/cl-mime-from-string/2020-04-27/cl-mime-from-string-20200427-git.tgz 2441 dc30330e999d3fa93eba45b1b63d2f38 5e4c437b54faec0ddede2c88450eaa641dd369da cl-mime-from-string-20200427-git cl-mime-from-string.asd
cl-mimeparse http://beta.quicklisp.org/archive/cl-mimeparse/2021-05-31/cl-mimeparse-20210531-git.tgz 3890 0ed931e948aacc4b573e3e3a64ba62c9 243341c3827ec47fa91956c171dc8519b5547471 cl-mimeparse-20210531-git cl-mimeparse-tests.asd cl-mimeparse.asd
cl-minify-css http://beta.quicklisp.org/archive/cl-minify-css/2020-09-25/cl-minify-css-20200925-git.tgz 4753 382004d380c5a350c858aa4706c1625d 18682765f9edd38025102a33e64569132b27f155 cl-minify-css-20200925-git cl-minify-css-test.asd cl-minify-css.asd
cl-mixed http://beta.quicklisp.org/archive/cl-mixed/2021-05-31/cl-mixed-20210531-git.tgz 8901535 b0dec14ffdba22f3757e26737a961941 42675329d643ce57ff7e8325611f1a917c2f92e4 cl-mixed-20210531-git cl-mixed.asd examples/cl-mixed-examples.asd extensions/cl-mixed-alsa.asd extensions/cl-mixed-coreaudio.asd extensions/cl-mixed-flac.asd extensions/cl-mixed-jack.asd extensions/cl-mixed-mpg123.asd extensions/cl-mixed-oss.asd extensions/cl-mixed-out123.asd extensions/cl-mixed-pulse.asd extensions/cl-mixed-sdl2.asd extensions/cl-mixed-vorbis.asd extensions/cl-mixed-wasapi.asd extensions/cl-mixed-wav.asd extensions/cl-mixed-winmm.asd extensions/cl-mixed-xaudio2.asd
cl-mlep http://beta.quicklisp.org/archive/cl-mlep/2018-04-30/cl-mlep-20180430-git.tgz 219387 378549be18c26b35a2a928b48f20e7c6 2e4e11c788b75de49c76163fb045d0741d33747e cl-mlep-20180430-git mlep-add.asd mlep.asd
cl-mock http://beta.quicklisp.org/archive/cl-mock/2021-04-11/cl-mock-20210411-git.tgz 7681 3db05f0c1404a8ad9a73afaefdbd2a87 457b65d22972d77caa5102247e2a8e000885d16c cl-mock-20210411-git cl-mock-basic.asd cl-mock-tests-basic.asd cl-mock-tests.asd cl-mock.asd
cl-modlisp http://beta.quicklisp.org/archive/cl-modlisp/2015-09-23/cl-modlisp-20150923-git.tgz 10406 95f48447065e734ddfd23a58df53679b 5f92ef72be5b0897ed4ca226adbcbe9311a458bf cl-modlisp-20150923-git modlisp.asd
cl-monad-macros http://beta.quicklisp.org/archive/cl-monad-macros/2011-06-19/cl-monad-macros-20110619-svn.tgz 29833 8bff3b40a3720242b6f8f13932dd7b9e 46a54c95c093f7c263c8963479147624b3d234fd cl-monad-macros-20110619-svn cl-monad-macros.asd
cl-moneris http://beta.quicklisp.org/archive/cl-moneris/2011-04-18/cl-moneris-20110418-git.tgz 6676 ad2527ea7e6d8618757907dd2193224a 572b40deafdbd20a759bb36bc26250f6df64c8ac cl-moneris-20110418-git cl-moneris-test.asd cl-moneris.asd
cl-mongo http://beta.quicklisp.org/archive/cl-mongo/2016-05-31/cl-mongo-20160531-git.tgz 63737 f37c70b58ebbbc36dd855356b196c9a0 65b1c29c5c6bf02f9bbd7d64a260089968c41eec cl-mongo-20160531-git cl-mongo.asd
cl-mongo-id http://beta.quicklisp.org/archive/cl-mongo-id/2020-12-20/cl-mongo-id-20201220-git.tgz 3890 ba186c43306175a662568cfda32bb487 6e2d7c5f6a54174f8962101978285fb58d3d867c cl-mongo-id-20201220-git cl-mongo-id.asd
cl-monitors http://beta.quicklisp.org/archive/cl-monitors/2019-07-10/cl-monitors-20190710-git.tgz 30426 1c6c7f00915b0301a44f99eb5db282fe 6cbc22dbdf2b5dff91722aa12346e35a9a91f8c9 cl-monitors-20190710-git cl-monitors.asd
cl-mop http://beta.quicklisp.org/archive/cl-mop/2015-01-13/cl-mop-20150113-git.tgz 3524 2fafd8a889b9ad8455e0451d97a60f66 b6fd23f5ff74a7343158fcb9979362f24104a670 cl-mop-20150113-git cl-mop.asd
cl-moss http://beta.quicklisp.org/archive/cl-moss/2017-10-19/cl-moss-20171019-git.tgz 15420 5a242fbf7bc9a257a163dffd37467f1b 33a67534114561c248037d59806161a3c3281a05 cl-moss-20171019-git cl-moss.asd
cl-mount-info http://beta.quicklisp.org/archive/cl-mount-info/2020-02-18/cl-mount-info-20200218-git.tgz 22616 c280de944fab639bf2a75534a12635e5 ab0fee5243784b9c67ed8abb515779c923f44ce6 cl-mount-info-20200218-git cl-mount-info.asd
cl-mpg123 http://beta.quicklisp.org/archive/cl-mpg123/2020-09-25/cl-mpg123-20200925-git.tgz 1362693 dc1cda9e2c4f4cab2ab5e371f72b49fe 137e25df6b444ee1763a0f0969b10789177b78b7 cl-mpg123-20200925-git cl-mpg123-example.asd cl-mpg123.asd
cl-mpi http://beta.quicklisp.org/archive/cl-mpi/2019-07-10/cl-mpi-20190710-git.tgz 29951 084a37f38bc915e7cb446f0d659e745c 6aec00040dd9c6d789642e78799a97f93bd15de3 cl-mpi-20190710-git cl-mpi-asdf-integration.asd cl-mpi-extensions.asd cl-mpi-test-suite.asd cl-mpi.asd examples/cl-mpi-examples.asd
cl-mssql http://beta.quicklisp.org/archive/cl-mssql/2021-01-24/cl-mssql-20210124-git.tgz 15817 6f103cdbc07c2ae284c7aa2038d29f71 6be09db3233b3e699ead9bd6cd66f4a8a3e88362 cl-mssql-20210124-git mssql.asd
cl-mtgnet http://beta.quicklisp.org/archive/cl-mtgnet/2018-07-11/cl-mtgnet-20180711-git.tgz 13584 552af7cb3547102849920f639964c694 91a94bf40fb828bc3c8353ca1a17bdc53b1d4960 cl-mtgnet-20180711-git cl-mtgnet-async.asd cl-mtgnet-sync.asd cl-mtgnet.asd
cl-murmurhash http://beta.quicklisp.org/archive/cl-murmurhash/2019-12-27/cl-murmurhash-20191227-git.tgz 6973 71f7d56d247ea19fef5880f8e5f04cb9 3fa7acea151a7124d4dcfcf0573ed08bcb0f5334 cl-murmurhash-20191227-git cl-murmurhash.asd
cl-mustache http://beta.quicklisp.org/archive/cl-mustache/2020-03-25/cl-mustache-20200325-git.tgz 16325 52381d17458d88d6a8b760f351bf517d 39a5974599d0fc9ae6829087b99dbe7ec45150bd cl-mustache-20200325-git cl-mustache-test.asd cl-mustache.asd
cl-muth http://beta.quicklisp.org/archive/cl-muth/2020-10-16/cl-muth-stable-git.tgz 7430 aaa9a7d84e597dee7a20c365df78f6e8 560117e5d576eb40b833777d331aba8557b49054 cl-muth-stable-git cl-muth.asd
cl-mw http://beta.quicklisp.org/archive/cl-mw/2015-04-07/cl-mw-20150407-git.tgz 89150 688397a73badb51c626bb5633cfbf9bb 4a3d5e5a5d6413396e759c0895838bc03f70b93d cl-mw-20150407-git cl-mw.asd cl-mw.examples.argument-processing.asd cl-mw.examples.hello-world.asd cl-mw.examples.higher-order.asd cl-mw.examples.monte-carlo-pi.asd cl-mw.examples.ping.asd cl-mw.examples.with-task-policy.asd
cl-mysql http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz 25756 05d5ed6b48edbafd258e189d7868822e c4239d0371c67029a812a7d8e08d434de8fc8c8d cl-mysql-20200610-git cl-mysql-test.asd cl-mysql.asd
cl-naive-store http://beta.quicklisp.org/archive/cl-naive-store/2021-05-31/cl-naive-store-20210531-git.tgz 92791 cf6dd7931fc150b9f567b1c586e3a09c 32bc0f2b1d3dcd2b5d12aab9ed66e79ac79eb954 cl-naive-store-20210531-git cl-naive-store.asd cl-naive-store.document-type-defs.asd cl-naive-store.document-types.asd cl-naive-store.naive-core.asd cl-naive-store.naive-documents.asd cl-naive-store.naive-indexed.asd cl-naive-store.naive-merkle.asd cl-naive-store.test.asd
cl-ncurses http://beta.quicklisp.org/archive/cl-ncurses/2010-10-06/cl-ncurses_0.1.4.tgz 23603 60cde15b3c037f394e0c24eb55ad56f8 8d7cfd9bb56ba8c2e6f98bcb298bfc121f8d51bd cl-ncurses_0.1.4 cl-ncurses.asd
cl-neo4j http://beta.quicklisp.org/archive/cl-neo4j/2013-01-28/cl-neo4j-release-b8ad637a-git.tgz 9194 cb073877ef9a06784c7d1964e0c9266d f8a127e60e89f6a419ac4c59f4e734ce3f513258 cl-neo4j-release-b8ad637a-git cl-neo4j.asd
cl-neovim http://beta.quicklisp.org/archive/cl-neovim/2019-05-21/cl-neovim-20190521-git.tgz 28387 c74dc12e6ebcac2f55b0c5f510740734 a47dc4c6b386f74eb24f8370b14ebe489a70753c cl-neovim-20190521-git cl-neovim.asd
cl-netpbm http://beta.quicklisp.org/archive/cl-netpbm/2020-10-16/cl-netpbm-20201016-hg.tgz 406684 e308bcb4164efceb21e1a7415c76a530 9eed362a2038882360ad83fb669bf7df555c8d2f cl-netpbm-20201016-hg cl-netpbm.asd
cl-netstring-plus http://beta.quicklisp.org/archive/cl-netstring-plus/2015-07-09/cl-netstring-plus-20150709-git.tgz 4433 6e8765afb3524b15982841b1351e1f8c 21e3f577bcb812b607b5a1b180e97ee8763cf6c1 cl-netstring-plus-20150709-git cl-netstring+.asd
cl-netstrings http://beta.quicklisp.org/archive/cl-netstrings/2012-10-13/cl-netstrings-20121013-git.tgz 3736 8869774ca304843bb00041d63d80ba1e 9bf9f017e4e1b95c067e38c9fdc1e6db85a1457a cl-netstrings-20121013-git cl-netstrings.asd
cl-notebook http://beta.quicklisp.org/archive/cl-notebook/2020-12-20/cl-notebook-20201220-git.tgz 238241 070a26bcb1b8198e290d2fbd024abe16 b1d08a2c8ff0495cfb572e686900923d4473efb8 cl-notebook-20201220-git cl-notebook.asd
cl-ntp-client http://beta.quicklisp.org/archive/cl-ntp-client/2019-07-10/cl-ntp-client-20190710-git.tgz 3473 2053825ff92db3e37d533619e64045ad 6b4472231012fda91a1e99de6b8cd930636898d1 cl-ntp-client-20190710-git cl-ntp-client.asd
cl-ntriples http://beta.quicklisp.org/archive/cl-ntriples/2019-03-07/cl-ntriples-20190307-hg.tgz 6167 118afd8c0a65aad8e83e92f19e31117b e6bbc4ad2c50a998124d50ec4b8fdc8eb99f807a cl-ntriples-20190307-hg cl-ntriples.asd
cl-num-utils http://beta.quicklisp.org/archive/cl-num-utils/2021-05-31/cl-num-utils-20210531-git.tgz 64249 1977251bf552ba82005de0dc2f37d130 4c4dd4fb1555499a65813f0bb70673d849c1f4d2 cl-num-utils-20210531-git cl-num-utils.asd
cl-nxt http://beta.quicklisp.org/archive/cl-nxt/2015-06-08/cl-nxt-20150608-git.tgz 25121 a63efb53921dfb220e9085b7c67a989a c453129fbccbffe7dc25c77c1fe974b453d97b32 cl-nxt-20150608-git nxt-proxy.asd nxt.asd
cl-oauth http://beta.quicklisp.org/archive/cl-oauth/2015-08-04/cl-oauth-20150804-git.tgz 22871 280ca181aaf219d292dfcc5795d68b01 b2dcc9fde0faa4a38dc07d20f523182e0d6ccb21 cl-oauth-20150804-git cl-oauth.asd
cl-oclapi http://beta.quicklisp.org/archive/cl-oclapi/2018-08-31/cl-oclapi-20180831-git.tgz 17154 e80585c65e677f1ad10c5ae6b10879fd 1e73f38e41e931301d229a751cb8eb7e7bd2e27b cl-oclapi-20180831-git cl-oclapi-test.asd cl-oclapi.asd
cl-octet-streams http://beta.quicklisp.org/archive/cl-octet-streams/2020-12-20/cl-octet-streams-20201220-git.tgz 19408 a253df417a029475c4df9984cd458dd1 492e1711afc8b22be8fab6bcedfd7359c3029ffa cl-octet-streams-20201220-git cl-octet-streams.asd
cl-ode http://beta.quicklisp.org/archive/cl-ode/2016-06-28/cl-ode-20160628-git.tgz 10617 21c1ba1c91b5910a201cfb824c45fbf0 756649c7ff0912184bb0fa7c8a7e6abafc20273e cl-ode-20160628-git cl-ode.asd
cl-odesk http://beta.quicklisp.org/archive/cl-odesk/2015-06-08/cl-odesk-20150608-git.tgz 6930 e19a70b04c5f7204d46b7bd33a14e054 ab5f306a08b087e175dfe6389e1634444e147adb cl-odesk-20150608-git odesk.asd
cl-ohm http://beta.quicklisp.org/archive/cl-ohm/2018-02-28/cl-ohm-20180228-git.tgz 18129 988fa480a9196cd349782dfefb91b173 e18484324b8fdb9c372d0ad9aa3ebd150c328ec7 cl-ohm-20180228-git cl-ohm.asd
cl-olefs http://beta.quicklisp.org/archive/cl-olefs/2015-07-09/cl-olefs-20150709-git.tgz 21367 e2051eb090625ecf6ef295bbee5e3f65 7dd0fb6d14d42fdb4d3f331c1f15770d8277eda4 cl-olefs-20150709-git cl-olefs.asd
cl-one-time-passwords http://beta.quicklisp.org/archive/cl-one-time-passwords/2017-10-19/cl-one-time-passwords-20171019-git.tgz 4901 c565262b547110b1d5528671483a6166 4b5b6788ed4c8c3b80d1d573779dfff638a30c9a cl-one-time-passwords-20171019-git cl-one-time-passwords-test.asd cl-one-time-passwords.asd
cl-online-learning http://beta.quicklisp.org/archive/cl-online-learning/2020-07-15/cl-online-learning-20200715-git.tgz 47232 1b0a6a66f94d779bea10294fa67950a1 267ba027b1c65075dca16c6204eb38cfa4c9b088 cl-online-learning-20200715-git cl-online-learning-test.asd cl-online-learning.asd
cl-openal http://beta.quicklisp.org/archive/cl-openal/2015-03-02/cl-openal-20150302-git.tgz 10197 f85c83d057edf2f6273b0d9f89adfde9 6e4d3ead3768a92da6ab01cc41b88e54c37d7172 cl-openal-20150302-git cl-alc.asd cl-alut.asd cl-openal-examples.asd cl-openal.asd
cl-opencl http://beta.quicklisp.org/archive/cl-opencl/2021-05-31/cl-opencl-20210531-git.tgz 50815 bb53944a00e5a57d94e072115a041147 fcf979e0b79a5c889856127d9eb2e68283055486 cl-opencl-20210531-git cl-opencl.asd
cl-opengl http://beta.quicklisp.org/archive/cl-opengl/2019-11-30/cl-opengl-20191130-git.tgz 439215 c5387f051960e9179b2ed32fafb67e72 12c358b808eb731ea8519ef6bed602c3c7438cfa cl-opengl-20191130-git cl-glu.asd cl-glut-examples.asd cl-glut.asd cl-opengl.asd
cl-openstack-client http://beta.quicklisp.org/archive/cl-openstack-client/2019-10-07/cl-openstack-client-20191007-git.tgz 15217 21d5f62c63d36ec3b51bac01be54122c ac507feb7962ce6654e7c434f8abd3bfd59edad1 cl-openstack-client-20191007-git cl-openstack-client-test.asd cl-openstack-client.asd
cl-opsresearch http://beta.quicklisp.org/archive/cl-opsresearch/2017-04-03/cl-opsresearch-20170403-git.tgz 169006 3f9d2d4fa2e5bd0bd262c3e7d8473933 d5ec56c8385fdecddd862753f1941f476b6c4797 cl-opsresearch-20170403-git cl-opsresearch.asd subsystem/or-cluster/or-cluster.asd subsystem/or-fann/or-fann.asd subsystem/or-glpk/or-glpk.asd subsystem/or-gsl/or-gsl.asd subsystem/or-test/or-test.asd
cl-org-mode http://beta.quicklisp.org/archive/cl-org-mode/2010-12-07/cl-org-mode-20101207-git.tgz 16460 f4220fc89b86010c37f682b937e48758 4bb1c14e15eaacc107bbf539fc308766cd8f90d0 cl-org-mode-20101207-git cl-org-mode.asd
cl-out123 http://beta.quicklisp.org/archive/cl-out123/2019-07-10/cl-out123-20190710-git.tgz 793012 fe497cc028c073c1b28390c704a98e56 13f4bf99dd9d41f7f326f39c7d2acf561fc63b40 cl-out123-20190710-git cl-out123.asd
cl-pack http://beta.quicklisp.org/archive/cl-pack/2020-04-27/cl-pack-20200427-git.tgz 13687 bffd67704cedf806a38a5261c8bab02b 688bc0ea3248277b99ebe31dfb4fbb34adfaa97f cl-pack-20200427-git cl-pack.asd
cl-package-locks http://beta.quicklisp.org/archive/cl-package-locks/2011-12-03/cl-package-locks-20111203-git.tgz 3225 27ed43ed35ef89c3b1d7c5b2594f854c 1cb55bc796f5325a251868413e66a915596477cb cl-package-locks-20111203-git cl-package-locks.asd
cl-pango http://beta.quicklisp.org/archive/cl-pango/2017-04-03/cl-pango-20170403-git.tgz 14796 3a55e08abc5f99a853b80c835edb868d 3a8f8780b761e9f58b803a743928c98741be4a4c cl-pango-20170403-git cl-pango.asd
cl-parallel http://beta.quicklisp.org/archive/cl-parallel/2013-03-12/cl-parallel-20130312-git.tgz 3888 246f314b0ffa627a311e775b00dd0b65 b1d4c6defe936a70b5a9bbe431e94c65f8d0c023 cl-parallel-20130312-git cl-parallel.asd
cl-parser-combinators http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz 36429 25ad9b1459901738a6394422a41b8fec a708a8b6996a18c3aed1d9d909f9c52477c72fba cl-parser-combinators-20131111-git parser-combinators-cl-ppcre.asd parser-combinators-debug.asd parser-combinators-tests.asd parser-combinators.asd
cl-pass http://beta.quicklisp.org/archive/cl-pass/2020-12-20/cl-pass-20201220-git.tgz 2712 765d4fa1ec380fe4eac3a998e3a8eaf0 6f47e1189e7993e7941b3b2ba9d63c9f717910f4 cl-pass-20201220-git cl-pass-test.asd cl-pass.asd
cl-pattern http://beta.quicklisp.org/archive/cl-pattern/2014-07-13/cl-pattern-20140713-git.tgz 5143 cf8e74def535c66a358df1ada9d89785 cab8b56cdf63e359614d33840ef2faa539b351f3 cl-pattern-20140713-git cl-pattern-benchmark.asd cl-pattern.asd
cl-patterns http://beta.quicklisp.org/archive/cl-patterns/2021-05-31/cl-patterns-20210531-git.tgz 130287 0ba55f7a1415cddf23b6cecfb04667de c8a7b0de3f8d8b1c297008a747a42aa478f4f1aa cl-patterns-20210531-git cl-patterns.asd
cl-paymill http://beta.quicklisp.org/archive/cl-paymill/2013-11-11/cl-paymill-20131111-git.tgz 7224 1c240a7da7b22b55d16f7e6922191aa9 95e9052fb40ff1dbbf7925287e1e4f1409198e7a cl-paymill-20131111-git cl-paymill.asd
cl-paypal http://beta.quicklisp.org/archive/cl-paypal/2010-10-06/cl-paypal-20101006-git.tgz 1701376 b24dd8ccbdb60e1dd220076d8a5baa4d 9cf3a3bba7d5ff0feea25875639f6728ac5b2d6a cl-paypal-20101006-git cl-paypal.asd
cl-pcg http://beta.quicklisp.org/archive/cl-pcg/2020-10-16/cl-pcg-20201016-hg.tgz 11450 6e7d576b345bd56680220e3d3f16b8c3 aefd31f23dd5f2dd4517e9b2e25ae25d87fd8f7a cl-pcg-20201016-hg cl-pcg.asd cl-pcg.test.asd
cl-pdf http://beta.quicklisp.org/archive/cl-pdf/2021-05-31/cl-pdf-20210531-git.tgz 479106 675d3498976f4cb118dc72fa71829f5c eb2408ed8df2ec0453a8376ecad645f5940f9057 cl-pdf-20210531-git cl-pdf-parser.asd cl-pdf.asd
cl-peppol http://beta.quicklisp.org/archive/cl-peppol/2020-10-16/cl-peppol-20201016-git.tgz 1212057 00ec60c444446733de15d22b9a2d4c0f 32fb68492c61dd2f1da7faf5795f91f8bd7e5fea cl-peppol-20201016-git peppol.asd
cl-performance-tuning-helper http://beta.quicklisp.org/archive/cl-performance-tuning-helper/2013-06-15/cl-performance-tuning-helper-20130615-git.tgz 3639 79f43c12d4c35fc6ae10d28467fa5318 2ef8321821c30635eb0eedee03d9cba474b2f2c3 cl-performance-tuning-helper-20130615-git cl-performance-tuning-helper-test.asd cl-performance-tuning-helper.asd
cl-permutation http://beta.quicklisp.org/archive/cl-permutation/2019-10-07/cl-permutation-20191007-git.tgz 59069 bc3408a44f85fc6427c1b70f21015d87 fee0ab3a41141b552e98fad21654819852fc2ea3 cl-permutation-20191007-git cl-permutation-examples.asd cl-permutation-tests.asd cl-permutation.asd
cl-photo http://beta.quicklisp.org/archive/cl-photo/2015-09-23/cl-photo-20150923-git.tgz 12618 1cdf69f41104fcfb0a4ae99a01023148 16a6d27a0e01fc224be9741fb6dd4f0d4a568ef3 cl-photo-20150923-git cl-photo-tests.asd cl-photo.asd
cl-pixman http://beta.quicklisp.org/archive/cl-pixman/2017-08-30/cl-pixman-20170830-git.tgz 11694 5c0938bdf43ebe65574e446b47353e33 77f127fb3a0e55b4814a9796390070c86cc9ee94 cl-pixman-20170830-git pixman.asd
cl-plplot http://beta.quicklisp.org/archive/cl-plplot/2018-02-28/cl-plplot-20180228-git.tgz 289049 e4ac142b064ed3b20bdedd18c602e2c7 21da728b21572839150f71995713c7d54690bd70 cl-plplot-20180228-git cl-plplot.asd
cl-plumbing http://beta.quicklisp.org/archive/cl-plumbing/2018-10-18/cl-plumbing-20181018-git.tgz 3296 835188b1879ae9ad323bafb9cca36c0f fe1c2c004ee5f93822ecb669486ab9c5d6137c88 cl-plumbing-20181018-git cl-plumbing-test.asd cl-plumbing.asd
cl-ply http://beta.quicklisp.org/archive/cl-ply/2015-05-05/cl-ply-20150505-git.tgz 5845 54d8a7725a43455cd4d49ad6e2f1552b 16e20f501dd49b7c965542ee799b6e17c285fdfd cl-ply-20150505-git cl-ply-test.asd cl-ply.asd
cl-png http://beta.quicklisp.org/archive/cl-png/2020-09-25/cl-png-vl-anyversion-11b965fe-git.tgz 8510578 64fab161fc3837285333c31a81e2f150 372e1d3889cf11ca32210874bec5b5fdf3140d61 cl-png-vl-anyversion-11b965fe-git png.asd test/bmp-test.asd test/image-test.asd test/ops-test.asd test/png-test.asd
cl-poker-eval http://beta.quicklisp.org/archive/cl-poker-eval/2015-08-04/cl-poker-eval-20150804-git.tgz 15226 7771236a5bda08d88c85a4e33f30047d 5f1611423e82f6132b0ecbc1286f88083642566f cl-poker-eval-20150804-git cl-poker-eval.asd
cl-pop http://beta.quicklisp.org/archive/cl-pop/2011-04-18/cl-pop-20110418-http.tgz 50142 95c0c3418f4740938467514787857bf7 2f413630bb3a0bd507e7a6314f7063f8415c64eb cl-pop-20110418-http cl-pop.asd
cl-portaudio http://beta.quicklisp.org/archive/cl-portaudio/2020-12-20/cl-portaudio-20201220-git.tgz 261400 8d98da3b25ccd9a3e2772720ab6c2462 ff0b63117fbc811f1a7b3c4225735fc683854a2a cl-portaudio-20201220-git cl-portaudio.asd
cl-portmanteau http://beta.quicklisp.org/archive/cl-portmanteau/2018-10-18/cl-portmanteau-20181018-git.tgz 4041 69dc35a5efd5a58644a86291f114d0ae 1873a59021da676c57cb60a8624ca62231445ab4 cl-portmanteau-20181018-git portmanteau-tests.asd portmanteau.asd
cl-postgres-datetime http://beta.quicklisp.org/archive/cl-postgres-datetime/2019-05-21/cl-postgres-datetime-20190521-git.tgz 2835 2a8346142cf960438f21504a76b48f14 45becc2cce71b8582c605e5727c51f650d3fdf11 cl-postgres-datetime-20190521-git cl-postgres-datetime.asd
cl-postgres-plus-uuid http://beta.quicklisp.org/archive/cl-postgres-plus-uuid/2018-10-18/cl-postgres-plus-uuid-20181018-git.tgz 2270 2fe4f3d80a987192c303695d8629f522 4ca2391fa2cf146d789969453d066da82962af5d cl-postgres-plus-uuid-20181018-git cl-postgres-plus-uuid.asd
cl-ppcre http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz 155009 a980b75c1b386b49bcb28107991eb4ec d6593d8f842bcf6af810ff93c6c02b757bd49ecf cl-ppcre-20190521-git cl-ppcre-unicode.asd cl-ppcre.asd
cl-prevalence http://beta.quicklisp.org/archive/cl-prevalence/2021-05-31/cl-prevalence-20210531-git.tgz 23584 4d2ced14365fb45ef97621298fd24501 be2f66b1175782ed5d627916532e8fcdb07ce1df cl-prevalence-20210531-git cl-prevalence-test.asd cl-prevalence.asd
cl-primality http://beta.quicklisp.org/archive/cl-primality/2015-06-08/cl-primality-20150608-git.tgz 5079 e1590227314e5b4edee345232e8a4904 7698c3bcc32494cc4acf4ee91166745160668904 cl-primality-20150608-git cl-primality-test.asd cl-primality.asd
cl-prime-maker http://beta.quicklisp.org/archive/cl-prime-maker/2015-03-02/cl-prime-maker-20150302-git.tgz 5286 018c603dd74eb6a2f760188c1e9e581b b25b00051812d0c302e0e894dd3f3b6cb57cb4c9 cl-prime-maker-20150302-git cl-prime-maker.asd
cl-progress-bar http://beta.quicklisp.org/archive/cl-progress-bar/2018-10-18/cl-progress-bar-20181018-git.tgz 3607 c98f7a9ee6062e19c2a995d1c4952ecb 5de1c70cd16e6463ce9b21de87f3ed0b04f4dc3c cl-progress-bar-20181018-git cl-progress-bar.asd
cl-project http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz 5355 12b436050ad0106cf292707ae39d8572 c77e92bb67d6e56713ed3ae6ee61a34e35f8ed2b cl-project-20200715-git cl-project-test.asd cl-project.asd
cl-prolog2 http://beta.quicklisp.org/archive/cl-prolog2/2019-12-27/cl-prolog2-20191227-git.tgz 15590 9d662a6a868c59b66ddb91eae285a959 e09fa6b9921d8986e94738f7fc04a17426b08f27 cl-prolog2-20191227-git bprolog/cl-prolog2.bprolog.asd bprolog/cl-prolog2.bprolog.test.asd cl-prolog2.asd cl-prolog2.test.asd gprolog/cl-prolog2.gprolog.asd gprolog/cl-prolog2.gprolog.test.asd swi/cl-prolog2.swi.asd swi/cl-prolog2.swi.test.asd xsb/cl-prolog2.xsb.asd xsb/cl-prolog2.xsb.test.asd yap/cl-prolog2.yap.asd yap/cl-prolog2.yap.test.asd
cl-protobufs http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz 591709 9fb9af8bd53796b3cf8f358762095899 6a7b8ce57fa244b6356cff1c8852d021d04fd676 cl-protobufs-20200325-git cl-protobufs.asd tests/cl-protobufs-tests.asd
cl-pslib http://beta.quicklisp.org/archive/cl-pslib/2020-10-16/cl-pslib-20201016-git.tgz 42242 7e67250359d9b8627713b8587d25aae4 89a5f22d756264b4378bd0e86c79a8623889a943 cl-pslib-20201016-git cl-pslib.asd
cl-pslib-barcode http://beta.quicklisp.org/archive/cl-pslib-barcode/2020-02-18/cl-pslib-barcode-20200218-git.tgz 26694 52a2ffba62a8aeba001f4a7a11e6b13a 94fdf0e1d1e62c5fd92fe0795a93aed147f2ab10 cl-pslib-barcode-20200218-git cl-pslib-barcode.asd
cl-punch http://beta.quicklisp.org/archive/cl-punch/2019-01-07/cl-punch-20190107-git.tgz 1994 b5c6400872ae19221bf5a17f34750c63 e85b56b80563b86ab01b174561df88628c1ece7e cl-punch-20190107-git cl-punch-test.asd cl-punch.asd
cl-python http://beta.quicklisp.org/archive/cl-python/2020-04-27/cl-python-20200427-git.tgz 236923 a73c5f363366ecaca74ee742bbdab0ca 1fd10dd34d71b97a48f331a94e2edeb9e37e88be cl-python-20200427-git clpython.asd
cl-qprint http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz 33969 74376a69e0b078724c94cc268f69e0f7 2e2600e7a6ea7c1c21df10f3fb37a531fa1c9382 cl-qprint-20150804-git cl-qprint.asd
cl-qrencode http://beta.quicklisp.org/archive/cl-qrencode/2019-10-07/cl-qrencode-20191007-git.tgz 31145 e94ac1137949ef70dea11ca78431e956 0e6589fa846a65032275cbb576bc13d194476b8f cl-qrencode-20191007-git cl-qrencode-test.asd cl-qrencode.asd
cl-quickcheck http://beta.quicklisp.org/archive/cl-quickcheck/2020-06-10/cl-quickcheck-20200610-git.tgz 18441 92d8128d3014a06d38fddab32cc7d81d eac4c89caa498e2351afc73d839a2a9308204cd4 cl-quickcheck-20200610-git cl-quickcheck.asd
cl-rabbit http://beta.quicklisp.org/archive/cl-rabbit/2021-04-11/cl-rabbit-20210411-git.tgz 23616 d37c9fddab8847811a07c352e978dd38 d1e8e5edeae17ba97b888759161319b6fa373650 cl-rabbit-20210411-git cl-rabbit-tests.asd cl-rabbit.asd
cl-rail http://beta.quicklisp.org/archive/cl-rail/2017-12-27/cl-rail-20171227-git.tgz 3644 7da276363c4b689b0bfd85edb449b5d2 95cfb2281dd525f4e6597364a7896022dc715939 cl-rail-20171227-git rail.asd
cl-randist http://beta.quicklisp.org/archive/cl-randist/2020-12-20/cl-randist-20201220-git.tgz 29163 bd268982629c726ccf8ff8a24bfeb5d6 2ac16dba12675732dc07abdc0451fcc78cc333b3 cl-randist-20201220-git cl-randist.asd
cl-random http://beta.quicklisp.org/archive/cl-random/2018-03-28/cl-random-20180328-git.tgz 47082 0f302ea0cf77c5120e85cda903a1026e 46bc508532878a29dfc9cd99fe61c0e18c9c88cc cl-random-20180328-git cl-random.asd
cl-random-forest http://beta.quicklisp.org/archive/cl-random-forest/2020-07-15/cl-random-forest-20200715-git.tgz 69666 a0d05d9e1452ca5a0ec1d17efa66a608 2638ce0cdc8b3a58fbc0e271c7ffdbc48577a63f cl-random-forest-20200715-git cl-random-forest-test.asd cl-random-forest.asd
cl-rcfiles http://beta.quicklisp.org/archive/cl-rcfiles/2011-12-03/cl-rcfiles-20111203-http.tgz 1905 c6d90a1fe1488fba48dfc8174e829c63 58fbfde7a9339e3129ab1f67da5da7fbe13a493d cl-rcfiles-20111203-http com.dvlsoft.rcfiles.asd
cl-rdfxml http://beta.quicklisp.org/archive/cl-rdfxml/2014-07-13/cl-rdfxml-20140713-git.tgz 24185 ec6e7be8c793352109ab0b633c67c9b8 c27a5bb25404175ec960dccb0805fe8ff82caf5e cl-rdfxml-20140713-git cl-rdfxml.asd
cl-rdkafka http://beta.quicklisp.org/archive/cl-rdkafka/2020-12-20/cl-rdkafka-20201220-git.tgz 57232 efe370913002b11fc2f48997ebe7fe5e 2caaed2b03bad51f10f076f69160153692685604 cl-rdkafka-20201220-git cl-rdkafka.asd
cl-readline http://beta.quicklisp.org/archive/cl-readline/2020-10-16/cl-readline-20201016-git.tgz 74397 4b0d3ea543d566c1386f5a19c3dc2161 dfe72e1717494398f0de4cbc653dcb32f91d3685 cl-readline-20201016-git cl-readline.asd
cl-recaptcha http://beta.quicklisp.org/archive/cl-recaptcha/2015-06-08/cl-recaptcha-20150608-git.tgz 2351 02198a25a246df0e1d2326d5a46bb9bb 127298018d8364bbc2b8c6763c772eef5d55651d cl-recaptcha-20150608-git cl-recaptcha.asd
cl-reddit http://beta.quicklisp.org/archive/cl-reddit/2019-05-21/cl-reddit-20190521-git.tgz 10181 23c2901b8bbffaefd648e8cf5e79db72 5f45f83eceb917e3ca830e714a11c3272078e8e3 cl-reddit-20190521-git cl-reddit.asd
cl-redis http://beta.quicklisp.org/archive/cl-redis/2020-09-25/cl-redis-20200925-git.tgz 25565 25db6600a0c90c66c7b0718ac921664d 934965550589140846275ba86e36eb5d2e99818b cl-redis-20200925-git cl-redis.asd
cl-reexport http://beta.quicklisp.org/archive/cl-reexport/2021-02-28/cl-reexport-20210228-git.tgz 2538 e083a9c49fe39d65f1ff7743eebe37c2 8b85c2ce95d178aa2deab798f8fc16dd4a0de6da cl-reexport-20210228-git cl-reexport-test.asd cl-reexport.asd
cl-renderdoc http://beta.quicklisp.org/archive/cl-renderdoc/2020-09-25/cl-renderdoc-20200925-git.tgz 65861 047d4526bf0d9127e70347a2ceb5fb47 fdde29c8bd85a7e6133748fd84c7fb9fb6dfb6bb cl-renderdoc-20200925-git cl-renderdoc.asd
cl-rethinkdb http://beta.quicklisp.org/archive/cl-rethinkdb/2016-08-25/cl-rethinkdb-20160825-git.tgz 32793 b08605b7cfdc8351472c3764c1c86120 2d087d3e621659974f63a6c3a5fb28c1f22244bc cl-rethinkdb-20160825-git cl-rethinkdb-test.asd cl-rethinkdb.asd
cl-rfc2047 http://beta.quicklisp.org/archive/cl-rfc2047/2015-08-04/cl-rfc2047-20150804-git.tgz 6167 18e4a78b37f0b6bfb650907cb1dc8a17 4554d0124034923310e5134da555a5ac86c810e8 cl-rfc2047-20150804-git cl-rfc2047.asd test/cl-rfc2047-test.asd
cl-rfc4251 http://beta.quicklisp.org/archive/cl-rfc4251/2021-05-31/cl-rfc4251-20210531-git.tgz 11348 3a78cc42bd091e4572f7764237c2fe57 c02b8db86e86a3776173c09cb1081ee6af990bfa cl-rfc4251-20210531-git cl-rfc4251.asd cl-rfc4251.test.asd
cl-riff http://beta.quicklisp.org/archive/cl-riff/2018-01-31/cl-riff-20180131-git.tgz 3545 ab459dd87a44dea617ff845d4fc71191 4469a44389e88b68dff496dfa0b65c9530676400 cl-riff-20180131-git cl-riff.asd
cl-rlimit http://beta.quicklisp.org/archive/cl-rlimit/2015-06-08/cl-rlimit-20150608-git.tgz 3785 ea8d2343b95011bce0de3b699adf0cee 96e1fb8e23a5ad62b865930843dd6150488b8d84 cl-rlimit-20150608-git cl-rlimit.asd
cl-rmath http://beta.quicklisp.org/archive/cl-rmath/2018-03-28/cl-rmath-20180328-git.tgz 5219 0a7e999618e9381b458fea9703774f45 eb85ac5db3f73bba9f919287232e4ea895354424 cl-rmath-20180328-git cl-rmath.asd
cl-routes http://beta.quicklisp.org/archive/cl-routes/2017-01-24/cl-routes-20170124-git.tgz 16959 00cf290e3908eae5cfe4291da87fb7ec b6cf44512de1794cd364a428bd184b9663e8dfc6 cl-routes-20170124-git routes.asd
cl-rrd http://beta.quicklisp.org/archive/cl-rrd/2013-01-28/cl-rrd-20130128-git.tgz 6990 6ed1292cb978445d9952e464d547d149 e820e55875b893f4014ae7358768e480f0d1a28c cl-rrd-20130128-git cl-rrd.asd
cl-rrt http://beta.quicklisp.org/archive/cl-rrt/2020-09-25/cl-rrt-20200925-git.tgz 122680 375bf057c3c4d1ebe84ec47d0bb30cb5 cd9e746941a339298e2b95500ba52c34a409231f cl-rrt-20200925-git cl-rrt.asd cl-rrt.benchmark.asd cl-rrt.rtree.asd cl-rrt.test.asd
cl-rss http://beta.quicklisp.org/archive/cl-rss/2020-10-16/cl-rss-20201016-git.tgz 6522 0c4437458cfef444a248319054e04e5b 2fe0df2b1aa1f6f98985b51bbceeda6db78208c5 cl-rss-20201016-git rss.asd
cl-rsvg2 http://beta.quicklisp.org/archive/cl-rsvg2/2020-09-25/cl-rsvg2-20200925-git.tgz 52983 1f7b33d377c92630a40bf21c2d9b8876 b60605b3b2edfde9f1981579cbdbc2a1cf46da11 cl-rsvg2-20200925-git cl-rsvg2-pixbuf.asd cl-rsvg2-test.asd cl-rsvg2.asd
cl-rules http://beta.quicklisp.org/archive/cl-rules/2019-07-10/cl-rules-20190710-git.tgz 19882 1630f82d032594f14e3eb73afa7cca02 30a3aa278f1df25ed0279dd26a755164d559c2e3 cl-rules-20190710-git cl-rules-test.asd cl-rules.asd
cl-s3 http://beta.quicklisp.org/archive/cl-s3/2013-01-28/cl-s3-20130128-git.tgz 5843 4d064571012b9604f35d38b54d394357 07603d2daf79010091a344f9818c07b435c2d5f2 cl-s3-20130128-git cl-s3.asd
cl-sam http://beta.quicklisp.org/archive/cl-sam/2015-06-08/cl-sam-20150608-git.tgz 4054488 63b1c3bb023e3ef06e5f3855e6144b24 b3e8816022b2cbed60171db86596242905c0edf3 cl-sam-20150608-git cl-sam-test.asd cl-sam.asd
cl-sandbox http://beta.quicklisp.org/archive/cl-sandbox/2018-01-31/cl-sandbox-20180131-git.tgz 6539 86be3668d5ac97547a5043a48f155303 fc1e5b23275df9e8fadea34ac67a19a52b6e1073 cl-sandbox-20180131-git cl-sandbox.asd
cl-sane http://beta.quicklisp.org/archive/cl-sane/2015-06-08/cl-sane-20150608-git.tgz 9398 eb13c4f10552e26bc25a3a262416b71d c956a99e26239fb1c7a7646a9372c1fe7d616c24 cl-sane-20150608-git sane.asd
cl-sanitize http://beta.quicklisp.org/archive/cl-sanitize/2013-07-20/cl-sanitize-20130720-git.tgz 14858 704397eb4bfd6eef71f7bdbba5a672bf 2cf5ca23dcb811cad0796d45ee062d30cc4ad682 cl-sanitize-20130720-git sanitize.asd
cl-sasl http://beta.quicklisp.org/archive/cl-sasl/2019-05-21/cl-sasl-v0.3.2.tgz 7083 61105fc8faf396a39fc9d9c3400b3c21 bed7a2a1a1908c83f5ee47d8d698aba828a12d83 cl-sasl-v0.3.2 cl-sasl.asd
cl-sat http://beta.quicklisp.org/archive/cl-sat/2020-07-15/cl-sat-20200715-git.tgz 19592 7d8a6c92698b6149564577b714801b71 d9fa20cc10184b4128ec089a064d7400e06af63d cl-sat-20200715-git cl-sat.asd cl-sat.test.asd
cl-sat.glucose http://beta.quicklisp.org/archive/cl-sat.glucose/2021-01-24/cl-sat.glucose-20210124-git.tgz 2987 ebac4bfe048c63693897f030357ab3ab e8c69c7a3bf8f00b18c30cb271af3a96400a3a7d cl-sat.glucose-20210124-git cl-sat.glucose.asd cl-sat.glucose.test.asd
cl-sat.minisat http://beta.quicklisp.org/archive/cl-sat.minisat/2019-08-13/cl-sat.minisat-20190813-git.tgz 2868 25c3abddf6c4cbf76772862bd0d53ee6 9f63b2656623707b841a20d3af40557d3b374e87 cl-sat.minisat-20190813-git cl-sat.minisat.asd cl-sat.minisat.test.asd
cl-schedule http://beta.quicklisp.org/archive/cl-schedule/2021-05-31/cl-schedule-20210531-git.tgz 12886 ce8c437fdee29ec80c8eb1d30b46a7f5 2e4bb0a4727be5c5baf9d7e721e0cabc55ef270c cl-schedule-20210531-git cl-schedule.asd
cl-scram http://beta.quicklisp.org/archive/cl-scram/2015-09-23/cl-scram-20150923-git.tgz 5503 a010b20d5532a08fc85c2c532ddea09f 3e7475151f474a9d54817daebef5590da99a78a1 cl-scram-20150923-git cl-scram.asd
cl-scribd http://beta.quicklisp.org/archive/cl-scribd/2013-03-12/cl-scribd-20130312-git.tgz 3363 b87c90e9a765d543c2edf464479d5f88 c7995da5ad011d99cd74fee78889138678cf71d2 cl-scribd-20130312-git cl-scribd.asd
cl-scripting http://beta.quicklisp.org/archive/cl-scripting/2017-04-03/cl-scripting-20170403-git.tgz 3953 796475a259527bf7519811c2f567c4ec b56d960acee0ae374f0593ecb72c6900dacb5213 cl-scripting-20170403-git cl-scripting.asd
cl-scrobbler http://beta.quicklisp.org/archive/cl-scrobbler/2011-11-05/cl-scrobbler-20111105-git.tgz 10687 367d3741fc72df62a122ef7188117409 e14659ef82c2107a42ae6767c3137597a72202c1 cl-scrobbler-20111105-git cl-scrobbler.asd
cl-scsu http://beta.quicklisp.org/archive/cl-scsu/2020-03-25/cl-scsu-20200325-git.tgz 19616 a34e137177185213c92cd17b59cc0825 31e93e82f8595e87bc49351229285a655fe1bbd8 cl-scsu-20200325-git cl-scsu-test.asd cl-scsu.asd
cl-sdl2 http://beta.quicklisp.org/archive/cl-sdl2/2020-12-20/cl-sdl2-20201220-git.tgz 1522592 c24676ea9e3c59de893adeed178d14c4 001d96e3df9bccf4a34c395e0882929fcb7fc2dd cl-sdl2-20201220-git sdl2.asd
cl-sdl2-image http://beta.quicklisp.org/archive/cl-sdl2-image/2019-02-02/cl-sdl2-image-20190202-git.tgz 400442 d0771409506b37b0f56d0258396d31fd da0dd9f2ca73880afd6303d6f9a616ce976ce486 cl-sdl2-image-20190202-git sdl2-image.asd
cl-sdl2-mixer http://beta.quicklisp.org/archive/cl-sdl2-mixer/2020-12-20/cl-sdl2-mixer-20201220-git.tgz 365221 7e62916c1227bda16f5bc58ea0ea94b6 ed72a4c33a2421dab3529866e5f6ccfa942d5e60 cl-sdl2-mixer-20201220-git sdl2-mixer.asd
cl-sdl2-ttf http://beta.quicklisp.org/archive/cl-sdl2-ttf/2020-09-25/cl-sdl2-ttf-20200925-git.tgz 857286 473f22516691eb827d1b692ab9100c2a 14881e14abe06993b816a523d00c8286d58c1f91 cl-sdl2-ttf-20200925-git sdl2-ttf-examples.asd sdl2-ttf.asd
cl-selenium http://beta.quicklisp.org/archive/cl-selenium/2016-05-31/cl-selenium-20160531-git.tgz 15740 308b72c1bdad85a13bf79803c822ee95 9fa23dcb879cab1c8894e0bf8e207490c5acd8a3 cl-selenium-20160531-git selenium.asd
cl-selenium-webdriver http://beta.quicklisp.org/archive/cl-selenium-webdriver/2018-03-28/cl-selenium-webdriver-20180328-git.tgz 7935 d9ee1973788ddfd81380a33495c4ec85 1b90f0da0d3ce8d74e408be28b2c4884b7885b2a cl-selenium-webdriver-20180328-git cl-selenium-test.asd cl-selenium.asd
cl-semver http://beta.quicklisp.org/archive/cl-semver/2020-12-20/cl-semver-20201220-git.tgz 5773 7fcc6938d4618687bf1e18ba40d6ac6e 21ba5268d0382e51dd2ff6c82b8553e06f080657 cl-semver-20201220-git cl-semver-test.asd cl-semver.asd
cl-sendgrid http://beta.quicklisp.org/archive/cl-sendgrid/2021-05-31/cl-sendgrid-20210531-git.tgz 2274 3919438c5b52c7fb9b0b592fe6c0723a 6cac74f36581b65297004c3b5f7ae62d29aa76b0 cl-sendgrid-20210531-git sendgrid.asd
cl-sentiment http://beta.quicklisp.org/archive/cl-sentiment/2013-01-28/cl-sentiment-20130128-git.tgz 15819 2f3445dffa9105370751fa8ba7c2005c fc4a0651df4d453162919d5bd43540cba491c81e cl-sentiment-20130128-git cl-sentiment.asd
cl-server-manager http://beta.quicklisp.org/archive/cl-server-manager/2013-10-03/cl-server-manager-20131003-git.tgz 4564 046913915897f50caec525748a58cc01 8d8183ebce0e93f9e5e8f6a807b915995c1e6359 cl-server-manager-20131003-git cl-server-manager.asd
cl-ses4 http://beta.quicklisp.org/archive/cl-ses4/2021-04-11/cl-ses4-20210411-git.tgz 9447 6f184c74f22fcd68554628579985e4c5 890f6754bac77ed3cbddc7a0cf261cb9d23f77f9 cl-ses4-20210411-git cl-ses4.asd
cl-setlocale http://beta.quicklisp.org/archive/cl-setlocale/2020-12-20/cl-setlocale-20201220-git.tgz 3225 d16f5c254bb586327252d62932944077 9cebee588026dc3969cf7f7ab623048edb209df4 cl-setlocale-20201220-git cl-setlocale.asd
cl-shellwords http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz 3943 c2c62c6a2ce4ed2590d60707ead2e084 e925f0d8cc96238116bc7f29b75eb3572e9ce325 cl-shellwords-20150923-git cl-shellwords-test.asd cl-shellwords.asd
cl-shlex http://beta.quicklisp.org/archive/cl-shlex/2021-04-11/cl-shlex-20210411-git.tgz 8630 55446789d751206cc229ae876b7f57ac 5008d39adb43dc1f46519d47c3bc93b6b8f60b66 cl-shlex-20210411-git shlex.asd
cl-simple-concurrent-jobs http://beta.quicklisp.org/archive/cl-simple-concurrent-jobs/2015-05-05/cl-simple-concurrent-jobs-20150505-git.tgz 4297 01612838d9d398b13eec9a5b0bc28abb ebe1febd1180f311c340458960719d74cb8bda21 cl-simple-concurrent-jobs-20150505-git cl-simple-concurrent-jobs.asd
cl-simple-fsm http://beta.quicklisp.org/archive/cl-simple-fsm/2020-02-18/cl-simple-fsm-20200218-git.tgz 3582 fad71a6781c41751cefc38e92fed9b76 a2c7e7baad51f73989f26a58cf5ea327fa7ced85 cl-simple-fsm-20200218-git finite-state-machine.asd
cl-simple-table http://beta.quicklisp.org/archive/cl-simple-table/2013-03-12/cl-simple-table-20130312-git.tgz 5746 6b100dbdefa432b04a9dd2b36a7aa47b 701fddeefc3cbb1220fc31f7fcbd56294c7aa2a2 cl-simple-table-20130312-git cl-simple-table.asd
cl-singleton-mixin http://beta.quicklisp.org/archive/cl-singleton-mixin/2015-05-05/cl-singleton-mixin-20150505-git.tgz 2088 dbe6e7e009c5051cb4920e9965eff799 20a7748134ec477d642afc98e2a6117e817f8588 cl-singleton-mixin-20150505-git cl-singleton-mixin-test.asd cl-singleton-mixin.asd
cl-skip-list http://beta.quicklisp.org/archive/cl-skip-list/2013-06-15/cl-skip-list-20130615-git.tgz 13233 d8c7b91764103aa5f3db7dbf839968a3 999911f84161239c37601b3d87ed5f9792ee74c2 cl-skip-list-20130615-git cl-skip-list.asd
cl-skkserv http://beta.quicklisp.org/archive/cl-skkserv/2020-12-20/cl-skkserv-20201220-git.tgz 1807422 42cebf0c6a0719ad8e18224f89a39c4c 10fb0e4c195de0dbbeb8c746825aa6a7729fe404 cl-skkserv-20201220-git cl-skkserv.asd
cl-sl4a http://beta.quicklisp.org/archive/cl-sl4a/2015-08-04/cl-sl4a-20150804-git.tgz 1951 dbfee5c96a7f36682929591319236b24 346a2d6dd6942fa65cd5326a15d127b86a3a99b3 cl-sl4a-20150804-git cl-android.asd
cl-slice http://beta.quicklisp.org/archive/cl-slice/2021-05-31/cl-slice-20210531-git.tgz 7622 d7be90ed28b5c316b1f31b4f567bd725 5665df8d1d7752f16be3ac9d851ee67cf72eb402 cl-slice-20210531-git cl-slice.asd
cl-slp http://beta.quicklisp.org/archive/cl-slp/2014-08-26/cl-slp-20140826-git.tgz 7716 24dfaadf60cd54dfa811aa9d4e37d07e 0e6a27441f94c6e6ce46e0aead20fc9b2db4dfc7 cl-slp-20140826-git cl-slp.asd
cl-slug http://beta.quicklisp.org/archive/cl-slug/2018-02-28/cl-slug-20180228-git.tgz 7416 2b59b63bb9a234cb14959fda6f12fa2e 9512dd1601d8bcc265598fe6e49cdddf772eeb8f cl-slug-20180228-git cl-slug-test.asd cl-slug.asd
cl-smt-lib http://beta.quicklisp.org/archive/cl-smt-lib/2021-05-31/cl-smt-lib-20210531-git.tgz 4809 04b008692c24da65252ba023f2b85e86 a19873d4536caab2cd9942fd6d8bf538ae20edf8 cl-smt-lib-20210531-git cl-smt-lib.asd
cl-smtp http://beta.quicklisp.org/archive/cl-smtp/2021-02-28/cl-smtp-20210228-git.tgz 37478 e2f9137807f80514e0433bf2e8522ee5 1fbda947e90501ff57ba1ac685bf5d5716e64d59 cl-smtp-20210228-git cl-smtp.asd
cl-soil http://beta.quicklisp.org/archive/cl-soil/2018-08-31/cl-soil-release-quicklisp-f27087ce-git.tgz 330400 e26e1e23f2a4bf10a4e4d7c8e2fcd70c 6d7ad0c6aef48bb614d85a709222afcefa75c692 cl-soil-release-quicklisp-f27087ce-git cl-soil.asd
cl-soloud http://beta.quicklisp.org/archive/cl-soloud/2019-07-10/cl-soloud-20190710-git.tgz 521503 59b094adf83863dbf491001ec9dc0e33 f028ca7c4cbc2c3aa86a4341fdeb61e3d9482db4 cl-soloud-20190710-git cl-soloud.asd
cl-sophia http://beta.quicklisp.org/archive/cl-sophia/2015-06-08/cl-sophia-20150608-git.tgz 5748 4fa639f26d38c37be18c0d4e0da4b153 186948212d713ac7bac820f476e63a372b591b69 cl-sophia-20150608-git cl-sophia.asd
cl-spark http://beta.quicklisp.org/archive/cl-spark/2015-07-09/cl-spark-20150709-git.tgz 12519 0eec4e41100c4bbb0ab512e779399604 674f1bc695ae33dc00ab02502078af72720bf098 cl-spark-20150709-git cl-spark-test.asd cl-spark.asd
cl-sparql http://beta.quicklisp.org/archive/cl-sparql/2020-04-27/cl-sparql-20200427-git.tgz 6216 8b37d5f7e951afadfa36706d63048836 d930f1c029aa7ac8cd18cd95ab86bbf5684118a3 cl-sparql-20200427-git cl-sparql-tests.asd cl-sparql.asd
cl-speedy-queue http://beta.quicklisp.org/archive/cl-speedy-queue/2015-03-02/cl-speedy-queue-20150302-git.tgz 3631 509d1acf7e4cfcef99127de75b16521f 476412e42d63703c0b070d23e7e4cbd389d447e9 cl-speedy-queue-20150302-git cl-speedy-queue.asd
cl-sphinx http://beta.quicklisp.org/archive/cl-sphinx/2011-06-19/cl-sphinx-20110619-git.tgz 162782 0aa9e282a8ecc190b788d121071373d6 2ca537aaaac0a4d45151b6a7c8ca71909d10ff5d cl-sphinx-20110619-git sphinx.asd
cl-spidev http://beta.quicklisp.org/archive/cl-spidev/2019-07-10/cl-spidev-20190710-git.tgz 10495 59a6d3341753da1fed9b05864deaabc4 b9338baf09481b93f21f16cea80fc9023b195807 cl-spidev-20190710-git cl-spidev.asd
cl-splicing-macro http://beta.quicklisp.org/archive/cl-splicing-macro/2014-07-13/cl-splicing-macro-20140713-git.tgz 3041 d9ff0c4c0aa1a649ae7f6866ae5ce570 9b0b263f55f29e0dc141c8928f0151ce21bad99f cl-splicing-macro-20140713-git cl-splicing-macro.asd
cl-sqlite http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz 14632 2269773eeb4a101ddd3b33f0f7e05e76 4edb0bfcfc4ec79ab48038c420e415b817c054f8 cl-sqlite-20190813-git sqlite.asd
cl-ssdb http://beta.quicklisp.org/archive/cl-ssdb/2021-01-24/cl-ssdb-20210124-git.tgz 16131 148abb8cb18da310ae4d36a965b47dcd 69666b8d81b1743222096a02264933b04279207d cl-ssdb-20210124-git cl-ssdb-test.asd cl-ssdb.asd
cl-ssh-keys http://beta.quicklisp.org/archive/cl-ssh-keys/2021-05-31/cl-ssh-keys-20210531-git.tgz 3559761 bac9c739707c2ebcf501ae1e8037faba 13408193dedf39d5c67768d1ecb866a423567c53 cl-ssh-keys-20210531-git cl-ssh-keys.asd cl-ssh-keys.test.asd
cl-statsd http://beta.quicklisp.org/archive/cl-statsd/2017-01-24/cl-statsd-20170124-git.tgz 6437 bc58e298a1cf3657375eeb7e9981d993 65edf0606df6f93ff2b212c619c1f315e68a0de1 cl-statsd-20170124-git cl-statsd.asd cl-statsd.test.asd
cl-stdutils http://beta.quicklisp.org/archive/cl-stdutils/2011-10-01/cl-stdutils-20111001-git.tgz 114509 0fa8879ce4004924ff1f534e9fb92dba 4204504d7107cd3eae33550c4e00797fa4dfba98 cl-stdutils-20111001-git stdutils.asd
cl-steamworks http://beta.quicklisp.org/archive/cl-steamworks/2021-05-31/cl-steamworks-20210531-git.tgz 102961 821f0b40bb7851d76fb5db880ac51060 6e4d260c269d37455edf83b4ee63add8d83cc7aa cl-steamworks-20210531-git cl-steamworks-generator.asd cl-steamworks.asd
cl-stomp http://beta.quicklisp.org/archive/cl-stomp/2020-09-25/cl-stomp-20200925-git.tgz 7757 8f5a1c3ce31e9a08f2481e727b17036a 587b44fddf2756bf038c28b231d77596855fc5ab cl-stomp-20200925-git cl-stomp.asd
cl-stopwatch http://beta.quicklisp.org/archive/cl-stopwatch/2019-03-07/cl-stopwatch-20190307-hg.tgz 3481 f8aca8aac1dcaa3ff818e558dfb8471b 3963d39f4cdba3e518f0d027124d647592e77545 cl-stopwatch-20190307-hg cl-stopwatch.asd
cl-store http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz 47511 828a6f3035c5ef869618f6848c47efd7 56287a99cc9fad823ca8f01b6e29f27d515b2571 cl-store-20200925-git cl-store.asd
cl-str http://beta.quicklisp.org/archive/cl-str/2021-05-31/cl-str-20210531-git.tgz 18498 05144979ce1bf382fdb0b91db932fe6a bf58ebc7920e97012ce5b9370eb2418e9bd1d70d cl-str-20210531-git str.asd str.test.asd
cl-stream http://beta.quicklisp.org/archive/cl-stream/2019-05-21/cl-stream-20190521-git.tgz 10083 99bb43715db14c688bb32be11e4fee8b bd4e03b1155b2a3fe9a9a6faaae493f48bc0ad95 cl-stream-20190521-git cl-stream.asd
cl-strftime http://beta.quicklisp.org/archive/cl-strftime/2016-03-18/cl-strftime-20160318-git.tgz 7797 73097d6d00eca45c52ca5bedc99d0146 27c12e403c68bd330feffadd2b766cb9db160347 cl-strftime-20160318-git cl-strftime.asd
cl-string-complete http://beta.quicklisp.org/archive/cl-string-complete/2019-03-07/cl-string-complete-20190307-hg.tgz 5305 e828ace268105ad02b58ed26498ad28f eab194a8bfb0efe55ac8f0c7d8411e5e16408556 cl-string-complete-20190307-hg cl-string-complete.asd
cl-string-generator http://beta.quicklisp.org/archive/cl-string-generator/2021-02-28/cl-string-generator-20210228-git.tgz 5484 e675d7f6447b1f362fa324163e3b806d db7b645ecb69cfc59fe0b862a50703307ccc39a8 cl-string-generator-20210228-git cl-string-generator.asd
cl-string-match http://beta.quicklisp.org/archive/cl-string-match/2019-03-07/cl-string-match-20190307-hg.tgz 176593 68e27c214f63e7c30f1e0c2ccad86131 7d2a654be746559ace31ef188a977826f86a0bfe cl-string-match-20190307-hg ascii-strings.asd cl-string-match-test.asd cl-string-match.asd simple-scanf.asd
cl-strings http://beta.quicklisp.org/archive/cl-strings/2021-04-11/cl-strings-20210411-git.tgz 11200 ce6f2c80a8c245f414afd92230729182 bc5b16309a8fe03e95995634d1a5364911e77c3f cl-strings-20210411-git cl-strings.asd
cl-svg http://beta.quicklisp.org/archive/cl-svg/2018-02-28/cl-svg-20180228-git.tgz 83379 672145ecadef2259a3833886dbe68617 1640e08a5ddbcc328a3b4240c13ff91cac3c5454 cl-svg-20180228-git cl-svg.asd
cl-svm http://beta.quicklisp.org/archive/cl-svm/2011-04-18/cl-svm-20110418-git.tgz 435539 c093c5810a77b5258a6b463168c7c8bb 8e4d8ad0cb5ec177c2373b14c251c5932a84615b cl-svm-20110418-git cl-svm.asd
cl-swagger-codegen http://beta.quicklisp.org/archive/cl-swagger-codegen/2018-08-31/cl-swagger-codegen-20180831-git.tgz 43309 5066805afea5280e16e3e58f05cd88e1 9b69504759ff81308c486b266ff3484d2a6e8531 cl-swagger-codegen-20180831-git cl-swagger.asd
cl-sxml http://beta.quicklisp.org/archive/cl-sxml/2020-03-25/cl-sxml-20200325-git.tgz 15164 18c9542922dd4eb00257e194b55e6ed2 230ab25f47940c5802392b968c67dd1fbe50f9bd cl-sxml-20200325-git cl-sxml.asd
cl-syntax http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz 3102 602b84143aafe59d65f4e08ac20a124a e00e7def72875fd635f7e9d27e24fd3f23076247 cl-syntax-20150407-git cl-syntax-annot.asd cl-syntax-anonfun.asd cl-syntax-clsql.asd cl-syntax-fare-quasiquote.asd cl-syntax-interpol.asd cl-syntax-markup.asd cl-syntax.asd
cl-syslog http://beta.quicklisp.org/archive/cl-syslog/2019-02-02/cl-syslog-20190202-git.tgz 14759 eafff19eb1f38a36a9535c729d2217fe de0c891d0168db0a3079707794b5fafae6d99282 cl-syslog-20190202-git cl-syslog.asd
cl-table http://beta.quicklisp.org/archive/cl-table/2013-01-28/cl-table-20130128-git.tgz 4002 793e1222aebf00d28d4ec58173bd36b5 93e0aa5fb21ae9722e78814471019d1c2c62f6a3 cl-table-20130128-git cl-table.asd
cl-tasukete http://beta.quicklisp.org/archive/cl-tasukete/2018-02-28/cl-tasukete-20180228-git.tgz 5602 f4dc086f01e384684b371fbcf631c29b 793c27bce80661019dd5920e02074e538bd22855 cl-tasukete-20180228-git cl-tasukete-test.asd cl-tasukete.asd
cl-tcod http://beta.quicklisp.org/archive/cl-tcod/2020-12-20/cl-tcod-20201220-git.tgz 90205 08603e896222696c4b3ed3be60c7c284 017e418eb198a5f1b8cf69d403b9ac2bd22220e8 cl-tcod-20201220-git parse-rgb.asd tcod.asd
cl-telebot http://beta.quicklisp.org/archive/cl-telebot/2021-02-28/cl-telebot-20210228-git.tgz 5250 7bcea39ac7c9fd14c657ac508f1f02f7 f9f4ecb679fe1cf2a6695819ef233d8d990bbd0a cl-telebot-20210228-git cl-telebot.asd
cl-telegram-bot http://beta.quicklisp.org/archive/cl-telegram-bot/2021-01-24/cl-telegram-bot-20210124-git.tgz 431206 46ed395f9a4d64d0707022ce303b12c9 3fbb7235182f403384b691fb6af71db6aec4c20e cl-telegram-bot-20210124-git cl-telegram-bot.asd
cl-template http://beta.quicklisp.org/archive/cl-template/2013-06-15/cl-template-20130615-git.tgz 8316 9ff3872864a04535fa4fdd541e5fef70 3407880226be0be8fd02890e3ef18a2c9c8899f6 cl-template-20130615-git cl-template.asd
cl-tesseract http://beta.quicklisp.org/archive/cl-tesseract/2017-11-30/cl-tesseract-20171130-git.tgz 8190 761384aa2cde1733a96d6fca82d00750 98cef4ac03acf09549444079e5da579b19ebdc7a cl-tesseract-20171130-git cl-tesseract.asd
cl-tetris3d http://beta.quicklisp.org/archive/cl-tetris3d/2018-12-10/cl-tetris3d-20181210-git.tgz 5744 66d1a4aa18316e25bc0a7df127be71e7 5ea752a06b16d0d4aff9ad6a1bf5acc3eda92faf cl-tetris3d-20181210-git cl-tetris3d.asd
cl-textmagic http://beta.quicklisp.org/archive/cl-textmagic/2015-12-18/cl-textmagic-20151218-git.tgz 2035 f746d2e7ddea99e9cbe443e4a6c08175 3473012d8f21242b2a9bb6a85544938fe2c4a536 cl-textmagic-20151218-git cl-textmagic-test.asd cl-textmagic.asd
cl-tga http://beta.quicklisp.org/archive/cl-tga/2016-03-18/cl-tga-20160318-git.tgz 312452 84bf8ad6fc66ffd2519b933469ae3660 2d2b8b4fd47dde90818f6600bd73bf3cc0ede60f cl-tga-20160318-git cl-tga.asd
cl-threadpool http://beta.quicklisp.org/archive/cl-threadpool/2021-02-28/cl-threadpool-quickload-current-release-86ef8a6b-git.tgz 14319 1c9663c4b2e414968ce826a2a7b72ba1 656f19728a25ee205bcf66f22fd20d9b09e28f7f cl-threadpool-quickload-current-release-86ef8a6b-git cl-threadpool.asd
cl-tidy http://beta.quicklisp.org/archive/cl-tidy/2017-08-30/cl-tidy-20170830-git.tgz 6451 753b926424eaf57415e3cdb2545f4b51 8510d6d70053a5dcf0471a22507013b245695875 cl-tidy-20170830-git cl-tidy.asd
cl-tiled http://beta.quicklisp.org/archive/cl-tiled/2021-05-31/cl-tiled-20210531-git.tgz 18197 3e1584ed300697c9e43093528fb1f374 d5786b7c2e0006a2d34a645d7c2481690874cf3f cl-tiled-20210531-git cl-tiled.asd
cl-tk http://beta.quicklisp.org/archive/cl-tk/2015-06-08/cl-tk-20150608-git.tgz 11254 c6711a6dea114a6c3dec446420eec0f7 a69f6d26b9018482347f83542b91d5f913c13d4c cl-tk-20150608-git cl-tk.asd
cl-tld http://beta.quicklisp.org/archive/cl-tld/2014-09-14/cl-tld-20140914-git.tgz 42598 c1a599db2ff8f0bb76acb206743b8d98 bb55b6b60e8cf822c80fb220117d81b809616325 cl-tld-20140914-git cl-tld.asd
cl-tokyo-cabinet http://beta.quicklisp.org/archive/cl-tokyo-cabinet/2016-08-25/cl-tokyo-cabinet-20160825-git.tgz 19667 00d4bb23e393c6966b4acf17d9184627 9d22fd186290b36752b32010589d8f6b6c31024d cl-tokyo-cabinet-20160825-git cl-tokyo-cabinet-test.asd cl-tokyo-cabinet.asd
cl-toml http://beta.quicklisp.org/archive/cl-toml/2019-11-30/cl-toml-20191130-git.tgz 8835 093bee6524054b0b515d52db070eb300 8cf25c892ca26097b7d4880e49b8d32439ed4095 cl-toml-20191130-git cl-toml-test.asd cl-toml.asd
cl-torrents http://beta.quicklisp.org/archive/cl-torrents/2020-03-25/cl-torrents-20200325-git.tgz 579949 4c89bd0032672d5db41a167d66c4a198 19ad8ad530fbcdd22ad10720374add261b476c86 cl-torrents-20200325-git torrents-test.asd torrents.asd
cl-transmission http://beta.quicklisp.org/archive/cl-transmission/2020-03-25/cl-transmission-20200325-git.tgz 8830 3e01cd078ee2b8b1d703c6f3d031e632 e891aa1e92565bbbf707e51ff0d26112f6dda11a cl-transmission-20200325-git cl-transmission-test.asd cl-transmission.asd
cl-trie http://beta.quicklisp.org/archive/cl-trie/2018-02-28/cl-trie-20180228-git.tgz 11400 20a0f0facbed0ccfad54bfeac6dcbba7 3e5dc74d7aeb063b2cdb3a8a267b946606c1e541 cl-trie-20180228-git cl-trie-examples.asd cl-trie.asd
cl-tui http://beta.quicklisp.org/archive/cl-tui/2020-04-27/cl-tui-20200427-git.tgz 15307 5e1013c1334ce736d2fbfbfa4643ed6e 284a85a4029a3c9697e97f345dd8b402da0b8da3 cl-tui-20200427-git cl-tui.asd
cl-tulip-graph http://beta.quicklisp.org/archive/cl-tulip-graph/2013-06-15/cl-tulip-graph-20130615-git.tgz 14772 eaf9d92e3bffcf93220052fd42b4d002 060726c29d1b14f683149de192541e5b30a99877 cl-tulip-graph-20130615-git cl-tulip-graph.asd
cl-tuples http://beta.quicklisp.org/archive/cl-tuples/2014-07-13/cl-tuples-20140713-git.tgz 28047 8676dd7e0be1af17f5ffa8aac21d0ab3 c977ce6c441bd413c363d63cc99382ff33192dff cl-tuples-20140713-git cl-tuples.asd
cl-twitter http://beta.quicklisp.org/archive/cl-twitter/2018-02-28/cl-twitter-20180228-git.tgz 70934 83638a0508cda507500ef9e633f6cec4 620458f22d28ab5e6f33027c492e7fe1cae28c48 cl-twitter-20180228-git cl-twit-repl.asd cl-twitter.asd twitter-mongodb-driver.asd
cl-typesetting http://beta.quicklisp.org/archive/cl-typesetting/2021-05-31/cl-typesetting-20210531-git.tgz 336818 849e6fb2c4a33f823c005e4e9abb31b5 2a38325b2e4a679ae8741804b1d70495ba112ee8 cl-typesetting-20210531-git cl-typesetting.asd contrib/xhtml-renderer/xml-render.asd documentation/lisp-source/cl-pdf-doc.asd
cl-uglify-js http://beta.quicklisp.org/archive/cl-uglify-js/2015-07-09/cl-uglify-js-20150709-git.tgz 17631 f0ac4a43bb9da2478e995802b86df6dd b806550d06d7844466d36235876ff0a1698e854b cl-uglify-js-20150709-git cl-uglify-js.asd
cl-unicode http://beta.quicklisp.org/archive/cl-unicode/2021-02-28/cl-unicode-20210228-git.tgz 1290638 5b3bdddde3be5b8427e3fac92495a10b 178c37695c1679ca23ec02e48e9942e820640615 cl-unicode-20210228-git cl-unicode.asd
cl-unification http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz 33087 90588d566c2e12dac3530b65384a87ab ecf4f56ce155720ef6021ea93b40e54c1472dda7 cl-unification-20200925-git cl-unification-lib.asd cl-unification-test.asd cl-unification.asd lib-dependent/cl-ppcre-template.asd
cl-unix-sockets http://beta.quicklisp.org/archive/cl-unix-sockets/2020-12-20/cl-unix-sockets-20201220-git.tgz 9100 e983cdcdc665b726f8fe946cc83e2dd7 041467825b225a4da93acf04dd144d79002e8ed0 cl-unix-sockets-20201220-git unix-sockets.asd unix-sockets.tests.asd
cl-utilities http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz 22998 c3a4ba38b627448d3ed40ce888048940 187862251617676b95b1386e277fb2c449472bf8 cl-utilities-1.2.4 cl-utilities.asd
cl-utils http://beta.quicklisp.org/archive/cl-utils/2021-05-31/cl-utils-20210531-git.tgz 185086 de93308e3839102bce9966335c4acaa5 8c263a245cea81304f9884fabf6f0d03941d3b84 cl-utils-20210531-git gt.asd
cl-variates http://beta.quicklisp.org/archive/cl-variates/2018-01-31/cl-variates-20180131-darcs.tgz 13536 dd441faa5cf87e4f41102c4a2323f95f 0ee1831ebbfe0c3efb4a5a02936f8a01b624abcc cl-variates-20180131-darcs cl-variates.asd
cl-vectors http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz 31415 9d9629786d4f2c19c15cc6cd3049c343 55f19b15187b1a1026c7fd139fedf3cb7663847b cl-vectors-20180228-git cl-aa-misc.asd cl-aa.asd cl-paths-ttf.asd cl-paths.asd cl-vectors.asd
cl-vhdl http://beta.quicklisp.org/archive/cl-vhdl/2016-04-21/cl-vhdl-20160421-git.tgz 38493 1cae44b3e18d5b1416e9c3afb7382f76 030aa263142eff790f30a947c7b606b7b6021d97 cl-vhdl-20160421-git cl-vhdl.asd
cl-video http://beta.quicklisp.org/archive/cl-video/2018-02-28/cl-video-20180228-git.tgz 9729 1390350148bca3730b1a7d24e298d0e2 82c761ab17ae349f4ec7efff0f438e1dfa57af3d cl-video-20180228-git cl-video-avi.asd cl-video-gif.asd cl-video-player.asd cl-video-wav.asd cl-video.asd
cl-virtualbox http://beta.quicklisp.org/archive/cl-virtualbox/2018-08-31/cl-virtualbox-20180831-git.tgz 5029 f75919b162c344bf5b3bee1bf3f91e32 90de58049f50133366139c8e37e5e8548ff1bce9 cl-virtualbox-20180831-git cl-virtualbox.asd
cl-vorbis http://beta.quicklisp.org/archive/cl-vorbis/2021-05-31/cl-vorbis-20210531-git.tgz 462139 2e0ea535f20037691e79e1ad3aa56e5f 4db13f89909e40dc70ff579c813e84df7f95f86b cl-vorbis-20210531-git cl-vorbis.asd
cl-voxelize http://beta.quicklisp.org/archive/cl-voxelize/2015-07-09/cl-voxelize-20150709-git.tgz 118708 2e3d839d201d64659726f553bebd6ac0 104f867098b7cde4f4ccd449633cd9a407e8ce46 cl-voxelize-20150709-git cl-voxelize-examples.asd cl-voxelize-test.asd cl-voxelize.asd
cl-wadler-pprint http://beta.quicklisp.org/archive/cl-wadler-pprint/2019-10-07/cl-wadler-pprint-20191007-git.tgz 4900 030262f0ac47b84a4cfbfa3e423b7eee c68f97c39c540a1bcd35023df432e026b651ded3 cl-wadler-pprint-20191007-git cl-wadler-pprint.asd
cl-wav http://beta.quicklisp.org/archive/cl-wav/2018-01-31/cl-wav-20180131-git.tgz 3469 c487c47fb702747ad1e0faffe5b7d388 b45d07885c30d4205d3d952b3a20ead799574b2e cl-wav-20180131-git cl-wav.asd
cl-wave-file-writer http://beta.quicklisp.org/archive/cl-wave-file-writer/2021-01-24/cl-wave-file-writer-quickload-current-release-1964dd7f-git.tgz 5181 a4241e18c093f2799ad7de9c7a7e94b8 a272b5b5cfe988ba0902e04addd54674dd1e7054 cl-wave-file-writer-quickload-current-release-1964dd7f-git cl-wave-file-writer.asd
cl-wavelets http://beta.quicklisp.org/archive/cl-wavelets/2020-12-20/cl-wavelets-20201220-git.tgz 685912 17c3344b0668198e0d8a2f85b8014644 5ee72f1a2db6d71c662328109003b24c08606737 cl-wavelets-20201220-git cl-wavelets.asd
cl-wayland http://beta.quicklisp.org/archive/cl-wayland/2019-03-07/cl-wayland-20190307-git.tgz 44560 31887db1bf34dcf36f3978c8004d4e0f 9a189cafa43b0da7d79a9421afa30bebbf7db6ec cl-wayland-20190307-git cl-wayland.asd
cl-weather-jp http://beta.quicklisp.org/archive/cl-weather-jp/2016-02-08/cl-weather-jp-20160208-git.tgz 3398 705667b6c865f440d1667ccc5f83a8fb 3c40d7f65d92a9485ec4bb8e89c0d0af8d5e73c3 cl-weather-jp-20160208-git cl-weather-jp-test.asd cl-weather-jp.asd
cl-webdav http://beta.quicklisp.org/archive/cl-webdav/2017-08-30/cl-webdav-20170830-git.tgz 77311 9b5b1bbe0b24734a652a464f6924a019 68cbdcabb6c6e8c61ff4757554efa3e83af3e2a1 cl-webdav-20170830-git cl-webdav.asd
cl-webkit http://beta.quicklisp.org/archive/cl-webkit/2021-05-31/cl-webkit-20210531-git.tgz 22141 50733d74899a6d653759ef03a867d717 13a9b9bcf7ceb13c1b569abb8e42df735e1cf32a cl-webkit-20210531-git webkit2/cl-webkit2.asd
cl-who http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz 24786 e5bb2856ed62d76528e4cef7b5e701c0 5ef6d9b6609320a8f11655194b9139f5e0a1555a cl-who-20190710-git cl-who.asd
cl-why http://beta.quicklisp.org/archive/cl-why/2018-02-28/cl-why-20180228-git.tgz 25872 00a337f35a516372da41415d25fb879b 86790d0b92642b89a6fde16249597db175cfb407 cl-why-20180228-git cl-why.asd
cl-wordcut http://beta.quicklisp.org/archive/cl-wordcut/2016-04-21/cl-wordcut-20160421-git.tgz 301706 1f251cf2df7f1946887d09c82e3ce968 4b7bbb407529d93d44f9799646a19301c9a81826 cl-wordcut-20160421-git cl-wordcut.asd
cl-xdg http://beta.quicklisp.org/archive/cl-xdg/2017-01-24/cl-xdg-20170124-git.tgz 22666 eaf304bd5c23c58f45f161afe180c2d4 dbdcbe7542181ebf9bfde5c57f120543a937911a cl-xdg-20170124-git cl-xdg.asd
cl-xkb http://beta.quicklisp.org/archive/cl-xkb/2018-02-28/cl-xkb-20180228-git.tgz 2792 97ba20ff9ea183afe00ea2cf7e0469f4 1a9f7395f10de77372af1dceee3b930814ae3173 cl-xkb-20180228-git cl-xkb.asd
cl-xkeysym http://beta.quicklisp.org/archive/cl-xkeysym/2014-09-14/cl-xkeysym-20140914-git.tgz 38246 15ad40d06aa25589bdb59ac5ef485b8c 3d95e7111d9560e75772dbdbd6655b917ede6d47 cl-xkeysym-20140914-git cl-xkeysym.asd
cl-xmlspam http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz 10705 6e3a0944e96e17916b1445f4207babb8 82b47ae3227d537486d6bea267c473a068729ecd cl-xmlspam-20101006-http cl-xmlspam.asd
cl-xmpp http://beta.quicklisp.org/archive/cl-xmpp/2010-10-06/cl-xmpp-0.8.1.tgz 15271 303b035edd3bde5aa85c423278298e88 23935110f714202ce650c7e31af12fbbc1f22130 cl-xmpp-0.8.1 cl-xmpp-sasl.asd cl-xmpp-tls.asd cl-xmpp.asd
cl-xul http://beta.quicklisp.org/archive/cl-xul/2016-03-18/cl-xul-20160318-git.tgz 518863 2fbb767b222e632df40a3b7a57aa7f3e 19ad37e6129833ed96d57f92246922462d8f9fb9 cl-xul-20160318-git cl-xul-test.asd cl-xul.asd
cl-yacc http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz 18774 748b9d59de8be3ccfdf0f001e15972ba 7e224cde172cc9db229385fcef1ee411403f9ff6 cl-yacc-20101006-darcs yacc.asd
cl-yaclyaml http://beta.quicklisp.org/archive/cl-yaclyaml/2016-08-25/cl-yaclyaml-20160825-git.tgz 35546 73ddfe97a2b8214e319b366245a216c2 fd3ddd09d55fb1176db7b23f16e3874d6c5018a6 cl-yaclyaml-20160825-git cl-yaclyaml.asd
cl-yahoo-finance http://beta.quicklisp.org/archive/cl-yahoo-finance/2013-03-12/cl-yahoo-finance-20130312-git.tgz 7759 ef1129e9f2bd7afbdde50048db25cc94 9801bb213a303af511c38d63a126b718a2b65085 cl-yahoo-finance-20130312-git cl-yahoo-finance.asd
cl-yaml http://beta.quicklisp.org/archive/cl-yaml/2020-12-20/cl-yaml-20201220-git.tgz 13296 88238b863c6d4f657f4374002bca742f faf7f8c78fb8540cd417331375ecbc5410c9ac88 cl-yaml-20201220-git cl-yaml-test.asd cl-yaml.asd
cl-yesql http://beta.quicklisp.org/archive/cl-yesql/2021-02-28/cl-yesql-20210228-git.tgz 13468 79e3a277000c5c83e8c24f816779e606 5d277fd9d2d00ccabf8d557b6528ca888758feee cl-yesql-20210228-git cl-yesql.asd
cl-zipper http://beta.quicklisp.org/archive/cl-zipper/2020-06-10/cl-zipper-20200610-git.tgz 4193 69142f465d6d2d949699884dd2449843 b4f9c78e07dd1362ef459a4109fc0dbc6d38213a cl-zipper-20200610-git cl-zipper.asd
cl-zmq http://beta.quicklisp.org/archive/cl-zmq/2016-03-18/cl-zmq-20160318-git.tgz 13519 2edc111c3fa50504eb2ef997f9ded9c4 b50410e4f435a9e85b3d91df8101fb2048594ab0 cl-zmq-20160318-git zeromq.asd
cl-zstd http://beta.quicklisp.org/archive/cl-zstd/2021-01-24/cl-zstd-20210124-git.tgz 575175 85b1d223664afa7b87af3d773523d951 91ca4ad9f2713fd76ce2cca5f293a7b9e830f9ed cl-zstd-20210124-git zstd-tests.asd zstd.asd
cl-zyre http://beta.quicklisp.org/archive/cl-zyre/2020-09-25/cl-zyre-20200925-git.tgz 14876 3f92fc184b0aea074a3a6bbd2e09b2d7 357f02010f6d3293263adf3f062dc96fe6cd476d cl-zyre-20200925-git zyre.asd
cl4store http://beta.quicklisp.org/archive/cl4store/2020-03-25/cl4store-20200325-git.tgz 7080 bb3a80be4cb130697cb10704a0b9dc80 a3de4511da49e9fb60e41d9c4f029974e3c06ce6 cl4store-20200325-git cl4store.asd
clache http://beta.quicklisp.org/archive/clache/2017-11-30/clache-20171130-git.tgz 5875 e319e26205af015787e5cd893eeb58cd 2c09d8401c5e225019bb7393ca899e0056f31790 clache-20171130-git clache-test.asd clache.asd
clack http://beta.quicklisp.org/archive/clack/2021-05-31/clack-20210531-git.tgz 194303 aa87cbdc81f86c351789fcbabc0d6254 e03dd746f6e3b0d519fcf371a78cb6e96533710c clack-20210531-git clack-handler-fcgi.asd clack-handler-hunchentoot.asd clack-handler-toot.asd clack-handler-wookie.asd clack-socket.asd clack-test.asd clack-v1-compat.asd clack.asd t-clack-handler-fcgi.asd t-clack-handler-hunchentoot.asd t-clack-handler-toot.asd t-clack-handler-wookie.asd t-clack-v1-compat.asd v1-compat/clack-middleware-auth-basic.asd v1-compat/clack-middleware-clsql.asd v1-compat/clack-middleware-csrf.asd v1-compat/clack-middleware-dbi.asd v1-compat/clack-middleware-oauth.asd v1-compat/clack-middleware-postmodern.asd v1-compat/clack-middleware-rucksack.asd v1-compat/clack-session-store-dbi.asd v1-compat/t-clack-middleware-auth-basic.asd v1-compat/t-clack-middleware-csrf.asd
clack-errors http://beta.quicklisp.org/archive/clack-errors/2019-08-13/clack-errors-20190813-git.tgz 278838 bbae5cf71b4d95e5dbb51c1b8cc11ff0 35df80382645afdbc51214118d2542bd446e3e6a clack-errors-20190813-git clack-errors-demo.asd clack-errors-test.asd clack-errors.asd lack-middleware-clack-errors.asd
clack-pretend http://beta.quicklisp.org/archive/clack-pretend/2021-05-31/clack-pretend-20210531-git.tgz 7036 a39b8576f3c56a298976d3a72b08ff33 82736cc5ef81b78d4d788c8bb24542e69aa9a500 clack-pretend-20210531-git clack-pretend.asd
clack-static-asset-middleware http://beta.quicklisp.org/archive/clack-static-asset-middleware/2016-06-28/clack-static-asset-middleware-20160628-git.tgz 21786 9ee4736d1d084e1481454454a019b6fc 646c3fe12943be8d595913db958b2bc9bdcbaefe clack-static-asset-middleware-20160628-git clack-static-asset-djula-helpers.asd clack-static-asset-middleware-test.asd clack-static-asset-middleware.asd
clad http://beta.quicklisp.org/archive/clad/2020-06-10/clad-20200610-git.tgz 2565 9526c8d422e567126103b6862c84da29 863e04ffc354c5bbb8ec33ffdbb3cfc333b7862b clad-20200610-git clad.asd
class-options http://beta.quicklisp.org/archive/class-options/2020-10-16/class-options_1.0.1.tgz 6926 6a11f6d5e892755f2e1bbac090d9ead0 774b7e9a97649a231da89bd4c2a6335dcc018adb class-options_1.0.1 class-options.asd tests/class-options_tests.asd
classimp http://beta.quicklisp.org/archive/classimp/2020-03-25/classimp-20200325-git.tgz 35560 56551bf063f1a1fcf6c9be351ec9609e ad53d09ba54dd7af8be8548816265f96b43f013d classimp-20200325-git classimp-samples.asd classimp.asd
classowary http://beta.quicklisp.org/archive/classowary/2019-10-07/classowary-20191007-git.tgz 24900 a2587986780a40251b0327686b817cc6 cce68e75254543ae11458499c408544f67dda874 classowary-20191007-git classowary-test.asd classowary.asd
clast http://beta.quicklisp.org/archive/clast/2021-01-24/clast-20210124-git.tgz 56441 2c3a1529e4ab0df78643eddae6a24cb6 e6db63339b92a2c768d5af9d5dedb49150b61bcb clast-20210124-git clast.asd
clath http://beta.quicklisp.org/archive/clath/2021-05-31/clath-20210531-git.tgz 14207 f0902d90980482db4d72b145b650e51a 9db5fa0d9cd31d3741db0bae7f07b20cc0dc2089 clath-20210531-git clath.asd
clavatar http://beta.quicklisp.org/archive/clavatar/2012-10-13/clavatar-20121013-git.tgz 3375 2861593e34c92b4faa7edb77be6044bb caf33a796f42b398be84fb304753622550cd41f1 clavatar-20121013-git clavatar.asd
clavier http://beta.quicklisp.org/archive/clavier/2021-05-31/clavier-20210531-git.tgz 7137 f58e50525086be4db8cd28f9beb917f4 9ee60bda35b3332e03cd20302fcd7e8e856c2653 clavier-20210531-git clavier.asd clavier.test.asd
claw http://beta.quicklisp.org/archive/claw/2020-10-16/claw-stable-git.tgz 32500 cbb451472355ace1f0a5da720075e68f 77af6d65748418ca4cf0548bee926d58e5b8c62f claw-stable-git claw.asd
claw-olm http://beta.quicklisp.org/archive/claw-olm/2021-05-31/claw-olm-20210531-git.tgz 544512 a74d3c601f08d60d974587a8f28ec1ea d50b09adbbf50d91790797435d4b73b1d2a3995a claw-olm-20210531-git claw-olm-bindings.asd claw-olm.asd
claw-support http://beta.quicklisp.org/archive/claw-support/2020-10-16/claw-support-stable-git.tgz 1324 e7985725534a250acfa8ebebc9074ba5 d68ba98fca32cd626abbb5337de70a4a6004f199 claw-support-stable-git claw-support.asd
claw-utils http://beta.quicklisp.org/archive/claw-utils/2020-10-16/claw-utils-stable-git.tgz 2216 747e03cc466a4dca2635fa67531dd22d 8952fdc7a383ef498bd223c4a1020fc7a5de951c claw-utils-stable-git claw-utils.asd
clawk http://beta.quicklisp.org/archive/clawk/2020-09-25/clawk-20200925-git.tgz 13899 bea0a80473ce5ca78127a413f43dc8a5 6e4de57cf4c147884d6364b7dff5b94d4d2635d2 clawk-20200925-git clawk.asd
clazy http://beta.quicklisp.org/archive/clazy/2020-02-18/clazy-20200218-git.tgz 23929 9901c036dc82cbf429ea5d5475073292 46e08690a0e46d9daa5033231ca57eb0ad97ad6f clazy-20200218-git clazy.asd
clem http://beta.quicklisp.org/archive/clem/2020-02-18/clem-20200218-git.tgz 84578 f7c07eba360bcd04dedee410c96b9bdf c7f46f464723bf2a3d0449e64f36cdea50a4f957 clem-20200218-git clem-benchmark.asd clem-test.asd clem.asd
cleric http://beta.quicklisp.org/archive/cleric/2020-09-25/cleric-20200925-git.tgz 19734 f47151385e03d3685f0578ee04e27ab8 1226afbf0cd42110008438f9f283d3c52b2bfc46 cleric-20200925-git cleric.asd
clesh http://beta.quicklisp.org/archive/clesh/2020-12-20/clesh-20201220-git.tgz 8029 c9060b2d87d468ed51e0bfd232a62acb 98e901f1b3c3464b81affeca3d5860cd1584ee3f clesh-20201220-git clesh-tests.asd clesh.asd
cletris http://beta.quicklisp.org/archive/cletris/2015-10-31/cletris-20151031-git.tgz 190792 d5b1f4c3a76675498491d191cadc7414 13e5975c8e01aedc97e4d14e5c1355e06c1fa6da cletris-20151031-git cletris-network.asd cletris-test.asd cletris.asd
clfswm http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz 282721 dc976785ef899837ab0fc50a4ed6b740 f745e9682f549b4d92d31e3e7fcec68d561af370 clfswm-20161204-git clfswm.asd
clhs http://beta.quicklisp.org/archive/clhs/2015-04-07/clhs-0.6.3.tgz 2238743 37b804be8696e555a74f240ebc17bbc6 f1c4c385996573194e15316c2f4167f6d3998859 clhs-0.6.3 clhs.asd
clickr http://beta.quicklisp.org/archive/clickr/2014-07-13/clickr-20140713-git.tgz 23238 264cae768921c6e264d909bb4c40e873 af914f21f5a5cac958bfd57128000580dab268e5 clickr-20140713-git clickr.asd
clim-widgets http://beta.quicklisp.org/archive/clim-widgets/2020-07-15/clim-widgets-20200715-git.tgz 14684 91edd0cf2cc9d7ced786e7e470082d9d 41bbaa57d7f90c9656a5d0cd60f1ce2f2e78d608 clim-widgets-20200715-git clim-widgets.asd
climacs http://beta.quicklisp.org/archive/climacs/2020-09-25/climacs-20200925-git.tgz 112429 37ba98906968c291fb70347ec98ab950 7d75e1385a9eadae7dac2b0dce9ea9f806c23d80 climacs-20200925-git climacs.asd
climc http://beta.quicklisp.org/archive/climc/2015-09-23/climc-20150923-git.tgz 214296 c6ada8af39d27cf972f269fb2b0e3778 47cb3636d8a6bef908a58b6662d1020bbe6bf40a climc-20150923-git climc-test.asd climc.asd
climon http://beta.quicklisp.org/archive/climon/2015-10-31/climon-20151031-git.tgz 1005444 8e47631f5e0f6157e6581e746c5d3edf 6d02953a6250f423579e25efd65c1b5d2f1b6cec climon-20151031-git climon-test.asd climon.asd
clinch http://beta.quicklisp.org/archive/clinch/2018-02-28/clinch-20180228-git.tgz 15291213 26477d753d550ae020ae95c60315d8b3 232f53345667193c6f4899ab6322d31066e31eef clinch-20180228-git clinch-cairo.asd clinch-classimp.asd clinch-freeimage.asd clinch-pango.asd clinch.asd
clinenoise http://beta.quicklisp.org/archive/clinenoise/2020-04-27/clinenoise-20200427-git.tgz 5585 026cb7956427be3a2162254efc33ef84 c0980cd123589fdbcfeabf4d6c8f3e621c431042 clinenoise-20200427-git clinenoise.asd
clip http://beta.quicklisp.org/archive/clip/2020-04-27/clip-20200427-git.tgz 23240 05941bcfb87e5c42e40529bae72242f4 3d85be0dda3d432010ece60e08dea3086d87def8 clip-20200427-git clip.asd
clipper http://beta.quicklisp.org/archive/clipper/2015-09-23/clipper-20150923-git.tgz 30698 a8d3f3fa89f2d31dd864a55a93604973 d45c4f34e7ea6db2ad08811d2f2b104dd9e5afbc clipper-20150923-git clipper-test.asd clipper.asd
clite http://beta.quicklisp.org/archive/clite/2013-06-15/clite-20130615-git.tgz 4207 e9ec17416118a4bc561b7ac0b1c8fe55 a33f68199901025b79110bb113ac204b47008231 clite-20130615-git clite.asd
clj http://beta.quicklisp.org/archive/clj/2020-12-20/clj-20201220-git.tgz 7182 3df8450abb46784a191b4ab5f9ab4cc9 f6ad8174a9020a000e5eab76fccd1c69633c616d clj-20201220-git clj.asd
clml http://beta.quicklisp.org/archive/clml/2020-12-20/clml-20201220-git.tgz 1029214 7d23aaa7bddf9c1934d36ee78fc55657 30f7bfc4e0d2ce8d53783d2139ea973f4a1ef4b2 clml-20201220-git addons/fork-future/fork-future.asd addons/future/future.asd association-rule/clml.association-rule.asd blas/clml.blas.asd blas/f2cl-lib.asd classifiers/clml.classifiers.asd clml.asd clustering/clml.clustering.asd data/clml.data.asd data/r-datasets/clml.data.r-datasets.asd decision-tree/clml.decision-tree.asd docs/clml.docs.asd graph/clml.graph.asd hjs/clml.hjs.asd lapack/clml.lapack.asd nearest-search/clml.nearest-search.asd nonparametric/clml.nonparametric.asd numeric/clml.numeric.asd pca/clml.pca.asd som/clml.som.asd statistics/clml.statistics.asd statistics/clml.statistics.rand.asd svm/clml.svm.asd test/clml.test.asd text/clml.text.asd time-series/clml.time-series.asd utility/clml.utility.asd
clnuplot http://beta.quicklisp.org/archive/clnuplot/2013-01-28/clnuplot-20130128-darcs.tgz 31274 0e5dccbbbe3408b3e0aebf639691c6a0 6a2749d3b7ef6bd1325b92160bb9eee35f099c96 clnuplot-20130128-darcs clnuplot.asd
clobber http://beta.quicklisp.org/archive/clobber/2019-05-21/clobber-20190521-git.tgz 6301 2a2d5490aa21ed847eff57bae8148582 f26247f00fc4821bb9a71756359ea4c78515d52c clobber-20190521-git clobber.asd
clod http://beta.quicklisp.org/archive/clod/2019-03-07/clod-20190307-hg.tgz 98259 df582b015aa80397402eee3bb5a13288 c3bc36581145c5abc6126b2c3ba88386f6ba7876 clod-20190307-hg clod.asd
clods-export http://beta.quicklisp.org/archive/clods-export/2021-04-11/clods-export-20210411-git.tgz 20257 04128d9dcd96f53fb5436025f1bba92f 63776b859dc3ca9b48f8faaeb1e44ebd0e802c3e clods-export-20210411-git clods-export.asd
clog http://beta.quicklisp.org/archive/clog/2021-05-31/clog-20210531-git.tgz 9621782 2590ffacdb372eb3b2c77ca6f73a2fc1 f5d70163fcec0908f9c79e31a187344f6a83b7ba clog-20210531-git clog.asd tutorial/13-tutorial/hello-clog/hello-clog.asd
clonsigna http://beta.quicklisp.org/archive/clonsigna/2012-09-09/clonsigna-20120909-git.tgz 42948 3ae74680c33dfd5880914dac3873357c 11bf0a3df0e3309a054015629c01a282148208e5 clonsigna-20120909-git clonsigna.asd
clos-diff http://beta.quicklisp.org/archive/clos-diff/2015-06-08/clos-diff-20150608-git.tgz 14486 88dbce5dc199deb2ee44e7cb73946db0 8825ffc50639addefd79f604addcacf17309f512 clos-diff-20150608-git clos-diff.asd
clos-fixtures http://beta.quicklisp.org/archive/clos-fixtures/2016-08-25/clos-fixtures-20160825-git.tgz 2687 68898ca907a135d733ecdadb3f8b5723 75e8f147882b9e7fb56519a8c8a91d00798b1df7 clos-fixtures-20160825-git clos-fixtures-test.asd clos-fixtures.asd
closer-mop http://beta.quicklisp.org/archive/closer-mop/2021-05-31/closer-mop-20210531-git.tgz 23629 2f329c959570297adc1b35821440b78b 15bd04b6726e38b8fff3fcf1e8c5529a9450f7d2 closer-mop-20210531-git closer-mop.asd
closure-common http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz 27833 b09ee60c258a29f0c107960ec4c04ada 42e2f882070d49d3224c15a304354afb29f97841 closure-common-20181018-git closure-common.asd
closure-html http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz 103413 461dc8caa65385da5f2d1cd8dd4f965f d8e52dc5d129aec699cd405c14a9080d01199506 closure-html-20180711-git closure-html.asd
clouchdb http://beta.quicklisp.org/archive/clouchdb/2012-04-07/clouchdb_0.0.16.tgz 33759 d39f8e71a5e1954b40af4291f0c05757 7d254f6edf1a28300e4c4c3fa387b4cfcdf24b28 clouchdb_0.0.16 clouchdb-examples.asd clouchdb.asd
clsql http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz 971066 d32b2b37e4211f5da61d2e29847a2f12 3a12358697a5eebd89cbed7b9d4f2e764a3da3cd clsql-20210228-git clsql-aodbc.asd clsql-cffi.asd clsql-mysql.asd clsql-odbc.asd clsql-postgresql-socket.asd clsql-postgresql-socket3.asd clsql-postgresql.asd clsql-sqlite.asd clsql-sqlite3.asd clsql-tests.asd clsql-uffi.asd clsql.asd
clsql-fluid http://beta.quicklisp.org/archive/clsql-fluid/2017-08-30/clsql-fluid-20170830-git.tgz 4361 cd6191a16e81af2670f3ed84b29995b8 af7e03aca8277efe730c86075f3587be71a357c1 clsql-fluid-20170830-git clsql-fluid.asd
clsql-helper http://beta.quicklisp.org/archive/clsql-helper/2018-01-31/clsql-helper-20180131-git.tgz 31200 e3040bc42b24c8b0845abcd4a74d3db4 b92225c63d358fac585ce63bc132cca4bac1f50c clsql-helper-20180131-git clsql-helper-slot-coercer.asd clsql-helper.asd
clsql-local-time http://beta.quicklisp.org/archive/clsql-local-time/2020-10-16/clsql-local-time-20201016-git.tgz 1701 ca6740fcc92f763f43b5a10c22539bfe 5dd91bdf72f41cada66e890bc661ad1355d03de2 clsql-local-time-20201016-git clsql-local-time.asd
clsql-orm http://beta.quicklisp.org/archive/clsql-orm/2016-02-08/clsql-orm-20160208-git.tgz 19760 40b31c2bfbf7b27f35b362fc4cffb6bf 4d07a98d77328076b0844f4708c56087f5618426 clsql-orm-20160208-git clsql-orm.asd
clss http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz 20000 9910677b36df00f3046905a9b84122a9 440121bc862ddcd72c421df4ade798ecfb26242a clss-20191130-git clss.asd
cltcl http://beta.quicklisp.org/archive/cltcl/2016-12-04/cltcl-20161204-git.tgz 338065 bb57496aeea233c7adb04e3bb6eca551 8d9140fafe4658324f8b354159cdef6d8c9d174b cltcl-20161204-git cltcl.asd
cluffer http://beta.quicklisp.org/archive/cluffer/2021-04-11/cluffer-20210411-git.tgz 102212 55be1f270ffcf51a4686208c54e4e504 a2e56d1b81a3a56cce6a09987ec7986fa70837f4 cluffer-20210411-git Base/cluffer-base.asd Simple-buffer/cluffer-simple-buffer.asd Simple-line/cluffer-simple-line.asd Standard-buffer/cluffer-standard-buffer.asd Standard-line/cluffer-standard-line.asd Test/cluffer-test.asd cluffer.asd
clump http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz 25593 5132d2800138d435ef69f7e68b025c8f 68760a1e2e6e28ecf8f45e5b766774bc3a18e369 clump-20160825-git 2-3-tree/clump-2-3-tree.asd Binary-tree/clump-binary-tree.asd Test/clump-test.asd clump.asd
clunit http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz 76811 389017f2f05a6287078ddacd0471817e 26340b858b8c784b90cda75ab57470410507d191 clunit-20171019-git clunit.asd
clunit2 http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz 79077 7f977b33550c689d1d2cf2c8a4610896 a0468c8f417db0961d95585d0d5a3498bc6ead31 clunit2-20201016-git clunit2.asd
clweb http://beta.quicklisp.org/archive/clweb/2020-12-20/clweb-20201220-git.tgz 141039 757653ad57dd52eaacc619f4992d5f3f 42bb418e8d07ed10be040b30bb0a7fb491196d8b clweb-20201220-git clweb.asd
clws http://beta.quicklisp.org/archive/clws/2013-08-13/clws-20130813-git.tgz 32371 11a801aadeda244b749c2b36a19b9af9 521463b0aef355a1307f911327fee5ed5d65854d clws-20130813-git clws.asd
clx http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz 459198 c0e08c88e78587bdbbbea188848dc39d f190feb5a05754f005653dace93001ce3d5b9f23 clx-20200715-git clx.asd
clx-xembed http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz 21169 11d35eeb734c0694005a5e5cec4cad22 27ec06dc8e843deb1fd1b01058e78627e5dbf424 clx-xembed-20191130-git xembed.asd
clx-xkeyboard http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz 47002 4e382b34e05d33f5de8e9c9dea33131c f18ddbbf8f7e5222cb44e2543386a8efd49abb7c clx-xkeyboard-20120811-git xkeyboard.asd
cmake-parser http://beta.quicklisp.org/archive/cmake-parser/2018-08-31/cmake-parser-20180831-git.tgz 5470 901e49335a490ad419aec7bcd4493d47 adc648f94bfc8e9e0834075e88f4098dafd9e982 cmake-parser-20180831-git cmake-parser.asd
cmd http://beta.quicklisp.org/archive/cmd/2021-05-31/cmd-20210531-git.tgz 8583 e2f64642528b368110af5fcb7bf66407 fde779fb51e189abbd34cd5307e4849d661fd867 cmd-20210531-git cmd.asd
cmu-infix http://beta.quicklisp.org/archive/cmu-infix/2018-02-28/cmu-infix-20180228-git.tgz 22615 6baab7e8fdbb211c1b1622073b9521c9 408f16c7594f02f53e39ea8b7684721d12406435 cmu-infix-20180228-git cmu-infix-tests.asd cmu-infix.asd
codata-recommended-values http://beta.quicklisp.org/archive/codata-recommended-values/2020-02-18/codata-recommended-values-20200218-git.tgz 364817 d8f489d65671735ec30f0353461f74d1 a6285062e4811d70a0aa3a8322c7b1888b27b538 codata-recommended-values-20200218-git codata-recommended-values.asd
codex http://beta.quicklisp.org/archive/codex/2018-12-10/codex-20181210-git.tgz 185947 7c33d0361d2e50d968aade71461443f4 7d7ee6fbc90ecdaa755d4f2f1b986d24d03ff912 codex-20181210-git codex-templates.asd codex.asd
coleslaw http://beta.quicklisp.org/archive/coleslaw/2021-05-31/coleslaw-20210531-git.tgz 167155 687360c671bc73369476c81c7ad0c1dd 698abe49df2cb512e5541fb1de301d1930c30fb7 coleslaw-20210531-git coleslaw-cli.asd coleslaw-test.asd coleslaw.asd
collectors http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz 10522 59c8c885a8e512d4f09e73d3e0c97b1f 1e386552e3b2900580e3972c46152fb776dcc28a collectors-20161204-git collectors.asd
colleen http://beta.quicklisp.org/archive/colleen/2018-10-18/colleen-20181018-git.tgz 145758 b20ec13f6a9612e0f496af7eccb24f54 950fa71177e3966ae52eb7a986d9ceeeb5e117ed colleen-20181018-git colleen.asd
colliflower http://beta.quicklisp.org/archive/colliflower/2015-12-18/colliflower-20151218-git.tgz 24042 68f0d511fe9429919859b184e6b564e1 c02b61ea1e6f1732201ce36d3718c3eab9bce190 colliflower-20151218-git colliflower-test.asd colliflower.asd contrib/fset/colliflower-fset.asd garten/garten.asd liter/liter.asd silo/silo.asd
colored http://beta.quicklisp.org/archive/colored/2020-12-20/colored-20201220-git.tgz 24326 3bbc8a22275d817284ae3184b6233e49 c0bc455b9cd736a2d7536e363120ec26c0b4c5a8 colored-20201220-git colored-test.asd colored.asd
colorize http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz 39488 1bc08c8f76b747e4d254669a205dc611 e0658fa18ae562a802f987eff7f16a8bc78906f8 colorize-20180228-git colorize.asd
com-on http://beta.quicklisp.org/archive/com-on/2020-10-16/com-on-20201016-git.tgz 18630 5ee6960555f1d0888748e93bdbc021d5 838accfa84074650eeae8a3dcf878882b51ba72d com-on-20201016-git com-on-test.asd com-on.asd
com.clearly-useful.generic-collection-interface http://beta.quicklisp.org/archive/com.clearly-useful.generic-collection-interface/2019-07-10/com.clearly-useful.generic-collection-interface-20190710-git.tgz 14043 b22496129d4171c50de7ab85da024cc0 0dac346508bb07e3237054a0554c2c6d28153020 com.clearly-useful.generic-collection-interface-20190710-git com.clearly-useful.generic-collection-interface.asd com.clearly-useful.generic-collection-interface.test.asd
com.clearly-useful.iterate-plus http://beta.quicklisp.org/archive/com.clearly-useful.iterate-plus/2012-10-13/com.clearly-useful.iterate-plus-20121013-git.tgz 1981 691606442da9344a1b871a986dc83a42 c7a315d2b09d7666def427dc37cad324317caf51 com.clearly-useful.iterate-plus-20121013-git com.clearly-useful.iterate+.asd
com.clearly-useful.iterator-protocol http://beta.quicklisp.org/archive/com.clearly-useful.iterator-protocol/2013-03-12/com.clearly-useful.iterator-protocol-20130312-git.tgz 2846 b6219074982d29677ebf5a7ae1b5a22e 5f9051fdccbd78f3c919112a67acf80587c921d9 com.clearly-useful.iterator-protocol-20130312-git com.clearly-useful.iterator-protocol.asd
com.clearly-useful.protocols http://beta.quicklisp.org/archive/com.clearly-useful.protocols/2013-03-12/com.clearly-useful.protocols-20130312-git.tgz 8625 7a230b991c6f410f2f1f1cc016aa3ae1 174ae8cc771b48bc36f4ae2ee3dfb80fef266d60 com.clearly-useful.protocols-20130312-git com.clearly-useful.protocols.asd
com.google.base http://beta.quicklisp.org/archive/com.google.base/2020-09-25/com.google.base-20200925-git.tgz 7337 ba324012a79d55a6580a6ff84b3f8f88 412c71519922fde0636a7e500cba778d2a67d040 com.google.base-20200925-git com.google.base.asd
command-line-arguments http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz 11935 5a860667bc3feef212028b90c9e026f8 194c852e006698f49518aa11541a5c8503ba44c1 command-line-arguments-20200325-git command-line-arguments.asd
common-doc http://beta.quicklisp.org/archive/common-doc/2016-04-21/common-doc-20160421-git.tgz 51299 516b26eb281a2c7a13161eb2346915f8 1a70ab2230e492f5f3a0bfb6ad8adc3a25332537 common-doc-20160421-git common-doc-contrib.asd common-doc-gnuplot.asd common-doc-graphviz.asd common-doc-include.asd common-doc-split-paragraphs.asd common-doc-test.asd common-doc-tex.asd common-doc.asd
common-doc-plump http://beta.quicklisp.org/archive/common-doc-plump/2016-04-21/common-doc-plump-20160421-git.tgz 6172 5e53d47b0bb2ad2d5bc1d6686b1446ba dc865b5fd8705da9ddbb20a44742ec5454679e12 common-doc-plump-20160421-git common-doc-plump-test.asd common-doc-plump.asd
common-html http://beta.quicklisp.org/archive/common-html/2016-04-21/common-html-20160421-git.tgz 7660 ab70df0dff34edb91d21b9eca3d5ba68 79ba08f283f191a1deeb0952447daded2e44cddf common-html-20160421-git common-html-test.asd common-html.asd
common-lisp-actors http://beta.quicklisp.org/archive/common-lisp-actors/2019-11-30/common-lisp-actors-20191130-git.tgz 4753 890e04c2f7df07e7180cbc7d81ed7bb5 5e927cacbb0fa3a49605423ca50b41626c1af00b common-lisp-actors-20191130-git cl-actors.asd
common-lisp-jupyter http://beta.quicklisp.org/archive/common-lisp-jupyter/2021-05-31/common-lisp-jupyter-20210531-git.tgz 198460 b193ab5eb2fc46df5acfae7659677247 08c5272c022b8955b2746f456ca37d9db9e8c07d common-lisp-jupyter-20210531-git common-lisp-jupyter.asd
commonqt http://beta.quicklisp.org/archive/commonqt/2020-09-25/commonqt-20200925-git.tgz 61693 2ed2dc0941ea052292348edb07a437f4 408ada31e6aa4ac05792fdb8871459ab6f6eef08 commonqt-20200925-git qt+libs.asd qt-repl.asd qt-test.asd qt-tutorial.asd qt.asd
compatible-metaclasses http://beta.quicklisp.org/archive/compatible-metaclasses/2020-09-25/compatible-metaclasses_1.0.tgz 6709 3b57508fe1be7eb389f8425b48be448a 10bf357724f7981b49ebf9486d2cf26255e2aedc compatible-metaclasses_1.0 compatible-metaclasses.asd tests/compatible-metaclasses_tests.asd
computable-reals http://beta.quicklisp.org/archive/computable-reals/2021-04-11/computable-reals-20210411-git.tgz 8812 a84da8fbba157f3f00166d264157471b f7b498c443446c2f13414030fdf3c9b69251f557 computable-reals-20210411-git computable-reals.asd
concrete-syntax-tree http://beta.quicklisp.org/archive/concrete-syntax-tree/2021-04-11/concrete-syntax-tree-20210411-git.tgz 46793 fb339bbfdd18bb5bbc6bcf3ca8d627a5 47aa3abbcdf52adb49fb860b1db5a1d6c6b3ed73 concrete-syntax-tree-20210411-git Destructuring/concrete-syntax-tree-destructuring.asd Lambda-list/Test/concrete-syntax-tree-lambda-list-test.asd Lambda-list/concrete-syntax-tree-lambda-list.asd Source-info/concrete-syntax-tree-source-info.asd concrete-syntax-tree-base.asd concrete-syntax-tree.asd
conduit-packages http://beta.quicklisp.org/archive/conduit-packages/2020-12-20/conduit-packages-20201220-git.tgz 9837 2c846ac8154c826a1a0cb184db7ea8f2 35983ed860a0c96dfdf4d6c53216051105c4be9f conduit-packages-20201220-git org.tfeb.conduit-packages.asd
conf http://beta.quicklisp.org/archive/conf/2019-12-27/conf-20191227-git.tgz 15652 8b1e1498234b7b4d3ca9cd2f52b66415 9a5e80439fbb82d433465c632c8f901613a4baf5 conf-20191227-git conf.asd
configuration.options http://beta.quicklisp.org/archive/configuration.options/2021-05-31/configuration.options-20210531-git.tgz 126580 4c912b6ef72e59284046fb6a678c9b51 d46ecd01a662a3444f659458e9f88380030f36d2 configuration.options-20210531-git configuration.options-and-mop.asd configuration.options-and-puri.asd configuration.options-and-quri.asd configuration.options-and-service-provider.asd configuration.options-syntax-ini.asd configuration.options-syntax-xml.asd configuration.options.asd
conium http://beta.quicklisp.org/archive/conium/2021-01-24/conium-20210124-git.tgz 146024 9ff2ae398571ef088aea6d702c01af54 69859c26e3c2a01838d75ab1da54ba992d66165d conium-20210124-git conium.asd
consfigurator http://beta.quicklisp.org/archive/consfigurator/2021-05-31/consfigurator-v0.7.0.tgz 123207 3fe09b481cd57790a13726a2772f7c6d 75992d530e9b7aa1ca867af4d7d1c0cc38ff9654 consfigurator-v0.7.0 consfigurator.asd
consix http://beta.quicklisp.org/archive/consix/2020-12-20/consix-20201220-git.tgz 15301 149a8f0f26aa7feca43c5b3b8c8226f4 b8d5e5a7cc28c315f87afc79c8ed5baeac3fad90 consix-20201220-git consix.asd
constantfold http://beta.quicklisp.org/archive/constantfold/2019-12-27/constantfold-20191227-git.tgz 135729 e9e0021014c6f27280264be16166fee7 378cbed129d745f65125c9f3931f350e92d61c22 constantfold-20191227-git constantfold.asd constantfold.test.asd
context-lite http://beta.quicklisp.org/archive/context-lite/2021-05-31/context-lite-20210531-git.tgz 11111 34f3625d43257d42c3ecf42dd84cd5bb 124550f0d810e493093a1dab3ba0a6897fee3e63 context-lite-20210531-git context-lite.asd
contextl http://beta.quicklisp.org/archive/contextl/2020-02-18/contextl-20200218-git.tgz 26396 d168ead56ffeee8bd9803a9f8d67d283 7e66daba4ef6ac2c2d2ea0fdfa1b40fffa39b3a8 contextl-20200218-git contextl.asd dynamic-wind.asd
copy-directory http://beta.quicklisp.org/archive/copy-directory/2016-06-28/copy-directory-20160628-git.tgz 2462 b82455b6979b785df488f990e156aa2b fe74b777a2f899c84de338f3c96b732cc1e2d06c copy-directory-20160628-git copy-directory-test.asd copy-directory.asd
core http://beta.quicklisp.org/archive/core/2021-02-28/core-20210228-git.tgz 14197 6801e17a16ed1537588a23eac014b447 c517ad996aea1741d6e40b99fbe9dbd38e4e6df7 core-20210228-git issr-core.asd
core-reader http://beta.quicklisp.org/archive/core-reader/2020-06-10/core-reader-20200610-git.tgz 3879 06aeb354a053878ca85487e5091abdf3 9fe456c9b67eaf030c966afedfdb3227c1b8ab8c core-reader-20200610-git core-reader.asd spec/core-reader.test.asd
corona http://beta.quicklisp.org/archive/corona/2020-12-20/corona-20201220-git.tgz 12735 041641348ac440becb082bcfdbbd92b4 431b2bf93cd9d11ac1443a35eb0449efe65bcc25 corona-20201220-git corona-test.asd corona-web.asd corona.asd
cover http://beta.quicklisp.org/archive/cover/2021-02-28/cover-20210228-git.tgz 17580 8720e075cb81963143f02345b4c8973c 67072c42f8f58093022fbd01d8c91c5924e21136 cover-20210228-git cover.asd
cqlcl http://beta.quicklisp.org/archive/cqlcl/2014-11-06/cqlcl-20141106-git.tgz 11896 2a63a524e1297e6a2577a29d63bd7ea2 7480e139c03880e1e41bca03ae6fde148a1ce161 cqlcl-20141106-git cqlcl.asd
crane http://beta.quicklisp.org/archive/crane/2016-02-08/crane-20160208-git.tgz 20738 df5119bed5754d9f7811efc770c09d47 d438f1997e83f251bb1b61653a2a0e6a08bccbda crane-20160208-git crane-test.asd crane.asd
cricket http://beta.quicklisp.org/archive/cricket/2021-04-11/cricket-20210411-git.tgz 2171401 20027d17f9e4958be88b8c3612612434 49e61fc2904b5abc6662580a3e86c92cfe179742 cricket-20210411-git cricket.asd cricket.test.asd
croatoan http://beta.quicklisp.org/archive/croatoan/2021-05-31/croatoan-20210531-git.tgz 165050 977a6eedcda75a68fbd8c248b1c7745f c86142c7987812323ad0f3f5ebdb1d915bd8bbe5 croatoan-20210531-git ansi-escape-test.asd ansi-escape.asd croatoan-ncurses.asd croatoan-test.asd croatoan.asd
crypto-shortcuts http://beta.quicklisp.org/archive/crypto-shortcuts/2020-10-16/crypto-shortcuts-20201016-git.tgz 7169 141f84864a94c775ff02a3f330687ea9 177f4fd261bff45f6dc2e2ce1578fd6c23a2e7b0 crypto-shortcuts-20201016-git crypto-shortcuts.asd
cserial-port http://beta.quicklisp.org/archive/cserial-port/2020-04-27/cserial-port-20200427-git.tgz 10906 baf848efff4ff8ac5d327af5d5d55770 9d8505f3214137658552bb44387a8dbcdb0de0ae cserial-port-20200427-git cserial-port.asd
css-lite http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz 6073 9b25afb0d2c3f0c32d2303ab1d3f570d 83ad13369198c8170fce93c6171f472fe8d7322a css-lite-20120407-git css-lite.asd
css-selectors http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz 14832 28537144b89af4ebe28c2eb365d5569f 67e31993847a16f20b4eda93e1266644a426ff4c css-selectors-20160628-git css-selectors-simple-tree.asd css-selectors-stp.asd css-selectors.asd
csv http://beta.quicklisp.org/archive/csv/2019-07-10/csv-20190710-git.tgz 14041 cecd51e92195eb497c4b20d82c90930a 18cfd80c132c100ddac12ea2f82e9030783e0649 csv-20190710-git csv.asd
csv-parser http://beta.quicklisp.org/archive/csv-parser/2014-07-13/csv-parser-20140713-git.tgz 5012 d8f43b3da734b63f2064b7cd4c6f7550 033d33a6821c836cce4b2299e5ea688807ea12b3 csv-parser-20140713-git csv-parser.asd
cubic-bezier http://beta.quicklisp.org/archive/cubic-bezier/2021-04-11/cubic-bezier-20210411-git.tgz 4048 8a4b08172d8b79cb291c2bc650b16146 782a95153dddd1ddbef0fe93e7c3a6fb40300dd9 cubic-bezier-20210411-git cubic-bezier.asd
cue-parser http://beta.quicklisp.org/archive/cue-parser/2018-02-28/cue-parser-20180228-git.tgz 6196 a762d2f16148e031ac658c19bc35fe95 dde1439487e627ca02f8d1e9641fbe40696b45bd cue-parser-20180228-git cue-parser.asd
curly http://beta.quicklisp.org/archive/curly/2012-04-07/curly-20120407-git.tgz 4647 abbdcfe5c08ee02a8f9014373db6fd86 adfe3715c7311e6a27755ca3da84155bcf93641a curly-20120407-git curly.asd
curry-compose-reader-macros http://beta.quicklisp.org/archive/curry-compose-reader-macros/2020-12-20/curry-compose-reader-macros-20201220-git.tgz 5042 69aa0c8998dca3713c1b1200e7abbd9c f6c141be656bf9f9a25f57656a3008e0691e5142 curry-compose-reader-macros-20201220-git curry-compose-reader-macros.asd
curve http://beta.quicklisp.org/archive/curve/2013-01-28/curve-20130128-git.tgz 19617 f4c1a224405586a04d65cac6b38a5ccc 000367ed6ad72b814a533a633506ef30fda97271 curve-20130128-git com.elbeno.curve.asd
cxml http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz 155775 0b6f34edb79f7b63cc5855f18d0d66f0 d2c3fabebd0c6f3ebc6e55533e49081d3abecbd9 cxml-20200610-git cxml-dom.asd cxml-klacks.asd cxml-test.asd cxml.asd
cxml-rng http://beta.quicklisp.org/archive/cxml-rng/2019-07-10/cxml-rng-20190710-git.tgz 173375 ac7fb180022392f6cb689509bc14bab3 4cd12475c54fe7f34510a5d1d5b5fdb9c6403443 cxml-rng-20190710-git cxml-rng.asd
cxml-rpc http://beta.quicklisp.org/archive/cxml-rpc/2012-10-13/cxml-rpc-20121013-git.tgz 11422 58bca5e93a2f2eb5a5451e689b590c2b 0ada3a401ef59cbf83f0d4601b206895913711f6 cxml-rpc-20121013-git cxml-rpc.asd
cxml-stp http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz 51687 5622b4aae55e448473f1ba14fa3a5f4c f9945b099f0d192db860252500ab335d21dc60e9 cxml-stp-20200325-git cxml-stp.asd
cytoscape-clj http://beta.quicklisp.org/archive/cytoscape-clj/2021-05-31/cytoscape-clj-20210531-git.tgz 48598 3cf7f2fef25195ebd426094276e85631 1934742d1fe3f4d8b0b3f4e9797e11a055c08cf0 cytoscape-clj-20210531-git cytoscape-clj.asd
daemon http://beta.quicklisp.org/archive/daemon/2017-04-03/daemon-20170403-git.tgz 4007 97d52817fa74191a6a07a49cd4a5b907 542f44f5a01f0d8bde303167edfa73cd2b5473cb daemon-20170403-git daemon.asd
damn-fast-priority-queue http://beta.quicklisp.org/archive/damn-fast-priority-queue/2021-05-31/damn-fast-priority-queue-20210531-git.tgz 11572 fb18720faafadc5d2549f2707b26e213 24952ad62b8465b0fb2f2d131fc0ee1f2e368f23 damn-fast-priority-queue-20210531-git damn-fast-priority-queue/damn-fast-priority-queue.asd damn-fast-stable-priority-queue/damn-fast-stable-priority-queue.asd priority-queue-benchmark/priority-queue-benchmark.asd
dartsclemailaddress http://beta.quicklisp.org/archive/dartsclemailaddress/2016-04-21/dartsclemailaddress-quicklisp-release-48464635-git.tgz 11830 537619b8caa0c43db075a82f732a31ee bc0850e087137a945257bfafdc530b5f256ea5c6 dartsclemailaddress-quicklisp-release-48464635-git darts.lib.email-address-test.asd darts.lib.email-address.asd
dartsclhashtree http://beta.quicklisp.org/archive/dartsclhashtree/2020-03-25/dartsclhashtree-20200325-git.tgz 26714 9cd0709ab0593ae9fc4821de23c54a49 1b1370c90f278369bb788519465a339488e0af4e dartsclhashtree-20200325-git darts.lib.hashtree-test.asd darts.lib.hashtrie.asd darts.lib.wbtree.asd
dartsclmessagepack http://beta.quicklisp.org/archive/dartsclmessagepack/2020-03-25/dartsclmessagepack-20200325-git.tgz 8171 781b1622fbdfdd63a2387ffd8e33e78e b96ad4b4d8dd9b34dc8c13c82e5c3df3122208c3 dartsclmessagepack-20200325-git darts.lib.message-pack-test.asd darts.lib.message-pack.asd
dartsclsequencemetrics http://beta.quicklisp.org/archive/dartsclsequencemetrics/2013-03-12/dartsclsequencemetrics-20130312-git.tgz 8234 2440599722cb58ab64d30a687946166b 2a29fa7b05dff2273678b71dff33d1db79af1ff4 dartsclsequencemetrics-20130312-git darts.lib.sequence-metrics.asd
dartscltools http://beta.quicklisp.org/archive/dartscltools/2020-12-20/dartscltools-20201220-git.tgz 15893 795a82fac00eae77a509e69ddda9a843 82626a8adf65344d4104c94a1d1b845c1ca5840b dartscltools-20201220-git darts.lib.tools.asd darts.lib.tools.test.asd
dartscluuid http://beta.quicklisp.org/archive/dartscluuid/2020-12-20/dartscluuid-20201220-git.tgz 7926 fd53efa37f2163851633243cce91a74d 004fb2f6a159c57b8477bbd711d66381619d6527 dartscluuid-20201220-git darts.lib.uuid-test.asd darts.lib.uuid.asd
data-frame http://beta.quicklisp.org/archive/data-frame/2021-05-31/data-frame-20210531-git.tgz 34528 ed600dffeb584b4fd9209935d2f1e0be c080468f3a70b7a06be8c13239fb5f1caa2da840 data-frame-20210531-git data-frame.asd
data-lens http://beta.quicklisp.org/archive/data-lens/2021-01-24/data-lens-20210124-git.tgz 109655 e531343b5d6e64cba9afd3ae0ac6afc6 880924393b1b617c83fdfcf1b150d2cfacbebab2 data-lens-20210124-git data-lens.asd
data-sift http://beta.quicklisp.org/archive/data-sift/2013-01-28/data-sift-20130128-git.tgz 13070 2d023844d8a181dbbcc69368c3b90a9c 2ca3997e31fd229f29dc332b0a737ab23c62bb62 data-sift-20130128-git data-sift.asd
data-table http://beta.quicklisp.org/archive/data-table/2016-02-08/data-table-20160208-git.tgz 12042 0507150b0fcfdab96e0ef7668d31113c bfa3e175a53bea2d80b7358c7729e944d3781ec8 data-table-20160208-git data-table-clsql.asd data-table.asd
database-migrations http://beta.quicklisp.org/archive/database-migrations/2018-08-31/database-migrations-20180831-git.tgz 3983 2e3f0877c95e8fc8632a9fe7979bfe82 9c364cc2b74d76a3184be7e4a269e156521ae331 database-migrations-20180831-git database-migrations.asd
datafly http://beta.quicklisp.org/archive/datafly/2020-03-25/datafly-20200325-git.tgz 9722 df50fed8e32a0c5505760b9d8ef51fb0 19e26778d1c2202ab4ec2b919ab0218ea7d3f8f0 datafly-20200325-git datafly-test.asd datafly.asd
dataloader http://beta.quicklisp.org/archive/dataloader/2021-05-31/dataloader-20210531-git.tgz 1978244 3d6df6522022c1c059f28b0346781094 bf51e0d48a20f18bfbbfe348b30e692f0f4eaa03 dataloader-20210531-git dataloader.asd dataloader.test.asd
datamuse http://beta.quicklisp.org/archive/datamuse/2020-06-10/datamuse-20200610-git.tgz 6151 49c3cba760c54964a1f6b6abeb2e5b00 a6f5ed0cdcb2f2cf8633150b5e3ab760033145b6 datamuse-20200610-git datamuse.asd
date-calc http://beta.quicklisp.org/archive/date-calc/2019-12-27/date-calc-20191227-git.tgz 10417 fda245d738b350711fb614ba18ee01f4 6e55f21ffcedf6a36c8a212fde29a3ebb9f0ce85 date-calc-20191227-git date-calc.asd
datum-comments http://beta.quicklisp.org/archive/datum-comments/2021-02-28/datum-comments-20210228-git.tgz 8102 8645354f622ea4a2675bdeaa48235487 5830f8ebae8579da885732077a21b7e5b9aab5f6 datum-comments-20210228-git datum-comments.asd
dbus http://beta.quicklisp.org/archive/dbus/2020-06-10/dbus-20200610-git.tgz 23474 421fb481812b2da62fa5ee424f607b12 52a143655cf6676895be6a78f18c04bb0f5d91e0 dbus-20200610-git dbus.asd
de.setf.wilbur http://beta.quicklisp.org/archive/de.setf.wilbur/2018-12-10/de.setf.wilbur-20181210-git.tgz 77937 76864fbe1ad7bdf810efa74e2bb4765e 3a699742b7b8738c9f8cf51f391e9571f74b9f15 de.setf.wilbur-20181210-git src/wilbur.asd
declt http://beta.quicklisp.org/archive/declt/2019-11-30/declt-3.0.tgz 63861 3dff95e04c8e2e5b57ae0635b5cd32ec 519ceaae45727e2d7b982a53b657466714cf33bf declt-3.0 core/net.didierverna.declt.core.asd net.didierverna.declt.asd setup/net.didierverna.declt.setup.asd
deeds http://beta.quicklisp.org/archive/deeds/2020-07-15/deeds-20200715-git.tgz 35037 4bffe3aaab67c607582657da54bf21b1 7ad8982b1ed00528b5e8e273fb549363b8166ca8 deeds-20200715-git deeds.asd
defclass-std http://beta.quicklisp.org/archive/defclass-std/2020-12-20/defclass-std-20201220-git.tgz 8957 b7a3bec06318b10818dc3941d407fe65 793f16213c536268037e80d85a6ee5844550ac5a defclass-std-20201220-git defclass-std-test.asd defclass-std.asd
defconfig http://beta.quicklisp.org/archive/defconfig/2021-05-31/defconfig-20210531-git.tgz 30599 97a6cc5ca812cdf23145bf1b3355b305 2b89acdaf73d4e8d33c23e661b3782968cae2355 defconfig-20210531-git defconfig.asd
defenum http://beta.quicklisp.org/archive/defenum/2021-02-28/defenum-20210228-git.tgz 12945 9c94905ee908cdc16fecc68e36e1ee10 f578a817d4cd049839aac11f2caf469f7082e5db defenum-20210228-git defenum.asd
deferred http://beta.quicklisp.org/archive/deferred/2019-07-10/deferred-20190710-git.tgz 5908 0830491b2d6bb9cfbc2a95036b9a7332 438d3927bc5dfe4215aaa39f79207e768ab45444 deferred-20190710-git deferred.asd
define-json-expander http://beta.quicklisp.org/archive/define-json-expander/2014-07-13/define-json-expander-20140713-git.tgz 5026 4f67d0f505ff548d386e3f6f3d24bef9 8ac3161ab7afd1de0a40473d86201b2fff87f17e define-json-expander-20140713-git define-json-expander.asd
definer http://beta.quicklisp.org/archive/definer/2021-01-24/definer-20210124-git.tgz 6256 478e712284c91c1247d592f6149518b5 25fc2992327ddb5f7a89c988161d533d12c8f9c1 definer-20210124-git definer.asd
definitions http://beta.quicklisp.org/archive/definitions/2021-05-31/definitions-20210531-git.tgz 19473 cb965c5ff4551b491c4f84b6a2c55adc de0daf2f03e92452d57894365665742d9f0fd6b6 definitions-20210531-git definitions.asd
definitions-systems http://beta.quicklisp.org/archive/definitions-systems/2021-04-11/definitions-systems_2.0.1.tgz 16401 f907e00604c2de021591c58951f0fabf b12995355d78b6bf57ffda02edb0a5a7b6ce9a4c definitions-systems_2.0.1 definitions-systems.asd tests/definitions-systems_tests.asd
deflate http://beta.quicklisp.org/archive/deflate/2020-02-18/deflate-20200218-git.tgz 10271 c82d28eed5b489ced654c7202025e699 e6e719b55fe429157a8c09be0f93a405b02315c3 deflate-20200218-git deflate.asd
defmain http://beta.quicklisp.org/archive/defmain/2021-05-31/defmain-20210531-git.tgz 12360869 2dc3bc4792a06ec091e956c95b12f11b e110c6609621e0aecbc4d77888a2856e3f8c86b7 defmain-20210531-git defmain-test.asd defmain.asd
defmemo http://beta.quicklisp.org/archive/defmemo/2012-04-07/defmemo-20120407-git.tgz 1953 542105d03e8a0d012c21cefffed2f8ad e7d6f9f95ef8866e063c5e35eee1458e6022d7af defmemo-20120407-git defmemo.asd
defpackage-plus http://beta.quicklisp.org/archive/defpackage-plus/2018-01-31/defpackage-plus-20180131-git.tgz 6485 de7af07da901fe5623450d32fd4b7ddc dea6c565dee9b6d821b21a25f4169515e52595df defpackage-plus-20180131-git defpackage-plus.asd
defrec http://beta.quicklisp.org/archive/defrec/2019-03-07/defrec-20190307-hg.tgz 2488 28b1762c6fb45a24487be334d7d5db14 f5ea970dac951fd12455449ba66da09b471596e4 defrec-20190307-hg defrec.asd
defrest http://beta.quicklisp.org/archive/defrest/2021-05-31/defrest-20210531-git.tgz 7560 1840b19b00f3ec4dfd10e900cd3191f0 e03dfe9ebd9641b06b8c478b03ffe0287d24d48e defrest-20210531-git defrest.asd
defstar http://beta.quicklisp.org/archive/defstar/2014-07-13/defstar-20140713-git.tgz 46970 36db8379ba81239923e5f97dba352d8b 2983be99196ad25ad29404af66a6c61b6eca212a defstar-20140713-git defstar.asd
defsystem-compatibility http://beta.quicklisp.org/archive/defsystem-compatibility/2010-10-06/defsystem-compatibility-20101006-darcs.tgz 9848 ad19788379d30f53165b74683deee776 bc441cffe18d811b971e130cfa94b57938e353ec defsystem-compatibility-20101006-darcs defsystem-compatibility-test.asd defsystem-compatibility.asd
defvariant http://beta.quicklisp.org/archive/defvariant/2014-07-13/defvariant-20140713-git.tgz 10059 34cae097b3a510c71aec8638e6244384 8d43269b616dad7f0d0c9a6725e1614cb5c330c2 defvariant-20140713-git defvariant.asd
delorean http://beta.quicklisp.org/archive/delorean/2013-06-15/delorean-20130615-git.tgz 3788 441d44c6c37939df46fc1f6a549f97d6 f9b4b8ed3e1cf9811a32e19fa64f868598baf1c3 delorean-20130615-git delorean.asd
delta-debug http://beta.quicklisp.org/archive/delta-debug/2018-08-31/delta-debug-20180831-git.tgz 5769 0cfd1860910888e5d129e3a134a58e12 28dd1ae4e76fcd381539b1a09622525b083a7830 delta-debug-20180831-git delta-debug.asd
dendrite http://beta.quicklisp.org/archive/dendrite/2017-10-23/dendrite-release-quicklisp-409b1061-git.tgz 5988 574bb8da79376d36fdf04ae254ba04c5 d14f3b6356f3d6443fd76296e6c1ef32036045ca dendrite-release-quicklisp-409b1061-git dendrite.asd dendrite.micro-l-system.asd dendrite.primitives.asd
deoxybyte-gzip http://beta.quicklisp.org/archive/deoxybyte-gzip/2014-01-13/deoxybyte-gzip-20140113-git.tgz 130916 e6e373d376f3598f7ee3792e586a7dc3 53a1f55a7db874c66d5cf1f1ebf0800559e1584e deoxybyte-gzip-20140113-git deoxybyte-gzip-test.asd deoxybyte-gzip.asd
deoxybyte-io http://beta.quicklisp.org/archive/deoxybyte-io/2014-01-13/deoxybyte-io-20140113-git.tgz 40992 7283270d2df168edda80ec15bede2aa3 b4326e35061b6bed2625cb26cf545dd8984cb0e7 deoxybyte-io-20140113-git deoxybyte-io-test.asd deoxybyte-io.asd
deoxybyte-systems http://beta.quicklisp.org/archive/deoxybyte-systems/2014-01-13/deoxybyte-systems-20140113-git.tgz 3677 cb63033baf4ff3c8aaba80252e77f5d6 c306db96a2de41c23f2284164b9577cc1ba2c718 deoxybyte-systems-20140113-git deoxybyte-systems.asd
deoxybyte-unix http://beta.quicklisp.org/archive/deoxybyte-unix/2014-01-13/deoxybyte-unix-20140113-git.tgz 20104 058d5bc317967f587535fae8ee97a39f 6886a7daf781f97173d9cbb8fa84e3229054d260 deoxybyte-unix-20140113-git deoxybyte-unix-test.asd deoxybyte-unix.asd
deoxybyte-utilities http://beta.quicklisp.org/archive/deoxybyte-utilities/2014-01-13/deoxybyte-utilities-20140113-git.tgz 32707 1d29f3a612c1e7901b0fd053cac93f87 d9fa17f1f96255a973fe1c13b0b982197b303220 deoxybyte-utilities-20140113-git deoxybyte-utilities-test.asd deoxybyte-utilities.asd
deploy http://beta.quicklisp.org/archive/deploy/2021-05-31/deploy-20210531-git.tgz 18949 d4b0a7a118a0cf93995d3a8c02a778e1 a3386f1463cbc6192d8b63fff752c44e0d673576 deploy-20210531-git deploy-test.asd deploy.asd
descriptions http://beta.quicklisp.org/archive/descriptions/2015-03-02/descriptions-20150302-git.tgz 23662 b16c4d4768515759094d08043f6cd181 bae261da6cae337aabc0daa49fbe0f2d399dcecb descriptions-20150302-git descriptions-test.asd descriptions.asd descriptions.serialization.asd descriptions.validation.asd
destructuring-bind-star http://beta.quicklisp.org/archive/destructuring-bind-star/2020-06-10/destructuring-bind-star-20200610-git.tgz 3158 3349d26d971d5e7c26d0f2adaefb1746 a9844ddf811a0c00ade075126908d83f9cb3bc5c destructuring-bind-star-20200610-git destructuring-bind-star.asd
dexador http://beta.quicklisp.org/archive/dexador/2021-04-11/dexador-20210411-git.tgz 205980 10d59691af3e25e590a2dfff29c91292 02a62cdeaee1c3645e1e0a9f633673a1f8daf10a dexador-20210411-git dexador-test.asd dexador.asd
dfio http://beta.quicklisp.org/archive/dfio/2021-05-31/dfio-20210531-git.tgz 237715 91d292cfab785d785d71d121a86c04ce 41e0d2c8cc79a76252df525eeab0a4c69a60fe60 dfio-20210531-git dfio.asd
diff http://beta.quicklisp.org/archive/diff/2013-08-13/diff-20130813-git.tgz 16642 c13a4545b12b26e6d99c5535048a435d dc6993e2890a59dd59dad95a098771117396e650 diff-20130813-git diff.asd
diff-match-patch http://beta.quicklisp.org/archive/diff-match-patch/2021-05-31/diff-match-patch-20210531-git.tgz 31781 9c7632f9066afc7926d126676d8e39f2 2281e20cac5a8922567ea4cbc6f4644b126ec6b1 diff-match-patch-20210531-git diff-match-patch.asd
dirt http://beta.quicklisp.org/archive/dirt/2017-10-19/dirt-release-quicklisp-0d13ebc2-git.tgz 5590 c3242835717a9db9c2db803d1b25f545 4ba2d03d1d5fad8f92e2683ac9c86e2d23b31678 dirt-release-quicklisp-0d13ebc2-git dirt.asd
disposable http://beta.quicklisp.org/archive/disposable/2016-02-08/disposable-20160208-git.tgz 1504 dd4e4ff956fb44ed624f8dafcaa4bea5 9ddcaa8fbf5ad43195e179882190fc68d4b58039 disposable-20160208-git disposable.asd
dissect http://beta.quicklisp.org/archive/dissect/2021-05-31/dissect-20210531-git.tgz 28798 41dfb42dc93aa41d825c167fe173fa89 74396b8c04baa720fd5905162089da44aa26a2f5 dissect-20210531-git dissect.asd
djula http://beta.quicklisp.org/archive/djula/2021-05-31/djula-20210531-git.tgz 86851 e71d33dd417d707e326005ce01a1a36c 840fe8c2158df04ca55b6bd3aedfe097adb2bcce djula-20210531-git djula-demo.asd djula-test.asd djula.asd
dlist http://beta.quicklisp.org/archive/dlist/2012-11-25/dlist-20121125-git.tgz 14699 c935ee7e9bf0e30a5fd70ae703195f9e 2b23fc66cf9c4829828d4ef04b61938215c39c0f dlist-20121125-git dlist.asd
dml http://beta.quicklisp.org/archive/dml/2018-10-18/dml-20181018-git.tgz 440514 7423921f88d0a15f12fcba859ff518d9 48be480e302c2dd2151cda1d62ff8df9483c8814 dml-20181018-git dml.asd
dns-client http://beta.quicklisp.org/archive/dns-client/2021-05-31/dns-client-20210531-git.tgz 13524 d60308ff9a2d9eb38b96812332ae7f7b 1811428f6d9f6bb2a7fdb6f1f1b92cbaa82f9490 dns-client-20210531-git dns-client.asd
do-urlencode http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz 2318 cb6ab78689fe52680ee1b94cd7738b94 7eaef5c9b5cf8dfe004ad3a8fa101bad8193b3f1 do-urlencode-20181018-git do-urlencode.asd
doc http://beta.quicklisp.org/archive/doc/2021-05-31/doc-20210531-git.tgz 154697 d1a8684a33cd27c6bb064d783d399560 b6f13f3b56dea2e8e5ac10612194bc6ab36f52a3 doc-20210531-git 40ants-doc-full.asd 40ants-doc-test.asd 40ants-doc.asd
docbrowser http://beta.quicklisp.org/archive/docbrowser/2020-06-10/docbrowser-20200610-git.tgz 906050 a28a213648fa0323d08bb145f3f51518 c1934624f9443bc1151a26a41020776508babca4 docbrowser-20200610-git docbrowser.asd
docparser http://beta.quicklisp.org/archive/docparser/2020-12-20/docparser-20201220-git.tgz 13428 5963b9274bb3d603ee75878f354523d8 0b3e455b2c51edfb05b5c364362f7005cc075db8 docparser-20201220-git docparser-test-system.asd docparser-test.asd docparser.asd
documentation-template http://beta.quicklisp.org/archive/documentation-template/2014-12-17/documentation-template-0.4.4.tgz 8721 847d38e9131779931cb7063e019afe5d 2cd71d1884d3eff7b76a0f907969b986c4125744 documentation-template-0.4.4 documentation-template.asd
documentation-utils http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz 8913 4f45f511ac55008b8b8aa04f7feaa2d4 1071335af99636f62943713298b46a0244b5bda4 documentation-utils-20190710-git documentation-utils.asd multilang-documentation-utils.asd
documentation-utils-extensions http://beta.quicklisp.org/archive/documentation-utils-extensions/2018-07-11/documentation-utils-extensions-20180711-git.tgz 4676 e44cb3fbe27b04e2cceeb2240859a716 aaad552e01854bfc2fdd7758dde31edd3a2f5892 documentation-utils-extensions-20180711-git documentation-utils-extensions.asd
donuts http://beta.quicklisp.org/archive/donuts/2012-07-03/donuts-20120703-git.tgz 1232132 5d3e62b6453941a0bf64741c3df70b54 9c8061bcd3b2dd1443a1bccef991115169137482 donuts-20120703-git donuts.asd
doplus http://beta.quicklisp.org/archive/doplus/2021-05-31/doplus-20210531-git.tgz 35553 660b672d86044c0ef6953dd8c95b3eb0 53e7bbe9301dec4d21567f5edb9907b2fb904e02 doplus-20210531-git doplus-fset.asd doplus.asd
drakma http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz 74290 f166498aaed67f726060e9e997df10a3 0920ad374a9b5d513efae5dc61af2484dc901d86 drakma-v2.0.7 drakma-test.asd drakma.asd
drakma-async http://beta.quicklisp.org/archive/drakma-async/2015-10-31/drakma-async-20151031-git.tgz 24061 7048777c70eeba4456b19e2cb6ab83ae c4cf9dcbc5a295bbf3187ef39e9b391155f36392 drakma-async-20151031-git drakma-async.asd
draw-cons-tree http://beta.quicklisp.org/archive/draw-cons-tree/2013-10-03/draw-cons-tree-20131003-git.tgz 2252 ce720e2ddf395246927e5765f5116084 94e6c5794403485da7bce440547e4e5cb59afb92 draw-cons-tree-20131003-git draw-cons-tree.asd
dso-lex http://beta.quicklisp.org/archive/dso-lex/2011-01-10/dso-lex-0.3.2.tgz 16481 fe8a4a6b9689c06f93f19c1b5506132d 2fac198fb75b4db2d2a1eb02479c94c0c3fa255a dso-lex-0.3.2 dso-lex.asd
dso-util http://beta.quicklisp.org/archive/dso-util/2011-01-10/dso-util-0.1.2.tgz 11309 ad11cec0f5a04142bcd5e117e53c7267 d861e27a509cd972ede6c7377fdc93abfa2c727a dso-util-0.1.2 dso-util.asd
dufy http://beta.quicklisp.org/archive/dufy/2021-05-31/dufy-20210531-git.tgz 483552 2114f30dc7988dc418583c4beafc8d8d b2886d03cb179d38169676111e0be29e38d998b6 dufy-20210531-git dufy.asd
duologue http://beta.quicklisp.org/archive/duologue/2021-05-31/duologue-20210531-git.tgz 6695 8b84a0e3d741c7677bdb3f0821ed5ffe 69f57eaa74ab6da6165143327f5653e3fef7f3de duologue-20210531-git duologue.asd
dweet http://beta.quicklisp.org/archive/dweet/2014-12-17/dweet-20141217-git.tgz 3051 68c4fe0638b6f9febe93925d4fd0cc33 b13c3333a955b851ee4286f5bd1583f09e9e8f75 dweet-20141217-git dweet.asd
dynamic-classes http://beta.quicklisp.org/archive/dynamic-classes/2013-01-28/dynamic-classes-20130128-git.tgz 7148 a6ed01c4f21df2b6a142328b24ac7ba3 641573761b2d4fab3b17196cc10a9d46486ab495 dynamic-classes-20130128-git dynamic-classes-test.asd dynamic-classes.asd
dynamic-collect http://beta.quicklisp.org/archive/dynamic-collect/2019-03-07/dynamic-collect-20190307-hg.tgz 447578 c182c60ccb418c9f996f2fe48478cfbf 13d9d81f629b6c665753741ffa45b646f7caeb56 dynamic-collect-20190307-hg dynamic-collect.asd
dynamic-mixins http://beta.quicklisp.org/archive/dynamic-mixins/2018-10-18/dynamic-mixins-20181018-git.tgz 2492 8b2072af2b472c2c7bbaf28ff38e43be a389ddf18ddec5f634f28e506e349b83117085eb dynamic-mixins-20181018-git dynamic-mixins.asd
eager-future http://beta.quicklisp.org/archive/eager-future/2010-10-06/eager-future-20101006-darcs.tgz 3181 33ec9918cece34f35f2354e1f94a245c 862750b95d33edacbc73b08a636b9689a6167336 eager-future-20101006-darcs eager-future.asd
eager-future2 http://beta.quicklisp.org/archive/eager-future2/2019-11-30/eager-future2-20191130-git.tgz 26961 72298620b0fb2f874d86d887cce4acf0 70c0531898eddae204d38b0f5f2dd7c9d7381e8b eager-future2-20191130-git eager-future2.asd test.eager-future2.asd
easing http://beta.quicklisp.org/archive/easing/2018-02-28/easing-20180228-git.tgz 4636 775f27d44c58ff05c38ead610168f1ee 2e8889e1e4e5ece9d39b0d1f99cbe7b352b55ace easing-20180228-git easing-demo.asd easing-test.asd easing.asd
easy-audio http://beta.quicklisp.org/archive/easy-audio/2021-02-28/easy-audio-20210228-git.tgz 6466195 4c7bb6772b62be77154c2319fe858337 df58d5772da8e5c0de1875f7dd4fe0bc0bc7b704 easy-audio-20210228-git easy-audio.asd
easy-bind http://beta.quicklisp.org/archive/easy-bind/2019-02-02/easy-bind-20190202-git.tgz 16880 ee624a12d458bdb17f4b3dfe7772f699 9240ed116049d326453d744303e65213704859c8 easy-bind-20190202-git easy-bind.asd
easy-routes http://beta.quicklisp.org/archive/easy-routes/2021-05-31/easy-routes-20210531-git.tgz 9296 3d82362c47d8bc804ba2f99306aaa785 d0ae062b7444b895263568484eae55af599cc2f8 easy-routes-20210531-git easy-routes+djula.asd easy-routes+errors.asd easy-routes.asd
eazy-documentation http://beta.quicklisp.org/archive/eazy-documentation/2021-04-11/eazy-documentation-20210411-git.tgz 19090 c0aa94986efd7c09a6919341d7df9942 2caea416d0bf15c1bbcf2670b194d776f671192f eazy-documentation-20210411-git eazy-documentation.asd
eazy-gnuplot http://beta.quicklisp.org/archive/eazy-gnuplot/2018-08-31/eazy-gnuplot-20180831-git.tgz 8339018 5847b95b76c3a6ca908572c01ecd8474 d2ef349292b5c42baf46cd53834aefa9cb2df2cf eazy-gnuplot-20180831-git eazy-gnuplot.asd eazy-gnuplot.test.asd
eazy-process http://beta.quicklisp.org/archive/eazy-process/2020-09-25/eazy-process-20200925-git.tgz 27369 7b244c4cbea0315aa6b7a31a0be74f0e 747d69189f5fd2f385f9bc79a0d707591f553ec0 eazy-process-20200925-git eazy-process.asd eazy-process.test.asd
eazy-project http://beta.quicklisp.org/archive/eazy-project/2019-07-10/eazy-project-20190710-git.tgz 15917 5b365c1ae21d9faf6eb7cfbb79b729cd 1e037cfaa916d41d7192fac829034426042a5bb4 eazy-project-20190710-git eazy-project.asd eazy-project.autoload.asd eazy-project.test.asd
ec2 http://beta.quicklisp.org/archive/ec2/2012-09-09/ec2-20120909-git.tgz 23603 0c6dea76f190aaa25305490b3e048437 d82ca8949aced8d7ef5fe3ca6bc02a1a3f1ab2a7 ec2-20120909-git ec2.asd
ec2-price-finder http://beta.quicklisp.org/archive/ec2-price-finder/2021-05-31/ec2-price-finder-20210531-git.tgz 9377 cb4ab4f8a5abf8933a9dc5cdebe1612d 2f96b6964152f6b85b9a3f18f7fc2468e530bfa1 ec2-price-finder-20210531-git ec2-price-finder.asd
ecclesia http://beta.quicklisp.org/archive/ecclesia/2020-12-20/ecclesia-20201220-git.tgz 22008 fbf2d75b0a0761a7a7c3b9c0d46448cc 3291b514eb6ee9f520e765baef52340c631a3302 ecclesia-20201220-git ecclesia.asd
eclector http://beta.quicklisp.org/archive/eclector/2021-05-31/eclector-20210531-git.tgz 644394 e0f81e1fd3c811abe8bd6d7c9a4a33c8 b7fb1c8ce9fc222cbb0a5ba16219f0e506058cd0 eclector-20210531-git eclector-concrete-syntax-tree.asd eclector.asd
eco http://beta.quicklisp.org/archive/eco/2019-08-13/eco-20190813-git.tgz 6304 f27079c961c837ffc28f4d8c1a5cf81e 386d0cea4efbb4269e6b22d8387e447986c870cd eco-20190813-git eco-test.asd eco.asd
elb-log http://beta.quicklisp.org/archive/elb-log/2015-09-23/elb-log-20150923-git.tgz 6870 5eb6513fd03c1b015b9f215f96ba9d3b bd104f69efa8db03bdade2bf6fe70c61cd4b58e3 elb-log-20150923-git elb-log-test.asd elb-log.asd
electron-tools http://beta.quicklisp.org/archive/electron-tools/2016-04-21/electron-tools-20160421-git.tgz 2560 70ce32f5c79a23cff6c7fef7677422b4 d3de418ea520e7d7e672ad391a5905e1e72efd06 electron-tools-20160421-git electron-tools-test.asd electron-tools.asd
elf http://beta.quicklisp.org/archive/elf/2019-07-10/elf-20190710-git.tgz 473583 7edebf956ba1892304407f475bf6bdfe 6f7a1bfb3c1930c586d374122158c5a28dc34c56 elf-20190710-git elf.asd
enhanced-boolean http://beta.quicklisp.org/archive/enhanced-boolean/2020-03-25/enhanced-boolean_1.0.tgz 5028 24aa7f4177683f02a893ffe8e5b2a4e5 43f6ee1b0a0b2488942308a112f08834c9943968 enhanced-boolean_1.0 enhanced-boolean.asd tests/enhanced-boolean_tests.asd
enhanced-defclass http://beta.quicklisp.org/archive/enhanced-defclass/2021-04-11/enhanced-defclass_2.1.tgz 6691 1b21d4259fdb9f91d686149eec7aed5f 85a57f8f917a11557659370f8dd4a00e0413d869 enhanced-defclass_2.1 enhanced-defclass.asd tests/enhanced-defclass_tests.asd
enhanced-eval-when http://beta.quicklisp.org/archive/enhanced-eval-when/2012-11-25/enhanced-eval-when-1.0.tgz 1875 4cf59d63539f41b7b0c412f6d9e89ff5 48f3d1a21ddb4f8440d0c04f5a2b45da9bb4438c enhanced-eval-when-1.0 enhanced-eval-when.asd
enhanced-find-class http://beta.quicklisp.org/archive/enhanced-find-class/2020-09-25/enhanced-find-class_1.0.tgz 4661 7b8904bdf58b383d483ed273212e9d2b fe2757b8a731e981db65c0924d3309ee60947246 enhanced-find-class_1.0 enhanced-find-class.asd tests/enhanced-find-class_tests.asd
enhanced-multiple-value-bind http://beta.quicklisp.org/archive/enhanced-multiple-value-bind/2012-11-25/enhanced-multiple-value-bind-1.0.1.tgz 2589 a0fdb32762b7bf6a8cd4b04f07bb05a1 cf4a330e2b640e43bb70ff5da1c7ab7fc97e8a19 enhanced-multiple-value-bind-1.0.1 enhanced-multiple-value-bind.asd
enhanced-typep http://beta.quicklisp.org/archive/enhanced-typep/2020-10-16/enhanced-typep_1.0.tgz 5036 3b76ff3c2a922b807e14c6ff7eff610e e9f6896b7a2dfc2cece4dfb398d837d4b56482b1 enhanced-typep_1.0 enhanced-typep.asd tests/enhanced-typep_tests.asd
envy http://beta.quicklisp.org/archive/envy/2019-08-13/envy-20190813-git.tgz 3558 1f82d7f3221043577e44772d27d44932 73a1c0d37dfd06abd6bd7a1368aa4735c52845b7 envy-20190813-git envy-test.asd envy.asd
eos http://beta.quicklisp.org/archive/eos/2020-09-25/eos-20200925-git.tgz 13140 52b54a9cbaa8a4338c854de1d71e74c9 2dde4ede2de5509a4c90267b19b982fb320ea357 eos-20200925-git eos.asd
epigraph http://beta.quicklisp.org/archive/epigraph/2020-03-25/epigraph-20200325-git.tgz 17381 a4dd6a4a53b79e5d3e011b47c04d1b41 272dd573925ab736630e936a69a2cbf1d505a5c0 epigraph-20200325-git epigraph.asd
equals http://beta.quicklisp.org/archive/equals/2014-08-26/equals-20140826-git.tgz 2963 5acfaaebd7e1a683b3a84f85b7413340 a3321de358488a827d8535e9b947a316b914f5f5 equals-20140826-git equals.asd
ernestine http://beta.quicklisp.org/archive/ernestine/2016-12-04/ernestine-20161204-git.tgz 305333 1f254cb1f061e846181360fe059ca20d 170f5f6b5622462afa2f8b5d266aaa1b61e7e083 ernestine-20161204-git ernestine-tests.asd ernestine.asd
erudite http://beta.quicklisp.org/archive/erudite/2021-05-31/erudite-20210531-git.tgz 348240 29f92a5d7af68a6e17016d55e03b62e9 d922797a8ed34540d38b7d44f0591c09d45c9550 erudite-20210531-git erudite-test.asd erudite.asd
escalator http://beta.quicklisp.org/archive/escalator/2020-04-27/escalator-20200427-git.tgz 6724 64b1ada3a35465b5673520453a75a5c3 cec2c796dc47c628737c0abdec31899d12045a0a escalator-20200427-git escalator-bench.asd escalator.asd
esrap http://beta.quicklisp.org/archive/esrap/2020-12-20/esrap-20201220-git.tgz 69184 cc33cc8dbc236403f6b285c8eae0ce3b 990dcf76de541671f671e988e721b4d806b40ded esrap-20201220-git esrap.asd
esrap-liquid http://beta.quicklisp.org/archive/esrap-liquid/2016-10-31/esrap-liquid-20161031-git.tgz 35689 7bc12d040919cb5b5da641334a1f23a1 9c8b389cc2c147922bbbc9be7a21c31c06a1b888 esrap-liquid-20161031-git esrap-liquid.asd
esrap-peg http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz 7824 48d87d3118febeefc23ca3a8dda36fc0 27a86bbcd4eb649ac379c6b9ba0093234f285ff0 esrap-peg-20191007-git esrap-peg.asd
evaled-when http://beta.quicklisp.org/archive/evaled-when/2020-09-25/evaled-when_1.0.tgz 5863 799325d76de68a7c1ee2b232e05ba8b4 584aa9e8de57f2ce6d4f1da14a394b27aa9857c4 evaled-when_1.0 evaled-when.asd tests/evaled-when_tests.asd
event-emitter http://beta.quicklisp.org/archive/event-emitter/2018-12-10/event-emitter-20181210-git.tgz 3346 1b6cb3e12d074e35da563e7163b47a91 651ad4bc759d2a947fb8ecd72d1f67f4d19c2d08 event-emitter-20181210-git event-emitter-test.asd event-emitter.asd
event-glue http://beta.quicklisp.org/archive/event-glue/2015-06-08/event-glue-20150608-git.tgz 9282 1aa70e889ffd2a2d01e7ee740c057415 faedf03cac4300b60f270a365e11a4dba5a74789 event-glue-20150608-git event-glue-test.asd event-glue.asd
eventbus http://beta.quicklisp.org/archive/eventbus/2019-12-27/eventbus-20191227-git.tgz 15807 99b4ca9efc30825dd56e77ae6cd5afe3 85c30ca68cb565572b5a5595e5d5a34e8f5e16c4 eventbus-20191227-git eventbus.asd
eventfd http://beta.quicklisp.org/archive/eventfd/2017-11-30/eventfd-20171130-git.tgz 2518 6580eb40265070dc8292ed4c2a137ee8 8fdce2b98e2d7d6d437a73a5de85f882c0c60859 eventfd-20171130-git eventfd.asd
everblocking-stream http://beta.quicklisp.org/archive/everblocking-stream/2018-10-18/everblocking-stream-20181018-git.tgz 887 307e7b6ba7ecb8912492497d7025e1cd 5539bdd086bef5526c4487ce9634239ac7f204b9 everblocking-stream-20181018-git everblocking-stream.asd
evol http://beta.quicklisp.org/archive/evol/2010-10-06/evol-20101006-git.tgz 36040 063813e42d598be1073625c38cc0fc76 de2a0507ad9682b4f783d23d8e579859e5283763 evol-20101006-git evol-test.asd evol.asd
exit-hooks http://beta.quicklisp.org/archive/exit-hooks/2017-04-03/exit-hooks-20170403-git.tgz 3070 9a5c96e590462bd417f1940ce9d374d2 2d5fb7624a86f2efec0106def24306beece56d53 exit-hooks-20170403-git exit-hooks.asd
exponential-backoff http://beta.quicklisp.org/archive/exponential-backoff/2015-01-13/exponential-backoff-20150113-git.tgz 2397 d3e5d082518de0e1d03ad6a8dac63f07 06dea928582daa17b07682a2df406de61205c63e exponential-backoff-20150113-git exponential-backoff.asd
exscribe http://beta.quicklisp.org/archive/exscribe/2020-09-25/exscribe-20200925-git.tgz 30860 403d29d61ca7d9cd1839689dc0f738e7 56b547785ff2d7efa3902f153ca1b333005513fe exscribe-20200925-git exscribe.asd
ext-blog http://beta.quicklisp.org/archive/ext-blog/2016-08-25/ext-blog-20160825-git.tgz 393481 74fbc8b459a0d074c6fd08bbbd644c31 de4620d23fe78be0a39d8768724c86e074365252 ext-blog-20160825-git ext-blog.asd
extended-reals http://beta.quicklisp.org/archive/extended-reals/2018-03-28/extended-reals-20180328-git.tgz 2979 191bca02ac2c4a55ccc98aa6eda82f66 7d1fba685087c2236a5dd24abdc070f1b2394c4b extended-reals-20180328-git extended-reals.asd
external-program http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz 10408 b30fe104c34059506fd4c493fa79fe1a f04bc9e1b3a0eb5b4c017a8799b9483fc10ea0ff external-program-20190307-git external-program.asd
external-symbol-not-found http://beta.quicklisp.org/archive/external-symbol-not-found/2018-04-30/external-symbol-not-found-20180430-git.tgz 2882 20cc0679a0de51547810d9f75c04d350 1b7140c2efa0f4b342568c8a34079c478d3c94c7 external-symbol-not-found-20180430-git external-symbol-not-found.asd
f-underscore http://beta.quicklisp.org/archive/f-underscore/2010-10-06/f-underscore-20101006-darcs.tgz 982 45ef9c0ac1c92d9aba76b69b53cc7838 34c192987ab8b11f9b09ba40098fc696250506e6 f-underscore-20101006-darcs f-underscore.asd
f2cl http://beta.quicklisp.org/archive/f2cl/2020-09-25/f2cl-20200925-git.tgz 2360280 1ab13fc6c048851f87b1ab1bf6e7efa4 dcbd771cc54956865c51a6fd38f3677f1f993f6a f2cl-20200925-git f2cl-asdf.asd f2cl.asd packages/blas-complex.asd packages/blas-hompack.asd packages/blas-package.asd packages/blas-real.asd packages/blas.asd packages/colnew.asd packages/fftpack5-double.asd packages/fftpack5.asd packages/fishpack.asd packages/hompack.asd packages/lapack.asd packages/minpack.asd packages/odepack.asd packages/quadpack.asd packages/toms419.asd packages/toms715.asd packages/toms717.asd
fact-base http://beta.quicklisp.org/archive/fact-base/2018-03-28/fact-base-20180328-git.tgz 9491 86825a1ba98fe3aa2866ec7e3452a371 26a527bafcf2bd38221c9bd737ca15660d0bed9e fact-base-20180328-git fact-base.asd
fakenil http://beta.quicklisp.org/archive/fakenil/2020-03-25/fakenil_1.0.tgz 4481 47646ca1e6cb69ec18c0e07f676662a9 e538b79364c0ea03b2e91d8af8193428d3f7b5be fakenil_1.0 fakenil.asd tests/fakenil_tests.asd
fare-csv http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz 7223 1d73aaac9fcd86cc5ddb72019722bc2a d7cdb3a2b3ca5b92953201cc8769998fd8ee65de fare-csv-20171227-git fare-csv.asd
fare-memoization http://beta.quicklisp.org/archive/fare-memoization/2018-04-30/fare-memoization-20180430-git.tgz 7571 7446aa643f0e461d960efb673a706dc1 ef47d67c6d76e8e0c829bbd654e27b69e08fef3b fare-memoization-20180430-git fare-memoization.asd
fare-mop http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz 2728 4721ff62e2ac2c55079cdd4f2a0f6d4a cd1f7fcd2aa132432f271f43de9cf39aeef37c71 fare-mop-20151218-git fare-mop.asd
fare-quasiquote http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz 15745 7af0a97c445d88acacecfc851496adb3 153f994a7b921ba34be500ec6e8491431f3ab62a fare-quasiquote-20200925-git fare-quasiquote-extras.asd fare-quasiquote-optima.asd fare-quasiquote-readtable.asd fare-quasiquote.asd
fare-scripts http://beta.quicklisp.org/archive/fare-scripts/2020-06-10/fare-scripts-20200610-git.tgz 41902 614b67aa2c2850166a6d317ef42226ca c0f5055b7016f8e636e4076690269942b2585b3b fare-scripts-20200610-git fare-scripts.asd
fare-utils http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz 32604 6752362d0c7c03df6576ab2dbe807ee2 e0b139600b7693a13eece65ff148464168ae890b fare-utils-20170124-git fare-utils.asd test/fare-utils-test.asd
fast-generic-functions http://beta.quicklisp.org/archive/fast-generic-functions/2021-01-24/fast-generic-functions-20210124-git.tgz 12701 a916e6d66ac87eca6833cc2a61b2b827 d2f6eac0affc149f52c6d8507e279e6267507222 fast-generic-functions-20210124-git code/fast-generic-functions.asd test-suite/fast-generic-functions-test-suite.asd
fast-http http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz 33540 fd43be4dd72fd9bda5a3ecce87104c97 419610a07b0ccf3117378b6fb9b5faa025037d0b fast-http-20191007-git fast-http-test.asd fast-http.asd
fast-io http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz 9137 aa948bd29b8733f08e79a60226243117 0b3667be6122431040441fa1dc0bf29a3900cdad fast-io-20200925-git fast-io-test.asd fast-io.asd
fast-websocket http://beta.quicklisp.org/archive/fast-websocket/2021-02-28/fast-websocket-20210228-git.tgz 9126 d4e697e672730bdf5b6e608dee4e7998 5d8274355b0ceeba6699bad8620bc0461ad97637 fast-websocket-20210228-git fast-websocket-test.asd fast-websocket.asd
feeder http://beta.quicklisp.org/archive/feeder/2021-02-28/feeder-20210228-git.tgz 21362 a4f021712b6b691bf706056e6fa8605e a313929892ce977ad3ba87315515816de6161706 feeder-20210228-git feeder.asd
femlisp http://beta.quicklisp.org/archive/femlisp/2021-04-11/femlisp-20210411-git.tgz 651522 72ae51a21c4235d4b3d93784ab825430 07f6362dcef27435851f30bc946fd90cedb73c21 femlisp-20210411-git external/cl-cpu-affinity/cl-cpu-affinity.asd external/infix/infix.asd src/applications/courses/dealii-tutorial/dealii-tutorial.asd src/contrib/femlisp-picture.asd src/ddo/ddo.asd src/femlisp-ddo/net.scipolis.graphs.asd systems/femlisp-basic.asd systems/femlisp-dictionary.asd systems/femlisp-matlisp.asd systems/femlisp-parallel.asd systems/femlisp.asd
ffa http://beta.quicklisp.org/archive/ffa/2010-10-06/ffa-20101006-git.tgz 79415 5fe81065a6834b2095373667f5d58426 a3d137edc9af56e3ba853082a2b30f59f7bb79b4 ffa-20101006-git ffa.asd
fft http://beta.quicklisp.org/archive/fft/2018-07-11/fft-20180711-git.tgz 4806 06c2d33d8ddd43332dc25ac4ea7f20cc f77ba0a8d9ccf55d8daaebe31a7053e78a2c29c2 fft-20180711-git fft.asd pfft.asd
fiasco http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz 18950 c5a84e4a0a8afe45729cd6e39af772ac 25c6341ba51ec6b1c07a4ed18827f480f8e3fa89 fiasco-20200610-git fiasco.asd
file-attributes http://beta.quicklisp.org/archive/file-attributes/2021-05-31/file-attributes-20210531-git.tgz 9705 5e56be0be5be65124561939c968e1f58 9f7a81b24611ee7b841286760e60d6447f4400b6 file-attributes-20210531-git file-attributes.asd
file-local-variable http://beta.quicklisp.org/archive/file-local-variable/2016-03-18/file-local-variable-20160318-git.tgz 3725 8c486b517f733978fa3224ae225a5829 ab4f69526c059b17f5262006217f43b17f217358 file-local-variable-20160318-git file-local-variable.asd file-local-variable.test.asd
file-notify http://beta.quicklisp.org/archive/file-notify/2021-05-31/file-notify-20210531-git.tgz 9161 0e5fcf4de9361ffb6e771a66555b2436 567cf82c0364ed1d6f6c75db32eb958b5ae2e4ba file-notify-20210531-git file-notify.asd
file-select http://beta.quicklisp.org/archive/file-select/2021-02-28/file-select-20210228-git.tgz 16769 969d540c84a11cab97d74a4c6a0d89e5 80b0db03e6700fa8d53ed6ccdfec283c5b20e7b9 file-select-20210228-git file-select.asd
file-types http://beta.quicklisp.org/archive/file-types/2016-09-29/file-types-20160929-git.tgz 16146 4fd40465a8bde55c444c65bdcb238a95 ef2a666fadb709340caf6340043fc21c157b4ec6 file-types-20160929-git file-types.asd
filtered-functions http://beta.quicklisp.org/archive/filtered-functions/2016-03-18/filtered-functions-20160318-git.tgz 5624 1a30c0712c4750954a9b645bdc6362cc 76f362ebb3655223f646d4be53dcc85572b307a8 filtered-functions-20160318-git filtered-functions.asd
find-port http://beta.quicklisp.org/archive/find-port/2019-07-10/find-port-20190710-git.tgz 2053 50b5558caf3cc39cc6b55142b6630404 2f18aa155913ec653ae88804cab4422e0e05fb23 find-port-20190710-git find-port-test.asd find-port.asd
firephp http://beta.quicklisp.org/archive/firephp/2016-05-31/firephp-20160531-git.tgz 3101 776c31d2d1d29e0f8ddf916d66f57416 354083daca9bc6e502792af81300ebdaf7fbfd1a firephp-20160531-git firephp-tests.asd firephp.asd
first-time-value http://beta.quicklisp.org/archive/first-time-value/2018-12-10/first-time-value-1.0.1.tgz 4590 ad1d225958063396e5260d963ffbb6e3 20c732c8a5b0b32c80b5d23eb1f70e4c98614d0c first-time-value-1.0.1 first-time-value.asd tests/first-time-value_tests.asd
fiveam http://beta.quicklisp.org/archive/fiveam/2020-09-25/fiveam-20200925-git.tgz 23666 858ecfdf7821630ad11e6859100d4650 c87a3ab924b753d96a53661f7bbee97e21031ef8 fiveam-20200925-git fiveam.asd
fiveam-asdf http://beta.quicklisp.org/archive/fiveam-asdf/2019-07-10/fiveam-asdf-20190710-git.tgz 3484 951689cab836f8cefafcf75dd324eb23 b870df02fbca25d3f4adf4aa843081324669e353 fiveam-asdf-20190710-git fiveam-asdf.asd
fixed http://beta.quicklisp.org/archive/fixed/2017-01-24/fixed-20170124-git.tgz 12070 738197e9e3f84c000df9f7c270f49401 58f9ec849945c966fa5f539fc7fd3d1ff8178d3d fixed-20170124-git fixed.asd
flac-metadata http://beta.quicklisp.org/archive/flac-metadata/2021-04-11/flac-metadata-20210411-git.tgz 6471 417ec4480053657951e40dd2f6af800d 01f7af2dda97574b902c2d8702b6b021bf1bcc61 flac-metadata-20210411-git flac-metadata.asd
flare http://beta.quicklisp.org/archive/flare/2021-05-31/flare-20210531-git.tgz 58118 1d31accbed63efb286e3210f9a11aceb cd44a5541d59b1b0510200004f7c231c939c9f66 flare-20210531-git flare.asd viewer/flare-viewer.asd
flexi-streams http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz 442184 0d7bd1e542fe0a0d9728c45f70a95e36 5cda15aa3a57ab0aee15cf5c149b608595f02eb8 flexi-streams-20200925-git flexi-streams.asd
flexichain http://beta.quicklisp.org/archive/flexichain/2020-12-20/flexichain-20201220-git.tgz 21690 dae7599a950826a7d5217f1d35671f2d dcd2e4a8f56d88ce17556a8fd1c06ea45d80b237 flexichain-20201220-git flexichain-doc.asd flexichain.asd
float-features http://beta.quicklisp.org/archive/float-features/2021-02-28/float-features-20210228-git.tgz 10870 77223b9c85dca49d0f599e51ba95953a 9576cf09e6b6020e5b75992c3f2eaae7e9f6f431 float-features-20210228-git float-features-tests.asd float-features.asd
floating-point http://beta.quicklisp.org/archive/floating-point/2014-11-06/floating-point-20141106-git.tgz 473538 2ebe55f78c56d8ca5af9d1e0914b6402 b894b79a5fb145795d45488395056efa86277310 floating-point-20141106-git lisp/floating-point.asd test/floating-point-test.asd
floating-point-contractions http://beta.quicklisp.org/archive/floating-point-contractions/2020-12-20/floating-point-contractions-20201220-git.tgz 2548 057bb79a7eadd71229c39e8c39462f5d 3a708896111feaacf450d71478dbebf33ebbb74b floating-point-contractions-20201220-git floating-point-contractions.asd
flow http://beta.quicklisp.org/archive/flow/2020-06-10/flow-20200610-git.tgz 30044 f0767467d5e9bfda6fe5777a26719811 65bcbd5701584d17d3f13411499ad2601ace8a4f flow-20200610-git flow.asd visualizer/flow-visualizer.asd
flute http://beta.quicklisp.org/archive/flute/2018-08-31/flute-20180831-git.tgz 13138 8c312b0e18c10e7f03b81fc19587b786 632821535927afe4fe360af6ffcd6e1f2f6780bc flute-20180831-git flute-test.asd flute.asd
fmt http://beta.quicklisp.org/archive/fmt/2021-05-31/fmt-20210531-git.tgz 15356 6919bd26e11829281475dd6a3a8b7504 c5a8bc8dd872cd086e4a6d81867c1a54f631c280 fmt-20210531-git fmt-test.asd fmt-time.asd fmt.asd
fn http://beta.quicklisp.org/archive/fn/2017-10-19/fn-20171019-git.tgz 6936 0e1cfe5f19ceec8966baa3037772d31e 64871b26712de944ff79e1f58b0e7f4952044810 fn-20171019-git fn.asd
focus http://beta.quicklisp.org/archive/focus/2017-04-03/focus-20170403-git.tgz 47354 2be0459474ffdf328f5139164531a46e 84ef144a2ae449c507a5eaa37ef7c4274b15c36d focus-20170403-git core/net.didierverna.focus.core.asd demos/quotation/net.didierverna.focus.demos.quotation.asd flv/net.didierverna.focus.flv.asd net.didierverna.focus.asd setup/net.didierverna.focus.setup.asd
folio http://beta.quicklisp.org/archive/folio/2013-01-28/folio-20130128-git.tgz 21241 6f675b7346e8fcd492d4fde527eaa5ac bf20129ce9e18991bb60d1e20dc6c489c9529819 folio-20130128-git as/folio.as.asd boxes/folio.boxes.asd collections/folio.collections.asd folio.asd functions/folio.functions.asd
folio2 http://beta.quicklisp.org/archive/folio2/2019-10-07/folio2-20191007-git.tgz 55271 df04ee7b930f3eec45293a26523c2f42 539dca8db49ca54e344e0f6ba902ea3301ecd745 folio2-20191007-git folio2-as-syntax.asd folio2-as-tests.asd folio2-as.asd folio2-boxes-tests.asd folio2-boxes.asd folio2-functions-syntax.asd folio2-functions-tests.asd folio2-functions.asd folio2-make-tests.asd folio2-make.asd folio2-maps-syntax.asd folio2-maps-tests.asd folio2-maps.asd folio2-pairs-tests.asd folio2-pairs.asd folio2-sequences-syntax.asd folio2-sequences-tests.asd folio2-sequences.asd folio2-series-tests.asd folio2-series.asd folio2-taps-tests.asd folio2-taps.asd folio2-tests.asd folio2.asd
font-discovery http://beta.quicklisp.org/archive/font-discovery/2020-10-16/font-discovery-20201016-git.tgz 14776 6be65b7f02b653eec5c399eda80deda4 983dd1dffea3239e270a68160ed4cf55444738c0 font-discovery-20201016-git font-discovery.asd
for http://beta.quicklisp.org/archive/for/2020-03-25/for-20200325-git.tgz 38529 9a244369bbdc3eb9a91e3171a43386b5 748b10d519194cb6d4fab7bad3eb14813a93e8f0 for-20200325-git for.asd
form-fiddle http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz 5635 2576065de1e3c95751285fb155f5bcf6 a6a057c05e5512f2f8a0a05e336d422646d76b2c form-fiddle-20190710-git form-fiddle.asd
format-string-builder http://beta.quicklisp.org/archive/format-string-builder/2017-01-24/format-string-builder-20170124-git.tgz 5303 4997e60ed7af0f32d1c5b06f19247288 89a375a3ed8fb7c2cb8f1805403ebd1824594138 format-string-builder-20170124-git format-string-builder.asd
formlets http://beta.quicklisp.org/archive/formlets/2016-12-04/formlets-20161204-git.tgz 10598 b630d094fbbb2fe157f7e3a4bd93b648 a034c03549a46f751d65473b2312e55782ecb4d5 formlets-20161204-git formlets-test.asd formlets.asd
fred http://beta.quicklisp.org/archive/fred/2015-09-23/fred-20150923-git.tgz 34873 dbd3a53435f31cd78f4ddc3e74e9b33b 4abfe6150cb271db84a4094e4d7cef1c50a13472 fred-20150923-git fred.asd
freebsd-sysctl http://beta.quicklisp.org/archive/freebsd-sysctl/2021-02-28/freebsd-sysctl-20210228-git.tgz 4552 cf7b007e51961e990da29ab5302986ac a109554e19316a70012c3526af859163b0b0569d freebsd-sysctl-20210228-git freebsd-sysctl.asd
freesound http://beta.quicklisp.org/archive/freesound/2021-04-11/freesound-20210411-git.tgz 17703 5dcff875a4ce830da43093a7e4fa5e22 824ca447571cadbf70032fe155b4c40d8a9c4458 freesound-20210411-git freesound.asd
fresnel http://beta.quicklisp.org/archive/fresnel/2021-05-31/fresnel-20210531-git.tgz 266678 f58f132544326ea58feea97d2b97b021 488933f6ca5121799c725059f928235e627e0ea4 fresnel-20210531-git fresnel.asd
froute http://beta.quicklisp.org/archive/froute/2018-07-11/froute-20180711-git.tgz 6514 fc27a158d568985e863460c9ac816ecf a22f3a153e2c9314db0e08e625e75909687b0347 froute-20180711-git froute.asd
frpc http://beta.quicklisp.org/archive/frpc/2015-10-31/frpc-20151031-git.tgz 140181 c13346249483dd290b8cf22221df05f7 dafa923a87ffc6bc0b0cdbc4f9d81ee2fd140e48 frpc-20151031-git frpc.asd frpcgen.asd
fs-watcher http://beta.quicklisp.org/archive/fs-watcher/2017-11-30/fs-watcher-20171130-git.tgz 2293 98f697c99206be8e728e98414d56c28f fb546e596be903ecec976563d09982a5b3894885 fs-watcher-20171130-git fs-watcher.asd
fset http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz 123968 481e7207099c061459db68813e7bf70c 22c728c09fb798785e2671551afb0552ba2aa111 fset-20200925-git fset.asd
fsvd http://beta.quicklisp.org/archive/fsvd/2013-12-11/fsvd-20131211-git.tgz 8009 b6459ca9296f6e331cef49ab5580c766 392c65723a931eb2e8a4bd752d7abf95fc818b5a fsvd-20131211-git fsvd.asd
fucc http://beta.quicklisp.org/archive/fucc/2020-04-27/fucc-v0.2.2.tgz 32965 4659497c5933263fb9f090efc2c25eee e8f2f761914357cd2c81f7f5faf110811c50e501 fucc-v0.2.2 fucc-generator.asd fucc-parser.asd
function-cache http://beta.quicklisp.org/archive/function-cache/2018-12-10/function-cache-20181210-git.tgz 12754 c9ed7dd8f103273bd9daa06b5a720944 98e3470ccaccbd88c7dbfe5e77f19cc742446fc1 function-cache-20181210-git function-cache-clsql.asd function-cache.asd
functional-trees http://beta.quicklisp.org/archive/functional-trees/2021-05-31/functional-trees-20210531-git.tgz 198653 e22dfd246627f2f7d5d24d69df673c78 4310fd7056ead473793f2186dd3597597c9ef585 functional-trees-20210531-git functional-trees.asd
fuzzy-match http://beta.quicklisp.org/archive/fuzzy-match/2021-01-24/fuzzy-match-20210124-git.tgz 4039 eb85bfb02035083c0afc1f9fe277f2f3 90711c815346331378d9b351cd82990aa65a17e5 fuzzy-match-20210124-git fuzzy-match.asd
fxml http://beta.quicklisp.org/archive/fxml/2021-02-28/fxml-20210228-git.tgz 840614 b87843aaecd341b14cf060b09b422abf e1e2309c18b07eb7015188ae4f3345c54ca1fb95 fxml-20210228-git fxml.asd
gadgets http://beta.quicklisp.org/archive/gadgets/2021-04-11/gadgets-20210411-git.tgz 26080 09856ecff6114015295041b1c0b42612 2427f560532ff967ac1808e48c443ced9e1c9277 gadgets-20210411-git gadgets.asd test-gadgets.asd
garbage-pools http://beta.quicklisp.org/archive/garbage-pools/2021-01-24/garbage-pools-20210124-git.tgz 45020 6141f22a295ad535669edae4191e1480 2ccc8ef843071e2d0af9707417f95b482d713da0 garbage-pools-20210124-git garbage-pools-test.asd garbage-pools.asd
gcm http://beta.quicklisp.org/archive/gcm/2014-12-17/gcm-20141217-git.tgz 2461 6836ca1144f86e181cc4684a4be58c10 fddbfbef63cfa8f9301405fc5d5ace4a495b6fe5 gcm-20141217-git gcm.asd
geco http://beta.quicklisp.org/archive/geco/2021-02-28/geco-20210228-git.tgz 468060 3ca7ecc09edf1ec1813b871fe105a4e0 94bb815984f33508feee6fdf416098eff53d4353 geco-20210228-git geco.asd
gendl http://beta.quicklisp.org/archive/gendl/2021-05-31/gendl-devo-eb1d2469-git.tgz 15343057 0a9c00821e2da2bf7e8739b62f11eba2 ada37b979ec708bb22458b05b6f02776c928aca5 gendl-devo-eb1d2469-git apps/dom/dom.asd apps/geysr/geysr.asd apps/graphs/graphs.asd apps/legacy/ta2/ta2.asd apps/legacy/tasty/tasty.asd apps/translators/translators.asd apps/tree/tree.asd apps/yadd/yadd.asd base/base.asd cl-lite/cl-lite.asd demos/bus/bus.asd demos/ledger/ledger.asd demos/robot/robot.asd demos/wire-world/wire-world.asd gendl-asdf/gendl-asdf.asd gendl.asd geom-base/geom-base.asd glisp/glisp.asd gwl-graphics/gwl-graphics.asd gwl/gwl.asd regression/regression.asd setup-cffi/setup-cffi.asd surf/surf.asd
generators http://beta.quicklisp.org/archive/generators/2013-06-15/generators-20130615-git.tgz 4999 e0de3d2f81b7d5802403186012bc37b6 f9df68f27c422f6dcce84f0635a42500ca2d6e39 generators-20130615-git generators.asd
generic-cl http://beta.quicklisp.org/archive/generic-cl/2021-05-31/generic-cl-20210531-git.tgz 75016 944fe3edfec4a27959cfb33c677d3278 702a15d89b2b7a6fb0b91e66e80947c4f5fcfe77 generic-cl-20210531-git generic-cl.asd generic-cl.util.asd
generic-comparability http://beta.quicklisp.org/archive/generic-comparability/2018-01-31/generic-comparability-20180131-git.tgz 5622 9cc021f7f580a6e4951066f629bc56f3 7ef5b496c236d42f4fdf529ae257a2e99a9e4417 generic-comparability-20180131-git generic-comparability.asd
generic-sequences http://beta.quicklisp.org/archive/generic-sequences/2015-07-09/generic-sequences-20150709-git.tgz 106323 be208c2f1e6ea5ecd39355d24676312c 330178da719e73413c84f11e42170e76cf60b657 generic-sequences-20150709-git generic-sequences-cont.asd generic-sequences-iterate.asd generic-sequences-stream.asd generic-sequences-test.asd generic-sequences.asd
geneva http://beta.quicklisp.org/archive/geneva/2016-12-04/geneva-20161204-git.tgz 28218 6539a3fb3b4d8e6c2f4c8b1193ded5b3 80144517cb11bd17dd0c6e04470faa450855292e geneva-20161204-git geneva-cl.asd geneva-html.asd geneva-latex.asd geneva-mk2.asd geneva-plain-text.asd geneva-tex.asd geneva.asd open-geneva.asd
genhash http://beta.quicklisp.org/archive/genhash/2018-12-10/genhash-20181210-git.tgz 4210 373e52616aa9563899004e5f017cff6b 36a71477e3ddb2de935ff044dbb9bbe38cc48c76 genhash-20181210-git genhash.asd
geowkt http://beta.quicklisp.org/archive/geowkt/2020-06-10/geowkt-20200610-git.tgz 152071 9e60104a35566b61ade31c7d6d1b3177 c551261973b18b4270ac13e871af581048579b63 geowkt-20200610-git geowkt-update.asd geowkt.asd
getopt http://beta.quicklisp.org/archive/getopt/2015-09-23/getopt-20150923-git.tgz 5108 adc97a0ae99d65edff231b35862d67dd 001d521ec954ddd8222f708316c04c6e522e2b16 getopt-20150923-git getopt.asd
gettext http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz 23766 d162cb5310db5011c82ef6343fd280ed 896479742580c8abecf8f47b77c48d56988b3089 gettext-20171130-git gettext-example/gettext-example.asd gettext-tests/gettext-tests.asd gettext.asd
git-file-history http://beta.quicklisp.org/archive/git-file-history/2016-08-25/git-file-history-20160825-git.tgz 2640 a642d433a7fd6c73b1c81ad21ab5223e 7522386a8d66527f352d2b63c66feab5814769df git-file-history-20160825-git git-file-history-test.asd git-file-history.asd
glacier http://beta.quicklisp.org/archive/glacier/2021-04-11/glacier-20210411-git.tgz 8434 dc9e61864aa8bbb16c697d386945f32e b8462195aff694f245c414af2866821ce5e00d1b glacier-20210411-git glacier.asd
glad-blob http://beta.quicklisp.org/archive/glad-blob/2020-10-16/glad-blob-stable-git.tgz 324540 e9ec14a1d0e6e676bbda33020a6b73d8 6fbc0658110a397b7e5b6255117e91d9e07b4d30 glad-blob-stable-git glad-blob.asd
glass http://beta.quicklisp.org/archive/glass/2015-07-09/glass-20150709-git.tgz 70206 45acf599d8810960366575efe9e6dae4 49a0edeb8c25222add274d8ec7aebb8416fda42d glass-20150709-git glass.asd
glaw http://beta.quicklisp.org/archive/glaw/2018-02-28/glaw-20180228-git.tgz 1427712 aa341fdc184de0a4be21654af6b95d5a 361ba78fe7b6456b03bf8ab9c49d6330c2e3b52a glaw-20180228-git glaw-examples.asd glaw-imago.asd glaw-sdl.asd glaw.asd
glfw-blob http://beta.quicklisp.org/archive/glfw-blob/2020-10-16/glfw-blob-stable-git.tgz 624786 e089f3cda24bf2842b87fd54a50b7c1e 4262675dffec229416e6bcb6579db1246aaaad50 glfw-blob-stable-git glfw-blob.asd
glisph http://beta.quicklisp.org/archive/glisph/2017-04-03/glisph-20170403-git.tgz 2341692 8fbfbd69a4b60b1cf7456b1a05332d37 9316f601eb05d9db8eebc61a3f0746227ccf1062 glisph-20170403-git glisph-test.asd glisph.asd
glkit http://beta.quicklisp.org/archive/glkit/2020-10-16/glkit-20201016-git.tgz 15290 5d7acb49daa6ba26d15399a65f09ab76 72aaa32c6c62d64da32b9af19dc44c990dd23a1c glkit-20201016-git glkit-examples.asd glkit.asd
global-vars http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz 3581 dd3153ee75c972a80450aa00644b2200 06ef315e35eaf447159303a16827e05cc28af887 global-vars-20141106-git global-vars-test.asd global-vars.asd
glop http://beta.quicklisp.org/archive/glop/2017-10-19/glop-20171019-git.tgz 85964 329610c0ffc7a862ce454d1901895bca 7d196144d503e8bba5a1ea8b4afe1a19927f8ac6 glop-20171019-git glop-test.asd glop.asd
glsl-packing http://beta.quicklisp.org/archive/glsl-packing/2018-01-31/glsl-packing-20180131-git.tgz 11241 32b129a2f045f76689c253d13aa8c8bc 3d93bc0affd8a6db19ed7397ed211e4499de0eae glsl-packing-20180131-git glsl-packing.asd
glsl-spec http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 133677 52760939a269acce6b2cba8dbde81ef7 4427cd544f8db5028d5acf54c85f55f398d8a8e7 glsl-spec-release-quicklisp-f04476f7-git glsl-docs.asd glsl-spec.asd glsl-symbols.asd
glsl-toolkit http://beta.quicklisp.org/archive/glsl-toolkit/2020-09-25/glsl-toolkit-20200925-git.tgz 35627 47960195256ec6135597b97cb3e01e80 0fe7eb442b5674c9159968b88dcc085470a809ac glsl-toolkit-20200925-git glsl-toolkit.asd
glu-tessellate http://beta.quicklisp.org/archive/glu-tessellate/2015-06-08/glu-tessellate-20150608-git.tgz 4736 bebb4d2d5c471ecd0c542ea01b7c48ab 38ef8ee019ff2e082ecb7b582ab86ba245fc9b74 glu-tessellate-20150608-git glu-tessellate.asd
glyphs http://beta.quicklisp.org/archive/glyphs/2018-07-11/glyphs-20180711-git.tgz 16354 1b7cd4d3cda79fa8a35148fedf991e11 a14199085a75163efefd17cfce15fb0a6f3bc9ee glyphs-20180711-git glyphs-test.asd glyphs.asd
golden-utils http://beta.quicklisp.org/archive/golden-utils/2021-05-31/golden-utils-20210531-git.tgz 9596 e7d6d8bb7b602eac677a34fbe4e0ef0a 447a0aae7c21abb2e4b16a09f188401f2a435076 golden-utils-20210531-git golden-utils.asd
gooptest http://beta.quicklisp.org/archive/gooptest/2020-09-25/gooptest-20200925-git.tgz 96103 a91ab23c48e301dcfa4f76a4219ecd2e 4e343ac87eac7312ab25e7af87db10f2ec3f4c88 gooptest-20200925-git gooptest.asd
gordon http://beta.quicklisp.org/archive/gordon/2014-07-13/gordon-20140713-git.tgz 91027 aeb5459e295855ce205af6f3fa15621a 4d3952782099079c6f6f3070ed6c964f997fb83a gordon-20140713-git gordon.asd
graph http://beta.quicklisp.org/archive/graph/2021-01-24/graph-20210124-git.tgz 29666 c10a8aa1a2a40a5650d1f5e1dd59f651 29accf8061ee6406ab5aa56499a6b115f7757ead graph-20210124-git graph.asd
graylex http://beta.quicklisp.org/archive/graylex/2011-05-22/graylex-20110522-git.tgz 26517 ebed20d32a2ed9bb763adac09a28ee7d be6cbbe39543e51eafbd0aa171353905db8f251a graylex-20110522-git graylex-m4-example.asd graylex.asd
green-threads http://beta.quicklisp.org/archive/green-threads/2014-12-17/green-threads-20141217-git.tgz 7895 6f2ac5dde894abb04e9dbb55c70ee658 61959b4f605a546d4fbe07a6c84f6754e54e9563 green-threads-20141217-git green-threads.asd
group-by http://beta.quicklisp.org/archive/group-by/2014-02-11/group-by-20140211-git.tgz 9071 25caa8291d230d98f66bca57a28ee7a5 9f600f78dc04fbfd4a1260427eb3079278ba2932 group-by-20140211-git group-by.asd
grovel-locally http://beta.quicklisp.org/archive/grovel-locally/2018-02-28/grovel-locally-20180228-git.tgz 5896 e99f1dece67838730a8845c7fbbf19c6 c419b568a3d45c9232a2ceae328c099b736472bc grovel-locally-20180228-git grovel-locally.asd
gsll http://beta.quicklisp.org/archive/gsll/2018-08-31/gsll-quicklisp-eeeda841-git.tgz 317981 4b21395e6c4531dc067d00ed10b580e1 de3edd6293d93620c33938c1ca6318ae13b6bdb4 gsll-quicklisp-eeeda841-git gsll.asd
gtirb http://beta.quicklisp.org/archive/gtirb/2020-10-16/gtirb-quicklisp-dd18337d-git.tgz 603702 a9745104318ba92a154d3579ce16c628 159d2820e38ff3da1cf4a321df6d842eeaafec89 gtirb-quicklisp-dd18337d-git cl/gtirb.asd
gtirb-capstone http://beta.quicklisp.org/archive/gtirb-capstone/2021-04-11/gtirb-capstone-20210411-git.tgz 29185 d4b38f843817322f6da42fa3fcd31d37 3da86218e3aeb763376469490481e17fac8d1cdf gtirb-capstone-20210411-git gtirb-capstone.asd
gtirb-functions http://beta.quicklisp.org/archive/gtirb-functions/2021-04-11/gtirb-functions-20210411-git.tgz 10096 316b9f7476ff38d96d98204846c2f7f2 21c505a35e49604f3d37df7a6fbc1a9b97b8392e gtirb-functions-20210411-git gtirb-functions.asd
gtk-tagged-streams http://beta.quicklisp.org/archive/gtk-tagged-streams/2018-02-28/gtk-tagged-streams-quicklisp-d1c2b827-git.tgz 73541 952070238f59cf17496556a98f04e8f6 7d4a0f5d5895e8eb0ab4f7d0d37547dc7eb211b3 gtk-tagged-streams-quicklisp-d1c2b827-git gtk-tagged-streams.asd
gtwiwtg http://beta.quicklisp.org/archive/gtwiwtg/2021-04-11/gtwiwtg-20210411-git.tgz 30324 55a80b6fbfdfca16704f84947f6d7a57 15dfeac262dc45fd5378d375b577812c523e6a03 gtwiwtg-20210411-git gtwiwtg-test.asd gtwiwtg.asd
gtype http://beta.quicklisp.org/archive/gtype/2020-06-10/gtype-20200610-git.tgz 23153 016cdeb04cdc1b700ba9bf0cdeeaa6d4 37953b070441e2f639c9d98e42b96d287ccf6a20 gtype-20200610-git gtype.asd gtype.test.asd
gute http://beta.quicklisp.org/archive/gute/2021-05-31/gute-20210531-git.tgz 65346 e9b331d70ef6f1d79ff5b8e8ff8a0217 424c112ef4a38ea72d70d4a2dde25a33cb213c2e gute-20210531-git gute.asd
gzip-stream http://beta.quicklisp.org/archive/gzip-stream/2010-10-06/gzip-stream_0.2.8.tgz 12149 6f0c06fdf7ca0c3124593a2b99b69935 fbcd75fd3042c6fb7f33bcd4d7f065e2248a6a38 gzip-stream_0.2.8 gzip-stream.asd
halftone http://beta.quicklisp.org/archive/halftone/2019-07-10/halftone-20190710-git.tgz 5664 8b0e8a4411bd73acac297d124dd4d672 6b80181e4f8e8c2e564df62cf751f0c8d7d2667d halftone-20190710-git halftone.asd
harmony http://beta.quicklisp.org/archive/harmony/2021-05-31/harmony-20210531-git.tgz 28535 e484c0c3a957349c647ed864baf2b8df c9cdd857b2ab99367544b7d5403ff6591b3c46d0 harmony-20210531-git harmony.asd
hash-set http://beta.quicklisp.org/archive/hash-set/2016-06-28/hash-set-20160628-git.tgz 6076 254fe9e8496265f078c4151ba3023f1b c1ddb19b474dfb9cc36ed6d5fc1858a15181d8ac hash-set-20160628-git hash-set-tests.asd hash-set.asd
hdf5-cffi http://beta.quicklisp.org/archive/hdf5-cffi/2018-02-28/hdf5-cffi-20180228-git.tgz 54363 dbe93f460641f2be9a9c1a910d4ef315 f6a7edd796abf4c379fe7e954690e6362d342600 hdf5-cffi-20180228-git hdf5-cffi.asd hdf5-cffi.examples.asd hdf5-cffi.test.asd
heap http://beta.quicklisp.org/archive/heap/2018-10-18/heap-20181018-git.tgz 2871 a2355ef9c113a3335919a45195083951 3c94679187d9a855a343647f8503812c0925f4f9 heap-20181018-git heap.asd
helambdap http://beta.quicklisp.org/archive/helambdap/2021-04-11/helambdap-20210411-git.tgz 101217 a4deff30c05c5fff90a8dc2656005cd5 92b9732f2b0299da89a89903d7b7eb90f897f931 helambdap-20210411-git helambdap.asd
hemlock http://beta.quicklisp.org/archive/hemlock/2016-12-08/hemlock-20161208-git.tgz 1283394 743d6fab15c5eed78c259f7afb5cd748 dd3196e78efee2f55be6e08adfe2d5dafc308d2f hemlock-20161208-git hemlock.base.asd hemlock.clx.asd hemlock.qt.asd hemlock.tty.asd
hermetic http://beta.quicklisp.org/archive/hermetic/2019-10-07/hermetic-20191007-git.tgz 4564 72d6a7322c98bf3040e88bb17b2f8b27 532f1f055d8e3a277a123d6c7304588457c712ec hermetic-20191007-git hermetic.asd
herodotus http://beta.quicklisp.org/archive/herodotus/2021-05-31/herodotus-20210531-git.tgz 6728 65dcd2e19c30edbca1de07c17e015ae2 cf765a6d19d8cf3eb4b4efe9933df5c8ce2822ee herodotus-20210531-git herodotus.asd
hh-aws http://beta.quicklisp.org/archive/hh-aws/2015-08-04/hh-aws-20150804-git.tgz 16762 3d1f15d366f2c0b161f5c8b7759f868a 91faf1b47a18eeb129f608a594a43f230a0c10b4 hh-aws-20150804-git hh-aws.asd
hh-redblack http://beta.quicklisp.org/archive/hh-redblack/2015-10-31/hh-redblack-20151031-git.tgz 13091 4c61afc0406a8eacffebc494a1230beb b4f520f58d13ba5fddb22f042944db2dc02cd960 hh-redblack-20151031-git hh-redblack.asd
hh-web http://beta.quicklisp.org/archive/hh-web/2014-11-06/hh-web-20141106-git.tgz 49100 f18080fa53654dac8d77e5ed5d9953ff d40315c8346f3d101c6c3acecb2e3ae24100484a hh-web-20141106-git hh-web.asd
hl7-client http://beta.quicklisp.org/archive/hl7-client/2015-04-07/hl7-client-20150407-git.tgz 3149 ee18a7ef718e2fb389ad27e6dd628d6d ab1915436f9377f698785eacbafbb8615441956e hl7-client-20150407-git hl7-client.asd
hl7-parser http://beta.quicklisp.org/archive/hl7-parser/2016-05-31/hl7-parser-20160531-git.tgz 5154 92fc8f793d674bb661b0363e1721b3d0 388f1e64bb4d2b76818ac0c02299fcab906b5538 hl7-parser-20160531-git hl7-parser.asd
horner http://beta.quicklisp.org/archive/horner/2019-11-30/horner-20191130-git.tgz 4644 8b4eabb5b0d56ba098ac4a21ae82ff60 aee72c11f78279ad81a01703e3110f1fc0b8aff7 horner-20191130-git horner.asd
horse-html http://beta.quicklisp.org/archive/horse-html/2019-10-07/horse-html-20191007-git.tgz 6518 c5ecbddc6a5e3c40d8329d13a2683763 e5ca014c5a7ca7db9e1f24e27d33c0ee016a53fb horse-html-20191007-git horse-html.asd
house http://beta.quicklisp.org/archive/house/2021-01-24/house-20210124-git.tgz 25704 d2cd140ae063dd22dc440f24964d4b58 2d2f03538bf42a98cb22ee000ad454cd0cc3d380 house-20210124-git house.asd
ht-simple-ajax http://beta.quicklisp.org/archive/ht-simple-ajax/2013-04-21/ht-simple-ajax-20130421-git.tgz 10059 2787aebfc9c4d458206d50461f9443ab e1871d0755dbd48151d54c0c0e512f84798b3d4c ht-simple-ajax-20130421-git ht-simple-ajax.asd
html-encode http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz 3132 67f22483fe6d270b8830f78f285a1016 ce347529dbb02f008c079427bcb1050372cc24e4 html-encode-1.2 html-encode.asd
html-entities http://beta.quicklisp.org/archive/html-entities/2017-10-19/html-entities-20171019-git.tgz 39697 7a71bcd138f1f367f26e26e9c8e3a390 95458f97469288061d505756bc1f1518b37462d7 html-entities-20171019-git html-entities.asd
html-template http://beta.quicklisp.org/archive/html-template/2017-12-27/html-template-20171227-git.tgz 32376 fb77c495914641f5e67e51a370b2d5a3 946ce5d402bb54c60f84acd6c6d7f6590ede40f1 html-template-20171227-git html-template.asd
http-body http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz 15739 d46ac52643ae7dc148438f84a8107a79 1da29c1f6f6a06a5ab784acad8ebf702ba6c6216 http-body-20190813-git http-body-test.asd http-body.asd
http-get-cache http://beta.quicklisp.org/archive/http-get-cache/2018-02-28/http-get-cache-20180228-git.tgz 3610 807a9feefeed19159ff46c5733e13da6 2c4623119391c1403fd86f5c19e4865839e62e71 http-get-cache-20180228-git http-get-cache.asd
http-parse http://beta.quicklisp.org/archive/http-parse/2015-06-08/http-parse-20150608-git.tgz 30047 89b5449d33d1ad027606259f84b4c282 65a5aa04e2f6761fc87e6f2c7e7182462ebdaf3f http-parse-20150608-git http-parse-test.asd http-parse.asd
hu.dwim.asdf http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz 6599 feec747077117dd9850db77ed1919c21 d0e6febe9d9e73c48b94b2c84df86459f440bb43 hu.dwim.asdf-20200925-darcs hu.dwim.asdf.asd hu.dwim.asdf.documentation.asd
hu.dwim.bluez http://beta.quicklisp.org/archive/hu.dwim.bluez/2021-02-28/hu.dwim.bluez-stable-git.tgz 126719 4bf491c722174924394af2a9d18e4a78 b45470cd633ed756b260b6313ab5cc39f025ea79 hu.dwim.bluez-stable-git hu.dwim.bluez.asd
hu.dwim.common http://beta.quicklisp.org/archive/hu.dwim.common/2015-07-09/hu.dwim.common-20150709-darcs.tgz 3083 fff7f05c24e71a0270021909ca86a9ef 6ff0a62c94fee95b1440b59230f4a9c174d95093 hu.dwim.common-20150709-darcs hu.dwim.common.asd hu.dwim.common.documentation.asd
hu.dwim.common-lisp http://beta.quicklisp.org/archive/hu.dwim.common-lisp/2021-02-28/hu.dwim.common-lisp-stable-git.tgz 2104 4f0c7a375cc55381efdbeb17ef17dd7d 543dbd676d7ff71b9348f37531864a8e923ea66f hu.dwim.common-lisp-stable-git hu.dwim.common-lisp.asd hu.dwim.common-lisp.documentation.asd
hu.dwim.computed-class http://beta.quicklisp.org/archive/hu.dwim.computed-class/2020-04-27/hu.dwim.computed-class-20200427-darcs.tgz 18753 694fb7d3accec9dda74b6a402a3abf46 1cacf6d60db7f83ff1dae5dc0ca7940c315370ab hu.dwim.computed-class-20200427-darcs hu.dwim.computed-class+hu.dwim.logger.asd hu.dwim.computed-class+swank.asd hu.dwim.computed-class.asd hu.dwim.computed-class.documentation.asd hu.dwim.computed-class.test.asd
hu.dwim.debug http://beta.quicklisp.org/archive/hu.dwim.debug/2019-01-07/hu.dwim.debug-20190107-darcs.tgz 6637 18d7d06110fdbd454e350d92cf5f17cc 3ba6fdf418010b6d7dc03d3dc95ec7c4171d6933 hu.dwim.debug-20190107-darcs hu.dwim.debug.asd hu.dwim.debug.documentation.asd hu.dwim.debug.test.asd
hu.dwim.def http://beta.quicklisp.org/archive/hu.dwim.def/2020-10-16/hu.dwim.def-20201016-darcs.tgz 20367 c4d7469472f57cd700d8319e35dd5f32 1195166e5a0d8f2cdfb922139814cc07ed50907a hu.dwim.def-20201016-darcs hu.dwim.def+cl-l10n.asd hu.dwim.def+contextl.asd hu.dwim.def+hu.dwim.common.asd hu.dwim.def+hu.dwim.delico.asd hu.dwim.def+swank.asd hu.dwim.def.asd hu.dwim.def.documentation.asd hu.dwim.def.namespace.asd hu.dwim.def.test.asd
hu.dwim.defclass-star http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2021-02-28/hu.dwim.defclass-star-stable-git.tgz 7909 adb295fecbe4570f4c03dbd857b2ddbc cf2fb71d629e4775e70d1dd6bffd741105a30808 hu.dwim.defclass-star-stable-git hu.dwim.defclass-star+contextl.asd hu.dwim.defclass-star+hu.dwim.def+contextl.asd hu.dwim.defclass-star+hu.dwim.def.asd hu.dwim.defclass-star+swank.asd hu.dwim.defclass-star.asd hu.dwim.defclass-star.documentation.asd hu.dwim.defclass-star.test.asd
hu.dwim.delico http://beta.quicklisp.org/archive/hu.dwim.delico/2020-09-25/hu.dwim.delico-20200925-darcs.tgz 20008 7964d11beb354a681cbc0afa7900137d 007fb702d1a8440bd01d162d0bd2d44cfd712219 hu.dwim.delico-20200925-darcs hu.dwim.delico.asd
hu.dwim.graphviz http://beta.quicklisp.org/archive/hu.dwim.graphviz/2017-08-30/hu.dwim.graphviz-20170830-darcs.tgz 11239 421c6dacc287bbc76443cc0e657ccaec 187e541dfe4add0b4ce0e9d111c15a5cd30070fd hu.dwim.graphviz-20170830-darcs hu.dwim.graphviz.asd hu.dwim.graphviz.documentation.asd hu.dwim.graphviz.test.asd
hu.dwim.logger http://beta.quicklisp.org/archive/hu.dwim.logger/2021-02-28/hu.dwim.logger-stable-git.tgz 11236 a18c0ecbf50b5c52d154379fa09f1f28 4e00e3853ce40243389cd7eea3de977898770d95 hu.dwim.logger-stable-git hu.dwim.logger+iolib.asd hu.dwim.logger+swank.asd hu.dwim.logger.asd hu.dwim.logger.documentation.asd hu.dwim.logger.test.asd
hu.dwim.partial-eval http://beta.quicklisp.org/archive/hu.dwim.partial-eval/2017-11-30/hu.dwim.partial-eval-20171130-darcs.tgz 24393 78c498a3ba353e0a62e15df49a459078 9acbc3ab6c50c1104c94047ef747456a7cffd854 hu.dwim.partial-eval-20171130-darcs hu.dwim.partial-eval.asd hu.dwim.partial-eval.documentation.asd hu.dwim.partial-eval.test.asd
hu.dwim.perec http://beta.quicklisp.org/archive/hu.dwim.perec/2020-04-27/hu.dwim.perec-20200427-darcs.tgz 183176 7cb23e8d118374a13e2b6dbb06853828 28c202325a006b2d5edd885418c7f2f7821b60eb hu.dwim.perec-20200427-darcs hu.dwim.perec+hu.dwim.quasi-quote.xml.asd hu.dwim.perec+iolib.asd hu.dwim.perec+swank.asd hu.dwim.perec.all.asd hu.dwim.perec.all.test.asd hu.dwim.perec.asd hu.dwim.perec.documentation.asd hu.dwim.perec.oracle.asd hu.dwim.perec.oracle.test.asd hu.dwim.perec.postgresql.asd hu.dwim.perec.postgresql.test.asd hu.dwim.perec.sqlite.asd hu.dwim.perec.sqlite.test.asd hu.dwim.perec.test.asd
hu.dwim.presentation http://beta.quicklisp.org/archive/hu.dwim.presentation/2021-05-31/hu.dwim.presentation-20210531-darcs.tgz 1733303 2079e21b87f055ea39d27fd46ed5ff60 e0116c691a3346095656aadabe2e88a6a7411549 hu.dwim.presentation-20210531-darcs hu.dwim.presentation+cl-graph+cl-typesetting.asd hu.dwim.presentation+cl-typesetting.asd hu.dwim.presentation+hu.dwim.stefil.asd hu.dwim.presentation+hu.dwim.web-server.asd hu.dwim.presentation.asd
hu.dwim.quasi-quote http://beta.quicklisp.org/archive/hu.dwim.quasi-quote/2021-02-28/hu.dwim.quasi-quote-stable-git.tgz 71836 c88d05e82949bd497d9c220b2045a7cb ac5e304a6fc7cbf5f556d98c96cb5b5cfb226603 hu.dwim.quasi-quote-stable-git hu.dwim.quasi-quote.asd hu.dwim.quasi-quote.css.asd hu.dwim.quasi-quote.documentation.asd hu.dwim.quasi-quote.js.asd hu.dwim.quasi-quote.pdf.asd hu.dwim.quasi-quote.test.asd hu.dwim.quasi-quote.xml+cxml.asd hu.dwim.quasi-quote.xml+hu.dwim.quasi-quote.js.asd hu.dwim.quasi-quote.xml.asd
hu.dwim.rdbms http://beta.quicklisp.org/archive/hu.dwim.rdbms/2020-10-16/hu.dwim.rdbms-20201016-darcs.tgz 117059 3f48287deedd67d720e8efca191e59c8 502e3f86922ac59525ecd485d92137c6f66e4b82 hu.dwim.rdbms-20201016-darcs hu.dwim.rdbms.all.asd hu.dwim.rdbms.all.test.asd hu.dwim.rdbms.asd hu.dwim.rdbms.documentation.asd hu.dwim.rdbms.oracle.asd hu.dwim.rdbms.oracle.test.asd hu.dwim.rdbms.postgresql.asd hu.dwim.rdbms.postgresql.test.asd hu.dwim.rdbms.sqlite.asd hu.dwim.rdbms.sqlite.test.asd hu.dwim.rdbms.test.asd
hu.dwim.reiterate http://beta.quicklisp.org/archive/hu.dwim.reiterate/2021-02-28/hu.dwim.reiterate-stable-git.tgz 21534 7f325a45a3a190ff84a15ab517e11bab 13652445b0fd116844beef5c9460673206a565df hu.dwim.reiterate-stable-git hu.dwim.reiterate+hu.dwim.logger.asd hu.dwim.reiterate.asd
hu.dwim.sdl http://beta.quicklisp.org/archive/hu.dwim.sdl/2021-02-28/hu.dwim.sdl-stable-git.tgz 1788172 ef37b105d7390386fd65c0e1c3d6840a 47be7c7d8804934e7deabfa57ce3ecfc0b71fb05 hu.dwim.sdl-stable-git hu.dwim.sdl.asd
hu.dwim.serializer http://beta.quicklisp.org/archive/hu.dwim.serializer/2016-12-04/hu.dwim.serializer-20161204-darcs.tgz 12092 bb15ef778eca814e4f1caa5ae05fb7ad 197e6d4df639b4bbd976e819b3247d20a937bb5e hu.dwim.serializer-20161204-darcs hu.dwim.serializer.asd hu.dwim.serializer.documentation.asd hu.dwim.serializer.test.asd
hu.dwim.stefil http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz 23549 3e87e0973f8373e342b75b13c802cc53 3f756c1948e2e6c31af7cf9cd689dff988f5955b hu.dwim.stefil-20200218-darcs hu.dwim.stefil+hu.dwim.def+swank.asd hu.dwim.stefil+hu.dwim.def.asd hu.dwim.stefil+swank.asd hu.dwim.stefil.asd
hu.dwim.syntax-sugar http://beta.quicklisp.org/archive/hu.dwim.syntax-sugar/2016-12-04/hu.dwim.syntax-sugar-20161204-darcs.tgz 19274 c155225d3a2b9a329adfcb705b915a91 2f4c5e896d05181efcf0debf1741ac3e0e2fca06 hu.dwim.syntax-sugar-20161204-darcs hu.dwim.syntax-sugar.asd hu.dwim.syntax-sugar.documentation.asd hu.dwim.syntax-sugar.test.asd
hu.dwim.uri http://beta.quicklisp.org/archive/hu.dwim.uri/2018-02-28/hu.dwim.uri-20180228-darcs.tgz 8543 0e3408935a77c74a944f9a34dae3e728 f26121022ce365911e2ab03d8de2af07b8ec2a2d hu.dwim.uri-20180228-darcs hu.dwim.uri.asd hu.dwim.uri.test.asd
hu.dwim.util http://beta.quicklisp.org/archive/hu.dwim.util/2020-03-25/hu.dwim.util-20200325-darcs.tgz 51263 ea0585099425f9dcc3b1f12c7532a160 b056e0bc9f99e27e3cbed942059801174f0b738a hu.dwim.util-20200325-darcs hu.dwim.util+iolib.asd hu.dwim.util.asd hu.dwim.util.documentation.asd hu.dwim.util.test.asd
hu.dwim.walker http://beta.quicklisp.org/archive/hu.dwim.walker/2021-02-28/hu.dwim.walker-stable-git.tgz 37891 27371190d8fd780827efca6e669b8915 93ef06122f56344d536e22062993090b23c73ddc hu.dwim.walker-stable-git hu.dwim.walker.asd
hu.dwim.web-server http://beta.quicklisp.org/archive/hu.dwim.web-server/2020-10-16/hu.dwim.web-server-20201016-darcs.tgz 511961 164b48aead0bee4f8ba21bf6b5862ae6 9d6960c76250be0005f0018230777557d8a17657 hu.dwim.web-server-20201016-darcs hu.dwim.web-server+swank.asd hu.dwim.web-server.application+hu.dwim.perec.asd hu.dwim.web-server.application.asd hu.dwim.web-server.application.test.asd hu.dwim.web-server.asd hu.dwim.web-server.documentation.asd hu.dwim.web-server.test.asd hu.dwim.web-server.websocket.asd
hu.dwim.zlib http://beta.quicklisp.org/archive/hu.dwim.zlib/2021-02-28/hu.dwim.zlib-stable-git.tgz 164140 cab72513cbcc09f1af44ce1b875f4bfc afaecf3b3c2fea73f3a94fdb095d1759d1075139 hu.dwim.zlib-stable-git hu.dwim.zlib.asd
huffman http://beta.quicklisp.org/archive/huffman/2018-10-18/huffman-20181018-git.tgz 2956 195c5722536473cadd283336008bab57 a458727ba8a5e188ecc18e64544836e83fab9b24 huffman-20181018-git huffman.asd
humbler http://beta.quicklisp.org/archive/humbler/2019-07-10/humbler-20190710-git.tgz 48317 a24a0968292724abb594d0a114e61e73 94ec67e5fe60b158d713497084db49be582d1b3d humbler-20190710-git humbler.asd
hunchenissr http://beta.quicklisp.org/archive/hunchenissr/2021-05-31/hunchenissr-20210531-git.tgz 15614 ea23658cbe26946da130a4ca05719d32 ab64e5a7ff23428e144cbc83c344463806ba64f1 hunchenissr-20210531-git hunchenissr.asd
hunchensocket http://beta.quicklisp.org/archive/hunchensocket/2021-05-31/hunchensocket-20210531-git.tgz 12605 a529901753a54eb48c93aa86b0c3747d 7550e34e4df80b1861ac5b52c2fca8ea03b11986 hunchensocket-20210531-git hunchensocket.asd
hunchentools http://beta.quicklisp.org/archive/hunchentools/2016-12-04/hunchentools-20161204-git.tgz 5310 3e4c00484a54fce107969941aa695e35 81c5f8bed80dd333cbc1be69da3bb2c752d7ebf9 hunchentools-20161204-git hunchentools.asd
hunchentoot http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz 269060 b1bb0c8df41a0ffaba4309e5084930fe dd8922ee966104ffc6fe917392a4c407fb259935 hunchentoot-v1.3.0 hunchentoot.asd
hunchentoot-auth http://beta.quicklisp.org/archive/hunchentoot-auth/2014-01-13/hunchentoot-auth-20140113-git.tgz 5878 f6763dbbfd1f5421e46ff3e9648eeef6 fffbfd821814f8460262143be04c16db0d5f29f7 hunchentoot-auth-20140113-git hunchentoot-auth.asd
hunchentoot-cgi http://beta.quicklisp.org/archive/hunchentoot-cgi/2014-02-11/hunchentoot-cgi-20140211-git.tgz 4322 e300c5959f7100b7e032066239d82541 bf8b301b9f4a99a4ef2237581df81f2d848349a4 hunchentoot-cgi-20140211-git hunchentoot-cgi.asd
hunchentoot-errors http://beta.quicklisp.org/archive/hunchentoot-errors/2021-05-31/hunchentoot-errors-20210531-git.tgz 6347 50becc2514ef9c475a6fc9f5e002875b de9f676127660029185512afdbcd46c38ed140b8 hunchentoot-errors-20210531-git hunchentoot-errors.asd
hunchentoot-multi-acceptor http://beta.quicklisp.org/archive/hunchentoot-multi-acceptor/2020-12-20/hunchentoot-multi-acceptor-20201220-git.tgz 6437 cddb0aa99b27d06f60096513e7c145b6 d3975a3ebb13a79fc59a1166f4534611d71cb39e hunchentoot-multi-acceptor-20201220-git hunchentoot-multi-acceptor.asd
hunchentoot-single-signon http://beta.quicklisp.org/archive/hunchentoot-single-signon/2013-11-11/hunchentoot-single-signon-20131111-git.tgz 2279 52b6a4438e7c63209f674eadba35168c a67c2e3a07f00cf2738ac14400ebdc44868195dc hunchentoot-single-signon-20131111-git hunchentoot-single-signon.asd
hyperluminal-mem http://beta.quicklisp.org/archive/hyperluminal-mem/2021-04-11/hyperluminal-mem-20210411-git.tgz 89392 ed5b8a8da1422699023efaa9484c4820 7bc7bcbb10a6e81c496ffebe597fc020dca10127 hyperluminal-mem-20210411-git hyperluminal-mem-test.asd hyperluminal-mem.asd
hyperobject http://beta.quicklisp.org/archive/hyperobject/2020-10-16/hyperobject-20201016-git.tgz 44260 db496f42ae9221ae6be6f5f5c97dbe00 7a218757b838fcdc7437afcc1d00e430919e57bc hyperobject-20201016-git hyperobject.asd
hyperspec http://beta.quicklisp.org/archive/hyperspec/2018-12-10/hyperspec-20181210-git.tgz 23892 742d80f89020e90234f1b8b6f00a3056 4bafc32c2cfd86b013525385e98ec7fa6a6a32c7 hyperspec-20181210-git hyperspec.asd
ia-hash-table http://beta.quicklisp.org/archive/ia-hash-table/2016-03-18/ia-hash-table-20160318-git.tgz 4491 59a825b5b809aabb5ac5db96728756b7 e23c512d4ab5c06fe31cda3fddad17e88981d2c5 ia-hash-table-20160318-git ia-hash-table.asd ia-hash-table.test.asd
iclendar http://beta.quicklisp.org/archive/iclendar/2019-07-10/iclendar-20190710-git.tgz 88066 4ce57c1359648e497fb25962ec2c0594 0bbc2d371b1f87d4077dff0e978f29dc9ebeca50 iclendar-20190710-git iclendar.asd
id3v2 http://beta.quicklisp.org/archive/id3v2/2016-02-08/id3v2-20160208-git.tgz 3963 427ec2cf9a5f8a8be20a663c336c2288 523e03187ec89b0ce2fe95c9bb9dd1376b6856e4 id3v2-20160208-git id3v2-test.asd id3v2.asd
idna http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz 6242 85b91a66efe4381bf116cdb5d2b756b6 a32def3834b2130ace95c31af82c6c8b92365c53 idna-20120107-git idna.asd
ieee-floats http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz 5325 3434b4d91224ca6a817ced9d83f14bb6 fa9e496f0fcf4ba05754fc32787f728ca6e2d674 ieee-floats-20170830-git ieee-floats.asd
illogical-pathnames http://beta.quicklisp.org/archive/illogical-pathnames/2016-08-25/illogical-pathnames-20160825-git.tgz 6071 386d2b1c0a4f280a52841f4a58ddfad2 dce6a9935768ed7323f4744e9d42752aa52af3d2 illogical-pathnames-20160825-git illogical-pathnames.asd
illusion http://beta.quicklisp.org/archive/illusion/2018-08-31/illusion-20180831-git.tgz 5591 e29adc45f1e630a68b7a2594ce8e1d38 b3edb224814b92f42bdc85f76cfda22fb4a61caf illusion-20180831-git illusion-test.asd illusion.asd
image http://beta.quicklisp.org/archive/image/2012-01-07/image-20120107-git.tgz 12334 f6e1bdabba64a9be1f31602ef87b993c f54562f11b8c6b005a480974bf6742c3dff33864 image-20120107-git image.asd
imago http://beta.quicklisp.org/archive/imago/2021-04-11/imago-20210411-git.tgz 2289825 9203e3c2d43fa9c9b11fab0e9d0914b5 988d04a457fd2df2463bc7f86830b28723593e1a imago-20210411-git imago.asd
immutable-struct http://beta.quicklisp.org/archive/immutable-struct/2015-07-09/immutable-struct-20150709-git.tgz 2413 dd68ea45a64bd739e733aa2bcf59955c cca9b233fdb9c441fd02a0015a91b982b34978be immutable-struct-20150709-git immutable-struct.asd
incf-cl http://beta.quicklisp.org/archive/incf-cl/2019-07-10/incf-cl-20190710-git.tgz 14029 d517885c08a3c9ab7ab0f56071660ed4 4c29c854fba0610eb9f8adc42b99a1e15bff8bfe incf-cl-20190710-git incf-cl.asd
incognito-keywords http://beta.quicklisp.org/archive/incognito-keywords/2013-01-28/incognito-keywords-1.1.tgz 3817 4759f96fbe4f7873f52d126cec3d5b51 d01f0962811264cea7a3ae1abcc510fd0b177d07 incognito-keywords-1.1 incognito-keywords.asd
incongruent-methods http://beta.quicklisp.org/archive/incongruent-methods/2013-03-12/incongruent-methods-20130312-git.tgz 7171 9e41e9a0a9f33e4f9a00b7d525d8d9c2 73424d66cec5c544ac1fd30729d4357ee2ede37a incongruent-methods-20130312-git incongruent-methods.asd
inferior-shell http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz 11666 7ca5f15446ef80715758610a930bccba 757798da28183ea6b886b5fb62a35cd8d30e954b inferior-shell-20200925-git inferior-shell.asd
infix-dollar-reader http://beta.quicklisp.org/archive/infix-dollar-reader/2012-10-13/infix-dollar-reader-20121013-git.tgz 2671 b94e744bb2cb69b22b8ca1b94711372c 76156fbe2d0f809d57a8fb74355b4cd9a25c1272 infix-dollar-reader-20121013-git infix-dollar-reader-test.asd infix-dollar-reader.asd
infix-math http://beta.quicklisp.org/archive/infix-math/2017-08-30/infix-math-20170830-git.tgz 7244 3a4e1c58636f6126b6ad2a00a1bf0918 ea2bdbb2e223090a3bfa40f4bb120ab4dab730f9 infix-math-20170830-git infix-math.asd
inheriting-readers http://beta.quicklisp.org/archive/inheriting-readers/2021-01-24/inheriting-readers_1.0.1.tgz 9755 862b1f430463ea86be015e8cfd8f1838 187adf91e3c234a114f60e05541fac9736529c4b inheriting-readers_1.0.1 inheriting-readers.asd tests/inheriting-readers_tests.asd
injection http://beta.quicklisp.org/archive/injection/2016-05-31/injection-20160531-git.tgz 16529 fd550866b59e2f852a7457318435cc54 3688d8be08eecc9140e2f6141e94490409227a54 injection-20160531-git injection-test.asd injection.asd
inkwell http://beta.quicklisp.org/archive/inkwell/2019-07-10/inkwell-20190710-git.tgz 19455 80965d4bd6e377146f684c9f55dcdb50 a0e229d7125c2995ae6c28b1e2ce600d59c506da inkwell-20190710-git inkwell.asd
inlined-generic-function http://beta.quicklisp.org/archive/inlined-generic-function/2019-05-21/inlined-generic-function-20190521-git.tgz 13775 e9336f83fe941d4188063d5b8a1daee2 ddb708a3730c99fe766c6f7412119a1c828bd1a3 inlined-generic-function-20190521-git inlined-generic-function.asd inlined-generic-function.test.asd
inner-conditional http://beta.quicklisp.org/archive/inner-conditional/2020-09-25/inner-conditional-20200925-git.tgz 14654 b37d9771f6a619e011699d6e3d06a004 a01047f3e9b44dc46a117ac1d10f4ace51c2bad0 inner-conditional-20200925-git inner-conditional-test.asd inner-conditional.asd
inotify http://beta.quicklisp.org/archive/inotify/2015-06-08/inotify-20150608-git.tgz 3569 185ac26e780c2d0426b261fbbccca12a fce1a600d8dfddb1193e9ee71b0df2d58a2fe288 inotify-20150608-git inotify.asd
inquisitor http://beta.quicklisp.org/archive/inquisitor/2019-05-21/inquisitor-20190521-git.tgz 938309 b3ccd374ca6d78db990605fa34ca9e6f d9c38ed218610dd382652062ca3ddb5787d82906 inquisitor-20190521-git inquisitor-flexi-test.asd inquisitor-flexi.asd inquisitor-test.asd inquisitor.asd
integral http://beta.quicklisp.org/archive/integral/2020-03-25/integral-20200325-git.tgz 24608 046f587c11865e55a1a52302ea4ea22d 05f11859c3e63f38007c5d101914235bbd962ac9 integral-20200325-git integral-test.asd integral.asd
integral-rest http://beta.quicklisp.org/archive/integral-rest/2015-09-23/integral-rest-20150923-git.tgz 5803 335875a5465c16346cd29689873dc643 97379a1ff7b2b586b9f3bc8070f70be0009d7487 integral-rest-20150923-git integral-rest-test.asd integral-rest.asd
intel-hex http://beta.quicklisp.org/archive/intel-hex/2016-03-18/intel-hex-20160318-git.tgz 5977 0558406788710ac04f4493a66deb2ebe 43cece1a8cf9a6d2b3b574e95a94a9f6825f5ce0 intel-hex-20160318-git intel-hex-test.asd intel-hex.asd
intercom http://beta.quicklisp.org/archive/intercom/2013-06-15/intercom-20130615-git.tgz 32404 9188e4147f75529e5d5e24561d5c6c4e 953a7a49ab8700823c352a0a488486bc2a80f392 intercom-20130615-git lisp/intercom-examples.asd lisp/intercom.asd
interface http://beta.quicklisp.org/archive/interface/2019-03-07/interface-20190307-hg.tgz 8186 2171f1127f13b79c82c56302b629c18b cbe7051bcbdb6fda388369eb1b31717a38217751 interface-20190307-hg interface.asd
introspect-environment http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz 9478 d129641b18376741e7106bd13e476cb8 7dfa7f15571db441319fa967e06e0a4d1c16c7fd introspect-environment-20200715-git introspect-environment-test.asd introspect-environment.asd
iolib http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz 255866 fc28d4cad6f8e43972df3baa6a8ac45c e84165ed45f8746baa282c0e6152460421cb9ed1 iolib-v0.8.3 iolib.asd iolib.asdf.asd iolib.base.asd iolib.common-lisp.asd iolib.conf.asd iolib.examples.asd iolib.grovel.asd iolib.tests.asd
ip-interfaces http://beta.quicklisp.org/archive/ip-interfaces/2018-12-10/ip-interfaces-0.2.1.tgz 14797 c85e479e1eb4139f8996b335e7d0e034 573b6f8413bdfe11863e649f8aa3ec990662c1b8 ip-interfaces-0.2.1 ip-interfaces-test.asd ip-interfaces.asd
irc-logger http://beta.quicklisp.org/archive/irc-logger/2015-09-23/irc-logger-20150923-git.tgz 10393 6d6b60c0d2ac53575ee5c644beb162c3 1b39d7fad92c3ef94747f9be086c567c1dd317bb irc-logger-20150923-git irc-logger.asd
ironclad http://beta.quicklisp.org/archive/ironclad/2021-04-11/ironclad-v0.55.tgz 1534440 c3c4a88e71ef37c9604662071069afcc 1c336365c6bb61daf0b5b86e80371e6f41bef642 ironclad-v0.55 ironclad-text.asd ironclad.asd
iso-8601-date http://beta.quicklisp.org/archive/iso-8601-date/2019-01-07/iso-8601-date-20190107-git.tgz 4440 b1ab5921a442d86bb2727b4a2bc9e8e0 f927777c79967a5afa2a419b5ef222a8817b9af7 iso-8601-date-20190107-git eclecticse.iso-8601-date.asd
iterate http://beta.quicklisp.org/archive/iterate/2021-05-31/iterate-release-b0f9a9c6-git.tgz 346126 0b2661e9b8195f3e5891aa14601e5a69 f3782561af0bc743648435277ad6d8bafd5d335c iterate-release-b0f9a9c6-git iterate.asd
iterate-clsql http://beta.quicklisp.org/archive/iterate-clsql/2013-03-12/iterate-clsql-20130312-http.tgz 2704 0950d7a9b29b8ddb9d16b45b9096bdae 8f74118d5f989b73db760bcb0a794e23fa185a0a iterate-clsql-20130312-http iterate-clsql.asd
jenkins http://beta.quicklisp.org/archive/jenkins/2013-03-12/jenkins-20130312-git.tgz 15878 53049d3dd8dfe5ea36738005c786f8d0 f3a1fad4ff41d91901a8fe5484bbb2b5df746119 jenkins-20130312-git jenkins.api.asd
jingoh http://beta.quicklisp.org/archive/jingoh/2021-02-28/jingoh-20210228-git.tgz 87070 0bd50bbb2a31286b9432b9c0bf53de1b 050d77a2e6f6422d60ce927584a3fad333c2b9e2 jingoh-20210228-git documentizer/jingoh.documentizer.asd documentizer/spec/jingoh.documentizer.test.asd examiner/jingoh.examiner.asd examiner/spec/jingoh.examiner.test.asd jingoh.asd org/jingoh.org.asd org/spec/jingoh.org.test.asd parallel/jingoh.parallel.asd parallel/spec/jingoh.parallel.test.asd reader/jingoh.reader.asd reader/spec/jingoh.reader.test.asd tester/jingoh.tester.asd tester/spec/jingoh.tester.test.asd
jonathan http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz 161447 27cad3c107544f587f9f33295c10d81e 83d396bc184d7dc3258910c5785552f7bc5d489f jonathan-20200925-git jonathan-test.asd jonathan.asd
jose http://beta.quicklisp.org/archive/jose/2018-07-11/jose-20180711-git.tgz 14142 92786104f9775ea657c37ae846526ab4 d90b3bc348676117c1639fbdc0553e805daa5861 jose-20180711-git jose.asd
jp-numeral http://beta.quicklisp.org/archive/jp-numeral/2019-05-21/jp-numeral-20190521-git.tgz 41673 1969e0dec2db5270d6e7517ed1d9001b d8d48074786dad5f54b8ef528f575d38c68be6af jp-numeral-20190521-git jp-numeral-test.asd jp-numeral.asd
jpeg-turbo http://beta.quicklisp.org/archive/jpeg-turbo/2020-12-20/jpeg-turbo-20201220-git.tgz 9904 1f516f53239cd39b0ba2a52b845b6380 51744509973a5e45a7442c817c0a086749724c81 jpeg-turbo-20201220-git jpeg-turbo.asd
jpl-queues http://beta.quicklisp.org/archive/jpl-queues/2010-10-06/jpl-queues-0.1.tgz 15113 7c3d14c955db0a5c8ece2b9409333ce0 39497c7cb7292433b5c5a83d7ceb7a6e09cac7b1 jpl-queues-0.1 jpl-queues.asd
js http://beta.quicklisp.org/archive/js/2018-01-31/js-20180131-git.tgz 64836 52f3ec4406ac27a84b65be99ebda51e0 85b589dc6d059502fb56c7b265121ff36712cf19 js-20180131-git cl-js.asd
js-parser http://beta.quicklisp.org/archive/js-parser/2015-04-07/js-parser-20150407-git.tgz 67870 4b86296f7eb3542447528822f7fa2612 4b2e27dfa07c730235c2014740b4d91540d0f656 js-parser-20150407-git js-parser-tests.asd js-parser.asd
json-mop http://beta.quicklisp.org/archive/json-mop/2021-04-11/json-mop-20210411-git.tgz 7526 af57f1dbd2ab596bbbc0281a19a17de7 82ead13180f57dbd54974a251387f9ceebfa08dc json-mop-20210411-git json-mop.asd tests/json-mop-tests.asd
json-responses http://beta.quicklisp.org/archive/json-responses/2019-03-07/json-responses-20190307-hg.tgz 4722 27b0c30fe8df35ecbaa2a7e860191dc1 393cfe5d2254c49fb28ad2ba24a95d3ee5d26c89 json-responses-20190307-hg json-responses.asd
json-streams http://beta.quicklisp.org/archive/json-streams/2017-10-19/json-streams-20171019-git.tgz 45679 b5ab07dce6bfa17782384ecd66bba4bc 8cc35c603b9fdef5e94b82da5dbb72f3551f5530 json-streams-20171019-git json-streams-tests.asd json-streams.asd
jsonrpc http://beta.quicklisp.org/archive/jsonrpc/2020-12-20/jsonrpc-20201220-git.tgz 11638 cc409124385988d244b0b18b95dfcd02 d7b5f403ca29e000f3f35ab6c3cfe30eb73c49ce jsonrpc-20201220-git jsonrpc.asd
jsown http://beta.quicklisp.org/archive/jsown/2020-02-18/jsown-20200218-git.tgz 14981 ecf8bfcc2a2ccbab9baddca6592b34ba 2517e044a05b10514cd820cc76c15232273ee46d jsown-20200218-git jsown.asd tests/jsown-tests.asd
jwacs http://beta.quicklisp.org/archive/jwacs/2018-02-28/jwacs-20180228-git.tgz 202732 9f9d92d2e616fddc3ceac0e5be375f8d 4e367cb507f1095f53b90aa52dab4b5ac83451f7 jwacs-20180228-git jwacs-tests.asd jwacs.asd
kebab http://beta.quicklisp.org/archive/kebab/2015-06-08/kebab-20150608-git.tgz 3165 b7136a488e5f7f202fd74c59516cac8e 7ba2ed7c0f2ed1ebc31f7c9776563257a5c12bdb kebab-20150608-git kebab-test.asd kebab.asd
kekule-clj http://beta.quicklisp.org/archive/kekule-clj/2021-05-31/kekule-clj-20210531-git.tgz 19958 5ec6704861d89c7d954b8808438350ab bc3b8d461db42ab7d6c6743341b1ef19f89b79ad kekule-clj-20210531-git kekule-clj.asd
kenzo http://beta.quicklisp.org/archive/kenzo/2020-03-25/kenzo-20200325-git.tgz 5286328 089acff0dbf9e5dc39491c803d2f79db 118c3900b45bc21760448060b7c6af87987d918f kenzo-20200325-git kenzo-test.asd kenzo.asd
keystone http://beta.quicklisp.org/archive/keystone/2020-04-27/keystone-20200427-git.tgz 4379942 cad54fc8c5b1b4b33e3c912f41f67947 47bffaaa0ed3fb22a6183bd6af0c2f9e98856acb keystone-20200427-git bindings/common-lisp/keystone.asd
kl-verify http://beta.quicklisp.org/archive/kl-verify/2012-09-09/kl-verify-20120909-git.tgz 1728 fd742a26d44433617cf60ded1b4954ac 573e3cde43bc677f4a5da6e76dc7d53923319c1f kl-verify-20120909-git kl-verify.asd
km http://beta.quicklisp.org/archive/km/2011-05-22/km-2-5-33.tgz 328656 f4ba865c0342c5cf8ebcb507becc5e56 57b80fb82b4ea580882fae61c663c79ba3e864ee km-2-5-33 km.asd
kmrcl http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz 56206 f86bc410907f748c3c453469702755b8 cc08a0ff889ee59b6c063f8f0e8123df28f795c8 kmrcl-20201016-git kmrcl.asd
l-math http://beta.quicklisp.org/archive/l-math/2019-03-07/l-math-20190307-git.tgz 46344 1d72a81ab46e4ebfda1c749ca67a0e90 a5a68998c4bfebdf452c4d4386fab465051c7eb4 l-math-20190307-git l-math.asd
l-system http://beta.quicklisp.org/archive/l-system/2018-02-28/l-system-20180228-git.tgz 13953 d42ca0e95be4d4cb4390e62119ac7934 89f30dbbdbc8a60a242abc5c63f1daf7851691c8 l-system-20180228-git l-system-examples.asd l-system.asd
laap http://beta.quicklisp.org/archive/laap/2017-08-30/laap-20170830-git.tgz 15178 5d86b49f328d314cdf22a5bda9565f1a 8e90156c16ad1a0ff95b9f29bc8828bee5123101 laap-20170830-git laap.asd
lack http://beta.quicklisp.org/archive/lack/2021-05-31/lack-20210531-git.tgz 178757 4cc9e2289354dad75056128ca51539cf d8ca81f1e87570fa6c8bfa2be87c4056ca60e88c lack-20210531-git lack-component.asd lack-middleware-accesslog.asd lack-middleware-auth-basic.asd lack-middleware-backtrace.asd lack-middleware-csrf.asd lack-middleware-mount.asd lack-middleware-session.asd lack-middleware-static.asd lack-request.asd lack-response.asd lack-session-store-dbi.asd lack-session-store-redis.asd lack-test.asd lack-util-writer-stream.asd lack-util.asd lack.asd t-lack-component.asd t-lack-middleware-accesslog.asd t-lack-middleware-auth-basic.asd t-lack-middleware-backtrace.asd t-lack-middleware-csrf.asd t-lack-middleware-mount.asd t-lack-middleware-session.asd t-lack-middleware-static.asd t-lack-request.asd t-lack-session-store-dbi.asd t-lack-session-store-redis.asd t-lack-util.asd t-lack.asd
lake http://beta.quicklisp.org/archive/lake/2021-04-11/lake-20210411-git.tgz 21150 b038fdf3a70a18e6835de60337364c08 5255f77610052cfe25557c96c30fd0c769034fbc lake-20210411-git lake-test.asd lake.asd
lambda-fiddle http://beta.quicklisp.org/archive/lambda-fiddle/2019-07-10/lambda-fiddle-20190710-git.tgz 6230 78f68f144ace9cb8f634ac14b3414e5e fd5c91ae6695e1531502458db52d0410c471fcee lambda-fiddle-20190710-git lambda-fiddle.asd
lambda-reader http://beta.quicklisp.org/archive/lambda-reader/2017-01-24/lambda-reader-20170124-git.tgz 3905 f2d0b70125707b31f1975a58b6c3523e e96b520a862982bb8bb801dca92c7ee744c8588a lambda-reader-20170124-git lambda-reader-8bit.asd lambda-reader.asd
lambdalite http://beta.quicklisp.org/archive/lambdalite/2014-12-17/lambdalite-20141217-git.tgz 6077 77d34562c5527b0b771d923704e74420 b1334d9c1402362a9c3aeb17f0c53f065bbec9bb lambdalite-20141217-git lambdalite.asd
language-codes http://beta.quicklisp.org/archive/language-codes/2021-05-31/language-codes-20210531-git.tgz 68791 d6fbb263eac07da83aaa9c30be725c13 af59c9db5089af642763246cac118a75d1108c1c language-codes-20210531-git language-codes.asd
lass http://beta.quicklisp.org/archive/lass/2021-04-11/lass-20210411-git.tgz 23036 f1af3d4dad2121ab99edc50cf27aeded b60b169aefd01b79558cf7a00f28f1697bf36d1d lass-20210411-git binary-lass.asd lass.asd
lass-flexbox http://beta.quicklisp.org/archive/lass-flexbox/2016-02-08/lass-flexbox-20160208-git.tgz 3151 7307dc8d1b5133e50ebb930d6a754edc a45b8c9e8663e6d99d48dc86a6799c4e50d78466 lass-flexbox-20160208-git lass-flexbox-test.asd lass-flexbox.asd
lassie http://beta.quicklisp.org/archive/lassie/2014-07-13/lassie-20140713-git.tgz 11181 3cd995df3ef888663c6a2237567cac27 f7398a93be3c19ae0e84a9b22d06638f56e6cf95 lassie-20140713-git lassie.asd
lastfm http://beta.quicklisp.org/archive/lastfm/2019-10-07/lastfm-20191007-git.tgz 7538 dc29a7688ade882f2c65396d2086f9b9 9a4b61c1bed6af4fbacbf4ab77207409dbc349b5 lastfm-20191007-git lastfm.asd
latex-table http://beta.quicklisp.org/archive/latex-table/2018-03-28/latex-table-20180328-git.tgz 44576 9f102a30b9f31cda67570fdf37c11401 b7f7e7b83296ca127278daa932dd6b9377393e76 latex-table-20180328-git latex-table.asd
lazy http://beta.quicklisp.org/archive/lazy/2020-09-25/lazy-20200925-git.tgz 1558 e3cd53c9f9ad7d84dd972d70e1c196b1 c61b4f710ea0119ad690cf6cfb7817583ae0b2c6 lazy-20200925-git lazy.asd
legion http://beta.quicklisp.org/archive/legion/2017-11-30/legion-20171130-git.tgz 6236 5ce607b3df2c82c88ba87681bdeb9acd 36929bd08eaadcc5f2619758409e265e406d27c8 legion-20171130-git legion-test.asd legion.asd
legit http://beta.quicklisp.org/archive/legit/2019-07-10/legit-20190710-git.tgz 28792 9b380fc23d4bab086df8a0e4a598457a 3d87520bbf8d1e153bec0330725572c63b1645c0 legit-20190710-git legit.asd
lense http://beta.quicklisp.org/archive/lense/2020-12-20/lense-20201220-git.tgz 4689 c0e59beeca17eecb58c99218ede96c62 eb6bc6b13ed2d399626508eeffc376bcfd183019 lense-20201220-git lense.asd
let-over-lambda http://beta.quicklisp.org/archive/let-over-lambda/2015-09-23/let-over-lambda-20150923-git.tgz 9277 d1089d8f6a1b65629b4a5b560ec09814 83a37659648cfb353a46a01e1e65aaf4743e6639 let-over-lambda-20150923-git let-over-lambda-test.asd let-over-lambda.asd
let-plus http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz 11247 1b8d1660ed67852ea31cad44a6fc15d0 e5ff604e4809908974fafaaf2af49e2cc0f8bcca let-plus-20191130-git let-plus.asd
letrec http://beta.quicklisp.org/archive/letrec/2019-03-07/letrec-20190307-hg.tgz 1899 68eed8ac600a1c2f157a3f6921efdfec ad8fb4a17a629ca025b5d6a8fda50ec84f5c8a8e letrec-20190307-hg letrec.asd
lev http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz 9520 10f340f7500beb98b5c0d4a9876131fb e01073c528dbdfdaae90486095172dffc2c5c748 lev-20150505-git lev.asd
leveldb http://beta.quicklisp.org/archive/leveldb/2016-05-31/leveldb-20160531-git.tgz 6169 fa515cf6ba4109ee89db4c23039bff7b 0dc56929759d6562246601b782dc6fd6c1dbadb1 leveldb-20160531-git leveldb.asd
levenshtein http://beta.quicklisp.org/archive/levenshtein/2010-10-06/levenshtein-1.0.tgz 761 6266196d57f78c0dc894af44ecb9d223 bd6dc7c06dcde4ed721d0513cab44ffde6568bea levenshtein-1.0 levenshtein.asd
lfarm http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz 41956 4cc91df44a932b3175a1eabf73d6e42d d0020b44060e11ef149b366645d915fb1cecff06 lfarm-20150608-git lfarm-admin.asd lfarm-client.asd lfarm-common.asd lfarm-gss.asd lfarm-launcher.asd lfarm-server.asd lfarm-ssl.asd lfarm-test.asd
lhstats http://beta.quicklisp.org/archive/lhstats/2012-01-07/lhstats-20120107-git.tgz 42573 828738a13c638d9d090439e57aaaf0ef 655b38385e0cb69d344e58c1dd7331a7f314a0af lhstats-20120107-git lhstats.asd
liblmdb http://beta.quicklisp.org/archive/liblmdb/2017-08-30/liblmdb-20170830-git.tgz 4501 32fbfb193f327493ade3440f5bf9e989 2a355ed6a5a753f2a59c6584979056b5e5dc9bde liblmdb-20170830-git liblmdb.asd
lichat-ldap http://beta.quicklisp.org/archive/lichat-ldap/2019-07-10/lichat-ldap-20190710-git.tgz 3001 6ab1394eaf6d55b04d40e5d229b30a51 811b669faaec5248b59e91f74d85f3aa21aab9b5 lichat-ldap-20190710-git lichat-ldap.asd
lichat-protocol http://beta.quicklisp.org/archive/lichat-protocol/2021-05-31/lichat-protocol-20210531-git.tgz 53435 dfa74a5e726d2991c0a267cf1f431320 daec053aa5f4128f133ed626897bd5b3e59e7666 lichat-protocol-20210531-git lichat-protocol.asd
lichat-serverlib http://beta.quicklisp.org/archive/lichat-serverlib/2019-07-10/lichat-serverlib-20190710-git.tgz 15969 f6e93ed83b7b66732646b1178abf8978 7f27418370e6770c537b861586d2854db476b385 lichat-serverlib-20190710-git lichat-serverlib.asd
lichat-tcp-client http://beta.quicklisp.org/archive/lichat-tcp-client/2019-07-10/lichat-tcp-client-20190710-git.tgz 7146 9c22da901c9df97f415797ad79350683 e35ef93ecf768d30bdd13d64e74b2ee184f49056 lichat-tcp-client-20190710-git lichat-tcp-client.asd
lichat-tcp-server http://beta.quicklisp.org/archive/lichat-tcp-server/2019-07-10/lichat-tcp-server-20190710-git.tgz 7684 fa46f205b911e51931ac3573472f2a09 4f3498018d1a44b63c85d2b8144479114c65dce5 lichat-tcp-server-20190710-git lichat-tcp-server.asd
lichat-ws-server http://beta.quicklisp.org/archive/lichat-ws-server/2019-07-10/lichat-ws-server-20190710-git.tgz 7059 e8fa5d952a7ef7744d83875cd08ac8de 960dca9954534c9fc62384787cf4d2a02f4303e0 lichat-ws-server-20190710-git lichat-ws-server.asd
lift http://beta.quicklisp.org/archive/lift/2019-05-21/lift-20190521-git.tgz 1132278 c03d3fa715792440c7b51a852ad581e3 5bf930dadf4900ee6a03066f6d5f2a51c041c19f lift-20190521-git lift-documentation.asd lift-test.asd lift.asd
lila http://beta.quicklisp.org/archive/lila/2019-10-07/lila-20191007-git.tgz 18320 d6b601d97d413abf9f401d5e6c5a0b48 2a13279fa64442360d5b88c2a2bbfda2addb8b3f lila-20191007-git lila.asd
lime http://beta.quicklisp.org/archive/lime/2015-12-18/lime-20151218-git.tgz 14590 1c43d6c9dbd8db49e0e25234477775d1 c60882af85f65f2e0e6cd4bea80112d862848c94 lime-20151218-git lime-example.asd lime-test.asd lime.asd
linear-programming http://beta.quicklisp.org/archive/linear-programming/2021-04-11/linear-programming-20210411-git.tgz 30621 da884abcc9738c9b5857d0598ac79d05 038fa83017db144adbe645d47a78dc22f8bb6037 linear-programming-20210411-git linear-programming-test.asd linear-programming.asd
linear-programming-glpk http://beta.quicklisp.org/archive/linear-programming-glpk/2020-12-20/linear-programming-glpk-20201220-git.tgz 21286 a94eb48a8143a9463de32522d4d45c3c 392d038edf33b0a9b0d042c5c66c13ec1a87fde5 linear-programming-glpk-20201220-git linear-programming-glpk.asd
linedit http://beta.quicklisp.org/archive/linedit/2018-04-30/linedit-20180430-git.tgz 21140 a9f679411d01ec162eb1ba7c76e25d7a 82f1fab330a425fe3406a8a8a707575590cecf9f linedit-20180430-git linedit.asd
linewise-template http://beta.quicklisp.org/archive/linewise-template/2016-02-08/linewise-template-20160208-git.tgz 14893 396034dd6aab87bfe5db95b0064187b2 1cbddfa14e8620ad6eb87b8041bd5d3bf44abd4d linewise-template-20160208-git linewise-template.asd
linux-packaging http://beta.quicklisp.org/archive/linux-packaging/2021-04-11/linux-packaging-20210411-git.tgz 6934 9a19b00b3db46b9d695417d8cf1493d7 4ccd2d975a579e0a4a344c44f80aecdc0192611d linux-packaging-20210411-git linux-packaging-tests.asd linux-packaging.asd
lionchat http://beta.quicklisp.org/archive/lionchat/2019-07-10/lionchat-20190710-git.tgz 313345 9cbf24d2fb7f54960d1daa58cd853468 c947b14bf01e7b48cb1d99cecb404b40daaa535e lionchat-20190710-git lionchat.asd
lisa http://beta.quicklisp.org/archive/lisa/2012-04-07/lisa-20120407-git.tgz 165079 6d999f92e2d894a7c4785b044955a49f b8b3350d837c7ea807163213dece93d59db0c725 lisa-20120407-git lisa.asd
lisp-binary http://beta.quicklisp.org/archive/lisp-binary/2021-04-11/lisp-binary-20210411-git.tgz 929759 29d85f01a1cb17742164bacae940d29c 41634524f3d4f19ddd31e81b530c0effe3d491e0 lisp-binary-20210411-git lisp-binary.asd test/lisp-binary-test.asd
lisp-chat http://beta.quicklisp.org/archive/lisp-chat/2021-02-28/lisp-chat-20210228-git.tgz 98989 32284bba3f0fa50df28fd0221e284320 c03d99063ad853e8975dade8855bd47bf2b0d747 lisp-chat-20210228-git lisp-chat.asd
lisp-critic http://beta.quicklisp.org/archive/lisp-critic/2020-12-20/lisp-critic-20201220-git.tgz 21096 80a01ef2ad81bfab69a67742a2aa6632 819d652dc64be645682657a1390f3c287299568e lisp-critic-20201220-git ckr-tables.asd lisp-critic.asd
lisp-executable http://beta.quicklisp.org/archive/lisp-executable/2018-08-31/lisp-executable-20180831-git.tgz 23139 63ea5e1673e9b2d90df1a2bbe10fd7b5 ec9d633c4ac367fa2f756e9960a83eb3805d3f71 lisp-executable-20180831-git lisp-executable-example.asd lisp-executable-tests.asd lisp-executable.asd
lisp-gflags http://beta.quicklisp.org/archive/lisp-gflags/2020-12-20/lisp-gflags-20201220-git.tgz 8244 593818f00cd4505eefbf7190b06640cc 054afc338359523a7b6842fb82e3c20db2d4721e lisp-gflags-20201220-git com.google.flag.asd
lisp-interface-library http://beta.quicklisp.org/archive/lisp-interface-library/2018-04-30/lisp-interface-library-20180430-git.tgz 60414 1d71936f692f30bb000ffbbb69b098e7 e695c2d9e57f1770e5cb6acceb5da9505d29e90a lisp-interface-library-20180430-git lil.asd lisp-interface-library.asd
lisp-invocation http://beta.quicklisp.org/archive/lisp-invocation/2018-02-28/lisp-invocation-20180228-git.tgz 10863 3ed327ad1fc47f27cc1332d9a8b7e20e 49234e20c19ecb65fa0d743684c92965e8978160 lisp-invocation-20180228-git lisp-invocation.asd
lisp-namespace http://beta.quicklisp.org/archive/lisp-namespace/2017-11-30/lisp-namespace-20171130-git.tgz 9762 d3052a13db167c6a53487f31753b7467 e84b47c0b146849eeb5f624cc2c491e36f62be8a lisp-namespace-20171130-git lisp-namespace.asd lisp-namespace.test.asd
lisp-preprocessor http://beta.quicklisp.org/archive/lisp-preprocessor/2020-07-15/lisp-preprocessor-20200715-git.tgz 5181 5e763b408436f94ce10fca3eaf5bd26a 6d594f92bb06366aa03c6e7d2251a9b2977918f8 lisp-preprocessor-20200715-git lisp-preprocessor.asd
lisp-stat http://beta.quicklisp.org/archive/lisp-stat/2021-05-31/lisp-stat-20210531-git.tgz 201032 840e29f306e9d15d71a95646c514e70c 01e361f3c05149dfab4cd803e19b96c659684b33 lisp-stat-20210531-git lisp-stat.asd
lisp-unit http://beta.quicklisp.org/archive/lisp-unit/2017-01-24/lisp-unit-20170124-git.tgz 18163 2c55342cb8af18b290bb6a28c75deac5 234203b4f9903cd82b1698f3a90439fb2bbc3f7e lisp-unit-20170124-git lisp-unit.asd
lisp-unit2 http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz 34698 d061fa640837441a5d2eecbefd8b2e69 dd120bb9dd809fbd3bd0b8ef579e5328719be3d2 lisp-unit2-20180131-git lisp-unit2.asd
lisp-zmq http://beta.quicklisp.org/archive/lisp-zmq/2020-02-18/lisp-zmq-20200218-git.tgz 15423 fdae33782f1a6ebd00de467164dcbaed 0bbe3ca1992d63dbf7f00dd6611aeb6a7b29118e lisp-zmq-20200218-git zmq-examples.asd zmq-test.asd zmq.asd
lispbuilder http://beta.quicklisp.org/archive/lispbuilder/2019-05-21/lispbuilder-20190521-git.tgz 7509055 7fd1bd4e45d0e35c4ac33c677072cf2a b97ce2b733d247ef2d3cbd718e2b193c1832c6e4 lispbuilder-20190521-git lispbuilder-lexer/lispbuilder-lexer.asd lispbuilder-net/lispbuilder-net-cffi.asd lispbuilder-net/lispbuilder-net.asd lispbuilder-opengl/lispbuilder-opengl-1-1.asd lispbuilder-opengl/lispbuilder-opengl-examples.asd lispbuilder-regex/lispbuilder-regex.asd lispbuilder-sdl-gfx/lispbuilder-sdl-gfx-binaries.asd lispbuilder-sdl-gfx/lispbuilder-sdl-gfx-cffi.asd lispbuilder-sdl-gfx/lispbuilder-sdl-gfx-examples.asd lispbuilder-sdl-gfx/lispbuilder-sdl-gfx.asd lispbuilder-sdl-image/lispbuilder-sdl-image-binaries.asd lispbuilder-sdl-image/lispbuilder-sdl-image-cffi.asd lispbuilder-sdl-image/lispbuilder-sdl-image-examples.asd lispbuilder-sdl-image/lispbuilder-sdl-image.asd lispbuilder-sdl-mixer/lispbuilder-sdl-mixer-binaries.asd lispbuilder-sdl-mixer/lispbuilder-sdl-mixer-cffi.asd lispbuilder-sdl-mixer/lispbuilder-sdl-mixer-examples.asd lispbuilder-sdl-mixer/lispbuilder-sdl-mixer.asd lispbuilder-sdl-ttf/lispbuilder-sdl-ttf-binaries.asd lispbuilder-sdl-ttf/lispbuilder-sdl-ttf-cffi.asd lispbuilder-sdl-ttf/lispbuilder-sdl-ttf-examples.asd lispbuilder-sdl-ttf/lispbuilder-sdl-ttf.asd lispbuilder-sdl/cocoahelper.asd lispbuilder-sdl/lispbuilder-sdl-assets.asd lispbuilder-sdl/lispbuilder-sdl-base.asd lispbuilder-sdl/lispbuilder-sdl-binaries.asd lispbuilder-sdl/lispbuilder-sdl-cffi.asd lispbuilder-sdl/lispbuilder-sdl-cl-vectors-examples.asd lispbuilder-sdl/lispbuilder-sdl-cl-vectors.asd lispbuilder-sdl/lispbuilder-sdl-examples.asd lispbuilder-sdl/lispbuilder-sdl-vecto-examples.asd lispbuilder-sdl/lispbuilder-sdl-vecto.asd lispbuilder-sdl/lispbuilder-sdl.asd lispbuilder-windows/lispbuilder-windows.asd lispbuilder-yacc/lispbuilder-yacc.asd
lispcord http://beta.quicklisp.org/archive/lispcord/2020-09-25/lispcord-20200925-git.tgz 27463 b3b4b60f2e788e5d9511f1701bca2375 0f666cbb07e74cb35c5666bd504ff4919694230f lispcord-20200925-git examples/example-bot/example-bot.asd lispcord.asd
lispqr http://beta.quicklisp.org/archive/lispqr/2020-04-27/lispqr-20200427-git.tgz 24971 0fded63af3b0918ca16708c8d6cc1073 c31c51795eb11e03faf6aea502d8228b7b3cd753 lispqr-20200427-git lispqr.asd
list-named-class http://beta.quicklisp.org/archive/list-named-class/2020-03-25/list-named-class-20200325-git.tgz 5334 8f26a03d1bc97bcb2cf1af8c0640c2c5 af1ef6f420b466276b87ebf456290b5219db4a02 list-named-class-20200325-git list-named-class.asd
listoflist http://beta.quicklisp.org/archive/listoflist/2014-08-26/listoflist-20140826-git.tgz 12188 598138f6ddf5241eaa283d0adce7878d c4138b36e50717f3e826fbc0d77cd9c00d0c9612 listoflist-20140826-git listoflist.asd
listopia http://beta.quicklisp.org/archive/listopia/2021-04-11/listopia-20210411-git.tgz 10768 ebc6eead50c461528b3404e680da54cf 5fe15a3fd63876ec92125f23ff03fc3768f87eb4 listopia-20210411-git listopia-bench.asd listopia.asd
literate-lisp http://beta.quicklisp.org/archive/literate-lisp/2021-05-31/literate-lisp-20210531-git.tgz 105181 f9dc34e145ade68209c1c207f9d7c05e eb60544c2ded202b7287d2dcc5948fb059876e95 literate-lisp-20210531-git literate-demo.asd literate-lisp.asd
litterae http://beta.quicklisp.org/archive/litterae/2020-07-15/litterae-20200715-git.tgz 19993 628d506e4a072df70508ebb1503529c2 9fa4dd608a0a20eb9d7f07694ede78801817a11a litterae-20200715-git litterae-test-system.asd litterae.asd
livesupport http://beta.quicklisp.org/archive/livesupport/2019-05-21/livesupport-release-quicklisp-71e6e412-git.tgz 2939 9eb376b26689ac54d2a51f5189587ec5 e2df3d1a994fad4f8149c2795dc5d7de5a10d5ce livesupport-release-quicklisp-71e6e412-git livesupport.asd
lla http://beta.quicklisp.org/archive/lla/2018-03-28/lla-20180328-git.tgz 38969 61d583603d5cacf9d81486a0cfcfaf6a 5c747b960f4ed782de3a11505eb02fef3b7b5d0a lla-20180328-git lla.asd
lmdb http://beta.quicklisp.org/archive/lmdb/2021-02-28/lmdb-20210228-git.tgz 91493 2e81009511359695c83790debdcaa284 c9873978249f4b7239b66e0764479a191803540a lmdb-20210228-git lmdb.asd
lml http://beta.quicklisp.org/archive/lml/2015-09-23/lml-20150923-git.tgz 16279 4250f2b2c4d110cc728645e8a1eba963 5e9d7018b7487783aeec69ff4ac283a56bccd1ef lml-20150923-git lml-tests.asd lml.asd
lml2 http://beta.quicklisp.org/archive/lml2/2015-09-23/lml2-20150923-git.tgz 31590 99d76c1971e4fceaa6496291c4ede90b b119542c292e0ff8ed86874cbe6ee64a6c16a9a0 lml2-20150923-git lml2-tests.asd lml2.asd
local-package-aliases http://beta.quicklisp.org/archive/local-package-aliases/2020-12-20/local-package-aliases-20201220-git.tgz 8439 953d9d5e8a35191698d57f33d4fc1dd7 a7ea98836f90f1b3c7c5e6379a828a38701351db local-package-aliases-20201220-git local-package-aliases.asd
local-time http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz 779489 631d67bc84ae838792717b256f2cdbaf 9a37cd4dc34ff1bc461447d4e8f6922f31f1259f local-time-20210124-git cl-postgres+local-time.asd local-time.asd
local-time-duration http://beta.quicklisp.org/archive/local-time-duration/2018-04-30/local-time-duration-20180430-git.tgz 10333 8ad2f86ea33d4c7b3014e2152632b88c 0b443efd31c990ad022e9c16576bf68b2359de0b local-time-duration-20180430-git cl-postgres+local-time-duration.asd local-time-duration.asd
log4cl http://beta.quicklisp.org/archive/log4cl/2020-09-25/log4cl-20200925-git.tgz 917222 80b347666af496142581e9e0c029d181 ebf349f37d850e9cb8f9000f0f404d4f54fb49a1 log4cl-20200925-git log4cl-examples.asd log4cl.asd log4slime.asd
log4cl-extras http://beta.quicklisp.org/archive/log4cl-extras/2021-05-31/log4cl-extras-20210531-git.tgz 22435 cba4baa1cae3f05ed0344f5c385ea9c4 ac98fd2dd701de8654cd5f0518a4d1e76a63ae85 log4cl-extras-20210531-git log4cl-extras-test.asd log4cl-extras.asd
log5 http://beta.quicklisp.org/archive/log5/2011-06-19/log5-20110619-git.tgz 29106 b05a585fbf58b25367c05ec8bb814e8c 07d72b5327c5e8795eac99d235cc1a483a4cbafd log5-20110619-git log5.asd
lorem-ipsum http://beta.quicklisp.org/archive/lorem-ipsum/2018-10-18/lorem-ipsum-20181018-git.tgz 3756 4a89cae2f82951c8cf76348b5f0600ee 6216e403bb0c4da378eb6b16e094926355c13549 lorem-ipsum-20181018-git lorem-ipsum.asd
lowlight http://beta.quicklisp.org/archive/lowlight/2013-12-11/lowlight-20131211-git.tgz 17517 83b71610e5b7de0979ffc9dcff43e129 d90ad3e313ce9d51984519b5512fd892ab513f77 lowlight-20131211-git doc/lowlight.doc.asd lowlight.asd old/lowlight.old.asd tests/lowlight.tests.asd
lparallel http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz 78551 6393e8d0c0cc9ed1c88b6e7cca8de5df 1514c95041efd503f335e2cd96ba5ef1537415cc lparallel-20160825-git lparallel-bench.asd lparallel-test.asd lparallel.asd
lquery http://beta.quicklisp.org/archive/lquery/2020-12-20/lquery-20201220-git.tgz 38666 a71685848959cf33cd6963b4a5f9e2ed 9ffafbe59d6488fad110339e51db5bc7cf048a62 lquery-20201220-git lquery-test.asd lquery.asd
lredis http://beta.quicklisp.org/archive/lredis/2014-11-06/lredis-20141106-git.tgz 8338 c3696a2d2665fd8c31002c3e9e22f6b6 49824a4b3d2730746a19c94536f68971cbb48ea1 lredis-20141106-git lredis.asd
lsx http://beta.quicklisp.org/archive/lsx/2019-10-07/lsx-20191007-git.tgz 6813 6eabb871226e5211632451e4286fdb0c b2d38cfc9642a0136dcb297545e66e6419f3db0b lsx-20191007-git cl-syntax-lsx.asd lsx.asd
ltk http://beta.quicklisp.org/archive/ltk/2019-02-02/ltk-20190202-git.tgz 62309 2560e392031180561698b49386b10c45 7d54dc61d474e2133bfbb0a0aa95484e48b0c4eb ltk-20190202-git ltk/ltk-mw.asd ltk/ltk-remote.asd ltk/ltk.asd
lucerne http://beta.quicklisp.org/archive/lucerne/2019-08-13/lucerne-20190813-git.tgz 155497 2355e311b1adeb91e9cb4582c236bc09 e785246a23c25a148e249cb43a97ba88558f967c lucerne-20190813-git lucerne-auth.asd lucerne-hello-world.asd lucerne-test.asd lucerne-utweet.asd lucerne.asd
lw-compat http://beta.quicklisp.org/archive/lw-compat/2016-03-18/lw-compat-20160318-git.tgz 2165 024b8e63d13fb12dbcccaf18cf4f8dfa 92259792af7830d80a868c5f06b2510ead325110 lw-compat-20160318-git lw-compat.asd
lyrics http://beta.quicklisp.org/archive/lyrics/2019-11-30/lyrics-20191130-git.tgz 4427 a0cd616233120323860aa65d112ba07c 8790d576f491d665894861e61394e5f8136a450d lyrics-20191130-git lyrics.asd
macro-html http://beta.quicklisp.org/archive/macro-html/2015-12-18/macro-html-20151218-git.tgz 18865 4c73847f830a8ccacd87e5ea76d44bb3 3b03c5253738adea7d0f7b8a67617356a293c7cc macro-html-20151218-git macro-html.asd
macro-level http://beta.quicklisp.org/archive/macro-level/2012-10-13/macro-level-1.0.1.tgz 1907 486ad598536a7b719f04c0f756d9017f 355a1254441193c1698f2641e84f3dfc356f8591 macro-level-1.0.1 macro-level.asd
macrodynamics http://beta.quicklisp.org/archive/macrodynamics/2018-02-28/macrodynamics-20180228-git.tgz 7668 8f226b02f6442d439edc80da09bd8a72 dcffeeebbb8b5084fd1517cab04abb515fb9a4a6 macrodynamics-20180228-git macrodynamics.asd
macroexpand-dammit http://beta.quicklisp.org/archive/macroexpand-dammit/2013-11-11/macroexpand-dammit-20131111-http.tgz 3604 6290fa304f986ea05e084c6342dd0c0f e0b77f879b8fd5a85120cae0b2a90ae17c93fc9d macroexpand-dammit-20131111-http macroexpand-dammit.asd
madeira-port http://beta.quicklisp.org/archive/madeira-port/2015-07-09/madeira-port-20150709-git.tgz 4844 f3d5a6aea61ecb83c56fb123d6a1ecf8 841f3bac6df3588220adc49c5caccaf495800c03 madeira-port-20150709-git madeira-port.asd
magic-ed http://beta.quicklisp.org/archive/magic-ed/2020-03-25/magic-ed-20200325-git.tgz 4442 b790a6a7f06c97ef1586b8e223cb8a63 f50ce6a7c280684bb8b5fba89409500eba2debb3 magic-ed-20200325-git magic-ed.asd
magicffi http://beta.quicklisp.org/archive/magicffi/2021-05-31/magicffi-20210531-git.tgz 11901 f5494194b62a16cbd43929ca27641837 21c5aaa1843262429ac47cfebff86a19c8feb62d magicffi-20210531-git magicffi.asd
magicl http://beta.quicklisp.org/archive/magicl/2021-04-11/magicl-v0.9.1.tgz 544160 5b28a64d6577cc9b97b7719a82ae4d1c c5c74e57e8d39d6eb222ec9507a81bc11f87f4bd magicl-v0.9.1 magicl-examples.asd magicl-gen.asd magicl-tests.asd magicl-transcendental.asd magicl.asd
maiden http://beta.quicklisp.org/archive/maiden/2021-05-31/maiden-20210531-git.tgz 238799 20866ec8cd8a95aeedce4d8d020dd716 75e6b5156fd2bc88ef5f692cdddead94929ad36e maiden-20210531-git agents/accounts/maiden-accounts.asd agents/activatable/maiden-activatable.asd agents/blocker/maiden-blocker.asd agents/chatlog/maiden-chatlog.asd agents/commands/maiden-commands.asd agents/core-manager/maiden-core-manager.asd agents/counter/maiden-counter.asd agents/crimes/maiden-crimes.asd agents/dictionary/maiden-dictionary.asd agents/emoticon/maiden-emoticon.asd agents/help/maiden-help.asd agents/lastfm/maiden-lastfm.asd agents/location/maiden-location.asd agents/lookup/maiden-lookup.asd agents/markov/maiden-markov.asd agents/medals/maiden-medals.asd agents/notify/maiden-notify.asd agents/permissions/maiden-permissions.asd agents/relay/maiden-channel-relay.asd agents/silly/maiden-silly.asd agents/talk/maiden-talk.asd agents/throttle/maiden-throttle.asd agents/time/maiden-time.asd agents/trivia/maiden-trivia.asd agents/urlinfo/maiden-urlinfo.asd agents/vote/maiden-vote.asd agents/weather/maiden-weather.asd clients/irc/maiden-irc.asd clients/lichat/maiden-lichat.asd clients/relay/maiden-relay.asd clients/twitter/maiden-twitter.asd maiden.asd modules/api-access/maiden-api-access.asd modules/client-entities/maiden-client-entities.asd modules/networking/maiden-networking.asd modules/serialize/maiden-serialize.asd modules/storage/maiden-storage.asd
mailbox http://beta.quicklisp.org/archive/mailbox/2013-10-03/mailbox-20131003-git.tgz 1907 fd52c2dc8d80c87013a6418b04c4c737 ee9f30c005b768a945c98fc466ec276a662b2b0b mailbox-20131003-git mailbox.asd
mailgun http://beta.quicklisp.org/archive/mailgun/2021-02-28/mailgun-20210228-git.tgz 10630 6834921bbe74589fba0a2a74c3637ab6 77e99b75ab3f0da07a59f1880b1d013b9d6124a2 mailgun-20210228-git mailgun.asd
make-hash http://beta.quicklisp.org/archive/make-hash/2013-06-15/make-hash-20130615-git.tgz 361160 4f612ef068411284c88e0381fa4a0c7f a0f2260867e32967ef02f316b8d42d9d168c140f make-hash-20130615-git make-hash-tests.asd make-hash.asd
manifest http://beta.quicklisp.org/archive/manifest/2012-02-08/manifest-20120208-git.tgz 98532 16b500a79f0cd4a8f95760cb634cd617 13441aaf0b11a1275a8f72d0ec31908f60307556 manifest-20120208-git manifest.asd
map-bind http://beta.quicklisp.org/archive/map-bind/2012-08-11/map-bind-20120811-git.tgz 2092 a24c5c012e41b87f836b6d8ef318e7cd 047b3ccf3f9d433eb2104bd9da89de7f8e81a2a4 map-bind-20120811-git map-bind.asd
map-set http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz 2389 866dba36cdf060c943267cb79ccc0532 9b7c74de8b801583539807e28c676c5ed630bec3 map-set-20190307-hg map-set.asd
marching-cubes http://beta.quicklisp.org/archive/marching-cubes/2015-07-09/marching-cubes-20150709-git.tgz 97306 a44282b741e9dc43d40cb1979a6c7afe b8002c6a01dc8579d3f109c6ecd36dce88e9075f marching-cubes-20150709-git marching-cubes-example.asd marching-cubes-test.asd marching-cubes.asd
markdown.cl http://beta.quicklisp.org/archive/markdown.cl/2021-02-28/markdown.cl-20210228-git.tgz 21601 736db40fedbee2945ffccd8ef7dcb38e 89c6ff147d53ef6d42d4c7ccd3fe35adae929254 markdown.cl-20210228-git markdown.cl-test.asd markdown.cl.asd
markup http://beta.quicklisp.org/archive/markup/2021-04-11/markup-20210411-git.tgz 16977 e327ff3836f957ff69a192454bf83576 d7ce330d675bb699f3b9e8e5fc83c04d25b574b4 markup-20210411-git markup.asd markup.test.asd
marshal http://beta.quicklisp.org/archive/marshal/2013-07-20/marshal-20130720-git.tgz 2921 7b2f8d0cb6c95f2418eca133a2e299b6 2c3d9e2c3b04cb581eb8f1f0dc94055176328029 marshal-20130720-git fmarshal-test.asd fmarshal.asd
math http://beta.quicklisp.org/archive/math/2021-05-31/math-20210531-git.tgz 109575 da7fb0fdf0803fadfe5e1f077ffde2ff f29d49bb96f7be8adb5440ef277b7fd81783bd71 math-20210531-git math.asd
mathkit http://beta.quicklisp.org/archive/mathkit/2016-02-08/mathkit-20160208-git.tgz 5451 f00124bdf2eea4d18154a4497bf414f7 f5323f595ca08be75b394d1baa82380982dd2f4e mathkit-20160208-git mathkit.asd
matrix-case http://beta.quicklisp.org/archive/matrix-case/2020-06-10/matrix-case-20200610-git.tgz 4012 9950de4006ae454d236a92ba91bd7e47 af8b64edc4c8dfcbe663d630ce67156dbce64fec matrix-case-20200610-git matrix-case.asd spec/matrix-case.test.asd
maxpc http://beta.quicklisp.org/archive/maxpc/2020-04-27/maxpc-20200427-git.tgz 25931 a40e8372eb4ad2bcd1fc1c6948e57df3 f77e66ade543c01db1c45a5430f13017fa8b3412 maxpc-20200427-git maxpc-test.asd maxpc.asd
mbe http://beta.quicklisp.org/archive/mbe/2020-02-18/mbe-20200218-git.tgz 14018 1d1a1c3541e231d74ba16e8b0bde550b 2b0511e666656123c208df72681110de3c93d9c5 mbe-20200218-git mbe.asd
mcclim http://beta.quicklisp.org/archive/mcclim/2021-05-31/mcclim-20210531-git.tgz 2348635 b9289286fc6a6887d3ee0395cb2989aa 55de4adc686dc4347f7d3293d81ca38dbb905a1a mcclim-20210531-git Apps/Clouseau/clouseau.asd Apps/Debugger/clim-debugger.asd Apps/Functional-Geometry/functional-geometry.asd Apps/Listener/clim-listener.asd Apps/Scigraph/scigraph.asd Backends/CLX-fb/mcclim-clx-fb.asd Backends/CLX/mcclim-clx.asd Backends/Null/mcclim-null.asd Backends/PDF/clim-pdf.asd Backends/PostScript/clim-postscript-font.asd Backends/PostScript/clim-postscript.asd Backends/RasterImage/mcclim-raster-image.asd Backends/common/mcclim-backend-common.asd Core/clim-basic/clim-basic.asd Core/clim-core/clim-core.asd Core/clim/clim.asd Examples/clim-examples.asd Experimental/tree-with-cross-edges/mcclim-tree-with-cross-edges.asd Extensions/Franz/mcclim-franz.asd Extensions/bezier/mcclim-bezier.asd Extensions/bitmap-formats/mcclim-bitmaps.asd Extensions/conditional-commands/conditional-commands.asd Extensions/fonts/mcclim-fonts.asd Extensions/layouts/mcclim-layouts.asd Extensions/render/mcclim-render.asd Libraries/Drei/Persistent/persistent.asd Libraries/Drei/cl-automaton/automaton.asd Libraries/Drei/drei-mcclim.asd Libraries/ESA/esa-mcclim.asd Libraries/Slim/slim.asd clim-lisp.asd mcclim.asd
md5 http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz 15847 7f250f8a2487e4e0aac1ed9c50b79b4d 6539b395ec2b9513464f03e66f396a4c9c8b6da2 md5-20180228-git md5.asd
media-types http://beta.quicklisp.org/archive/media-types/2018-07-11/media-types-20180711-git.tgz 20767 ed16ed33fc38f0279e943d547377f3d6 e1b2d2564e260e9c78ce4eef58006a95a612259f media-types-20180711-git media-types.asd
mel-base http://beta.quicklisp.org/archive/mel-base/2018-02-28/mel-base-20180228-git.tgz 67969 17931e0cbfec8fafb7b825a0af0c897d 447445ec593bc3191d06233e505c9a55247f8be0 mel-base-20180228-git mel-base.asd
memoize http://beta.quicklisp.org/archive/memoize/2014-08-26/memoize-20140826-http.tgz 3547 bdf9cf51fb95293e42553045b7faea2f 1c29c09b7f60686ac929688b842db4c6bcb8f021 memoize-20140826-http memoize.asd
message-oo http://beta.quicklisp.org/archive/message-oo/2013-06-15/message-oo-20130615-git.tgz 2426 44631ce806432e2a55fdfdca7de414ac 95d35b35cfb93d1a19760a6291e5f756e05be25e message-oo-20130615-git message-oo.asd
messagebox http://beta.quicklisp.org/archive/messagebox/2021-05-31/messagebox-20210531-git.tgz 6682 42e01cc509af521be2aca8852837a440 3d2ac69322fe64f29e002e1ec9822abf5f8a5f12 messagebox-20210531-git messagebox.asd
meta http://beta.quicklisp.org/archive/meta/2015-06-08/meta-20150608-git.tgz 3371 3322d6d54783269122e087b1349e3171 1dfa5cc33d7d1840bfc0d5626758e3bce3e57914 meta-20150608-git meta.asd
meta-sexp http://beta.quicklisp.org/archive/meta-sexp/2020-10-16/meta-sexp-20201016-git.tgz 8562 7972ec9d0cad5afe6085e34da9e5394e cb25d50abf0297e4be6986a59a2910c1c4883d43 meta-sexp-20201016-git meta-sexp.asd
metabang-bind http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz 22543 25ee72526862a9d794f7b0fc1826029e 7e8c59e23d3451cfe4623699002e12f6b079e918 metabang-bind-20200218-git metabang-bind-test.asd metabang-bind.asd
metacopy http://beta.quicklisp.org/archive/metacopy/2017-04-03/metacopy-20170403-darcs.tgz 9186 caa5ac0a1f5e3741e7f789589ff537fe 559f0201e9fe8708b9211ef856ed35eefd0167f9 metacopy-20170403-darcs metacopy-with-contextl.asd metacopy.asd
metalock http://beta.quicklisp.org/archive/metalock/2020-09-25/metalock-20200925-git.tgz 2654 829164a633847affb9b4515197ca6198 3a9252501d37b168c68e5ec753b608e7aee377d8 metalock-20200925-git metalock.asd
metap http://beta.quicklisp.org/archive/metap/2015-05-05/metap-20150505-git.tgz 3176 1de5d80b35b75fa3c8f668adb2fb891e bc6cb669fe93462ad434fd620eeeac1b17b59aa5 metap-20150505-git metap-test.asd metap.asd
metatilities http://beta.quicklisp.org/archive/metatilities/2018-02-28/metatilities-20180228-git.tgz 194405 bb75a7979528d08ec9c27ee154b9317e 531048725a416caea22d5996edd570f7cd25947a metatilities-20180228-git metatilities-test.asd metatilities.asd
metatilities-base http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz 70648 7968829ca353c4a42784a151317029f1 e2abddb20c1a29455fc761c4c7716d9fdbebf0e9 metatilities-base-20191227-git metatilities-base-test.asd metatilities-base.asd
metering http://beta.quicklisp.org/archive/metering/2020-02-18/metering-20200218-git.tgz 17062 602fe742106ad19bfb331c2a97fbd811 dc01e5ecd706f54aabd580d36577648260f17f24 metering-20200218-git metering.asd
method-combination-utilities http://beta.quicklisp.org/archive/method-combination-utilities/2014-11-06/method-combination-utilities-20141106-git.tgz 7311 881048d7bed117b8d7b4547a5111812d cb5a6ab010f6981e27c83f2ba22d33649a4db46a method-combination-utilities-20141106-git method-combination-utilities.asd
method-hooks http://beta.quicklisp.org/archive/method-hooks/2020-09-25/method-hooks-20200925-git.tgz 14360 4fad17e5482de27554abc24eed285666 acb7bf29a84865152b7b533456d87909ea22ae40 method-hooks-20200925-git method-hooks-test.asd method-hooks.asd
method-versions http://beta.quicklisp.org/archive/method-versions/2011-05-22/method-versions_0.1.2011.05.18.tgz 4709 3e64215eeae18b8c830653e4ca22fe26 96476b31ff0c747c58477b2dc6227e1bfff611c8 method-versions_0.1.2011.05.18 method-versions.asd
mexpr http://beta.quicklisp.org/archive/mexpr/2015-07-09/mexpr-20150709-git.tgz 5385 7660c46156c0f98adc208451f64ff62f 9f9be5508184cc8dd23ed2e04812e1b71fdd1b5e mexpr-20150709-git mexpr-tests.asd mexpr.asd
mgl-pax http://beta.quicklisp.org/archive/mgl-pax/2021-04-11/mgl-pax-20210411-git.tgz 158963 44cf1bd71e6c40c256a43a87efa2c2a1 1200f6c5c9701b06d3e311992d18bc0f00b89b9c mgl-pax-20210411-git mgl-pax.asd
mgrs http://beta.quicklisp.org/archive/mgrs/2020-12-20/mgrs-20201220-git.tgz 16505 378d8a547df08079cf21ae7a865845b4 8b69ddd46fee917ac8c13715da4d4cc83f1bf140 mgrs-20201220-git mgrs.asd
micmac http://beta.quicklisp.org/archive/micmac/2020-06-10/micmac-20200610-git.tgz 23731 491ccc8378ea864e13f200f6d7544eb5 cabff7acd5a8fd771a3bdacd9cc2896fb7006571 micmac-20200610-git micmac.asd
midi http://beta.quicklisp.org/archive/midi/2010-10-06/midi-20070618.tgz 6886 78d494c8d2fbc9a6af1b2d3e1b3c25d7 73a273cd33bccfa2bcd8ff93b38de5b1523e9993 midi-20070618 midi.asd
millet http://beta.quicklisp.org/archive/millet/2020-12-20/millet-20201220-git.tgz 5322 333c807f7a47eab5507f9590d3423e6a db12c6fa4b794c5f4632e5183ed0afecbf1e2aa6 millet-20201220-git millet.asd spec/millet.test.asd
minheap http://beta.quicklisp.org/archive/minheap/2016-06-28/minheap-20160628-git.tgz 17015 27a57cdd27e91eb767f1377fcbfe2af3 0fe362afcf54c58c43ac9c36d8384d0be4782e02 minheap-20160628-git minheap-tests.asd minheap.asd
mini-cas http://beta.quicklisp.org/archive/mini-cas/2015-09-23/mini-cas-20150923-git.tgz 7018 5b29524320ea446c59ee913d6787faf0 7361170e6ebafe271aaf8b32962214bb2e860b5f mini-cas-20150923-git mini-cas.asd
minilem http://beta.quicklisp.org/archive/minilem/2020-02-18/minilem-20200218-git.tgz 421541 b77bd135381061eb7482525e0bffd60d 8fbc4519ec6fc5e1c8059cb867d9e6e1ec7530d7 minilem-20200218-git minilem.asd
misc-extensions http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz 25456 ef8a05dd4382bb9d1e3960aeb77e332e 3f22977672a040f72b46d49fa680757deeff6a12 misc-extensions-20150608-git misc-extensions.asd
mito http://beta.quicklisp.org/archive/mito/2021-04-11/mito-20210411-git.tgz 40699 e8673aa02852263e8af9ab780be38c85 ff1e2aa66dd8c8bcad0e703cfa36fe0360d6cca7 mito-20210411-git lack-middleware-mito.asd mito-core.asd mito-migration.asd mito-test.asd mito.asd
mito-attachment http://beta.quicklisp.org/archive/mito-attachment/2020-10-16/mito-attachment-20201016-git.tgz 5394 c2c3ff815ffbba2fa1ac903df1ecd524 d15e4103c78bffb4d080edf33404e962775d9090 mito-attachment-20201016-git mito-attachment.asd
mito-auth http://beta.quicklisp.org/archive/mito-auth/2017-10-19/mito-auth-20171019-git.tgz 2014 f2ef144e4012a1ecac9420a64ac6ab16 f5c7ed9c9a43f739d1afddfb3616322b58b33746 mito-auth-20171019-git mito-auth.asd
mixalot http://beta.quicklisp.org/archive/mixalot/2015-12-18/mixalot-20151218-git.tgz 49886 c2132e94690a03a39343fff3a12cff1f 22856864b7a35fb44f52547cc6387e31f4db42e1 mixalot-20151218-git flac.asd mixalot-flac.asd mixalot-mp3.asd mixalot-vorbis.asd mixalot.asd mpg123-ffi.asd vorbisfile-ffi.asd
mk-string-metrics http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz 5395 40f23794a7d841cb178f5951d3992886 e869de7baf6a85580ae92dd30e2ddffd9ce35400 mk-string-metrics-20180131-git mk-string-metrics-tests.asd mk-string-metrics.asd
mmap http://beta.quicklisp.org/archive/mmap/2020-12-20/mmap-20201220-git.tgz 13386 e2dbeb48b59735bd2ed54ea7f9cdfe0f 88638834bddefe3014d30d568ff6012343285e2d mmap-20201220-git mmap-test.asd mmap.asd
mnas-graph http://beta.quicklisp.org/archive/mnas-graph/2021-05-31/mnas-graph-20210531-git.tgz 23895 3624b28eb16774cc1e4d844d83df35f2 8005d619cb81f3356fe2c13aaf756842d6818ca6 mnas-graph-20210531-git mnas-graph.asd
mnas-hash-table http://beta.quicklisp.org/archive/mnas-hash-table/2021-05-31/mnas-hash-table-20210531-git.tgz 16861 efeb853866f61a8a413832bd086f2ca7 ac86915bd1b36f3ef2a6545a6c9346a77054c79a mnas-hash-table-20210531-git mnas-hash-table.asd
mnas-package http://beta.quicklisp.org/archive/mnas-package/2021-05-31/mnas-package-20210531-git.tgz 45054 d278da5064aa61d23238d9aafbb7837c 67ddff524d012370b73650706bc67ae4002affb9 mnas-package-20210531-git mnas-package.asd
mnas-string http://beta.quicklisp.org/archive/mnas-string/2021-05-31/mnas-string-20210531-git.tgz 29670 b10ee3eb508f9e922aabf8cf3f4a7780 8db4106e622cba146c031423c3997a258a765120 mnas-string-20210531-git mnas-string.asd
mockingbird http://beta.quicklisp.org/archive/mockingbird/2017-11-30/mockingbird-20171130-git.tgz 8277 b5a2f5d401ba6ca7e2fab668bfa22cad 90ce36a82f42bf47eb9c87fd8f4694e4753673f5 mockingbird-20171130-git mockingbird-test.asd mockingbird.asd
modest-config http://beta.quicklisp.org/archive/modest-config/2018-02-28/modest-config-20180228-git.tgz 4144 25b0ea7d813ee8b806fd8ac434252ffd b899245e88298eb9bc042cd07237a6f1e6925af0 modest-config-20180228-git modest-config-test.asd modest-config.asd
modf http://beta.quicklisp.org/archive/modf/2020-09-25/modf-20200925-git.tgz 14580 1673e7f6d51c31b7e7a1e9807c41ef55 033e0677c969da7633fb47ad7d9cc99baaf4805e modf-20200925-git modf-test.asd modf.asd
modf-fset http://beta.quicklisp.org/archive/modf-fset/2015-06-08/modf-fset-20150608-git.tgz 2115 aec2b57d064522f5065597cd6619f851 0fb42b40b822fc95b98dacf7dcc86a0781f581cd modf-fset-20150608-git modf-fset-test.asd modf-fset.asd
modularize http://beta.quicklisp.org/archive/modularize/2020-04-27/modularize-20200427-git.tgz 11043 4b3df3353c21acebe1fc17a0c6c393ad 8558d187f31278c8c5d891e5132ac91a76c97bfd modularize-20200427-git modularize-test-module.asd modularize.asd
modularize-hooks http://beta.quicklisp.org/archive/modularize-hooks/2019-07-10/modularize-hooks-20190710-git.tgz 6119 86d8ed59bb2e6231b3c651372920128a 164b8063183939b2b42aa744e4280bca1a626f35 modularize-hooks-20190710-git modularize-hooks.asd
modularize-interfaces http://beta.quicklisp.org/archive/modularize-interfaces/2019-07-10/modularize-interfaces-20190710-git.tgz 11193 c9730aafa93b237ffe0a5415a45e4c73 e37e1f7754385f011a46a0b0f7112f8ac3c10dc4 modularize-interfaces-20190710-git interfaces-test-implementation.asd modularize-interfaces.asd
moira http://beta.quicklisp.org/archive/moira/2017-11-30/moira-20171130-git.tgz 2823 a1cfcd5ab13cc5dda524d0f5e26e90ce 6e26e71c89b4ecdef7218d572ebcf342a26052bb moira-20171130-git moira.asd
monkeylib-binary-data http://beta.quicklisp.org/archive/monkeylib-binary-data/2011-12-03/monkeylib-binary-data-20111203-git.tgz 4927 ef6b8e9c30e6b8efa915ca35ed962cf3 77232f96c8600789af74f006a7af9eb1fc6e698d monkeylib-binary-data-20111203-git com.gigamonkeys.binary-data.asd
monkeylib-html http://beta.quicklisp.org/archive/monkeylib-html/2018-02-28/monkeylib-html-20180228-git.tgz 7951 2b2b680f1eb02d4392135cebc33825fe 464b87c31dcfde60e5e350c7f2b5bab63bd3eb32 monkeylib-html-20180228-git monkeylib-html.asd
monkeylib-json http://beta.quicklisp.org/archive/monkeylib-json/2018-02-28/monkeylib-json-20180228-git.tgz 4329 253e4e5aa8fd634fc76c97e8b9be0862 56e485b956487256210d5eb76a3031f95d54335d monkeylib-json-20180228-git com.gigamonkeys.json.asd
monkeylib-macro-utilities http://beta.quicklisp.org/archive/monkeylib-macro-utilities/2011-12-03/monkeylib-macro-utilities-20111203-git.tgz 1968 b03c3644ff328ded7e7e0a39741a69ba 4bc771174bdb9bb52952356408d7a617e6b4ce2c monkeylib-macro-utilities-20111203-git com.gigamonkeys.macro-utilities.asd
monkeylib-markup http://beta.quicklisp.org/archive/monkeylib-markup/2012-09-09/monkeylib-markup-20120909-git.tgz 51056 e2f052930d4ed6cbd97b802b20a83646 fcf29d2e6a193626a8c5eb3d2498caf192735479 monkeylib-markup-20120909-git com.gigamonkeys.markup.asd
monkeylib-markup-html http://beta.quicklisp.org/archive/monkeylib-markup-html/2012-02-08/monkeylib-markup-html-20120208-git.tgz 4582 f70d4f0c511f36d6fc4a10a6912b51e0 d1fb1db716fdb7fe0fa845e223d0da5e76629b69 monkeylib-markup-html-20120208-git monkeylib-markup-html.asd
monkeylib-parser http://beta.quicklisp.org/archive/monkeylib-parser/2012-02-08/monkeylib-parser-20120208-git.tgz 22347 3e4327f25a31e78f93fd50de71b41065 48d5b2a1b8072d27c7601124a166fbadb2bc1bb4 monkeylib-parser-20120208-git com.gigamonkeys.parser.asd
monkeylib-pathnames http://beta.quicklisp.org/archive/monkeylib-pathnames/2012-02-08/monkeylib-pathnames-20120208-git.tgz 3689 9f7c261f5a6f3e594c8b63f3a81fd87e 8d3750393675bcd26b42b59cf20ca4e9127d55f2 monkeylib-pathnames-20120208-git com.gigamonkeys.pathnames.asd
monkeylib-prose-diff http://beta.quicklisp.org/archive/monkeylib-prose-diff/2014-07-13/monkeylib-prose-diff-20140713-git.tgz 68305 6c656fe2d6bcb7eaba029b23da783a53 d70a0717980660fb19691b8f40c02fb430187a67 monkeylib-prose-diff-20140713-git com.gigamonkeys.prose-diff.asd
monkeylib-test-framework http://beta.quicklisp.org/archive/monkeylib-test-framework/2010-12-07/monkeylib-test-framework-20101207-git.tgz 7237 cebe94d4ac359f39cf0eef63cf0e8de5 52d736e23f6a71c8ea987186c1f4c1b460c5a356 monkeylib-test-framework-20101207-git com.gigamonkeys.test-framework.asd
monkeylib-text-languages http://beta.quicklisp.org/archive/monkeylib-text-languages/2011-12-03/monkeylib-text-languages-20111203-git.tgz 5234 a5ff209ee992b4fe4685cabd3616bc49 9e02022e60dfbcfa4e2c7399dec3d4e579721383 monkeylib-text-languages-20111203-git monkeylib-text-languages.asd
monkeylib-text-output http://beta.quicklisp.org/archive/monkeylib-text-output/2011-12-03/monkeylib-text-output-20111203-git.tgz 3919 1d0623eadd80d9b0bbfa71b5a6d08d31 12de87a35e9dd6169d0201c3d17f07ab7d9bcd16 monkeylib-text-output-20111203-git monkeylib-text-output.asd
monkeylib-utilities http://beta.quicklisp.org/archive/monkeylib-utilities/2017-04-03/monkeylib-utilities-20170403-git.tgz 12151 323d5400fe092b0aff4be8d39c8bef33 9c55b7c6192c126ff49da725fdadeaf4e90a5d3c monkeylib-utilities-20170403-git com.gigamonkeys.utilities.asd
monomyth http://beta.quicklisp.org/archive/monomyth/2021-02-28/monomyth-20210228-git.tgz 93727 10a1cad5cae1b3f0d006c74db6858b2b 00d7443d6b7904b3b4a0720fd34ee5edf5abfb22 monomyth-20210228-git monomyth.asd
montezuma http://beta.quicklisp.org/archive/montezuma/2018-02-28/montezuma-20180228-git.tgz 1264435 db964cddda9b92877259d7db67c2aac3 37dd0718f7823760da2d72d050b39a38c56b4758 montezuma-20180228-git contrib/montezuma-indexfiles/montezuma-indexfiles.asd lucene-in-action/lucene-in-action-tests.asd montezuma.asd
mop-utils http://beta.quicklisp.org/archive/mop-utils/2012-08-11/mop-utils-20120811-http.tgz 5309 f320b8601e9d921305b1fd5b405479b6 7ba77dc06ef07c5ff2ef756552a6016d4ba48071 mop-utils-20120811-http mop-utils.asd
moptilities http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz 15618 b118397be325e60a772ea3631c4f19a4 a2b4eb6acad43773290ed22ee7698367476b01f5 moptilities-20170403-git moptilities-test.asd moptilities.asd
more-conditions http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz 20791 c4797bd3c6c50fba02a6e8164ddafe28 d81093734a1f68b0ce022eaa1577334d22987390 more-conditions-20180831-git more-conditions.asd
mp3-duration http://beta.quicklisp.org/archive/mp3-duration/2016-02-08/mp3-duration-20160208-git.tgz 2763 fe74eb23d4016d798f4c7ab39fae1991 edeab1547d760345c92b49dbb707adf69c4e16a8 mp3-duration-20160208-git mp3-duration-test.asd mp3-duration.asd
mpc http://beta.quicklisp.org/archive/mpc/2016-09-29/mpc-20160929-git.tgz 22507 7a4be8c7f3c1a896d2fa06c6aff4accf fc09c11b6e330eee4d0435e1fe5a9d09c3d1c803 mpc-20160929-git mpc.asd
mra-wavelet-plot http://beta.quicklisp.org/archive/mra-wavelet-plot/2018-12-10/mra-wavelet-plot-20181210-git.tgz 2672 6e58c7f058b996710f89095bd7d55140 4824e4d538ea298a76d6c69f6df99782ce5e0b41 mra-wavelet-plot-20181210-git mra-wavelet-plot.asd
mt19937 http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz 5551 54c63977b6d77abd66ebe0227b77c143 268d9a0d1dc870bd409bf9a85f80ff39840efd49 mt19937-1.1.1 mt19937.asd
mtif http://beta.quicklisp.org/archive/mtif/2017-11-30/mtif-20171130-git.tgz 36178 a713b90c4790464371cdc469d44a441f 8ee07bbf0c5b5fbfd618054945055ab638c7db57 mtif-20171130-git mtif.asd
mtlisp http://beta.quicklisp.org/archive/mtlisp/2013-06-15/mtlisp-20130615-git.tgz 41092 651cd99d4c77b0d533c1ee94e515b6b7 4d9ce6610ce99f89ddbfaea4d40a4369f8e1c8f8 mtlisp-20130615-git mtlisp.asd
multilang-documentation http://beta.quicklisp.org/archive/multilang-documentation/2019-07-10/multilang-documentation-20190710-git.tgz 7361 ba61cdd7a06d398143c4f18614c2b3a7 fa7caa1284353367149f88f1606465fa4357f49a multilang-documentation-20190710-git multilang-documentation.asd
multiple-value-variants http://beta.quicklisp.org/archive/multiple-value-variants/2014-08-26/multiple-value-variants-1.0.1.tgz 6991 b5676f66549832298262156277a79a52 b149d999e846c682677d7bbfbd3791c1baf73480 multiple-value-variants-1.0.1 multiple-value-variants.asd
multiposter http://beta.quicklisp.org/archive/multiposter/2021-05-31/multiposter-20210531-git.tgz 19019 64dab1ea8d23a47e7a8ee986849ac52b 97097985120498137b01f27bbbe221d1a17f2ff0 multiposter-20210531-git multiposter-git.asd multiposter-mastodon.asd multiposter-studio.asd multiposter-tumblr.asd multiposter-twitter.asd multiposter.asd
multival-plist http://beta.quicklisp.org/archive/multival-plist/2012-03-05/multival-plist-20120305-git.tgz 2263 db7767930bc07a150b697a6b63c369db eb4c2b023fccebd18549008ad67aa1ce6d4ace09 multival-plist-20120305-git multival-plist-test.asd multival-plist.asd
mutility http://beta.quicklisp.org/archive/mutility/2021-05-31/mutility-20210531-git.tgz 19648 fbedfae837c1239af9ec077f7ac1c8ef f7401ba875fe51cdb7f040be58511501ec472a32 mutility-20210531-git mutility.asd
mw-equiv http://beta.quicklisp.org/archive/mw-equiv/2010-10-06/mw-equiv-0.1.3.tgz 6115 671497babfd44f6d9c5f0c02bddb457c 4a79edf2ca9f5e65daff7f37323da4f1055d914c mw-equiv-0.1.3 mw-equiv.asd
mystic http://beta.quicklisp.org/archive/mystic/2016-02-08/mystic-20160208-git.tgz 7566 c76b5583defbbc0a921332f496fee7c5 a0ddfaea0aea12b7ce41e05d446626cf02a5d99f mystic-20160208-git mystic-file-mixin.asd mystic-fiveam-mixin.asd mystic-gitignore-mixin.asd mystic-library-template.asd mystic-readme-mixin.asd mystic-test.asd mystic-travis-mixin.asd mystic.asd
myway http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz 5350 af1fe34c2106303504c7908b25c3b9ce e093df058a9fdf5171902ddb732be60e3ebdaae7 myway-20200325-git myway-test.asd myway.asd
myweb http://beta.quicklisp.org/archive/myweb/2015-06-08/myweb-20150608-git.tgz 29572 bc91336495ca1421dac79bf14c5e6881 9e6e03663659d582aca58d1bfb7606952e9a7fcf myweb-20150608-git myweb.asd
named-read-macros http://beta.quicklisp.org/archive/named-read-macros/2021-02-28/named-read-macros-20210228-git.tgz 7657 dd44f3c294853f9c24af31d627570322 ed1e062396638d39dba115f2d0284298efc42c1a named-read-macros-20210228-git named-read-macros.asd test/named-read-macros-test.asd
named-readtables http://beta.quicklisp.org/archive/named-readtables/2021-05-31/named-readtables-20210531-git.tgz 28290 a79f2cc78e84c4b474f818132c8cc4d8 c6cb70452082be1aa86a0c143013e9ef53bef9c2 named-readtables-20210531-git named-readtables.asd
nanovg-blob http://beta.quicklisp.org/archive/nanovg-blob/2020-10-16/nanovg-blob-stable-git.tgz 1609829 624ef174d1d5c8f2d8145f37bce4628d f31f67c0c03317d104763e3857cc9cea45f36e80 nanovg-blob-stable-git nanovg-blob.asd
napa-fft3 http://beta.quicklisp.org/archive/napa-fft3/2015-12-18/napa-fft3-20151218-git.tgz 31959 4930569d5c4092ab11f76d8886779e6e 61afdce14dfe27431acbbd063c9840786b5e5d11 napa-fft3-20151218-git napa-fft3.asd
narrowed-types http://beta.quicklisp.org/archive/narrowed-types/2018-02-28/narrowed-types-20180228-git.tgz 2510 a149f985d2032c17210a3f75a9eca101 130b28978940159ed19df76eed1945738cfd1b05 narrowed-types-20180228-git narrowed-types-test.asd narrowed-types.asd
nbd http://beta.quicklisp.org/archive/nbd/2020-09-25/nbd-20200925-git.tgz 9419 f32b7a508ac87c1e179c259b171dc837 6303fc53f5f55d1f268ee483ef98c41ef1df2758 nbd-20200925-git nbd.asd
neo4cl http://beta.quicklisp.org/archive/neo4cl/2020-12-20/neo4cl-20201220-git.tgz 10605 26e6fb08503e140a7b6748a1484b68e5 c2f9d80a2a890413247d7973de5140d0e036cf77 neo4cl-20201220-git src/neo4cl.asd test/neo4cl-test.asd
net-telent-date http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz 12575 6fedf40113b2462f7bd273d07950066b 2a0efdd496136ba7d0d1d7b701ff57f9f0a0929f net-telent-date_0.42 net-telent-date.asd
network-addresses http://beta.quicklisp.org/archive/network-addresses/2016-06-28/network-addresses-20160628-git.tgz 4504 6b48746dc7beff85ed4b81edc4d31732 aa2e821a7e184fa885827db8b111896d641d3f6b network-addresses-20160628-git network-addresses-test.asd network-addresses.asd
neural-classifier http://beta.quicklisp.org/archive/neural-classifier/2021-04-11/neural-classifier-20210411-git.tgz 11679263 10373077530f96be863a54f04d4915a6 9869416e9edc395389a63481057cdd5a54786135 neural-classifier-20210411-git neural-classifier.asd
new-op http://beta.quicklisp.org/archive/new-op/2020-02-18/new-op-20200218-git.tgz 22315 fece56a6336373e2a3b7adba3740c5d9 8a439b72b507267e50b53e53f96558e71c03c85a new-op-20200218-git new-op.asd
nibbles http://beta.quicklisp.org/archive/nibbles/2021-05-31/nibbles-20210531-git.tgz 18184 ec4ee1a201aef6325e071a9d9e3f6380 151af1cb6e43c8860344a9b393266afeafd82f5e nibbles-20210531-git nibbles.asd
nineveh http://beta.quicklisp.org/archive/nineveh/2019-10-07/nineveh-release-quicklisp-0a10a846-git.tgz 47692 c7c3fe5e3a5a3bb9e8e7de3086cf95bb 43962ced034bf55962f61fe06ba75c2dd85a47a6 nineveh-release-quicklisp-0a10a846-git nineveh.asd
ningle http://beta.quicklisp.org/archive/ningle/2019-10-07/ningle-20191007-git.tgz 7069 13c890c05123b77d1d4c0f811490bfb2 f4677ddadcb493627fba8f96b6dd4142694afe57 ningle-20191007-git ningle-test.asd ningle.asd
nodgui http://beta.quicklisp.org/archive/nodgui/2021-05-31/nodgui-20210531-git.tgz 123905 bdcb5ae8467b2559d102b811a526de56 03c9a6d9be916b7bf6761c5be85522e70615d392 nodgui-20210531-git nodgui.asd
north http://beta.quicklisp.org/archive/north/2021-04-11/north-20210411-git.tgz 53740 4b30a6586ad82afccca02394965588f8 4c60a8d95ccba345d242120bda7e82d73bc36eb5 north-20210411-git example/north-example.asd north-core.asd north-dexador.asd north-drakma.asd north.asd
nsort http://beta.quicklisp.org/archive/nsort/2015-05-05/nsort-20150505-git.tgz 1785 71e01656a21f61447e0298f89d3af456 912766fd5765889a4ce4a6a0b64fc2d14d29f63a nsort-20150505-git nsort.asd
nst http://beta.quicklisp.org/archive/nst/2016-03-18/nst-4.1.0.tgz 635557 4fedd2bed9ead1c50901087ff8b14ef6 037e7bb17db08f52a0286b5d4f2d7388792ede38 nst-4.1.0 asdf-nst.asd nst.asd test/direct/nst-simple-tests.asd test/lisp/comp-set/comp-set.asd test/manual/nst-manual-tests.asd test/meta/mnst-relay.asd test/meta/nst-meta-tests.asd test/nst-test-jenkins.asd test/nst-test.asd test/util/nst-selftest-utils.asd utils/mop/nst-mop-utils.asd
nuclblog http://beta.quicklisp.org/archive/nuclblog/2014-08-26/nuclblog-20140826-git.tgz 20053 fb80583640212d0bfc452f9156917eac ffded3e808a703fdda65f3b3ab7c677c9be60946 nuclblog-20140826-git nuclblog.asd
nuklear-blob http://beta.quicklisp.org/archive/nuklear-blob/2020-10-16/nuklear-blob-stable-git.tgz 1137399 470a715768c9c23922c2ab6cd7f48785 7a778bccc113677eb465e18d16cb63efa14e7ba1 nuklear-blob-stable-git nuklear-blob.asd
nuklear-renderer-blob http://beta.quicklisp.org/archive/nuklear-renderer-blob/2020-10-16/nuklear-renderer-blob-stable-git.tgz 1042893 633ca88967148af18d77793c2727698b ca1eb34453d57a96bfd1b35b7dbf940afb970649 nuklear-renderer-blob-stable-git nuklear-renderer-blob.asd
null-package http://beta.quicklisp.org/archive/null-package/2020-09-25/null-package-20200925-git.tgz 9319 9aa8ae10ea0dcd3835db14beb0e364ff 7b33bd662674c428fa90758a158f9df9aa49288d null-package-20200925-git null-package.asd spec/null-package.test.asd
numcl http://beta.quicklisp.org/archive/numcl/2021-05-31/numcl-20210531-git.tgz 266621 e8a92dd252954cec9e5ad0336f5f8bdf 0869b576433bf1bb08feb9f3083852216f722c4f numcl-20210531-git numcl.asd numcl.test.asd
numerical-utilities http://beta.quicklisp.org/archive/numerical-utilities/2021-05-31/numerical-utilities-20210531-git.tgz 715562 a12c44a9f5522955148766f01730d6a1 1f87748c605774537b315cf987326f1af19b4336 numerical-utilities-20210531-git num-utils.asd
numpy-file-format http://beta.quicklisp.org/archive/numpy-file-format/2021-01-24/numpy-file-format-20210124-git.tgz 5141 0d81ce1e67ed1323787eb0f3cd698113 d47cb6bd3871541cfdfec2c460c6f4056d507c1d numpy-file-format-20210124-git code/numpy-file-format.asd
nyaml http://beta.quicklisp.org/archive/nyaml/2021-05-31/nyaml-20210531-git.tgz 169088 1ac0a12c9cd55d4284424a11ff06fae5 3c9a46c110b03809a2c9d0117a8ba091c2018892 nyaml-20210531-git nyaml.asd
nyxt http://beta.quicklisp.org/archive/nyxt/2021-05-31/nyxt-20210531-git.tgz 6903101 f5cfe92cf6036484a6cc078a9d76e9bf 14b58f965d0bc5ac1f75a79e4f2aa32117c31c69 nyxt-20210531-git nyxt.asd
object-class http://beta.quicklisp.org/archive/object-class/2020-09-25/object-class_1.0.tgz 6010 f0defa601fa8bc627810f12a0a8dff83 d45fdb627c0c0d0ae53ea36fe79797232d168a09 object-class_1.0 object-class.asd tests/object-class_tests.asd
oclcl http://beta.quicklisp.org/archive/oclcl/2019-05-21/oclcl-20190521-git.tgz 171806 3e1768e4d9c1412aabd19fc23457ca8f 2f49a21ab843dc52b012a82c286142994c122e95 oclcl-20190521-git oclcl-examples.asd oclcl-test.asd oclcl.asd
ode-blob http://beta.quicklisp.org/archive/ode-blob/2020-10-16/ode-blob-stable-git.tgz 3753751 10ebb08bdcf76faa8f3313127022b830 e501970718de3c605a2e6b9766ccc9be841ee57e ode-blob-stable-git ode-blob.asd
oe-encode http://beta.quicklisp.org/archive/oe-encode/2015-08-04/oe-encode-20150804-git.tgz 49756 317e7cb5295306a3b64a7b5cfe673093 1d2ad0214c58b88ddff8c2f66e8ef1d89b6de0ba oe-encode-20150804-git oe-encode.asd
omer-count http://beta.quicklisp.org/archive/omer-count/2021-04-11/omer-count-20210411-git.tgz 15326 091d8e3b9fc957d64a6e1e590db65e84 b0b1bc0e6a5c40e1e8bfa9506184a8fb0972b077 omer-count-20210411-git eclecticse.omer.asd
oneliner http://beta.quicklisp.org/archive/oneliner/2013-10-03/oneliner-20131003-git.tgz 3129 8709f2596797542709d9fc02e557d8c2 b2c7d3ee581dc13e43cf14a85b1f3e0bca093625 oneliner-20131003-git cl-oneliner.asd
ook http://beta.quicklisp.org/archive/ook/2021-01-24/ook-20210124-git.tgz 13966 14700160c92a7c08c8db2dc5a83c21a0 22e06395f67d90f6fb1c94f759438fd5a93861b3 ook-20210124-git ook.asd
oook http://beta.quicklisp.org/archive/oook/2017-11-30/oook-20171130-git.tgz 12023 eb6ee68a5f48b3720d7285fae7336485 b368840c0547253cb2c82e9ef9c48ffd27fed565 oook-20171130-git oook.asd
open-location-code http://beta.quicklisp.org/archive/open-location-code/2021-02-28/open-location-code-20210228-git.tgz 16981 e2a1b87f65298b6369548d2391bd9880 cf781d9d604b4513d2c8e9838c086ec6ffc0e8cf open-location-code-20210228-git open-location-code.asd
open-vrp http://beta.quicklisp.org/archive/open-vrp/2014-09-14/open-vrp-20140914-git.tgz 925579 718ad8132bb06eb5a66b1c1a814b7e66 066d3adb2be495e1a76dadf9e55ec2e66519715c open-vrp-20140914-git open-vrp-lib.asd open-vrp.asd
openal-blob http://beta.quicklisp.org/archive/openal-blob/2020-10-16/openal-blob-stable-git.tgz 4536591 5c3002b5d6963821c12f32aceeb62a45 a1b567c9192e91126defaed59e01e94e7552ac02 openal-blob-stable-git openal-blob.asd
openid-key http://beta.quicklisp.org/archive/openid-key/2018-12-10/openid-key-20181210-git.tgz 3284 cbe196eef93ee9eec7ef117557c440b2 4cdb875b541259e7bb9bbf8d26244f3dba1078b2 openid-key-20181210-git openid-key-test.asd openid-key.asd
ops5 http://beta.quicklisp.org/archive/ops5/2020-02-18/ops5-20200218-git.tgz 42739 89d7d0549272c77f000543b8bc2a5818 e37e16211f574db5815deacbe27708b5af08f592 ops5-20200218-git ops5.asd
opticl http://beta.quicklisp.org/archive/opticl/2021-01-24/opticl-20210124-git.tgz 228436 9eee3254db282a2b9666f1debbba86dd 353c309879f3796a9122548f894588f00a8b770f opticl-20210124-git opticl-doc.asd opticl.asd
opticl-core http://beta.quicklisp.org/archive/opticl-core/2017-10-19/opticl-core-20171019-git.tgz 4502 612766d24e14244a87d0bf41a789ed5a 90fe1cccff0248626018b5634abdf717f5e8c445 opticl-core-20171019-git opticl-core.asd
optima http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz 20345 20523dc3dfc04bb2526008dff0842caa aec56f162a6b34024d0b419ed9dfb35ef9e75be6 optima-20150709-git optima.asd optima.ppcre.asd optima.test.asd
org-davep-dict http://beta.quicklisp.org/archive/org-davep-dict/2019-05-21/org-davep-dict-20190521-git.tgz 6731 a5c307e394ddaf3dc23fd415fb025e04 84ce779221666927b4e07aaa47fcd26fb24f7bf0 org-davep-dict-20190521-git org-davep-dict.asd
org-davep-dictrepl http://beta.quicklisp.org/archive/org-davep-dictrepl/2019-05-21/org-davep-dictrepl-20190521-git.tgz 2983 311107f58978970b214e575690815a62 89eb453c83abfd72dd4c6a821a5b9704794e2fab org-davep-dictrepl-20190521-git org-davep-dictrepl.asd
org-sampler http://beta.quicklisp.org/archive/org-sampler/2016-03-18/org-sampler-0.2.0.tgz 61604 1d367f79a5cb325abce3e1640ce6bc91 e7e572deb75c9bb2f55bdca3a5915bf1fb4440da org-sampler-0.2.0 org-sampler.asd
origin http://beta.quicklisp.org/archive/origin/2021-04-11/origin-20210411-git.tgz 59320 33aa3e0c629ba274c384152c52c014b9 46202ad999462e3d572ed1a8f7dfe6602951ada5 origin-20210411-git origin.asd origin.test.asd
orizuru-orm http://beta.quicklisp.org/archive/orizuru-orm/2021-02-28/orizuru-orm-20210228-git.tgz 49633 12546f2f34c3a1741d46c6dbd0ad3214 e3b50e1342662685f3fcfb20f55d328d8a9c65f4 orizuru-orm-20210228-git orizuru-orm.asd
osc http://beta.quicklisp.org/archive/osc/2019-05-21/osc-20190521-git.tgz 17189 3de093d1f99a34544e8555d3e51c7f6e 34689d25a01a1ef71f27de6f3bc4179a0b732e3e osc-20190521-git osc.asd
osicat http://beta.quicklisp.org/archive/osicat/2021-02-28/osicat-20210228-git.tgz 54813 22c1b81abfe4fb30a2789877d2f85a86 888442361f116e2ee4885f51fcb92b9b151499c2 osicat-20210228-git osicat.asd
osmpbf http://beta.quicklisp.org/archive/osmpbf/2021-05-31/osmpbf-20210531-git.tgz 23227 f61960258203f724354624837c198e8a ec2c9d642e027000b9cbb2dd4ee90bf8e3a3fbdc osmpbf-20210531-git osmpbf.asd
overlord http://beta.quicklisp.org/archive/overlord/2021-05-31/overlord-20210531-git.tgz 56805 824162b3a0074d8ab3aa1b3569ffed7d 7be83ab646b01efe1a66ee04ef7fec25d00d3884 overlord-20210531-git overlord.asd
oxenfurt http://beta.quicklisp.org/archive/oxenfurt/2019-07-10/oxenfurt-20190710-git.tgz 23362 d3399266edf13969b0031f972a15477f 146d6718296832a33ebd25076d743677b4a74a95 oxenfurt-20190710-git oxenfurt-core.asd oxenfurt-dexador.asd oxenfurt-drakma.asd oxenfurt.asd
pack http://beta.quicklisp.org/archive/pack/2011-06-19/pack-20110619-git.tgz 3684 f769fa83d8487575facf6fe5adf9b245 e33f75deac5ab3a1facc24fc378c9184b6be6d04 pack-20110619-git pack.asd
package-renaming http://beta.quicklisp.org/archive/package-renaming/2012-04-07/package-renaming-20120407-git.tgz 4522 b9d7b446196fba632edd088bf9ad23ae bcba6923289ab9cf2f539dec333853ff7d9e0a65 package-renaming-20120407-git package-renaming-test.asd package-renaming.asd
packet http://beta.quicklisp.org/archive/packet/2015-03-02/packet-20150302-git.tgz 10533 71312a40fa6abb7027b94c8a57a90d00 5c459eb3feebdfed53359a7b021cba522ae6df71 packet-20150302-git packet.asd
packet-crafting http://beta.quicklisp.org/archive/packet-crafting/2020-06-10/packet-crafting-20200610-git.tgz 2785 aaa0333dddfcc5e25e44edffbb993513 32c3e7f30ad90505371082fce4921c2a2f4bbc44 packet-crafting-20200610-git packet-crafting.asd
paiprolog http://beta.quicklisp.org/archive/paiprolog/2018-02-28/paiprolog-20180228-git.tgz 172150 1f04f011c9f09d7fe854b98e845d21bd e5505fd5ff9fb77bf6e3374ab0d5e9e37cc7186a paiprolog-20180228-git paiprolog.asd unifgram.asd
pal http://beta.quicklisp.org/archive/pal/2015-06-08/pal-20150608-git.tgz 3707918 ce7afd79040188475efc67ae87287949 795d4e4f69cb4132ee35b641e564ee01ab6365d9 pal-20150608-git examples/bermuda/bermuda.asd pal.asd
pandocl http://beta.quicklisp.org/archive/pandocl/2015-09-23/pandocl-20150923-git.tgz 2581 ee9450a491206f3c606c05bb63268c08 613046a725fc6925372f484d1771c6acf4b74b0d pandocl-20150923-git pandocl.asd
pango-markup http://beta.quicklisp.org/archive/pango-markup/2020-03-25/pango-markup-20200325-git.tgz 9297 148111aed4d8c504e5e5e1fd7f929c71 82e509817917e36c1d65caf4e91033afe1791e34 pango-markup-20200325-git pango-markup.asd
papyrus http://beta.quicklisp.org/archive/papyrus/2020-02-18/papyrus-20200218-git.tgz 74959 9041f9dffb236831e7b2ffd5b8953e36 247c0aecd81c267b3ab1992cf70cda70b4d9f255 papyrus-20200218-git papyrus.asd
parachute http://beta.quicklisp.org/archive/parachute/2021-04-11/parachute-20210411-git.tgz 53510 da47171fe6dbda48ff76383eefce8799 0855d52204c6a86fb6ed7f5acadf534d6f640dd2 parachute-20210411-git compat/parachute-fiveam.asd compat/parachute-lisp-unit.asd compat/parachute-prove.asd parachute.asd
parameterized-function http://beta.quicklisp.org/archive/parameterized-function/2019-03-07/parameterized-function-20190307-hg.tgz 3178 13de98b8381cd84c9cad3dde122e919a d0ee504ad9a10a393ff6326f1885ebfd16981149 parameterized-function-20190307-hg parameterized-function.asd
paren-files http://beta.quicklisp.org/archive/paren-files/2011-04-18/paren-files-20110418-git.tgz 11665 cf10bbcfa01d65e1487b2764d3967aeb 136c1ec5faace0cb6642fde48c9c8c317e0a3b91 paren-files-20110418-git paren-files.asd
paren-test http://beta.quicklisp.org/archive/paren-test/2017-08-30/paren-test-20170830-git.tgz 2796 1699edb46292e81cc416a717d42eb13a 8337b21fd440117d26c77f1ce1c6c3d81ec49265 paren-test-20170830-git examples/arith.asd paren-test.asd
paren-util http://beta.quicklisp.org/archive/paren-util/2011-04-18/paren-util-20110418-git.tgz 9583 ce8212375a6586235774baa4f7cfc4c5 1928ce6c595d307357e01e49fd47c32993b8562e paren-util-20110418-git paren-util.asd
paren6 http://beta.quicklisp.org/archive/paren6/2021-01-24/paren6-20210124-git.tgz 11869 629939fbfe83611d6f3bdcf89fa533b6 c30eb33846c7446fb38c99d438ca87e6d90c8cf0 paren6-20210124-git paren6.asd test-paren6.asd
parenml http://beta.quicklisp.org/archive/parenml/2015-09-23/parenml-20150923-git.tgz 2084 e02a5cb32d6ceda30744c90589b854cb 87db838f002b09178393e5162ebf681b43d23be6 parenml-20150923-git parenml-test.asd parenml.asd
parenscript http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz 103952 047c9a72bd36f1b4a5ec67af9453a0b9 2532046ecb26bcbc808bf8ed2d14d140a9a33fba Parenscript-2.7.1 parenscript.asd parenscript.tests.asd
parenscript-classic http://beta.quicklisp.org/archive/parenscript-classic/2011-12-03/parenscript-classic-20111203-darcs.tgz 185472 9d355c65babf238bdce498ff628e187b 3ea1563d8e21583c48b31677797e99b74fd31492 parenscript-classic-20111203-darcs parenscript-classic.asd
parse http://beta.quicklisp.org/archive/parse/2020-09-25/parse-20200925-git.tgz 7379 29779e94f9d0253b2c1d4fedf09801eb eb16fbc5dfc002b6428470446ada1a245a04674a parse-20200925-git parse.asd
parse-declarations http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz 36664 e49222003e5b59c5c2a0cf58b86cfdcd f2ed7dbb076058e4aef57553469759b13a0a618c parse-declarations-20101006-darcs parse-declarations-1.0.asd
parse-float http://beta.quicklisp.org/archive/parse-float/2020-02-18/parse-float-20200218-git.tgz 4653 149e40a8c5fd6ab0e43242cb898d66bf 8031b1b03c4861658df12660cf2465e195af4bce parse-float-20200218-git parse-float.asd
parse-front-matter http://beta.quicklisp.org/archive/parse-front-matter/2016-08-25/parse-front-matter-20160825-git.tgz 1378 478c27505370135f5d8859fe5c755431 2da48a358580ac203b5762acdce7eb3e6516f39b parse-front-matter-20160825-git parse-front-matter-test.asd parse-front-matter.asd
parse-js http://beta.quicklisp.org/archive/parse-js/2016-04-21/parse-js-20160421-git.tgz 10664 14049fdc5f55bf48d7e3d54a9549a97e c6baef888b9383b2d437d31426f231de8a31b064 parse-js-20160421-git parse-js.asd
parse-number http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz 5715 b9ec925018b8f10193d73403873dde8f 472816dd6ad673d3be65ae33495c5378ba6b6588 parse-number-v1.7 parse-number.asd
parse-number-range http://beta.quicklisp.org/archive/parse-number-range/2012-11-25/parse-number-range-1.0.tgz 5733 a1a173bffeafcdca9320473f14103f80 c79d229ba4d3a0c5267b21b3560026b78a8c2300 parse-number-range-1.0 parse-number-range.asd
parseltongue http://beta.quicklisp.org/archive/parseltongue/2013-03-12/parseltongue-20130312-git.tgz 27941 4519905cf797085c6063c33bf0107b9c 3f9099ad7ee505fe0b8abaaca1e32d03bf6892b0 parseltongue-20130312-git parseltongue.asd
parseq http://beta.quicklisp.org/archive/parseq/2021-05-31/parseq-20210531-git.tgz 40928 a62fdb0623450f7ef82297e8b23fd343 8337a8abcb1e481150dd3580cb2d78f2fe16303c parseq-20210531-git parseq.asd
parser.common-rules http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz 18930 6391d962ae6fc13cc57312de013504c5 71e704909ca1940d80e48c78f44d95c1fed4abe8 parser.common-rules-20200715-git parser.common-rules.asd parser.common-rules.operators.asd
parser.ini http://beta.quicklisp.org/archive/parser.ini/2018-10-18/parser.ini-20181018-git.tgz 11142 83943b433684f7bef2ad113adef8e4fd 60010609b62b382abbdda31e8824ab3026a42ffe parser.ini-20181018-git parser.ini.asd
parsley http://beta.quicklisp.org/archive/parsley/2021-04-11/parsley-20210411-git.tgz 2517 ecf82542ba7ecddb36844bd9c45a0ebe 104d3f385b0f13041bba1c1d33e561f491f9fd7a parsley-20210411-git parsley.asd
patchwork http://beta.quicklisp.org/archive/patchwork/2021-04-11/patchwork-20210411-git.tgz 5360 315a2013c198f2570680ea7c0f6dc6a6 c6c471551ab869996509b189f253491e9f12b640 patchwork-20210411-git patchwork.asd
path-parse http://beta.quicklisp.org/archive/path-parse/2016-04-21/path-parse-20160421-git.tgz 2115 83ace94d06e0759f717bf11be698602e 331bfeef1557fa4133220cac48bf4afb4f62a8da path-parse-20160421-git path-parse-test.asd path-parse.asd
path-string http://beta.quicklisp.org/archive/path-string/2016-08-25/path-string-20160825-git.tgz 4983 bc3d1e818a793d955eb6877f67bd4d52 833c85edc0fffcfcef2a9b5cfd111910c648293a path-string-20160825-git path-string-test.asd path-string.asd
pathname-utils http://beta.quicklisp.org/archive/pathname-utils/2021-05-31/pathname-utils-20210531-git.tgz 11946 d239aae4dab0314e92aa33d7859141dc 31e37cb18db1011d5042ceab473fc6b68ff23fab pathname-utils-20210531-git pathname-utils-test.asd pathname-utils.asd
patron http://beta.quicklisp.org/archive/patron/2013-04-20/patron-20130420-git.tgz 12195 dd08fa2247852002f9884ccc842aeae4 6d2f8130f0ab4eab47b9aba79e3cc060ef6da096 patron-20130420-git patron.asd
pcall http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz 14561 019d85dfd1d5d0ee8d4ee475411caf6b 65626582e38d7a8b3180382a694a96290fde4b2c pcall-0.3 pcall-queue.asd pcall.asd
percent-encoding http://beta.quicklisp.org/archive/percent-encoding/2012-10-13/percent-encoding-20121013-git.tgz 5240 de4b28564907c12b598630d27135d80f c945ddb56afaf0244019242f77e396edfe870e1f percent-encoding-20121013-git percent-encoding.asd
perceptual-hashes http://beta.quicklisp.org/archive/perceptual-hashes/2021-04-11/perceptual-hashes-20210411-git.tgz 77475 26d9e09034c797e7fc7bdbf2ed3a0ef5 3a52085b400b0c306d14bffafb36be2965893161 perceptual-hashes-20210411-git perceptual-hashes.asd
periodic-table http://beta.quicklisp.org/archive/periodic-table/2011-10-01/periodic-table-1.0.tgz 5100 1fe8e203b8b622857fe1af4ade13e7ce 1f118c131789908e9108b84e72c2e1325f1ee22e periodic-table-1.0 periodic-table.asd
periods http://beta.quicklisp.org/archive/periods/2021-02-28/periods-20210228-git.tgz 33401 174ec718de082e6651e960ec357c1725 09e914dbfcbe82e8a3fb05354002004a382840b6 periods-20210228-git periods-series.asd periods.asd
perlre http://beta.quicklisp.org/archive/perlre/2020-07-15/perlre-20200715-git.tgz 7494 c441e4b9618789d3e6ffeadc9561c334 9799c4194934eee14732c91eb8c1bd56ec85f5bd perlre-20200715-git perlre.asd
persistent-tables http://beta.quicklisp.org/archive/persistent-tables/2012-02-08/persistent-tables-20120208-git.tgz 2585 08f6feb0c4716102d9f4c0ebe817a7be d53ebc25f643ca4ff4f4dda34421ddd1f6a2137c persistent-tables-20120208-git persistent-tables.asd
persistent-variables http://beta.quicklisp.org/archive/persistent-variables/2013-03-12/persistent-variables-20130312-git.tgz 117127 ba06997b04bdbeee85fc8861e0cdf687 ac9009d2637c21140d015c84b88200659808a7e1 persistent-variables-20130312-git persistent-variables.asd
petalisp http://beta.quicklisp.org/archive/petalisp/2021-04-11/petalisp-20210411-git.tgz 176165 96a5bbb508f5788bb9b14603c1fbeb60 3ee6b18fee76b83014b025c0f3d8b38af828cfea petalisp-20210411-git code/api/petalisp.api.asd code/core/petalisp.core.asd code/graphviz/petalisp.graphviz.asd code/ir/petalisp.ir.asd code/multicore-backend/petalisp.multicore-backend.asd code/native-backend/petalisp.native-backend.asd code/petalisp.asd code/scheduler/petalisp.scheduler.asd code/test-suite/petalisp.test-suite.asd code/type-inference/petalisp.type-inference.asd code/utilities/petalisp.utilities.asd examples/petalisp.examples.asd
petit.package-utils http://beta.quicklisp.org/archive/petit.package-utils/2014-08-26/petit.package-utils-20140826-git.tgz 2290 58e6dceab797eec3cea779e5fb366486 f8a4735180f1d47481349ed8801433a4a6a5a8df petit.package-utils-20140826-git petit.package-utils.asd
petit.string-utils http://beta.quicklisp.org/archive/petit.string-utils/2014-11-06/petit.string-utils-20141106-git.tgz 4262 dea2dea0ac8045a1930a81231a1ac39b 8169426736e26e55f30171560c3b0e17c0175eea petit.string-utils-20141106-git petit.string-utils-test.asd petit.string-utils.asd
petri http://beta.quicklisp.org/archive/petri/2020-04-27/petri-20200427-git.tgz 139139 07ab9ed43e146849dcf32f2a8f06cc40 fc87e5028922295ca9967c44b8f88c56327d2804 petri-20200427-git petri.asd
pettomato-deque http://beta.quicklisp.org/archive/pettomato-deque/2012-01-07/pettomato-deque-20120107-git.tgz 5573 f4aebae99019f5ca7c82fec60540bbd9 7f132a9c5c15aac2d555bc1c19570973d32eb5c3 pettomato-deque-20120107-git pettomato-deque-tests.asd pettomato-deque.asd
pettomato-indexed-priority-queue http://beta.quicklisp.org/archive/pettomato-indexed-priority-queue/2012-09-09/pettomato-indexed-priority-queue-20120909-git.tgz 7555 f734b68ce8cdb911562cdd62eed1d5aa fdeebe7c9c560e4c559c18ba9ee833310685a1eb pettomato-indexed-priority-queue-20120909-git pettomato-indexed-priority-queue-tests.asd pettomato-indexed-priority-queue.asd
pg http://beta.quicklisp.org/archive/pg/2015-06-08/pg-20150608-git.tgz 48921 11a6ddac157a7443155158e255a2452b 6e5a808a1b08d0049450724574058280cf3a8a2d pg-20150608-git pg.asd
pgloader http://beta.quicklisp.org/archive/pgloader/2020-03-25/pgloader-v3.6.2.tgz 3706672 f2c8d7e550a6b11e2062d53b3542fb5f 46f59cd683e8a5dc7da19dbda0628b0b2634aca7 pgloader-v3.6.2 pgloader.asd
phoe-toolbox http://beta.quicklisp.org/archive/phoe-toolbox/2021-01-24/phoe-toolbox-20210124-git.tgz 11392 43058ff6121fdc5b91a60c7f7223fb4d 860947b7239e2a2dc8795aeec55f86fda638724e phoe-toolbox-20210124-git phoe-toolbox.asd
physical-quantities http://beta.quicklisp.org/archive/physical-quantities/2020-12-20/physical-quantities-20201220-git.tgz 29542 428232d463c45259dd2c18fa8ff3dd6e 5f7cf90076f30ac6381e78fd806b0502efbb3b3a physical-quantities-20201220-git physical-quantities.asd
picl http://beta.quicklisp.org/archive/picl/2021-01-24/picl-20210124-git.tgz 14029 7647fb7da88b067b365cc52138887e1a 0b05a7e8e6f1711c24247fa4140a6ccc730ef408 picl-20210124-git picl.asd
piggyback-parameters http://beta.quicklisp.org/archive/piggyback-parameters/2020-06-10/piggyback-parameters-20200610-git.tgz 6875 470a00d9671d91458573bbbe2ccba65b a53ed83556517233b71d88c12b0166539b2fb015 piggyback-parameters-20200610-git piggyback-parameters.asd
pileup http://beta.quicklisp.org/archive/pileup/2015-07-09/pileup-20150709-git.tgz 20217 230aeb8bbb0993c5fecd4ef47052623f 045fe18800b0e56283617fa5b032c483f38be280 pileup-20150709-git pileup.asd
pipes http://beta.quicklisp.org/archive/pipes/2015-09-23/pipes-20150923-git.tgz 5603 77717361af87e7a83d38e84d08ad29f5 e7ce78dc510136ebd0b8b6a7495fac662233a363 pipes-20150923-git pipes.asd
piping http://beta.quicklisp.org/archive/piping/2019-07-10/piping-20190710-git.tgz 8533 852246a0c773a047dfb023638198387a 0f0fd020438d640c211736f0e572d11e4388edeb piping-20190710-git piping.asd
pithy-xml http://beta.quicklisp.org/archive/pithy-xml/2010-10-06/pithy-xml-20101006-git.tgz 10188 5401547ac31ab9c502d3409a9200a0dc 9445d371b1e0801e3e75ff112f8ba551bb372276 pithy-xml-20101006-git pithy-xml.asd
pjlink http://beta.quicklisp.org/archive/pjlink/2020-12-20/pjlink-20201220-git.tgz 16113 181d8cf7dad529ba13571d69f27d4ceb b7b2852288dbc2a431790a34ad98ca988ba45ce6 pjlink-20201220-git src/pjlink.asd
pkg-doc http://beta.quicklisp.org/archive/pkg-doc/2020-09-25/pkg-doc-20200925-git.tgz 18257 28fedd7417265067bfe9602b634957e7 af9f4d14eb96e6b39a36c9005f2337f3787ca4f7 pkg-doc-20200925-git pkg-doc.asd
place-modifiers http://beta.quicklisp.org/archive/place-modifiers/2012-11-25/place-modifiers-2.1.tgz 10202 8c209e6ee7e376b20b447a4e75fb12e3 3a15cc3cd06e587cb81222057b99efa0a27a1545 place-modifiers-2.1 place-modifiers.asd
place-utils http://beta.quicklisp.org/archive/place-utils/2018-10-18/place-utils-0.2.tgz 14315 5462562949ab3a8b5a9f40e9e6d2a628 164c95f8afeab6e8ddf256f1f845108665035fa0 place-utils-0.2 place-utils.asd
plain-odbc http://beta.quicklisp.org/archive/plain-odbc/2019-11-30/plain-odbc-20191130-git.tgz 60040 cfa0da32a083a406344e6f6504d962de 9a7a0ce75ac9e1ef7c2fddc0705a1b2429196400 plain-odbc-20191130-git plain-odbc.asd
planks http://beta.quicklisp.org/archive/planks/2011-05-22/planks-20110522-git.tgz 13152 b0881e48b242ea36e95a815ba6118950 6fd7b423ace8306647696ae42d465683bec59e1a planks-20110522-git planks.asd
plexippus-xpath http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz 56479 eb9a4c39a7c37aa0338c401713b3f944 6acb71007298138bb494e04abe39a79fff54af86 plexippus-xpath-20190521-git xpath.asd
plokami http://beta.quicklisp.org/archive/plokami/2020-02-18/plokami-20200218-git.tgz 20037 09cc4ee4c130da33562f277b56418b33 610357b49e11de7666e88ad9747dd478669b0ced plokami-20200218-git plokami.asd
plot http://beta.quicklisp.org/archive/plot/2021-05-31/plot-20210531-git.tgz 11046 7dc833a338ef8add873b4c7a65f4aedc a8a89d9108808262f125f2c1c136da67a5731d16 plot-20210531-git plot.asd
pludeck http://beta.quicklisp.org/archive/pludeck/2018-08-31/pludeck-20180831-git.tgz 5125 7cc744ed744245026604347abf01a539 3bed71c98b172d330579aaa8833575f9f7b5b7f3 pludeck-20180831-git pludeck.asd
plump http://beta.quicklisp.org/archive/plump/2021-04-11/plump-20210411-git.tgz 51127 055e30ed07ae793426a48b55c947f9bb 56a9505d668fa7a0379b0d96d6bafe2c5cc8939d plump-20210411-git plump-dom.asd plump-lexer.asd plump-parser.asd plump.asd
plump-bundle http://beta.quicklisp.org/archive/plump-bundle/2019-07-10/plump-bundle-20190710-git.tgz 7705 a89ccc2557c1657fa080302d5c929a6d 7a4b27d045b483bfc99ecfd43e5084bc6b985e60 plump-bundle-20190710-git plump-bundle.asd
plump-sexp http://beta.quicklisp.org/archive/plump-sexp/2021-05-31/plump-sexp-20210531-git.tgz 3716 651ef53b4b258971de4ca66a299a5157 3a961ac6f4414379688d9c05d0cd105a743a8691 plump-sexp-20210531-git plump-sexp.asd
plump-tex http://beta.quicklisp.org/archive/plump-tex/2021-05-31/plump-tex-20210531-git.tgz 3505 31f9b03d00f414b4e823e72adee1369a 56c4e93b1491ec7a76b74cb32dc12afa3138b066 plump-tex-20210531-git plump-tex-test.asd plump-tex.asd
png-read http://beta.quicklisp.org/archive/png-read/2017-08-30/png-read-20170830-git.tgz 8677 40354aa5f3f3321a4d42629c15c6f9f7 d36071bb47abcda177284afddd83cf518d579b19 png-read-20170830-git png-read.asd
pngload http://beta.quicklisp.org/archive/pngload/2021-04-11/pngload-20210411-git.tgz 102156 1c48b2eec5280dd27220238b5ab58f20 74cf45f450b1e1639fbb25ee8a7a9eb5d2091d21 pngload-20210411-git pngload.asd pngload.test.asd
poler http://beta.quicklisp.org/archive/poler/2018-12-10/poler-20181210-git.tgz 6505 9f7588fcb283ff5c56bab084304fc4a3 fbf7235432d08b6d488bd1282ba19dddd9e0db36 poler-20181210-git poler-test.asd poler.asd
policy-cond http://beta.quicklisp.org/archive/policy-cond/2020-04-27/policy-cond-20200427-git.tgz 5976 c62090127d03b788518ac1257f49eda2 a6e5303456d976a67cfe6f05badc513b088664c6 policy-cond-20200427-git policy-cond.asd
polisher http://beta.quicklisp.org/archive/polisher/2020-04-27/polisher-20200427-git.tgz 7930 42c60a9e23b767b505a9caeb6cb87a13 49a423ea739f8f382c9b8af62178908bccd3634d polisher-20200427-git polisher.asd polisher.test.asd
pooler http://beta.quicklisp.org/archive/pooler/2015-06-08/pooler-20150608-git.tgz 4985 75efc3d397c6962954ec3c37b0f45c5f b118bb296d55bcd7d783a4b52b293a970b46728c pooler-20150608-git pooler.asd
portable-condition-system http://beta.quicklisp.org/archive/portable-condition-system/2021-01-24/portable-condition-system-20210124-git.tgz 52733 d99a07e866d66271b1edf74726148195 37ae820ce15337426271dac356844a77d7758dda portable-condition-system-20210124-git integration/portable-condition-system.integration.asd portable-condition-system.asd
portable-threads http://beta.quicklisp.org/archive/portable-threads/2021-05-31/portable-threads-20210531-git.tgz 31602 e69804b686166e68385bb710f3bb7e97 fc2cf73edff3456db89d864d20ec0e8fce2e4825 portable-threads-20210531-git portable-threads.asd
portableaserve http://beta.quicklisp.org/archive/portableaserve/2019-08-13/portableaserve-20190813-git.tgz 586259 4cd7af3fbd45693800a823aff55fa442 dfd074e79bfd1d98385f2066a82dacf8b3f98bea portableaserve-20190813-git acl-compat/acl-compat.asd aserve/aserve.asd aserve/htmlgen/htmlgen.asd aserve/webactions/webactions.asd
portal http://beta.quicklisp.org/archive/portal/2021-02-28/portal-20210228-git.tgz 17752 8e8acc782727fc4fcd50276e3acc6951 df6be81407ef3f6329262963807ca22406f1dd1a portal-20210228-git portal.asd
positional-lambda http://beta.quicklisp.org/archive/positional-lambda/2012-10-13/positional-lambda-2.0.tgz 7250 1099a5457455b7c570132556073aa21f 7433ee7798c5bdbd6c2edd9869f5173d93178727 positional-lambda-2.0 positional-lambda.asd
postmodern http://beta.quicklisp.org/archive/postmodern/2021-05-31/postmodern-20210531-git.tgz 552483 113d2f8a070f22c681200b9c0978da7a cf5913b4bacdeeea2d5ce04c3389c24001342a90 postmodern-20210531-git cl-postgres.asd postmodern.asd s-sql.asd simple-date.asd
postmodern-localtime http://beta.quicklisp.org/archive/postmodern-localtime/2020-06-10/postmodern-localtime-20200610-git.tgz 1165 1af6deb83df625574d7e2e541e1ddd5a 25e8544b5822f362a5f4482c0ded2f06d46550bc postmodern-localtime-20200610-git postmodern-localtime.asd
postmodernity http://beta.quicklisp.org/archive/postmodernity/2017-01-24/postmodernity-20170124-git.tgz 3251 9109aace9c9a906732eb0259a15274e0 380ce87aaceedd6aa00a2d94da9b4dfaa16ddd6a postmodernity-20170124-git postmodernity.asd
postoffice http://beta.quicklisp.org/archive/postoffice/2012-09-09/postoffice-20120909-git.tgz 36931 d09dd023aac099aba49bd3a485179a26 0e6aa7efb53da555f44a8b7caefff3dce1e7eaf3 postoffice-20120909-git postoffice.asd
pounds http://beta.quicklisp.org/archive/pounds/2016-02-08/pounds-20160208-git.tgz 22888 7690a4a5aaca79a60bbb5c49ac9ef1b2 b60ec9318d7017a982e95eae42a2a5c6844da2b7 pounds-20160208-git pounds.asd
pp-toml http://beta.quicklisp.org/archive/pp-toml/2018-02-28/pp-toml-20180228-git.tgz 10851 28f316d8f8309b0a56372e49dc0e7022 ea6b34bacc0556f7a67416f22b6bb9751461d16c pp-toml-20180228-git pp-toml-tests.asd pp-toml.asd
ppath http://beta.quicklisp.org/archive/ppath/2018-07-11/ppath-20180711-git.tgz 26911 bcfdda2ff1161721b98c2c1233434429 b93079de943fb4f9cf8ef0a3c2517ce4292b8cdc ppath-20180711-git ppath-test.asd ppath.asd
practical-cl http://beta.quicklisp.org/archive/practical-cl/2018-04-30/practical-cl-20180430-git.tgz 241556 6d0d20024a11897b190d9680fb067d79 462ef8018d44d307ae58197ff03d049ad9a0eff1 practical-cl-20180430-git practicals/Chapter03/pcl-simple-database.asd practicals/Chapter08/pcl-macro-utilities.asd practicals/Chapter09/pcl-test-framework.asd practicals/Chapter15/pcl-pathnames.asd practicals/Chapter23/pcl-spam.asd practicals/Chapter24/pcl-binary-data.asd practicals/Chapter25/pcl-id3v2.asd practicals/Chapter26/pcl-url-function.asd practicals/Chapter27/pcl-mp3-database.asd practicals/Chapter28/pcl-shoutcast.asd practicals/Chapter29/pcl-mp3-browser.asd practicals/Chapter31/pcl-html.asd practicals/practical-cl.asd
prbs http://beta.quicklisp.org/archive/prbs/2018-02-28/prbs-20180228-git.tgz 16327 6baec1bb244961320d1a034a30fdb89a c09a9e8fe05cea4dcc3b4573b33c5f517e4c566b prbs-20180228-git doc/prbs-docs.asd prbs.asd
prepl http://beta.quicklisp.org/archive/prepl/2018-10-18/prepl-20181018-git.tgz 24716 1da918018645e9ea8c291d66f55b9907 47ca4168a7d798f8369c037012bcc88befa094df prepl-20181018-git prepl.asd
pretty-function http://beta.quicklisp.org/archive/pretty-function/2013-06-15/pretty-function-20130615-git.tgz 6248 7b6ad93307bc8c8ec585a8199e5e9cb6 3eaf9baa4d31922b3adf8b04005393e7d054b4aa pretty-function-20130615-git pretty-function.asd
primecount http://beta.quicklisp.org/archive/primecount/2020-03-25/primecount-20200325-git.tgz 3066 58cddf7bf57bbf3f97ef4f619daea71c e0a3d5f1e82f5ef5de108dfcc81fb4758bfe6ee7 primecount-20200325-git primecount.asd
print-html http://beta.quicklisp.org/archive/print-html/2018-10-18/print-html-20181018-git.tgz 2917 c9f8962deb792e5dd82c3971bfdf3daa ec23887721f684f8cd6170676d7141df9c3b381b print-html-20181018-git print-html.asd
print-licenses http://beta.quicklisp.org/archive/print-licenses/2018-10-18/print-licenses-20181018-git.tgz 3079 fc2c8770ec8bc28f154f31fc247d47cd 8f76b7b3c94c29d916a1b31e07cc90f70c4a3737 print-licenses-20181018-git print-licenses.asd
printv http://beta.quicklisp.org/archive/printv/2014-07-14/printv-20140714-git.tgz 16113 049108fb64993d704fba006a1b7ce300 36b5b3188f22a39dafaa030219ccaa21c3b35e41 printv-20140714-git printv.asd
priority-queue http://beta.quicklisp.org/archive/priority-queue/2015-07-09/priority-queue-20150709-git.tgz 2535 5196d0b355b72215228de49eeb0df745 65644f0e3eb8bd23af1ffe64f856bbd9c4d1ac15 priority-queue-20150709-git priority-queue.asd
proc-parse http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz 8695 99bdce79943071267c6a877d8de246c5 18fff39d2a228aeb60547154bb09745d2a8769e1 proc-parse-20190813-git proc-parse-test.asd proc-parse.asd
projectured http://beta.quicklisp.org/archive/projectured/2017-12-27/projectured-quicklisp-c3a60e76-git.tgz 3573436 501022101c0211a267b608c4615fdce0 3e002e0bc323ffa8a6495bdd42883027516f69c6 projectured-quicklisp-c3a60e76-git projectured.document.asd projectured.editor.asd projectured.executable.asd projectured.projection.asd projectured.sdl.asd projectured.sdl.test.asd projectured.swank.asd projectured.test.asd
prometheus.cl http://beta.quicklisp.org/archive/prometheus.cl/2020-12-20/prometheus.cl-20201220-git.tgz 26101 c5834e4037e9a987b1f3dea353fe86be a2f6e45e3bbc38947610e4d0dbcd20d66e2da6d2 prometheus.cl-20201220-git prometheus.asd prometheus.collectors.process.asd prometheus.collectors.process.test.asd prometheus.collectors.sbcl.asd prometheus.collectors.sbcl.test.asd prometheus.examples.asd prometheus.exposers.hunchentoot.asd prometheus.exposers.hunchentoot.test.asd prometheus.formats.text.asd prometheus.formats.text.test.asd prometheus.pushgateway.asd prometheus.pushgateway.test.asd prometheus.test.all.asd prometheus.test.asd prometheus.test.support.asd
prompt-for http://beta.quicklisp.org/archive/prompt-for/2020-06-10/prompt-for-20200610-git.tgz 3695 1370f9b1322bcd7e6789270a95cbb395 192951a3e1c176a41633c634aca515912f94adb0 prompt-for-20200610-git prompt-for.asd spec/prompt-for.test.asd
protest http://beta.quicklisp.org/archive/protest/2020-12-20/protest-20201220-git.tgz 68187 caee2a3cc32c8fa45170aaafb906697b 5bbbbc08387809f2b3616788dfa0b887432e5a41 protest-20201220-git protest.asd
protobuf http://beta.quicklisp.org/archive/protobuf/2020-12-20/protobuf-20201220-git.tgz 71804 888e473fd6f371c6a445c3c0c79b94cb dde2c147294c1abfb013bb1a0519b42437d4c96c protobuf-20201220-git protobuf.asd varint/varint.asd
prove http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz 877452 85780b65e84c17a78d658364b8c4d11b 1582bc8fb61acc47ab94e7b41072ae4c91fcbad4 prove-20200218-git cl-test-more.asd prove-asdf.asd prove-test.asd prove.asd
pseudonyms http://beta.quicklisp.org/archive/pseudonyms/2020-03-25/pseudonyms-20200325-git.tgz 4086 b768d5c75ba7b417ef894bcd2c3c2b28 bae12df342a5e866b7b458ee0098283900bf1aa5 pseudonyms-20200325-git pseudonyms.asd
psgraph http://beta.quicklisp.org/archive/psgraph/2010-10-06/psgraph-1.2.tgz 8448 df735b2f6c45e14ea18c16650ad8e90d 1cb75fe9886dd39bc7dbdd92c5e4a0b7e229218a psgraph-1.2 psgraph.asd
psychiq http://beta.quicklisp.org/archive/psychiq/2020-09-25/psychiq-20200925-git.tgz 17646 f4a13dcb918491137ad6b396afe50456 3c72aa6c3a39417dd141b1fd311a3558c06ed991 psychiq-20200925-git psychiq-test.asd psychiq.asd
ptester http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz 12713 938a4366b6608ae5c4a0be9da11a61d4 c32afa4c3f143967eddf4ace14f3e15429610f7f ptester-20160929-git ptester.asd
puri http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz 29178 890c61df1d7204b2d681bf146c43e711 9bfd6d8fea4903f8a4333d2788d9a45a33292098 puri-20201016-git puri.asd
purl http://beta.quicklisp.org/archive/purl/2016-09-29/purl-20160929-git.tgz 32297 ab5d05fcdd2b09d143ebc4e332b4058b 7ce1d37badf30b8386747f26d330b0432d2be4a1 purl-20160929-git purl.asd
pvars http://beta.quicklisp.org/archive/pvars/2021-02-28/pvars-20210228-git.tgz 2000 f4a305664f44d496724d5cc90e21822e 0577e02c256c7555e29f4f2293402ec437630618 pvars-20210228-git pvars.asd
py-configparser http://beta.quicklisp.org/archive/py-configparser/2017-08-30/py-configparser-20170830-svn.tgz 8452 b6a9fc2a9c70760d6683cafe656f9e90 256cf7e56d08aa7021f8c0739f0f6a2912780c1c py-configparser-20170830-svn py-configparser.asd
py4cl http://beta.quicklisp.org/archive/py4cl/2021-02-28/py4cl-20210228-git.tgz 616459 63b115198c82ec3d925394c44221dfa7 67be3d2fb63a5fdfdcac41c579274e3763ce353a py4cl-20210228-git py4cl.asd
py4cl2 http://beta.quicklisp.org/archive/py4cl2/2021-02-28/py4cl2-v2.7.0.tgz 873461 f88de0ea76bf33c04fe28522a5af81a0 248706d50e30a4278e5671c7a0fbbd566bbcca81 py4cl2-v2.7.0 py4cl2.asd
pythonic-string-reader http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz 3594 8156636895b1148fad6e7bcedeb6b556 084f20b11e986f7f186f5f8744ce0e77c2065129 pythonic-string-reader-20180711-git pythonic-string-reader.asd
pzmq http://beta.quicklisp.org/archive/pzmq/2021-05-31/pzmq-20210531-git.tgz 21958 1d3b5223582898476399e164a0c982d2 9a9a01e9695cdd71ca64e2cf3e56bfb5162f563c pzmq-20210531-git pzmq.asd
qbase64 http://beta.quicklisp.org/archive/qbase64/2019-11-30/qbase64-20191130-git.tgz 15721 32b03aa1b3c5ca4c49f586b4028cae5e 310210d449dd016d0b141a2f36ee68fa4c3d3979 qbase64-20191130-git qbase64.asd
qbook http://beta.quicklisp.org/archive/qbook/2013-03-12/qbook-20130312-darcs.tgz 12971 6e1cc023c21340d4884da27ce1a1df39 872d11a845287195e88e3fd1d3045a0c471e5698 qbook-20130312-darcs qbook.asd
ql-checkout http://beta.quicklisp.org/archive/ql-checkout/2019-05-21/ql-checkout-20190521-git.tgz 4290 e2b0b29b3829a67a6f88aab932b68e5f c3cf51de9f3c2a6155d838e5645363be4c596dd4 ql-checkout-20190521-git ql-checkout.asd
qlot http://beta.quicklisp.org/archive/qlot/2021-05-31/qlot-20210531-git.tgz 33486 c33c0cf0fcf8aa23d876c21c0750819f 9082f57d0a96377e91fe9c3387c96ed543bc5836 qlot-20210531-git qlot.asd
qmynd http://beta.quicklisp.org/archive/qmynd/2019-07-10/qmynd-20190710-git.tgz 48872 c4a230ca44c5c037664979dfd48985a9 2a43db7117073bc830ad419da96a5e60cb1d2a89 qmynd-20190710-git qmynd.asd tests/qmynd-test.asd
qt-libs http://beta.quicklisp.org/archive/qt-libs/2021-05-31/qt-libs-20210531-git.tgz 52711 dd7f9861ca98aec24693681848a98268 a9369ba3a63377d6a612b71ab1ee313fdb8ac69c qt-libs-20210531-git qt-lib-generator.asd qt-libs.asd systems/commonqt.asd systems/phonon.asd systems/qimageblitz.asd systems/qsci.asd systems/qt3support.asd systems/qtcore.asd systems/qtdbus.asd systems/qtdeclarative.asd systems/qtgui.asd systems/qthelp.asd systems/qtnetwork.asd systems/qtopengl.asd systems/qtscript.asd systems/qtsql.asd systems/qtsvg.asd systems/qttest.asd systems/qtuitools.asd systems/qtwebkit.asd systems/qtxml.asd systems/qtxmlpatterns.asd systems/qwt.asd systems/smokebase.asd
qtools http://beta.quicklisp.org/archive/qtools/2020-04-27/qtools-20200427-git.tgz 197043 08c19f0b33c9898c5daf9d858db530b8 500e27aeb057a8fd6a9ecdf77aeb74f6410a02aa qtools-20200427-git examples/evaluator/qtools-evaluator.asd examples/game/qtools-game.asd examples/helloworld/qtools-helloworld.asd examples/melody/qtools-melody.asd examples/opengl/qtools-opengl.asd examples/titter/qtools-titter.asd q+.asd qtools.asd
qtools-ui http://beta.quicklisp.org/archive/qtools-ui/2020-02-18/qtools-ui-20200218-git.tgz 66141 d03693fdcd2f5d7db452565223783beb 0bb39cfd917f51e84ebd6c7743b016e965aafc0b qtools-ui-20200218-git qtools-ui-auto-resizing-textedit.asd qtools-ui-base.asd qtools-ui-bytearray.asd qtools-ui-cell.asd qtools-ui-color-history.asd qtools-ui-color-picker.asd qtools-ui-color-sliders.asd qtools-ui-color-triangle.asd qtools-ui-compass.asd qtools-ui-container.asd qtools-ui-debugger.asd qtools-ui-dialog.asd qtools-ui-dictionary.asd qtools-ui-drag-and-drop.asd qtools-ui-executable.asd qtools-ui-fixed-qtextedit.asd qtools-ui-flow-layout.asd qtools-ui-helpers.asd qtools-ui-imagetools.asd qtools-ui-keychord-editor.asd qtools-ui-layout.asd qtools-ui-listing.asd qtools-ui-notification.asd qtools-ui-options.asd qtools-ui-panels.asd qtools-ui-placeholder-text-edit.asd qtools-ui-plot.asd qtools-ui-progress-bar.asd qtools-ui-repl.asd qtools-ui-slider.asd qtools-ui-spellchecked-text-edit.asd qtools-ui-splitter.asd qtools-ui-svgtools.asd qtools-ui.asd
quadtree http://beta.quicklisp.org/archive/quadtree/2015-07-09/quadtree-20150709-git.tgz 3869 50ff5dc28ea35f3073946739537f039d 7961bb58a4a4e50008d5398fbb1ae71380e36248 quadtree-20150709-git quadtree-test.asd quadtree.asd
quantile-estimator.cl http://beta.quicklisp.org/archive/quantile-estimator.cl/2016-08-25/quantile-estimator.cl-20160825-git.tgz 3510 3a28f05e4466c714f712d31cc190992c 30796c8194de9b436e022a35aa5973db986fbd05 quantile-estimator.cl-20160825-git quantile-estimator.asd quantile-estimator.test.asd
quasiquote-2.0 http://beta.quicklisp.org/archive/quasiquote-2.0/2015-05-05/quasiquote-2.0-20150505-git.tgz 8956 7c557e0c10cf7608afa5a20e4a83c778 5f61d74c96a9a863f38ab56c08b5287187bd9ef7 quasiquote-2.0-20150505-git quasiquote-2.0.asd
queen.lisp http://beta.quicklisp.org/archive/queen.lisp/2016-09-29/queen.lisp-20160929-git.tgz 22553 2e7c68441e99d826cfb2c7cb9aa83766 f7988f650dfc560c49226e848de326b9d69da068 queen.lisp-20160929-git queen.asd
query-fs http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz 457296 d30cbd09a2f326c95057b2c6537d5cdb 5aee15309e54c34b7746c718e2f7c6fcc7abcb09 query-fs-20200610-git query-fs.asd
queues http://beta.quicklisp.org/archive/queues/2017-01-24/queues-20170124-git.tgz 8748 9b291db09b7385e12515697f1f918e27 3835c55c8a7010b35d4b2ef2e9ce54845ca564bc queues-20170124-git queues.asd queues.priority-cqueue.asd queues.priority-queue.asd queues.simple-cqueue.asd queues.simple-queue.asd
quickapp http://beta.quicklisp.org/archive/quickapp/2016-08-25/quickapp-20160825-git.tgz 7116 f7c00d1217d7b58f6f1f023668580891 2f4eff6c45eca224463eb0a32eacfd5e34513f0f quickapp-20160825-git quickapp.asd
quicklisp-slime-helper http://beta.quicklisp.org/archive/quicklisp-slime-helper/2015-07-09/quicklisp-slime-helper-20150709-git.tgz 2211 08a86772cfee1a9dc7b1d4a9bb7d371e 6abe815efe3a1b03cb485d4d95329188b1100fe5 quicklisp-slime-helper-20150709-git quicklisp-slime-helper.asd
quicklisp-stats http://beta.quicklisp.org/archive/quicklisp-stats/2021-04-11/quicklisp-stats-20210411-git.tgz 2779 aea4334ca7e8f4a81276fff085a4d1a8 ddba869c5a1bf742afb1a27c70e068ea74cf6796 quicklisp-stats-20210411-git quicklisp-stats.asd
quickproject http://beta.quicklisp.org/archive/quickproject/2019-12-27/quickproject-1.4.1.tgz 6777 1d582d9dc066e0904f716166e448ccb7 eefaabe524fb4113b7b785f623899e417bed7d72 quickproject-1.4.1 quickproject.asd
quicksearch http://beta.quicklisp.org/archive/quicksearch/2017-10-19/quicksearch-20171019-git.tgz 13482 b64e3f756d4edafe270499058b087c26 8984719946dc05f5ad03063265e1fbc1e9986516 quicksearch-20171019-git quicksearch.asd
quickutil http://beta.quicklisp.org/archive/quickutil/2019-07-10/quickutil-20190710-git.tgz 1508394 fe9b44ce90e259c90c346f4005c1d9da 34629c942ff3f21b3746c0e6573077538bc0884f quickutil-20190710-git quickutil-client/quickutil-client-management.asd quickutil-client/quickutil-client.asd quickutil-client/quickutil.asd quickutil-server/quickutil-server.asd quickutil-utilities/quickutil-utilities-test.asd quickutil-utilities/quickutil-utilities.asd
quilc http://beta.quicklisp.org/archive/quilc/2021-04-11/quilc-v1.24.0.tgz 2266319 9c85721a7dc46233a555eb07162bf85f 1c2eb4bd1f6a42af65477c0e4c9b9fb3c684cbba quilc-v1.24.0 boondoggle/boondoggle-tests.asd boondoggle/boondoggle.asd cl-quil-benchmarking.asd cl-quil-tests.asd cl-quil.asd quilc-tests.asd quilc.asd
quri http://beta.quicklisp.org/archive/quri/2021-04-11/quri-20210411-git.tgz 70151 2727c706f51bef480171c59f6134bba5 cb8634ef97ee01a752c89f31222dd867dce8e8fb quri-20210411-git quri-test.asd quri.asd
quux-hunchentoot http://beta.quicklisp.org/archive/quux-hunchentoot/2020-09-25/quux-hunchentoot-20200925-git.tgz 4564 f948be615692ff9f137d79031b4002fa 54e98fbc830221484b224ec3260e0680718f1580 quux-hunchentoot-20200925-git quux-hunchentoot.asd
quux-time http://beta.quicklisp.org/archive/quux-time/2015-04-07/quux-time-20150407-git.tgz 34282 f89bd972e19dd2fd5abae2a9e8b143e2 51b24561e194e32110bbb5a6e6be5d98c6daac8c quux-time-20150407-git quux-time.asd
qvm http://beta.quicklisp.org/archive/qvm/2020-04-27/qvm-v1.17.1.tgz 391389 f44da9b742e08573fcc03195e0134432 363cc412d59b89fde7724c79eafcd62c5e0b5878 qvm-v1.17.1 qvm-app-ng-tests.asd qvm-app-ng.asd qvm-app-tests.asd qvm-app.asd qvm-benchmarks.asd qvm-examples.asd qvm-tests.asd qvm.asd
racer http://beta.quicklisp.org/archive/racer/2019-07-10/racer-20190710-git.tgz 28462787 ecc163e4033836e93aaeb3990052fe3a f27637cb6f310019ad45377016535f15b1cbffdf racer-20190710-git clients/lracer/lracer.asd racer.asd
random http://beta.quicklisp.org/archive/random/2019-10-07/random-20191007-git.tgz 4620 13a609118dd74e217fafd018875b8366 9c3214946a660c5edc558c2f592ff70994c3df65 random-20191007-git acm-random-test.asd acm-random.asd random-test.asd random.asd
random-access-lists http://beta.quicklisp.org/archive/random-access-lists/2012-02-08/random-access-lists-20120208-git.tgz 4903 36e5b00c2556ffda4cc2d6297471d053 7f2fe5a0f6497a98b538bfed7fa0dea7c3c3d8cc random-access-lists-20120208-git random-access-lists.asd
random-sample http://beta.quicklisp.org/archive/random-sample/2018-07-11/random-sample-20180711-git.tgz 3416 c849823d61c7dc3c8ef9d4cea595391c 177806586fbe0d70144af9ee41144dc63ee687cf random-sample-20180711-git random-sample.asd
random-state http://beta.quicklisp.org/archive/random-state/2020-09-25/random-state-20200925-git.tgz 11998 6554ebc98ac22e6c8bbd87a079529dc1 e6ba7920b3fc4d9a4016b04bce2a2bd4599c8fa8 random-state-20200925-git random-state-viewer.asd random-state.asd
random-uuid http://beta.quicklisp.org/archive/random-uuid/2021-04-11/random-uuid-20210411-git.tgz 2666 0187a03d90a57271526aa183597fba7d 909bc21d1bdbe7b8e3a5ad7eefa4bd7bd6810319 random-uuid-20210411-git random-uuid.asd
rate-monotonic http://beta.quicklisp.org/archive/rate-monotonic/2020-03-25/rate-monotonic-20200325-git.tgz 16931 260c267ffe9cb9b81d5eda850b680541 524a7cfec798f4bd8234489eabeed524da199f37 rate-monotonic-20200325-git rate-monotonic.asd rate-monotonic.examples.asd
ratify http://beta.quicklisp.org/archive/ratify/2019-10-07/ratify-20191007-git.tgz 30103 bb3371f343c1cfd75b6cc4ea6f2e7cc1 c4e33d368e883efdb66356afd4cffc0c6593bedf ratify-20191007-git ratify.asd
ratmath http://beta.quicklisp.org/archive/ratmath/2020-02-18/ratmath-20200218-git.tgz 17994 dfc7111393f55ac9c1b3b0ebe1ef08dd 017dd71f6e9e7a6810ea2377663fd3477dece6a9 ratmath-20200218-git ratmath.asd
rcl http://beta.quicklisp.org/archive/rcl/2020-12-20/rcl-20201220-http.tgz 40946 e398fb471f675b98aa45cd5bdc8528d4 780a0712e9e5026a3e12b3bc800b0b9148547c99 rcl-20201220-http rcl.asd
re http://beta.quicklisp.org/archive/re/2020-02-18/re-20200218-git.tgz 8654 495f616d516e27402616660a610a1152 3460476a4eca561f1df7df6b5c880162a1efae05 re-20200218-git re.asd
read-as-string http://beta.quicklisp.org/archive/read-as-string/2021-02-28/read-as-string-20210228-git.tgz 6455 4210924b1c3e40cb37f94865eb7d48c5 ef081302371eb3a80a4cd53ad1e1daaa27ceccea read-as-string-20210228-git read-as-string.asd spec/read-as-string.test.asd
read-csv http://beta.quicklisp.org/archive/read-csv/2018-10-18/read-csv-20181018-git.tgz 4924 ef21abc13722ff1ede9f72951bd725af ac27005e51ff658b0b28665fefc260b812032802 read-csv-20181018-git read-csv.asd
read-number http://beta.quicklisp.org/archive/read-number/2021-01-24/read-number-20210124-git.tgz 13882 ae9c374ee5198e922640e50567e0e47e f76fc1d0aa19186fdd099f0218cb55d8221c6081 read-number-20210124-git read-number.asd
reader http://beta.quicklisp.org/archive/reader/2020-12-20/reader-v0.10.0.tgz 8646 4f175d1110f2b5622fdb1a0fe2c42de2 de6be40138a21cfc03067846ca1a767711f89cf3 reader-v0.10.0 reader+swank.asd reader.asd
reader-interception http://beta.quicklisp.org/archive/reader-interception/2015-06-08/reader-interception-20150608-git.tgz 5162 8bb17a9cb708c842cb9cac112bd2d7b7 b8319c2a038be121cf1cc5ac493e876880d52ea2 reader-interception-20150608-git reader-interception-test.asd reader-interception.asd
rectangle-packing http://beta.quicklisp.org/archive/rectangle-packing/2013-06-15/rectangle-packing-20130615-git.tgz 16507 98a4a3e3a1daf65b56475e1f850ca0a7 08ed9778cc20bb058a54e1db28fbbdeb75c929ba rectangle-packing-20130615-git rectangle-packing.asd
recur http://beta.quicklisp.org/archive/recur/2019-03-07/recur-20190307-hg.tgz 1485 c29fa990323309c17e98cc7eadd2b31d edc298a910d5c737937aed72f66f7d484a55485a recur-20190307-hg recur.asd
recursive-regex http://beta.quicklisp.org/archive/recursive-regex/2012-04-07/recursive-regex-20120407-git.tgz 11763 fefa07fe68a4a99338900a7be78129b3 4a09f21c6e6daf510dc1570431ed4ddd40716815 recursive-regex-20120407-git recursive-regex.asd
recursive-restart http://beta.quicklisp.org/archive/recursive-restart/2016-10-31/recursive-restart-20161031-git.tgz 3054 39d5c3ca334229dd5f5111a6f993d8a0 cf91a8a01feb4efbf8ce3d7cd74e34b224a90faf recursive-restart-20161031-git recursive-restart.asd
redirect-stream http://beta.quicklisp.org/archive/redirect-stream/2019-07-10/redirect-stream-20190710-git.tgz 3914 3dbcdaad096f9ba1e308a351fce12744 14dcc7ff3bd776e2b391fa7f74a17b089b975c17 redirect-stream-20190710-git redirect-stream.asd
regex http://beta.quicklisp.org/archive/regex/2012-09-09/regex-20120909-git.tgz 30204 545d10011ea7d33cea0dfcb238acf94b 9ab918df7063e4aac22c3cb0a4776529747cf080 regex-20120909-git regex.asd
regular-type-expression http://beta.quicklisp.org/archive/regular-type-expression/2020-02-18/regular-type-expression-export-to-quicklisp-502a46e2-git.tgz 2734810 6a3a7577be89230e4c2d3c4e64351ea1 bf986266bc4152db470e150638aac0db79b0a8e9 regular-type-expression-export-to-quicklisp-502a46e2-git 2d-array/2d-array-test.asd 2d-array/2d-array.asd adjuvant/adjuvant-test.asd adjuvant/adjuvant.asd cl-robdd/cl-robdd-analysis-test.asd cl-robdd/cl-robdd-analysis.asd cl-robdd/cl-robdd-test.asd cl-robdd/cl-robdd.asd dispatch/dispatch-test.asd dispatch/dispatch.asd lisp-types/lisp-types-analysis.asd lisp-types/lisp-types-test.asd lisp-types/lisp-types.asd ndfa/ndfa-test.asd ndfa/ndfa.asd research.asd rte-regexp/rte-regexp-test.asd rte-regexp/rte-regexp.asd rte/rte-test.asd rte/rte.asd scrutiny/scrutiny-test.asd scrutiny/scrutiny.asd
remote-js http://beta.quicklisp.org/archive/remote-js/2019-07-10/remote-js-20190710-git.tgz 4434 fcc3b2e4201c1ad11ec8575a98bce39e 0a623b75ed970fe8e5f9d5572c4bf1bccbcf3ec5 remote-js-20190710-git remote-js-test.asd remote-js.asd
repl-utilities http://beta.quicklisp.org/archive/repl-utilities/2021-02-28/repl-utilities-20210228-git.tgz 11317 8a0e083369155c2ac67a741733e9e8e9 5a42ac95db63038de5fa574c9d0e593d7f4712ec repl-utilities-20210228-git repl-utilities.asd
replic http://beta.quicklisp.org/archive/replic/2020-09-25/replic-20200925-git.tgz 18329 ec427aabe256e3493c01ed6fe3d2bf5b 2055f7fa09fcb5b967c1289957af786173728205 replic-20200925-git replic-test.asd replic.asd
resignal-bind http://beta.quicklisp.org/archive/resignal-bind/2020-06-10/resignal-bind-20200610-git.tgz 4829 be9e8deeb7730e5eb0752f024ea9fb8f 9fd376f93f371cb49356c58ffa0885b689dabad6 resignal-bind-20200610-git resignal-bind.asd spec/resignal-bind.test.asd
restas http://beta.quicklisp.org/archive/restas/2019-10-08/restas-20191008-git.tgz 182787 ceec9a0482460e2ad32446d43623480b cec4ae81730d0f741cdf3a436750a564de2c9d31 restas-20191008-git docs/restas-doc.asd restas.asd
restas-directory-publisher http://beta.quicklisp.org/archive/restas-directory-publisher/2013-01-28/restas-directory-publisher-20130128-git.tgz 13313 ac714dd7b907eebaa428fc411fce7434 112f0d8f6aa05b4e4a3fbae8131c1dd20f05a1cf restas-directory-publisher-20130128-git restas-directory-publisher.asd
restas.file-publisher http://beta.quicklisp.org/archive/restas.file-publisher/2012-01-07/restas.file-publisher-20120107-git.tgz 1176 74b3636315653b08c83747b8a45796d5 48bd0eb451bc218675ba47a64240d261a8cd5d4f restas.file-publisher-20120107-git restas.file-publisher.asd
restful http://beta.quicklisp.org/archive/restful/2015-06-08/restful-20150608-git.tgz 12311 fb8e34eba9a82fcd8351eb16dd908176 aebeed541ff77427483632265e4f0dda44c62669 restful-20150608-git restful-test.asd restful.asd
restricted-functions http://beta.quicklisp.org/archive/restricted-functions/2019-05-21/restricted-functions-20190521-git.tgz 6700 0ae3b25b8fa92ea9d625cae324ec445f 7e47bc6d54ff68ec0d0e65f34c635a3b6f9d9d10 restricted-functions-20190521-git code/restricted-functions.asd
retrospectiff http://beta.quicklisp.org/archive/retrospectiff/2017-10-19/retrospectiff-20171019-git.tgz 1460413 44c765984cd9dd0ecbb1bec8c78a3301 c9dce8ca0e8f0b738508d592b3c73d75e7ee4558 retrospectiff-20171019-git retrospectiff.asd
reversi http://beta.quicklisp.org/archive/reversi/2020-10-16/reversi-20201016-git.tgz 100397 6d316cc54ccf5938d43165ecea27d26a e17a8c0945af94bf4b2707926aa20be6a030cc42 reversi-20201016-git reversi.asd
rfc2109 http://beta.quicklisp.org/archive/rfc2109/2015-12-18/rfc2109-20151218-darcs.tgz 29102 ca039ac430baaed87f08a1a01e4cfe91 8cfa85913f22053a81c691d8eb8309aa6e9eeeb6 rfc2109-20151218-darcs rfc2109.asd
rfc2388 http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz 12522 f57e3c588e5e08210516260e67d69226 b9fce4ee84e60426fc9ef11f1847235b13dd256e rfc2388-20180831-git rfc2388.asd
rfc2388-binary http://beta.quicklisp.org/archive/rfc2388-binary/2017-01-24/rfc2388-binary-20170124-darcs.tgz 98374 0f0e4796ce5b4c0d30aee6f87ecf13d5 4ea6b34d653445314332dce88e4792b8332004f0 rfc2388-binary-20170124-darcs rfc2388-binary.asd
rlc http://beta.quicklisp.org/archive/rlc/2015-09-23/rlc-20150923-git.tgz 3997 b26fd533287f1033a7a2885a780c2318 e9d56b4078c5672498325308ae2898ab9dd9b797 rlc-20150923-git rlc.asd
roan http://beta.quicklisp.org/archive/roan/2020-12-20/roan-20201220-git.tgz 1164621 63579220fdeb48ba8beca3de3d327f72 a2c942c4c6b61cee9bad4f4c809fd85549b38003 roan-20201220-git roan.asd
rock http://beta.quicklisp.org/archive/rock/2015-06-08/rock-20150608-git.tgz 9855 e54b64ba4d201d559355eb6bdb8e9d34 fcbcdd37d9cf8de9ae4c8b392ab7de632f58bdd9 rock-20150608-git rock-test.asd rock-web.asd rock.asd
romreader http://beta.quicklisp.org/archive/romreader/2014-07-13/romreader-20140713-git.tgz 6533 1e7c5f085d2495bd7a131b479b85ca8b 4133137ffba648f72739f0faa56b79b8bb48ec3a romreader-20140713-git romreader.asd
rove http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz 15169 7954cb65830d62142babecebf20d0226 a681f04338828f328320f7b5547cb0a3f0286489 rove-20200325-git rove.asd
rpcq http://beta.quicklisp.org/archive/rpcq/2021-05-31/rpcq-v3.9.1.tgz 85237 602081dd1734964b2933625bfc1e8a5f dbbd74e589be70e9921127bc3cbd1ea7ce3220a3 rpcq-v3.9.1 rpcq-tests.asd rpcq.asd
rpm http://beta.quicklisp.org/archive/rpm/2016-04-21/rpm-20160421-git.tgz 4835 3c60f17576cb2c22554fff9b0eec2796 15eb5b24e92715d7e25605acd314702178122486 rpm-20160421-git rpm.asd
rs-colors http://beta.quicklisp.org/archive/rs-colors/2020-02-18/rs-colors-20200218-git.tgz 2131513 cdad15c1c0193172a91cc8a16030b44a d92e1a777374e531c9751f728b03d65eff8fb820 rs-colors-20200218-git dictionaries/rs-colors-html.asd dictionaries/rs-colors-material-io.asd dictionaries/rs-colors-ral-design.asd dictionaries/rs-colors-ral.asd dictionaries/rs-colors-svg.asd dictionaries/rs-colors-tango.asd dictionaries/rs-colors-x11.asd rs-colors-internal.asd rs-colors.asd
rt http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz 10676 94a56c473399572ca835ac91c77c04e5 80643f045a1ff7313d55db64a3f6787236f68eff rt-20101006-git rt.asd
rt-events http://beta.quicklisp.org/archive/rt-events/2016-03-18/rt-events-20160318-git.tgz 5518 c9c0de2cafffd8319bc6f8a9ee9c4908 86aabf4057d784d88d938890ca0273ff1dba31f6 rt-events-20160318-git rt-events.asd rt-events.examples.asd
rtg-math http://beta.quicklisp.org/archive/rtg-math/2019-10-07/rtg-math-release-quicklisp-29fc5b3d-git.tgz 94423 fefa73c6923964666ecc8a8c382df718 2ce1482195edd95a831dd09c37f959277cb1a2e5 rtg-math-release-quicklisp-29fc5b3d-git rtg-math.asd rtg-math.vari.asd
rucksack http://beta.quicklisp.org/archive/rucksack/2015-06-08/rucksack-20150608-git.tgz 111832 e968c9e90632cbba892dae1e2833efe3 3e3ec1762970a3ad7df8d87afdae2bd80ab27af0 rucksack-20150608-git rucksack.asd tests/rucksack-test.asd
rutils http://beta.quicklisp.org/archive/rutils/2021-02-28/rutils-20210228-git.tgz 170342 7b5a7f914a0e19699627993d02d77dde 8a1c9aae711e6a3a05ff6e248c18b08581874e2d rutils-20210228-git rutils-test.asd rutils.asd rutilsx.asd
ryeboy http://beta.quicklisp.org/archive/ryeboy/2020-10-16/ryeboy-20201016-git.tgz 4100 4e7a440ea9cfd3a09281ed7311f49811 635600ea35309820ec1d938105781337798db7f1 ryeboy-20201016-git ryeboy.asd
s-base64 http://beta.quicklisp.org/archive/s-base64/2013-01-28/s-base64-20130128-git.tgz 7033 9c4220053ea4b18fca7a49f29aae0ee1 70c7fc4ed0762db40bc6e0e71f36f358a2c6cb9a s-base64-20130128-git s-base64.asd
s-dot2 http://beta.quicklisp.org/archive/s-dot2/2018-10-18/s-dot2-20181018-git.tgz 6015 2f0d0948c7ab66c0fb75a761f113b9e9 bb3d07b3bc6c9803b97c65aa3dbc1f69cc187299 s-dot2-20181018-git s-dot2.asd
s-graphviz http://beta.quicklisp.org/archive/s-graphviz/2020-12-20/s-graphviz-20201220-git.tgz 137256 dac9eb8efd927ae8db6a2a7481364cba aa9d786602dcc7372d26a3ea2b89463412b50719 s-graphviz-20201220-git s-graphviz.asd
s-http-client http://beta.quicklisp.org/archive/s-http-client/2020-04-27/s-http-client-20200427-git.tgz 10270 42009b81c887a8de095216e908aa0dfd c0d61d645010c9437a7441e0185f781357249951 s-http-client-20200427-git s-http-client.asd
s-http-server http://beta.quicklisp.org/archive/s-http-server/2020-04-27/s-http-server-20200427-git.tgz 24634 c3c20906113eae9ba786c302917c87d1 ae76e253d983a7d22cb7de8e9dfc379c775b14a9 s-http-server-20200427-git s-http-server.asd
s-protobuf http://beta.quicklisp.org/archive/s-protobuf/2015-12-18/s-protobuf-20151218-git.tgz 22278 99af6c044952679ad08513f945c59c4f 2835943d57cac223243d9638260fbcc252321481 s-protobuf-20151218-git src/s-protobuf.asd
s-sysdeps http://beta.quicklisp.org/archive/s-sysdeps/2021-02-28/s-sysdeps-20210228-git.tgz 4359 25d8c1673457341bf60a20752fe59772 fc391038f42567f711c0480f36745e25d53501ba s-sysdeps-20210228-git s-sysdeps.asd
s-utils http://beta.quicklisp.org/archive/s-utils/2020-04-27/s-utils-20200427-git.tgz 5486 ff731815e83ea9d2bbcd537da8407e69 9afe78191625c511232d84dad8a6f34569e54b36 s-utils-20200427-git s-utils.asd
s-xml http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz 21248 9c31c80f0661777c493fab683f776716 03cb87aacf1c44877a76572510df60c563727125 s-xml-20150608-git s-xml.asd
s-xml-rpc http://beta.quicklisp.org/archive/s-xml-rpc/2019-05-21/s-xml-rpc-20190521-git.tgz 23981 33c268048222002af4d6232d71ee7222 d8b595ab60be528be3848eaf64d3b9a77fc62319 s-xml-rpc-20190521-git s-xml-rpc.asd
safe-queue http://beta.quicklisp.org/archive/safe-queue/2020-03-25/safe-queue-20200325-git.tgz 3521 7ba20fe1ffcef15d659dcfeec6f3ca34 f0ca15987798bc3ef5d13da4146f2a42cb12fe35 safe-queue-20200325-git safe-queue.asd
safe-read http://beta.quicklisp.org/archive/safe-read/2018-10-18/safe-read-20181018-git.tgz 5487 54bd985ab5f3ad1d30a2a53f1da03410 c93d1baf7f8499a0383f8ae38a5a01bb36542801 safe-read-20181018-git safe-read.asd
safety-params http://beta.quicklisp.org/archive/safety-params/2019-02-02/safety-params-20190202-git.tgz 7110 44bdeb52d69878bf67ecf413613538cb 3380fbb899e4130dbc98475d1803f733245e54e5 safety-params-20190202-git safety-params.asd
salza2 http://beta.quicklisp.org/archive/salza2/2013-07-20/salza2-2.0.9.tgz 15525 e62383de435081c0f1f888ec363bb32c 7f2eecaa9582bbedf7278fcf77bf46c9c5474f5b salza2-2.0.9 salza2.asd
sandalphon.lambda-list http://beta.quicklisp.org/archive/sandalphon.lambda-list/2018-07-11/sandalphon.lambda-list-20180711-git.tgz 11120 6b75d6bcd35d610abb1278547266246f 49223fc82d7af2364aba90b495442be3153b4494 sandalphon.lambda-list-20180711-git sandalphon.lambda-list.asd
sanity-clause http://beta.quicklisp.org/archive/sanity-clause/2021-02-28/sanity-clause-20210228-git.tgz 26390 43f4c2a0a92f23b0b675182b24ffae8b e7d37d1d3fca28489e30431fd8f408ec5bed413a sanity-clause-20210228-git sanity-clause.asd
sapaclisp http://beta.quicklisp.org/archive/sapaclisp/2012-05-20/sapaclisp-1.0a.tgz 141501 5a9d213d0063de0cc1ef9fd3aea811ca 2f3bbe44b16bc0bdc6c29be6f00312e9372f61cb sapaclisp-1.0a sapaclisp.asd
sb-cga http://beta.quicklisp.org/archive/sb-cga/2021-05-31/sb-cga-20210531-git.tgz 34880 2481fcad9d95024147dbb70762217501 320d82156f0d81dc19562c6d5b6cd004bbca774b sb-cga-20210531-git sb-cga.asd
sb-fastcgi http://beta.quicklisp.org/archive/sb-fastcgi/2021-01-24/sb-fastcgi-20210124-git.tgz 4584 eceb82ee932bcbf674899c00240cfa9f 66137ecb2c830632b7b6ea54f4feedf71afafe12 sb-fastcgi-20210124-git sb-fastcgi.asd
sb-vector-io http://beta.quicklisp.org/archive/sb-vector-io/2011-08-29/sb-vector-io-20110829-git.tgz 5263 a57684e11ed481a7c4cf7f2623942e49 15faae433ceb327a16f5bcf29cdcd7728a5c1aca sb-vector-io-20110829-git sb-vector-io.asd
sc-extensions http://beta.quicklisp.org/archive/sc-extensions/2021-05-31/sc-extensions-20210531-git.tgz 8371 a25ee0d2ae520972d959148942414fbd 67e036d80aa0ab179cd743cccbde69bebde51512 sc-extensions-20210531-git sc-extensions.asd
scheduler http://beta.quicklisp.org/archive/scheduler/2021-05-31/scheduler-20210531-git.tgz 10763 236d2df108adcb2ea26b4ab38e87f629 a7cc26a464f8bc2fd581146f2d88891434e9285d scheduler-20210531-git scheduler.asd
screamer http://beta.quicklisp.org/archive/screamer/2021-05-31/screamer-20210531-git.tgz 953869 da099febf6a25733a5e233cf43a5fa0a 1fccc01cd7fb489b371a933ba3a1fc9df7972849 screamer-20210531-git screamer-tests.asd screamer.asd
scriba http://beta.quicklisp.org/archive/scriba/2015-12-18/scriba-20151218-git.tgz 33936 867dbaf3a2660a23f29d27e5633abd94 4e79592dfc97bb7997c32696439706dabe16d4d5 scriba-20151218-git scriba-test.asd scriba.asd
scribble http://beta.quicklisp.org/archive/scribble/2016-06-28/scribble-20160628-git.tgz 15810 976a908f6bbe7ac8516a4916dd6cee20 e1e46a668bfda1cb2848b489176ea6d82d5800d7 scribble-20160628-git scribble.asd
scriptl http://beta.quicklisp.org/archive/scriptl/2018-02-28/scriptl-20180228-git.tgz 125271 37927d71784ccef1cdeb309272416d0a 3f940ab4a12dcbb23f78f2a3d8b33f3aaf454793 scriptl-20180228-git scriptl-examples.asd scriptl-util.asd scriptl.asd
sdl2-game-controller-db http://beta.quicklisp.org/archive/sdl2-game-controller-db/2018-02-28/sdl2-game-controller-db-release-quicklisp-335d2b68-git.tgz 7352 ad3ab5458419a5a259313807c8e0b181 770ccc1def893343b1d3ed5ad511b3537b5c7b02 sdl2-game-controller-db-release-quicklisp-335d2b68-git sdl2-game-controller-db.asd
sdl2kit http://beta.quicklisp.org/archive/sdl2kit/2017-11-30/sdl2kit-20171130-git.tgz 11804 906f93a606d1ff2ed8ed613a3fb2d553 0e077fd40e966e93f505a90a9027fe784dc8aaaf sdl2kit-20171130-git sdl2kit-examples.asd sdl2kit.asd
sealable-metaobjects http://beta.quicklisp.org/archive/sealable-metaobjects/2020-06-10/sealable-metaobjects-20200610-git.tgz 10851 f3107ecfe2f98dfca12df289197e16c4 bded3ef5f75b4b088ad1e7ec7fd0f4069a2974d6 sealable-metaobjects-20200610-git code/sealable-metaobjects.asd
secret-values http://beta.quicklisp.org/archive/secret-values/2020-12-20/secret-values-20201220-git.tgz 2545 37e8da2c18e5f0dd33e32f0045cfc60c 943ee86fbc4959765784fa88e44db59ccd995d9e secret-values-20201220-git secret-values.asd
secure-random http://beta.quicklisp.org/archive/secure-random/2016-02-08/secure-random-20160208-git.tgz 2912 ee57beb30d51da8b3969c27ca52fd0d7 5f5b15e224164c1658ed62532759761ba9c26ccc secure-random-20160208-git secure-random.asd
seedable-rng http://beta.quicklisp.org/archive/seedable-rng/2021-04-11/seedable-rng-20210411-git.tgz 37540 5d64a82e9deda8cfa0d3d7d4de54e554 d9ac6647b3a6d8221259763f0675f5b0935ccd44 seedable-rng-20210411-git seedable-rng.asd
sel http://beta.quicklisp.org/archive/sel/2021-05-31/sel-20210531-git.tgz 1385506 e382769819735997171da6268f18a621 b6b2fa43fb923afe7536ee343ab3aca08071d4b5 sel-20210531-git software-evolution-library.asd
select http://beta.quicklisp.org/archive/select/2021-04-11/select-20210411-git.tgz 270674 3e9c06e580f9e3a8911317ae8b95d0da 019b4bfa9e0dc0b421f40fed5d3865c51cb2b2cf select-20210411-git select.asd
select-file http://beta.quicklisp.org/archive/select-file/2020-04-27/select-file-20200427-git.tgz 11859 0ccf85337a7d8892c379d4d1a673b6d6 41a3c9c35ed07008684eeead063ad6e3e3c81c11 select-file-20200427-git select-file.asd
semantic-spinneret http://beta.quicklisp.org/archive/semantic-spinneret/2017-08-30/semantic-spinneret-20170830-git.tgz 2079 3cdc958d8000f1e26f683aa30f0950cb afeea07a5ef5c41d6d90ba0c7b7dfbb9d9569e15 semantic-spinneret-20170830-git semantic-spinneret.asd
sequence-iterators http://beta.quicklisp.org/archive/sequence-iterators/2013-08-13/sequence-iterators-20130813-darcs.tgz 34899 a6b61a5e9026a03c4978f3721bb17632 7cab8da70f985eb5165aa2145e937a04c605e23c sequence-iterators-20130813-darcs extensible-sequences/extensible-sequences.asd sequence-iterators.asd
serapeum http://beta.quicklisp.org/archive/serapeum/2021-05-31/serapeum-20210531-git.tgz 220763 0e6c4e4c7d9a80faa5a9169b511c9e94 94ea0915d0add811d92f71928ef3ba465068b599 serapeum-20210531-git serapeum.asd
serializable-object http://beta.quicklisp.org/archive/serializable-object/2019-12-27/serializable-object-20191227-git.tgz 22152 5035427309018750274ef7767cf2b2e7 bbdcb991e44ad56e18b3fc8e4873539b731a937e serializable-object-20191227-git serializable-object.asd serializable-object.test.asd
series http://beta.quicklisp.org/archive/series/2013-11-11/series-20131111-git.tgz 151865 396c160a736ad38829dce1db13a75bcc 6bf27684cdd5fae7ab739d954a72bfde7154bc67 series-20131111-git series.asd
session-token http://beta.quicklisp.org/archive/session-token/2014-11-06/session-token-20141106-git.tgz 3020 5e7727a5a92a8ca9b70304f47b6b52b6 713d1d511e522fe2bd1732e03b088ff062852e8f session-token-20141106-git session-token.asd
sexml http://beta.quicklisp.org/archive/sexml/2014-07-13/sexml-20140713-git.tgz 27508 f71d4ee8da885671be8b779266cd865a f4f482c546f955b9eb4f8c200cc5947528ae6b7e sexml-20140713-git contrib/sexml-objects/sexml-objects.asd sexml.asd
sha1 http://beta.quicklisp.org/archive/sha1/2020-03-25/sha1-20200325-git.tgz 3117 b40f001161b57d997e4717230b396310 d84c87efae697ca57240ea81aee4b1e7e460c9bc sha1-20200325-git sha1.asd
sha3 http://beta.quicklisp.org/archive/sha3/2018-02-28/sha3-20180228-git.tgz 17156 26078e9dcb90cc6d6e3174880c4514cb 6ba93591c151ee6b04f0aadfc5f93292ef238527 sha3-20180228-git sha3.asd
shadchen http://beta.quicklisp.org/archive/shadchen/2013-10-03/shadchen-20131003-git.tgz 11298 159f11f77ef2c1c2279e502213a97d43 751e9e27c0d249076ae7a14c275d22f5007c9f69 shadchen-20131003-git shadchen.asd
shadow http://beta.quicklisp.org/archive/shadow/2021-05-31/shadow-20210531-git.tgz 15653 18bf3e95fae8103ecc683f545d2a8e83 2a74574b11fd37d6fcd1c6046d9c5a00172f7dae shadow-20210531-git shadow.asd
shared-preferences http://beta.quicklisp.org/archive/shared-preferences/2021-02-28/shared-preferences_1.1.1.tgz 4890 a7e009387968212768f9dec2f85c6f3f 3a998aa794ea3693470b07664285aa9979bf59cf shared-preferences_1.1.1 shared-preferences.asd tests/shared-preferences_tests.asd
shasht http://beta.quicklisp.org/archive/shasht/2021-04-11/shasht-20210411-git.tgz 42209 3737d1f7b2f4515966ac9a3982a630e1 89b8ebfbfe7b36d4e63d72806f81048960f9463a shasht-20210411-git shasht.asd
sheeple http://beta.quicklisp.org/archive/sheeple/2021-01-24/sheeple-20210124-git.tgz 623272 024ac85e5aa4741320f8a36e4c6bae75 3cd854d5141acf61a0a8abb952d88a8b78336e74 sheeple-20210124-git sheeple.asd
shellpool http://beta.quicklisp.org/archive/shellpool/2020-09-25/shellpool-20200925-git.tgz 25821 b6be45de2b2c4c6b217f91fce8e5e31a 717b1553825dcdb563c6a0b301b7c45082a4903e shellpool-20200925-git shellpool.asd
shelly http://beta.quicklisp.org/archive/shelly/2014-11-06/shelly-20141106-git.tgz 18127 824938aaaac93602dc927a9734aa1581 2dc9eff9949e91277a0db6376a431b6992681d4b shelly-20141106-git shelly-test.asd shelly.asd
shop3 http://beta.quicklisp.org/archive/shop3/2021-05-31/shop3-20210531-git.tgz 9560273 b9c5ca7d79d1efb154f7868d7351a4ff ce9855481e5a8fb3de4daf078a5e6175ee53f26a shop3-20210531-git shop3/shop3-theorem-prover.api/shop3-thmpr-api.asd shop3/shop3.asd
should-test http://beta.quicklisp.org/archive/should-test/2019-10-07/should-test-20191007-git.tgz 7618 f27c9a9c25be4f67204f7c3dccde755f 32aeafca31add71fa61077717e5e5e932033f85f should-test-20191007-git should-test.asd
shuffletron http://beta.quicklisp.org/archive/shuffletron/2018-10-18/shuffletron-20181018-git.tgz 125912 ffa1e84964f41af31bbb853d0b0776a9 7a8f2aaf66cd8978094dacd5e92242dc859deca7 shuffletron-20181018-git shuffletron.asd
simple-actors http://beta.quicklisp.org/archive/simple-actors/2020-09-25/simple-actors-20200925-git.tgz 5277 851e0b289705bf2dd14c7cdb6b58cc08 44858a7ff006db2384d5f6a696dc33c55384f952 simple-actors-20200925-git simple-actors.asd
simple-config http://beta.quicklisp.org/archive/simple-config/2020-02-18/simple-config-20200218-git.tgz 2860 4a1cc8d4dd431ae741dbf20cc47567c4 b2106f619b6b7cf0f36c15b43227cef0a71976c8 simple-config-20200218-git simple-config-test.asd simple-config.asd
simple-currency http://beta.quicklisp.org/archive/simple-currency/2017-11-30/simple-currency-20171130-git.tgz 12557 71ea0f64c63b4287fc56ece336e08ef9 aa40c0d344e0c9c4b20583d8df86887e55081b2b simple-currency-20171130-git simple-currency.asd
simple-date-time http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz 5688 a5b1e4af539646723dafacbc8cf732a0 74ea55a0c7d77d7b967b3ad94f9f67137c9cd01e simple-date-time-20160421-git simple-date-time.asd
simple-finalizer http://beta.quicklisp.org/archive/simple-finalizer/2010-10-06/simple-finalizer-20101006-git.tgz 3415 fcc7c3966af77de524e6f24bb9dc1c94 6ac4c1cb19186e78e445885f86da20ba99d868bb simple-finalizer-20101006-git simple-finalizer.asd
simple-flow-dispatcher http://beta.quicklisp.org/archive/simple-flow-dispatcher/2020-10-16/simple-flow-dispatcher-stable-git.tgz 2471 cfbedd68986d9a7b04d913b69616ba88 78c087d2cff43976da25fc4d6cd351b4cbad02ec simple-flow-dispatcher-stable-git simple-flow-dispatcher.asd
simple-guess http://beta.quicklisp.org/archive/simple-guess/2020-09-25/simple-guess_1.0.tgz 9079 13d8551889e77b29188b93bef7f70e0b 450ee24a2c5661ba41e1f33a431071a4a9130575 simple-guess_1.0 simple-guess.asd tests/simple-guess_tests.asd
simple-inferiors http://beta.quicklisp.org/archive/simple-inferiors/2020-03-25/simple-inferiors-20200325-git.tgz 9622 f90ae807c10d5b3c4b9eef1134a537c8 702bd4d3b2964b5d412c1d38fb594d2349984eb6 simple-inferiors-20200325-git simple-inferiors.asd
simple-neural-network http://beta.quicklisp.org/archive/simple-neural-network/2020-12-20/simple-neural-network-20201220-git.tgz 11620460 4b62125008ba96ef299a6b587d3fff7b 258c497fece443ded74efa6f2301dde3b15783eb simple-neural-network-20201220-git simple-neural-network.asd
simple-parallel-tasks http://beta.quicklisp.org/archive/simple-parallel-tasks/2020-12-20/simple-parallel-tasks-20201220-git.tgz 14403 24d4c346d6e175d339ce6f0ea5040274 60ea356bc11a7875aad2023d92e452a1bed8ec07 simple-parallel-tasks-20201220-git simple-parallel-tasks-tests.asd simple-parallel-tasks.asd
simple-rgb http://beta.quicklisp.org/archive/simple-rgb/2019-05-21/simple-rgb-20190521-git.tgz 5464 8afe42c3bb2bec023cfae77a8153c668 2573e45d315e8fe7a0b30f90bd5bb9624044cdb5 simple-rgb-20190521-git simple-rgb.asd
simple-routes http://beta.quicklisp.org/archive/simple-routes/2018-02-28/simple-routes-20180228-git.tgz 6209 95b881171c381674a275da21692442f2 06b1a640d86490ed1e346b2a37306e4a8c7a66f2 simple-routes-20180228-git simple-routes.asd
simple-tasks http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz 12567 8e88a9a762bc8691f92217d256baa55e 3fdcc5d1debf45d1480f31ce5f7de206ff6aeb87 simple-tasks-20190710-git simple-tasks.asd
simplet http://beta.quicklisp.org/archive/simplet/2019-12-27/simplet-20191227-git.tgz 16303 9fa3343c7a0b9f6f7f43d8b4ed706d98 bf0ee7b1a8770cc028a66ffd6da9770ab6492a3a simplet-20191227-git simplet-asdf.asd simplet.asd
simplified-types http://beta.quicklisp.org/archive/simplified-types/2019-08-13/simplified-types-20190813-git.tgz 6647 c3666e2faf2aed0ec040912db0a91285 c89aa23f3c54e114a3c8de9f3b8254d128bdf7f3 simplified-types-20190813-git code/simplified-types.asd test-suite/simplified-types-test-suite.asd
simpsamp http://beta.quicklisp.org/archive/simpsamp/2010-10-06/simpsamp-0.1.tgz 44485 afd8bdfae4b4f0924839753086bab0bf 38b802cbd0a7855ff101020e71ee2e9fd7927316 simpsamp-0.1 simpsamp.asd
single-threaded-ccl http://beta.quicklisp.org/archive/single-threaded-ccl/2015-06-08/single-threaded-ccl-20150608-git.tgz 2611 fa4c2cf5223e2c57e1b3352edeecca0c 3f7bedd0e7741ac4503bd09a6a84da5921e62b81 single-threaded-ccl-20150608-git single-threaded-ccl.asd
sip-hash http://beta.quicklisp.org/archive/sip-hash/2020-06-10/sip-hash-20200610-git.tgz 5225 a2f874af975545019615435c3b8babd2 c450b0b869d4f49ce15e01fdc8be8d46d3619b44 sip-hash-20200610-git sip-hash.asd
skeleton-creator http://beta.quicklisp.org/archive/skeleton-creator/2019-12-27/skeleton-creator-20191227-git.tgz 42572 ca2c99e3eb2951f96db1190da7ed3c15 68ef28b145fe342fbc69df5b67d300f23733fea4 skeleton-creator-20191227-git skeleton-creator.asd
sketch http://beta.quicklisp.org/archive/sketch/2020-04-27/sketch-20200427-git.tgz 1116808 9160dcaea41679a0b1fc8d6ffe1c22c1 5ad1870b7a712aa8fe92dacb76182fb46910d3b7 sketch-20200427-git sketch-examples.asd sketch.asd
skippy http://beta.quicklisp.org/archive/skippy/2015-04-07/skippy-1.3.12.tgz 31965 c64deda635cd8b93768ff837c3b66a72 0a9255fa75a12a7c2f74db9ad584abe68d66a538 skippy-1.3.12 skippy.asd
skippy-renderer http://beta.quicklisp.org/archive/skippy-renderer/2020-04-27/skippy-renderer-20200427-git.tgz 2580 fe59682a33c8a0aee8cf264c8fa25d85 4f2d8a6fb9e5bdf68cead1fea5c720a67759d338 skippy-renderer-20200427-git skippy-renderer.asd
skitter http://beta.quicklisp.org/archive/skitter/2018-02-28/skitter-release-quicklisp-620772ae-git.tgz 21551 d9148bdb15605412b813b955cc9fb46b 984a7e9102c2fc65635cec373b3944f884e65a03 skitter-release-quicklisp-620772ae-git skitter.asd skitter.glop.asd skitter.sdl2.asd
slack-client http://beta.quicklisp.org/archive/slack-client/2016-08-25/slack-client-20160825-git.tgz 7752 245f64f7188363f1eabbb4b8a2e9c572 c500065dbbd1bf63fc37ec82114d0f76ebc9d906 slack-client-20160825-git slack-client-test.asd slack-client.asd
slime http://beta.quicklisp.org/archive/slime/2020-12-20/slime-v2.26.1.tgz 822242 bd91e1fe29a4f7ebf53a0bfecc9e1e36 093820e7762c9e18cf47abed701704063d06becf slime-v2.26.1 swank.asd
slk-581 http://beta.quicklisp.org/archive/slk-581/2019-01-07/slk-581-20190107-git.tgz 4848 d90326b00b92d657b6424002dee00a56 f367c37a8378bddf0810f8fc91a87cbae39a4097 slk-581-20190107-git eclecticse.slk-581.asd
slot-extra-options http://beta.quicklisp.org/archive/slot-extra-options/2021-04-11/slot-extra-options-20210411-git.tgz 25603 87d6dbf73502fca06359c4c4ba07cbd6 4510460f96e02cf02350238eb4c9c10e3ee9aa42 slot-extra-options-20210411-git slot-extra-options-tests.asd slot-extra-options.asd
sly http://beta.quicklisp.org/archive/sly/2021-04-11/sly-20210411-git.tgz 1834887 7f0ff6b8a07d23599c77cd33c6d59ea6 b239cdd9fa7a4b53c537ce2bd8b516a2b5741551 sly-20210411-git slynk/slynk.asd
smackjack http://beta.quicklisp.org/archive/smackjack/2018-02-28/smackjack-20180228-git.tgz 17449 398e790adbd5c3d1c85d211d8e119990 9de59527f4fa97c9c09aaaa448978fdc9d3e4ac7 smackjack-20180228-git demo/smackjack-demo.asd smackjack.asd
smart-buffer http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz 3176 454d8510618da8111c7ca687549b7035 a4f22d227b6266c70e94597af8adf7dfc67b193a smart-buffer-20160628-git smart-buffer-test.asd smart-buffer.asd
smug http://beta.quicklisp.org/archive/smug/2016-04-21/smug-20160421-git.tgz 77846 8139d7813bb3130497b6da3bb4cb8924 588308bcd788fff31da9b464a0e6df1c2386cf16 smug-20160421-git smug.asd
sn.man http://beta.quicklisp.org/archive/sn.man/2019-02-02/sn.man-20190202-git.tgz 1563 c8398aefe8bc3818fbe9a6994bce7f8b 0b2fac544b0edf64f5b7fc0ee520a3853914ff96 sn.man-20190202-git sn.man.asd
snakes http://beta.quicklisp.org/archive/snakes/2018-12-10/snakes-20181210-git.tgz 16534 0bdb11ea92090dabcdc3509af16f0d2a 26c6e7ac29960d3ede577ecc75aceed7461a688f snakes-20181210-git snakes.asd
snappy http://beta.quicklisp.org/archive/snappy/2020-06-10/snappy-20200610-git.tgz 1341714 cdadcdb8603d56fdbe9a333575a824e6 75929a1a259d084b59124b2a155e0995f4609ef6 snappy-20200610-git snappy.asd
snark http://beta.quicklisp.org/archive/snark/2016-04-21/snark-20160421-git.tgz 275436 b7ee5cb5350f5c675359022c10fc6bb9 b265505c5c331237e1fffbb0aa19fa68ff581cee snark-20160421-git snark-agenda.asd snark-auxiliary-packages.asd snark-deque.asd snark-dpll.asd snark-examples.asd snark-feature.asd snark-implementation.asd snark-infix-reader.asd snark-lisp.asd snark-loads.asd snark-numbering.asd snark-pkg.asd snark-sparse-array.asd snark.asd
sndfile-blob http://beta.quicklisp.org/archive/sndfile-blob/2020-10-16/sndfile-blob-stable-git.tgz 4974837 17379c194e68dd5cf1706b9946c89e35 c75ff2a3ea3aa7aa8a133e5703d2a06901fdfd5f sndfile-blob-stable-git sndfile-blob.asd
snmp http://beta.quicklisp.org/archive/snmp/2016-10-31/snmp-6.1.tgz 4454924 9ea185bf039906911b5f48b73a43c31f 826501f7973e77cd5e2cb19a7ce79d3cb2ecdf1d snmp-6.1 snmp-server.asd snmp-test.asd snmp-ui.asd snmp.asd
snooze http://beta.quicklisp.org/archive/snooze/2020-12-20/snooze-20201220-git.tgz 36364 ae824f363798989175322fc31346d3ed 79cbb6bac7ba937b113b8499d9172265b7e41784 snooze-20201220-git snooze.asd
softdrink http://beta.quicklisp.org/archive/softdrink/2020-04-27/softdrink-20200427-git.tgz 5703 fe546b6fa74522959df95606dbe90c5a ea18a1389f6583ddcb6b9d3e817a00b0f7ad85b9 softdrink-20200427-git softdrink.asd
solid-engine http://beta.quicklisp.org/archive/solid-engine/2019-05-21/solid-engine-20190521-git.tgz 6543 f666e1d94dd1a915ce8c680d43ddbf02 a8f3345f2690c751b2df8522c9ad200db016960f solid-engine-20190521-git solid-engine.asd
soundex http://beta.quicklisp.org/archive/soundex/2010-10-06/soundex-1.0.tgz 1652 247f7c15b49b230100d37bbc3964bd10 8515dcfcd3bf21025931ca0837e9fe83c2622012 soundex-1.0 soundex.asd
south http://beta.quicklisp.org/archive/south/2019-07-10/south-20190710-git.tgz 20288 5635201c1fe341b9e75f1c0ea97e4e33 77c9ede6f2025cc776071555e2fc2844fce08650 south-20190710-git south.asd
spatial-trees http://beta.quicklisp.org/archive/spatial-trees/2014-08-26/spatial-trees-20140826-git.tgz 21925 2772b963aae5c4d06fff83c22e5c8aa9 5038860caf1e9687de757b3158f9df3086a4d54e spatial-trees-20140826-git spatial-trees.asd spatial-trees.nns.asd spatial-trees.nns.test.asd spatial-trees.test.asd
special-functions http://beta.quicklisp.org/archive/special-functions/2021-04-11/special-functions-20210411-git.tgz 98061 d1f76f1e72804e1d4bea5054d789d3e8 43f13b6027d6adcb297f6ca84572549871fbbe6d special-functions-20210411-git special-functions.asd
specialization-store http://beta.quicklisp.org/archive/specialization-store/2020-06-10/specialization-store-v0.0.5.tgz 64599 d00584daca8e0b9d2535b68a3115d1f9 2929bf40e540306eb990743c4c2b1f64c4944df1 specialization-store-v0.0.5 specialization-store-features.asd specialization-store-tests.asd specialization-store.asd
specialized-function http://beta.quicklisp.org/archive/specialized-function/2021-05-31/specialized-function-20210531-git.tgz 101230 9690bc5e2a9eadd42f5c9b7c21630bb3 38013b2d082293c187d03aeca9a5ed5200773702 specialized-function-20210531-git specialized-function.asd specialized-function.test.asd
speechless http://beta.quicklisp.org/archive/speechless/2021-05-31/speechless-20210531-git.tgz 39119 dbaa7bba94ab7d33f70cc3d60cac0dd7 9f0458d885c8080221ca5ff5ecd08f9aa146c409 speechless-20210531-git speechless.asd
spell http://beta.quicklisp.org/archive/spell/2019-03-07/spell-20190307-git.tgz 3643983 f765650ae77e3aa237817ea9d0edf292 b8280c38fd4e628358ffc445d233b4c2a55c1f36 spell-20190307-git spell.asd
spellcheck http://beta.quicklisp.org/archive/spellcheck/2013-10-03/spellcheck-20131003-git.tgz 2375587 1633f18983bbb368192d1355f3f4f13e f6de93b47beda9d56e14184826bb8b49e10cb789 spellcheck-20131003-git spellcheck.asd
spinneret http://beta.quicklisp.org/archive/spinneret/2021-05-31/spinneret-20210531-git.tgz 26948 ed234c32e8545f3ae6749300fa7e9763 fd744df7cb764e5e5a7e62d6d872b108513ffdd2 spinneret-20210531-git spinneret.asd
split-sequence http://beta.quicklisp.org/archive/split-sequence/2021-05-31/split-sequence-v2.0.1.tgz 11705 871be321b4dbca0a1f958927e9173795 fe250d09a3d2b24a0459bebef9ccf401a4733475 split-sequence-v2.0.1 split-sequence.asd
sprint-stars http://beta.quicklisp.org/archive/sprint-stars/2018-08-31/sprint-stars-20180831-git.tgz 1517 db7adeef5208184377f65388661f7ed2 a9de0cfd9e556c34cd2807084fc6ad2e2328a54f sprint-stars-20180831-git stars.asd
srfi-1 http://beta.quicklisp.org/archive/srfi-1/2020-02-18/srfi-1-20200218-git.tgz 17608 e71d27ef564477835be544777d06c3f4 2e8c613d82cb640be609d79df5049b7d84602819 srfi-1-20200218-git srfi-1.asd
srfi-23 http://beta.quicklisp.org/archive/srfi-23/2020-02-18/srfi-23-20200218-git.tgz 1510 8961c102b6d10469c8c73eea590c53fc 8bc69556d6a08b506c8bb21cd64501a25968ad04 srfi-23-20200218-git srfi-23.asd
srfi-6 http://beta.quicklisp.org/archive/srfi-6/2020-02-18/srfi-6-20200218-git.tgz 1556 e9ac54acc1292f6b3174b393e1699eb0 d85e3050e9d34f085967d9b86e7eaf8b0cf1aec7 srfi-6-20200218-git srfi-6.asd
srfi-98 http://beta.quicklisp.org/archive/srfi-98/2020-02-18/srfi-98-20200218-git.tgz 2241 bcd40c30f56cd5e9bf166765db5f920a 805ca9496c161381bb27c38cea866b96ea4786a5 srfi-98-20200218-git srfi-98.asd
st-json http://beta.quicklisp.org/archive/st-json/2020-06-10/st-json-20200610-git.tgz 7916 4c8773d5cd3f8043c4a5e1a4181eb2d9 f4a9a7e05f4433e8d93611b323ee1f1162abd09d st-json-20200610-git st-json.asd
staple http://beta.quicklisp.org/archive/staple/2021-04-11/staple-20210411-git.tgz 99379 4ad2d10ddd028e71e37d9dfd273986e3 668a85656eec2cca9c68e2cf3952c8b0f6762012 staple-20210411-git parser/staple-code-parser.asd server/staple-server.asd staple-markdown.asd staple-markless.asd staple-package-recording.asd staple-restructured-text.asd staple.asd
static-dispatch http://beta.quicklisp.org/archive/static-dispatch/2021-05-31/static-dispatch-20210531-git.tgz 29977 19edccbe5c02db253f774de17ade6978 3de61f27a3aa1598d1634a615b989ce47433d94a static-dispatch-20210531-git static-dispatch.asd
static-vectors http://beta.quicklisp.org/archive/static-vectors/2021-05-31/static-vectors-v1.8.7.tgz 7038 2927c3396856266c2482a360f0e8c335 6f039eede99d4fc33a8c4d6d7fc1f9a6ef28b290 static-vectors-v1.8.7 static-vectors.asd
stealth-mixin http://beta.quicklisp.org/archive/stealth-mixin/2018-12-10/stealth-mixin-20181210-git.tgz 2180 2b6ba6744ac4c4fcdcf1a8c8b71ce567 f3a18458497c73a2a7b901f6f97eb2ce0133c5d9 stealth-mixin-20181210-git stealth-mixin.asd
stefil http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz 18041 3418bf358366748593f65e4b6e1bb8cf f974b02c814ebaaa804f2ecf4c86b0a18abfe6b2 stefil-20181210-git stefil.asd
stefil- http://beta.quicklisp.org/archive/stefil-/2020-12-20/stefil--20201220-git.tgz 5363 6ac4787ce9d2131d281af37445171416 f3374d1084aadbe1ecf24f8bc2683c44d0ffb856 stefil--20201220-git stefil+.asd
stem http://beta.quicklisp.org/archive/stem/2015-06-08/stem-20150608-git.tgz 116071 0dc7713fb0412a4d116304960410cdd7 2eecde21d5d4c35d095bc83b2dd26b55bf8d461e stem-20150608-git stem.asd
stl http://beta.quicklisp.org/archive/stl/2017-10-19/stl-20171019-git.tgz 3089 01a69ac8892b8f4a4bb97c57cf4a9da7 90d1d6084da63bf66ecf50ebf2f84d28531d10b4 stl-20171019-git stl.asd
stmx http://beta.quicklisp.org/archive/stmx/2020-12-20/stmx-stable-49eef1d5-git.tgz 363917 411ecb277dca0a62c5df713234c4ed14 622c26024b49fcf08afe0eb97bb6acef2d780cba stmx-stable-49eef1d5-git stmx.asd stmx.test.asd
string-case http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz 9081 145c4e13f1e90a070b0a95ca979a9680 ff3958a84d23a5b9e743fbf30726a1d9b6c0fbfd string-case-20180711-git string-case.asd
string-escape http://beta.quicklisp.org/archive/string-escape/2015-04-07/string-escape-20150407-http.tgz 15485 8e2acbd7ce3914258979b87a0284a4a1 1d9841f3e851d744c21af85156651eba4aa322d6 string-escape-20150407-http string-escape.asd
stripe http://beta.quicklisp.org/archive/stripe/2021-04-11/stripe-20210411-git.tgz 11712 c5e430ad23b6b732d2f1fdcc351b29c7 ca43f3f5308d8660ee452e396947116e446fda0a stripe-20210411-git stripe.asd
structure-ext http://beta.quicklisp.org/archive/structure-ext/2020-06-10/structure-ext-20200610-git.tgz 9218 f5b9401e2dc6a11c1ebdd4bcb14ce552 fae6abc308e4827e3b508973e5dcc720907c6f51 structure-ext-20200610-git accessors/spec/structure-ext.left-arrow-accessors.test.asd accessors/structure-ext.left-arrow-accessors.asd as-class/spec/structure-ext.as-class.test.asd as-class/structure-ext.as-class.asd make-instance/spec/structure-ext.make-instance.test.asd make-instance/structure-ext.make-instance.asd structure-ext.asd
structy-defclass http://beta.quicklisp.org/archive/structy-defclass/2017-06-30/structy-defclass-20170630-git.tgz 2769 ae666e7951c4137242d95fff9ca6c31e df7f719fa42dc7d3115ed1e0e14cd289eb9f7cce structy-defclass-20170630-git structy-defclass.asd
studio-client http://beta.quicklisp.org/archive/studio-client/2021-02-28/studio-client-20210228-git.tgz 8803 5daaad861363d121e1f3d8fa2c6675ee f7af497cb1cea04306ee0b93e38ed8dd48e75d93 studio-client-20210228-git studio-client.asd
stumpwm http://beta.quicklisp.org/archive/stumpwm/2021-05-31/stumpwm-20210531-git.tgz 228648 10e100227cfe5445b1823c0d1aa32b2a 413d64f6c64afdc01ae797eea4c75f34074fde47 stumpwm-20210531-git stumpwm-tests.asd stumpwm.asd
stumpwm-sndioctl http://beta.quicklisp.org/archive/stumpwm-sndioctl/2021-05-31/stumpwm-sndioctl-20210531-git.tgz 2044 f6725d06e5dc151c77b3532d1f08ac1b 0e83a033859cc0932ec34b4cf5ea3f41967ff0ce stumpwm-sndioctl-20210531-git stumpwm-sndioctl.asd
submarine http://beta.quicklisp.org/archive/submarine/2012-09-09/submarine-20120909-darcs.tgz 38895 461d3050c80b3bbfa73e0ccddc3c00f3 2695b1d9c135e05e6f8bbcb23f0b663a438961e8 submarine-20120909-darcs submarine.asd
sucle http://beta.quicklisp.org/archive/sucle/2020-04-27/sucle-20200427-git.tgz 447331 b771e797fbee7a5b051b160ac20f3b12 fbbbe5535b2c1ae59e364207f4225875c756c8eb sucle-20200427-git src/aabbcc/aabbcc.asd src/application/application.asd src/camera-matrix/camera-matrix.asd src/character-modifier-bits/character-modifier-bits.asd src/control/control.asd src/crud/crud.asd src/deflazy/deflazy.asd src/fps-independent-timestep/fps-independent-timestep.asd src/image-utility/image-utility.asd src/lem-opengl/lem-opengl.asd src/ncurses-clone-for-lem/ncurses-clone-for-lem.asd src/nsb-cga/nsb-cga.asd src/opengl/glhelp.asd src/quads/quads.asd src/scratch-buffer/scratch-buffer.asd src/sucle-multiprocessing/sucle-multiprocessing.asd src/sucle-serialize/sucle-serialize.asd src/sucle/sucle.asd src/text-subsystem/doc/text-subsystem-generate-font.asd src/text-subsystem/text-subsystem.asd src/uncommon-lisp/uncommon-lisp.asd src/window/window.asd temp/sucle-temp.asd test/sucle-test.asd
swank-client http://beta.quicklisp.org/archive/swank-client/2020-12-20/swank-client-20201220-git.tgz 15985 5e2970dc23cb9f1b62198881b088473c 64d4f99747e6a40843ccc33957dadeb55732c252 swank-client-20201220-git swank-client.asd
swank-crew http://beta.quicklisp.org/archive/swank-crew/2020-06-10/swank-crew-20200610-git.tgz 15858 1b8e5fcdd1b45564eb91069e6111aaaf 24e502723630130359ad569cd5bba214c7c0c1de swank-crew-20200610-git swank-crew.asd
swank-protocol http://beta.quicklisp.org/archive/swank-protocol/2020-12-20/swank-protocol-20201220-git.tgz 7382 dfcb6fa6d35ca2a39c735c38262e0df2 af59740164f9e50b9802190ded57e8f70bb82fe7 swank-protocol-20201220-git swank-protocol.asd
swank.live http://beta.quicklisp.org/archive/swank.live/2016-02-08/swank.live-20160208-git.tgz 1754 0cfd0cc920b37a27359244797dfd8817 0e98e9c945773a2f6e8e79688081c942a3327f9d swank.live-20160208-git swank.live.asd
swap-bytes http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz 4342 eea516d7fdbe20bc963a6708c225d719 e1ab274454408933c57dd932be413f0b11f18444 swap-bytes-v1.2 swap-bytes.asd
sxql http://beta.quicklisp.org/archive/sxql/2021-05-31/sxql-20210531-git.tgz 26348 477d16fa7749f739c41b0f1b4ffef240 6ec1416ed078fdca05c7faa6189bc08b9ae211a1 sxql-20210531-git sxql-test.asd sxql.asd
sxql-composer http://beta.quicklisp.org/archive/sxql-composer/2020-03-25/sxql-composer-20200325-git.tgz 2967 bfca2d302b62b46a90a4c4effa3f3e54 7af4ac339fb7cd05241221836b47b8b5bc426d54 sxql-composer-20200325-git sxql-composer.asd
sycamore http://beta.quicklisp.org/archive/sycamore/2020-06-10/sycamore-20200610-git.tgz 56068 7e06bc7db251f8f60231ff966846c7d4 8ca6fefb6b6514c29f5b8d4ac020854895df1ee9 sycamore-20200610-git src/sycamore.asd
symbol-munger http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz 5298 b1e35b63d7ad1451868d1c40e2fbfab7 a8589c60f470b8b280eacd9c983d96bc5f337341 symbol-munger-20150407-git symbol-munger.asd
symbol-namespaces http://beta.quicklisp.org/archive/symbol-namespaces/2013-01-28/symbol-namespaces-1.0.tgz 4915 0ffbf4f50332e324feb40269ca1848cd 1088d4f5d922d472fc16a77da01c498ec956a9a7 symbol-namespaces-1.0 symbol-namespaces.asd
synonyms http://beta.quicklisp.org/archive/synonyms/2019-03-07/synonyms-20190307-hg.tgz 1628 6f956534aa5f68cd03988303fdc40f30 2a5f07c4a581566a998f4a56048850c9e7f6268b synonyms-20190307-hg synonyms.asd
system-locale http://beta.quicklisp.org/archive/system-locale/2020-06-10/system-locale-20200610-git.tgz 6250 01cb055dffb694ede75c0bdf8dc792d0 42dce53529ee6fb95f9ec7705366d54f923ec3bf system-locale-20200610-git system-locale.asd
tagger http://beta.quicklisp.org/archive/tagger/2020-07-15/tagger-20200715-git.tgz 1108833 ee0d4eee120eb0895f000257b64687b1 db86d5219d8fe0fceb70c713bbc4b6c30508da06 tagger-20200715-git tagger.asd
taglib http://beta.quicklisp.org/archive/taglib/2021-04-11/taglib-20210411-git.tgz 49547 836af420af19428b002b4a157eafc2c7 365b92fb89ed57e68ad073f5d6c46db1e88211cc taglib-20210411-git taglib-tests.asd taglib.asd
tailrec http://beta.quicklisp.org/archive/tailrec/2021-02-28/tailrec-20210228-git.tgz 12424 d4e127fe52e74e319791e56a0564bd8d c34b0d76982f81db03a45e6749c74c8923595289 tailrec-20210228-git tailrec.asd
talcl http://beta.quicklisp.org/archive/talcl/2018-02-28/talcl-20180228-git.tgz 32272 12f54d47f90bc8385b3fa8bc4ded7530 39bf555e8bcdb9497663597dc6fe0d725d4c9388 talcl-20180228-git talcl.asd
tap-unit-test http://beta.quicklisp.org/archive/tap-unit-test/2017-12-27/tap-unit-test-20171227-git.tgz 6640 999414b562bcad22ad8be263d13cf813 bee7f65ad728387c7496f6ee412711c2982d8d7c tap-unit-test-20171227-git tap-unit-test.asd
targa http://beta.quicklisp.org/archive/targa/2018-10-18/targa-20181018-git.tgz 6717 abdb921075c2f42c314bcaa6af93402a 5d82e49c058ae56f9c586a82424f853476023ee7 targa-20181018-git targa.asd
tclcs-code http://beta.quicklisp.org/archive/tclcs-code/2021-01-24/tclcs-code-20210124-git.tgz 22539 ba9b75b597dad7a1f81a314fbd40888a 229b74c9efaef8d69b6631e70cd245b56019ef70 tclcs-code-20210124-git tclcs-code.asd
teddy http://beta.quicklisp.org/archive/teddy/2020-07-15/teddy-20200715-git.tgz 548348 98bb98c206f7f0eaeece4a127a221082 7b65a916e35d68361a2dd83e4fe9f53a749aeac3 teddy-20200715-git teddy.asd
teepeedee2 http://beta.quicklisp.org/archive/teepeedee2/2020-02-18/teepeedee2-20200218-git.tgz 92850 47604f7e81af325408cf097bafd18964 76dbab7d720d4a4e870a57d024ae879176e32ec9 teepeedee2-20200218-git teepeedee2-test.asd teepeedee2.asd
telnetlib http://beta.quicklisp.org/archive/telnetlib/2014-12-17/telnetlib-20141217-git.tgz 9030 d002d6c2aa8cda700fa7b0e114404197 65dff3a01133aacc554aea10ecfb2d4a95ad6c12 telnetlib-20141217-git telnetlib.asd
template http://beta.quicklisp.org/archive/template/2019-03-07/template-20190307-hg.tgz 3558 f1f963f928879fb2ef6903e5e0466d6d a2a448c28c9b96927ef288929c04f931a86ed63c template-20190307-hg template.asd
template-function http://beta.quicklisp.org/archive/template-function/2017-11-30/template-function-v0.0.1-git.tgz 28074 cfe8ff39d2006b55a46b7f0bdf770ecb 327ad56f17a4923c9124834168791462d5274252 template-function-v0.0.1-git template-function-tests.asd template-function.asd
temporal-functions http://beta.quicklisp.org/archive/temporal-functions/2017-10-19/temporal-functions-20171019-git.tgz 6586 0a4ad318c90a9cc2c7ca391d2c471c1a 70bfe85677d18c3de5434d054d6dd7b6ae3395d4 temporal-functions-20171019-git temporal-functions.asd
temporary-file http://beta.quicklisp.org/archive/temporary-file/2015-06-08/temporary-file-20150608-git.tgz 10812 0df609812523566a84604d768158f3b0 1ac3046923b6136defee3d28344f9c4e69d8e83a temporary-file-20150608-git temporary-file.asd
ten http://beta.quicklisp.org/archive/ten/2021-05-31/ten-20210531-git.tgz 12512 1d71a4c89d18465bb8ce36c7d43d7b5f 719993d8fd96231de7c94154868b379ab1a22614 ten-20210531-git ten.asd ten.examples.asd ten.i18n.cl-locale.asd ten.i18n.gettext.asd ten.tests.asd
terminfo http://beta.quicklisp.org/archive/terminfo/2021-01-24/terminfo-20210124-git.tgz 12758 b4c386aa1c25252ec725647de21d620a ee09cd9f2f3d7303a3cc7b2588eba933dbbcd5f6 terminfo-20210124-git terminfo.asd
terrable http://beta.quicklisp.org/archive/terrable/2019-07-10/terrable-20190710-git.tgz 8756 99d92ae77464827a2c3f17cbcef09388 5b7f6b7821374d913cc4f8aa34968db75a065480 terrable-20190710-git terrable.asd
tesseract-capi http://beta.quicklisp.org/archive/tesseract-capi/2020-12-20/tesseract-capi-20201220-git.tgz 16920 cc5206faf91891373dfaf0e5a0215a27 e8d4b0e6439288963a121e3edccefc90c4d8ffae tesseract-capi-20201220-git tesseract-capi.asd
test-utils http://beta.quicklisp.org/archive/test-utils/2020-06-10/test-utils-20200610-git.tgz 5084 7c8ce4b1311ce35db20f49b106dfad24 d6cac41f82ed3f11ab4ed400c087f610ebdfe005 test-utils-20200610-git test-utils.asd
testbild http://beta.quicklisp.org/archive/testbild/2010-12-07/testbild-20101207-git.tgz 52330 d3008e32481ed01aaf4bf8d2fd0bcbad 95fca0344bb5af81f7f9c0453ed51e24fd27419f testbild-20101207-git testbild-test.asd testbild.asd
texp http://beta.quicklisp.org/archive/texp/2015-12-18/texp-20151218-git.tgz 16321 0ded17b1ba2ad4506e5f4bde9ba9a2d7 e73f7a2267913b386f31b78b6e68ddd4c896de92 texp-20151218-git texp.asd
text-query http://beta.quicklisp.org/archive/text-query/2011-11-05/text-query-1.1.tgz 5548 57d28b552f346a00ece98824b1bc898f f5ec2327f9d7049749d6bea161ea7d90a5db5017 text-query-1.1 text-query.asd
textery http://beta.quicklisp.org/archive/textery/2020-12-20/textery-20201220-git.tgz 4117 41a870dc7b12e26b63317620ac673d4f 7bd30e1bb0456168df12882eb595b70ea6e3c504 textery-20201220-git textery.asd
tfeb-lisp-hax http://beta.quicklisp.org/archive/tfeb-lisp-hax/2021-05-31/tfeb-lisp-hax-20210531-git.tgz 44105 54ecc34fbf5a02d4aa0bf835be56a2bb 2b4e57458c883f4c7f71aea54006a037e6a7fc71 tfeb-lisp-hax-20210531-git org.tfeb.hax.asd
tfeb-lisp-tools http://beta.quicklisp.org/archive/tfeb-lisp-tools/2021-04-11/tfeb-lisp-tools-20210411-git.tgz 15972 83d8990600bd7024ae03d7219af1a775 61ae0f4ebde4479bf098cc416957e610c791a2ac tfeb-lisp-tools-20210411-git org.tfeb.tools.asd
tfm http://beta.quicklisp.org/archive/tfm/2021-04-11/tfm-20210411-git.tgz 85389 00c8221716755b00f127f568c1e803a0 cb2f38b2d3d1cd6fd7578357a96363aafc9d8c5b tfm-20210411-git core/net.didierverna.tfm.core.asd net.didierverna.tfm.asd setup/net.didierverna.tfm.setup.asd
the-cost-of-nothing http://beta.quicklisp.org/archive/the-cost-of-nothing/2019-11-30/the-cost-of-nothing-20191130-git.tgz 6864 e7b9891f6a3827425124ed8c00b13bab c8f6ee5ed5ee075729d28dcbe354386ba555aab1 the-cost-of-nothing-20191130-git the-cost-of-nothing.asd
thnappy http://beta.quicklisp.org/archive/thnappy/2018-08-31/thnappy-20180831-git.tgz 2879 e399d3a0aea4a4d46b4f3779b083b759 e68599d93d642eb88c3c4ead9a7724c43c34bf5c thnappy-20180831-git thnappy.asd
thorn http://beta.quicklisp.org/archive/thorn/2015-06-08/thorn-20150608-git.tgz 4539 efcc67773fb54b4e4680d50ed5091f9a 436eb3485d54524cc23cc97d1d30ea4f3d1af29b thorn-20150608-git thorn-doc.asd thorn-test.asd thorn.asd
thread-pool http://beta.quicklisp.org/archive/thread-pool/2012-01-07/thread-pool-20120107-git.tgz 3061 9dfcb3dd5692d474d90f7916722d5bf8 5754230b3648ae4d84f80a8cf552518d6851e96b thread-pool-20120107-git thread-pool.asd
thread.comm.rendezvous http://beta.quicklisp.org/archive/thread.comm.rendezvous/2012-10-13/thread.comm.rendezvous-20121013-git.tgz 3295 819e6c2c9fc715f47b9fc1fae4dd9620 fb0ada0703f62f9d2c38cd8d100571b087d6f61f thread.comm.rendezvous-20121013-git thread.comm.rendezvous.asd thread.comm.rendezvous.test.asd
time-interval http://beta.quicklisp.org/archive/time-interval/2019-02-02/time-interval-20190202-git.tgz 3914 be8f598fa583bc02d5aef61c9da05497 2e3b1a01d3aca24e573fdf98ce81b5a15909ce2c time-interval-20190202-git time-interval.asd
timer-wheel http://beta.quicklisp.org/archive/timer-wheel/2018-02-28/timer-wheel-20180228-git.tgz 6804 aecee06490b30b7395bd6bf8e30e293f f5394005e0e5214210a8dd1a0d41fd35674c364d timer-wheel-20180228-git timer-wheel.asd timer-wheel.examples.asd
tinaa http://beta.quicklisp.org/archive/tinaa/2017-12-27/tinaa-20171227-git.tgz 80171 bc067fbe6af7f03f247e93c0d35c5f3a 7cb5eed990ef9deaa609f923c9361840131a90f2 tinaa-20171227-git tinaa-test.asd tinaa.asd
tm http://beta.quicklisp.org/archive/tm/2018-02-28/tm-v0.8.tgz 173992 8c2219879aa24677951a02235855dcf6 dbe34f193e9e3e16b829d8516ef3c510322408c0 tm-v0.8 tm.asd
tmpdir http://beta.quicklisp.org/archive/tmpdir/2020-02-18/tmpdir-20200218-git.tgz 2080 9d1147084d923c1470e9eb003b97f468 ad4713528770d3b00ca247a0e69dc3195cc32424 tmpdir-20200218-git tmpdir.asd tmpdir.tests.asd
toadstool http://beta.quicklisp.org/archive/toadstool/2013-06-15/toadstool-20130615-git.tgz 14309 8bd093fb81edf56821b538339c70c1f1 404dd62b14525f642110dfd30dadbe4e753f1e9f toadstool-20130615-git toadstool-tests.asd toadstool.asd
toot http://beta.quicklisp.org/archive/toot/2012-11-25/toot-20121125-git.tgz 57834 569c801b0b9e880977df5ab9743ec23c b97041f2040590e8751eae383532996923ec5ad0 toot-20121125-git toot.asd
tooter http://beta.quicklisp.org/archive/tooter/2020-12-20/tooter-20201220-git.tgz 46008 c9231531b70fda32c68d626950753b50 aa065819bcb0afe1b608c1553421c48c24a9aece tooter-20201220-git tooter.asd
torta http://beta.quicklisp.org/archive/torta/2014-07-13/torta-20140713-git.tgz 126230 5f2ab2b6d6cb48f17dbf147adde1941e 77e116a79f5931c42d675485991dc5d8352beff1 torta-20140713-git torta.asd
towers http://beta.quicklisp.org/archive/towers/2014-12-17/towers-20141217-git.tgz 17597 2af927bf9a75351e0216b45dafef01ce 8949f07d1929307532b2b9ad4009480ea166c808 towers-20141217-git towers.asd
trace-db http://beta.quicklisp.org/archive/trace-db/2021-01-24/trace-db-20210124-git.tgz 206141 99221dbc2b16f3441e66bc4eb7874c0d 8a1fb15b9d8f5032e144e787495b17312ec95e99 trace-db-20210124-git trace-db.asd
track-best http://beta.quicklisp.org/archive/track-best/2018-10-18/track-best-20181018-git.tgz 6252 e8a45d9ea61867c6873bb5b78018a5f9 96a1746115744d3c733a52b9eaf14a40d9318a08 track-best-20181018-git track-best.asd
trainable-object http://beta.quicklisp.org/archive/trainable-object/2019-12-27/trainable-object-20191227-git.tgz 19230 9db5fb29c21927d7d1aee421e673ee66 bcb41c52a7278aaf9c381b14218eb79617290766 trainable-object-20191227-git trainable-object.asd trainable-object.test.asd
translate http://beta.quicklisp.org/archive/translate/2018-02-28/translate-20180228-git.tgz 6688 95c46dec58c83cd01efd27d60049712f 8660e413ff82b5e83b42bb0d3a64990ee1383db7 translate-20180228-git translate.asd
translate-client http://beta.quicklisp.org/archive/translate-client/2018-02-28/translate-client-20180228-git.tgz 4495 94b7fb3e9836500104348162732512be bdf15a4a38460632c85d3979ef08ea27e79f8c3c translate-client-20180228-git translate-client.asd
transparent-wrap http://beta.quicklisp.org/archive/transparent-wrap/2020-09-25/transparent-wrap-20200925-git.tgz 9955 a82773c9dec366fdf2da8f52a716a7fd 60be87e9f50ecbbde5038341a990ab8e5aaa18f4 transparent-wrap-20200925-git transparent-wrap.asd
tree-search http://beta.quicklisp.org/archive/tree-search/2020-12-20/tree-search-0.0.1.tgz 2039 34f3fc86a9d123841045ead78556bd77 e763a3149fbbe9b4798af346690b8821e1736666 tree-search-0.0.1 tree-search.asd
treedb http://beta.quicklisp.org/archive/treedb/2016-08-25/treedb-20160825-git.tgz 16294 af216acd41ca7a14497d3f045af39b26 d12e833c2d1c271e6ef49bc189a51ccd8f4edfde treedb-20160825-git doc/treedb.doc.asd tests/treedb.tests.asd treedb.asd
trees http://beta.quicklisp.org/archive/trees/2018-01-31/trees-20180131-git.tgz 20019 a1b156d15d444d114f475f7abc908064 3e5523710bbc6c5d96894e036377fbb4487460f9 trees-20180131-git trees.asd
trestrul http://beta.quicklisp.org/archive/trestrul/2020-06-10/trestrul-20200610-git.tgz 8269 542a3597272b0131c15d2bae8427288e 3b2cdd714a38811864f261a56848441725fd8d61 trestrul-20200610-git spec/trestrul.test.asd trestrul.asd
trivia http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz 60162 3fde6243390481d089cda082573876f6 31b5a5e7652daf4e1c438d25d4cde3f002a43859 trivia-20210411-git trivia.asd trivia.balland2006.asd trivia.benchmark.asd trivia.cffi.asd trivia.level0.asd trivia.level1.asd trivia.level2.asd trivia.ppcre.asd trivia.quasiquote.asd trivia.test.asd trivia.trivial.asd
trivial-arguments http://beta.quicklisp.org/archive/trivial-arguments/2020-09-25/trivial-arguments-20200925-git.tgz 3397 3d7b76a729b272019c8827e40bfb6db8 20ed920b2c283ae5c02844d43eae4b9a4eab84fa trivial-arguments-20200925-git trivial-arguments.asd
trivial-backtrace http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz 9230 1d9a7cc7c5840e4eba84c89648908525 69be935e72ea6ead812ff2579208e511fd233a45 trivial-backtrace-20200610-git trivial-backtrace-test.asd trivial-backtrace.asd
trivial-battery http://beta.quicklisp.org/archive/trivial-battery/2019-03-07/trivial-battery-20190307-git.tgz 2248 ccb8f68e7086523a8da2700fab0e5c7d f13fceb155f8e99202ae1d9c99ff0e140b4e4803 trivial-battery-20190307-git trivial-battery.asd
trivial-benchmark http://beta.quicklisp.org/archive/trivial-benchmark/2019-11-30/trivial-benchmark-20191130-git.tgz 14929 8b2be09b1d8312c790006118847261cf aa6d4b7201691f97b4808a34b28b29a1a438ad9b trivial-benchmark-20191130-git trivial-benchmark.asd
trivial-bit-streams http://beta.quicklisp.org/archive/trivial-bit-streams/2019-07-10/trivial-bit-streams-20190710-git.tgz 7667 c08ad7b58a972f45c4939ad6869a9283 819805e50d470ec6b09ee0ea53889f633754408e trivial-bit-streams-20190710-git trivial-bit-streams-tests.asd trivial-bit-streams.asd
trivial-build http://beta.quicklisp.org/archive/trivial-build/2015-12-18/trivial-build-20151218-git.tgz 3150 51479b61f4cbe7a113065b0f3ac50834 654770325c8c5ebd1632430aae2bc3f4ac027fd7 trivial-build-20151218-git trivial-build-test.asd trivial-build.asd
trivial-channels http://beta.quicklisp.org/archive/trivial-channels/2016-04-21/trivial-channels-20160421-git.tgz 2810 7bd8731f8ffbbc61aeaf7fde3309c2a3 2c856642b1ac4006d2f8a1f8bd55d18697c9329e trivial-channels-20160421-git trivial-channels.asd
trivial-clipboard http://beta.quicklisp.org/archive/trivial-clipboard/2021-02-28/trivial-clipboard-20210228-git.tgz 4304 f147ff33934a3796d89597cea8dbe462 aef03e7dd4e6144a3f52e9ac305b1ed25efb207c trivial-clipboard-20210228-git trivial-clipboard-test.asd trivial-clipboard.asd
trivial-cltl2 http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz 6384 aa18140b9840365ceb9a6cddbdbdd67b a21ecaf646a7915c0812e11eb3e337619c5fa613 trivial-cltl2-20200325-git trivial-cltl2.asd
trivial-compress http://beta.quicklisp.org/archive/trivial-compress/2020-12-20/trivial-compress-20201220-git.tgz 2800 e42dd11e969cfc1bd09af9c2352ba874 6ee23d6b31c1841cd8ab9a64afdcd617f2b0e947 trivial-compress-20201220-git trivial-compress-test.asd trivial-compress.asd
trivial-continuation http://beta.quicklisp.org/archive/trivial-continuation/2019-10-07/trivial-continuation-20191007-git.tgz 6021 cd66f3f621bd6004b18c8cfb834fa61c b031d2c2d477949c038e14b9a84fb13cba7f5ae6 trivial-continuation-20191007-git trivial-continuation.asd
trivial-coverage http://beta.quicklisp.org/archive/trivial-coverage/2020-02-18/trivial-coverage-20200218-git.tgz 4414 c5f1c656f46de68d5da349b56ec1b82c a7f10c7eed17b92a30b8413a3d8b25d7c6e44b1f trivial-coverage-20200218-git trivial-coverage.asd
trivial-custom-debugger http://beta.quicklisp.org/archive/trivial-custom-debugger/2020-09-25/trivial-custom-debugger-20200925-git.tgz 3544 e827a5d5c9586c2dc6db8d6b3d0dd40f 9b5591da1181fe253ea7b8b6eb50d71dc5a63a2a trivial-custom-debugger-20200925-git trivial-custom-debugger.asd
trivial-debug-console http://beta.quicklisp.org/archive/trivial-debug-console/2015-04-07/trivial-debug-console-20150407-git.tgz 2602 570ce84cfc527c3ce9a66eb9a3e32a33 c78bc7dbf398faba7518f9edc3fa7ef64ac74768 trivial-debug-console-20150407-git trivial-debug-console.asd
trivial-do http://beta.quicklisp.org/archive/trivial-do/2020-12-20/trivial-do-20201220-git.tgz 2660 e7fd44e9e64b2a1542e7495f23cdf0a2 3a904b82691165f8351f48fb3a510ed2370c879e trivial-do-20201220-git trivial-do.asd
trivial-documentation http://beta.quicklisp.org/archive/trivial-documentation/2016-12-04/trivial-documentation-20161204-git.tgz 15596 9f092a90567e4f77dc9bd1d06fa58ed0 be1d89ac255c31e9de3ad7966312cfa1e6cda9e2 trivial-documentation-20161204-git trivial-documentation-test.asd trivial-documentation.asd
trivial-download http://beta.quicklisp.org/archive/trivial-download/2020-09-25/trivial-download-20200925-git.tgz 3776 24928b34e56068a7cf939d5c56463fff c975d97de65d514f66b82ce1f52f4a8dcc8ec68e trivial-download-20200925-git trivial-download.asd
trivial-dump-core http://beta.quicklisp.org/archive/trivial-dump-core/2017-02-27/trivial-dump-core-20170227-git.tgz 5550 1ba1e853c238b2545002db6ee9530144 8a54cef6a4d0dea05cb5844ebb44f0cf03da762d trivial-dump-core-20170227-git trivial-dump-core.asd
trivial-escapes http://beta.quicklisp.org/archive/trivial-escapes/2018-02-28/trivial-escapes-20180228-git.tgz 6079 b8afeb445f9a3fd8e046d5899fd21e2e 102cfd6ba8f9af527302062704cbd04974848bae trivial-escapes-20180228-git test/trivial-escapes-test.asd trivial-escapes.asd
trivial-exe http://beta.quicklisp.org/archive/trivial-exe/2015-12-18/trivial-exe-20151218-git.tgz 1983 d85a8e198c31aa3d6c07351a41732e49 a860186969c29240babffd1c0e2209635a5e2e3a trivial-exe-20151218-git trivial-exe-test.asd trivial-exe.asd
trivial-extensible-sequences http://beta.quicklisp.org/archive/trivial-extensible-sequences/2020-03-25/trivial-extensible-sequences-20200325-git.tgz 15442 5e090e07af966b7ea09600008cf92a55 acb4a3ba90313b8b1ffd959c45ee15fc9b3fdb6c trivial-extensible-sequences-20200325-git trivial-extensible-sequences.asd
trivial-extract http://beta.quicklisp.org/archive/trivial-extract/2016-04-21/trivial-extract-20160421-git.tgz 3545 b9c3ede33a7f4d565f6916a52a6ea708 c89c03f8cd08876c412a3ae40b0ac763b1930635 trivial-extract-20160421-git trivial-extract-test.asd trivial-extract.asd
trivial-features http://beta.quicklisp.org/archive/trivial-features/2021-04-11/trivial-features-20210411-git.tgz 11355 5ec554fff48d38af5023604a1ae42d3a 8e63ad0e199315539323ca795e85c4f8c8a8fef9 trivial-features-20210411-git trivial-features-tests.asd trivial-features.asd
trivial-file-size http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz 3208 1e1952c60c1711869cd6b87b9bc25b52 bffbe91fdc9ba34fe922d10e2359b5a167f16024 trivial-file-size-20200427-git trivial-file-size.asd
trivial-garbage http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz 10656 9d748d1d549f419ce474f35906707420 9cec7b086ec7e137d4ffe8cb102ad57ae30d2aab trivial-garbage-20200925-git trivial-garbage.asd
trivial-gray-streams http://beta.quicklisp.org/archive/trivial-gray-streams/2021-01-24/trivial-gray-streams-20210124-git.tgz 8046 1b93af1cae9f8465d813964db4d10588 1a899121477a783ea3996c9875f44db44e8cd089 trivial-gray-streams-20210124-git trivial-gray-streams-test.asd trivial-gray-streams.asd
trivial-hashtable-serialize http://beta.quicklisp.org/archive/trivial-hashtable-serialize/2019-10-07/trivial-hashtable-serialize-20191007-git.tgz 4010 9983c4dff65eb69b0eadb067cf03a834 79afe82d413cd42fbcd64a6f66a7bdb0f15ad245 trivial-hashtable-serialize-20191007-git trivial-hashtable-serialize.asd
trivial-http http://beta.quicklisp.org/archive/trivial-http/2011-02-19/trivial-http-20110219-http.tgz 12646 9f6b15eb07fd99fd0b6b69387a520a4f c71ab658c7c6a98eefdd9a69f8d358a9752bb1dc trivial-http-20110219-http trivial-http-test.asd trivial-http.asd
trivial-indent http://beta.quicklisp.org/archive/trivial-indent/2021-05-31/trivial-indent-20210531-git.tgz 3564 3bb7d208d9d0614121c1f57fcffe65c7 b5282042ed3f4b8dfdefba8665f0f56bdce6baaa trivial-indent-20210531-git trivial-indent.asd
trivial-irc http://beta.quicklisp.org/archive/trivial-irc/2017-10-19/trivial-irc-20171019-git.tgz 22705 e63a9436c7db593d5aab25d4eb89679b 1fd2165891ad015f7d978e275dc7f99063a605fa trivial-irc-20171019-git trivial-irc-echobot.asd trivial-irc.asd
trivial-json-codec http://beta.quicklisp.org/archive/trivial-json-codec/2020-03-25/trivial-json-codec-20200325-git.tgz 8014 5b644790885d96d51956a365a37fef9c f4825c4ac58340a64104ca3a7ca8e54ccc1dda47 trivial-json-codec-20200325-git trivial-json-codec.asd
trivial-jumptables http://beta.quicklisp.org/archive/trivial-jumptables/2019-11-30/trivial-jumptables_1.1.tgz 12374 f8ef2c3b2659c6874a0d3f5555b353af 83d069ac067e1a258ad39ee3b5d0cc437f33469f trivial-jumptables_1.1 tests/trivial-jumptables_tests.asd trivial-jumptables.asd
trivial-lazy http://beta.quicklisp.org/archive/trivial-lazy/2015-07-09/trivial-lazy-20150709-git.tgz 1714 ebb499de9ea8b79b0d580222d36ddee9 e9b99256aeec0f0184f3ae5cf20a9e294c1dd972 trivial-lazy-20150709-git trivial-lazy.asd
trivial-ldap http://beta.quicklisp.org/archive/trivial-ldap/2018-07-11/trivial-ldap-20180711-git.tgz 28258 355759d2c532a377b0ec3c0a689548fd 160ff42b50f8f664b029cb53e598301cd8f2d7f4 trivial-ldap-20180711-git trivial-ldap.asd
trivial-left-pad http://beta.quicklisp.org/archive/trivial-left-pad/2019-08-13/trivial-left-pad-20190813-git.tgz 6592 04a7ef287111319605989f582bf7ce4f 544fa2a3c678fe11f7a5a65e7f3e591abf9bcd5e trivial-left-pad-20190813-git trivial-left-pad.asd
trivial-macroexpand-all http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz 1968 9cec494869344eb64ebce802c01928c5 87006c97029637389a4371efc28ba43ececfc315 trivial-macroexpand-all-20171023-git trivial-macroexpand-all.asd
trivial-main-thread http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz 6114 ab95906f1831aa5b40f271eebdfe11a3 899bc9fa1f863baeece94f9aea0d7f6b7385dbbb trivial-main-thread-20190710-git trivial-main-thread.asd
trivial-method-combinations http://beta.quicklisp.org/archive/trivial-method-combinations/2019-11-30/trivial-method-combinations-20191130-git.tgz 1502 810ed9f3459831000b175970a35c0a0f 323703b64bd61e9dbe911d601c8360e4500c0057 trivial-method-combinations-20191130-git trivial-method-combinations.asd
trivial-mimes http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz 20336 6f400805470232e87b3f69b9239b2b55 544b5a91142e69a5dc7aeaca6147a01afc9a9c7d trivial-mimes-20200715-git trivial-mimes.asd
trivial-mmap http://beta.quicklisp.org/archive/trivial-mmap/2021-01-24/trivial-mmap-20210124-git.tgz 3831 6c02cc87b2b0b654e8b42f9bd40594e9 ea5cfb87e7bc946895c3bbcb455b78ead070090d trivial-mmap-20210124-git trivial-mmap.asd
trivial-monitored-thread http://beta.quicklisp.org/archive/trivial-monitored-thread/2020-03-25/trivial-monitored-thread-20200325-git.tgz 6530 bc515d07d67f4b6586714cc0d672efa8 dded11eaa0b50e4c1ec8d2307a3670dc1a636157 trivial-monitored-thread-20200325-git trivial-monitored-thread.asd
trivial-msi http://beta.quicklisp.org/archive/trivial-msi/2016-02-08/trivial-msi-20160208-git.tgz 2142 c2b860a6959e61707142419756f7cf3e 0d6d8cf48d175a6616a245801fa44a165baee4c4 trivial-msi-20160208-git trivial-msi-test.asd trivial-msi.asd
trivial-nntp http://beta.quicklisp.org/archive/trivial-nntp/2016-12-04/trivial-nntp-20161204-git.tgz 4937 f03c13ee62ce27792941d9f9d8cd7c43 b311c46a549c4dbffaed13b8c338ce976ad7b892 trivial-nntp-20161204-git trivial-nntp.asd
trivial-object-lock http://beta.quicklisp.org/archive/trivial-object-lock/2019-10-07/trivial-object-lock-20191007-git.tgz 128346 c0fe973e9a00faf5286895d18952c231 6e0a1fc45e98e903b54182cf2ac1d01bee87993c trivial-object-lock-20191007-git trivial-object-lock.asd
trivial-octet-streams http://beta.quicklisp.org/archive/trivial-octet-streams/2013-01-28/trivial-octet-streams-20130128-git.tgz 3452 00d2c8cd41b5ace65519f366bc6542fb e0b865e9b1787e6f91b5d5e6c454a1a5890e077e trivial-octet-streams-20130128-git trivial-octet-streams.asd
trivial-open-browser http://beta.quicklisp.org/archive/trivial-open-browser/2016-08-25/trivial-open-browser-20160825-git.tgz 1176 038c4cd110fa9b34a77fe655bc1e35ba bac02728c1ed3037f88b89764dacf204bb8a1b4a trivial-open-browser-20160825-git trivial-open-browser.asd
trivial-openstack http://beta.quicklisp.org/archive/trivial-openstack/2016-06-28/trivial-openstack-20160628-git.tgz 9849 fd4cea1d1a6e3079f4778c226fbb08b1 d7bb60c337b47ad21205099b8ac38efb7b48bd59 trivial-openstack-20160628-git trivial-openstack-test.asd trivial-openstack.asd
trivial-package-local-nicknames http://beta.quicklisp.org/archive/trivial-package-local-nicknames/2020-06-10/trivial-package-local-nicknames-20200610-git.tgz 3744 b3620521d3400ad5910878139bc86fcc 2d08f5b3f23f937d000c5a7d0d145c95f46f1d03 trivial-package-local-nicknames-20200610-git trivial-package-local-nicknames.asd
trivial-package-manager http://beta.quicklisp.org/archive/trivial-package-manager/2017-12-27/trivial-package-manager-20171227-git.tgz 6042 161ae810ca261f04aae86068365839da bdda9666a328e2d6e8278fceb8d6b9dff46e1c31 trivial-package-manager-20171227-git trivial-package-manager.asd trivial-package-manager.test.asd
trivial-pooled-database http://beta.quicklisp.org/archive/trivial-pooled-database/2020-12-20/trivial-pooled-database-20201220-git.tgz 6268 b7f41f2e8a9c273d1221899ed46b7c1d eeed3be17989e423a1dd6f0076453f9045c7c0ae trivial-pooled-database-20201220-git trivial-pooled-database.asd
trivial-project http://beta.quicklisp.org/archive/trivial-project/2017-08-30/trivial-project-quicklisp-9e3fe231-git.tgz 7676 1702cda33bf5d228c4f865f4ca2f28da f9050c412d5c9851d3f384000a6b8b8eaab82473 trivial-project-quicklisp-9e3fe231-git trivial-project.asd
trivial-raw-io http://beta.quicklisp.org/archive/trivial-raw-io/2014-12-17/trivial-raw-io-20141217-git.tgz 2861 627f83a54a94278675c03c14934b272a f89b8c4e06554471bfcb9216dd2eb385b5dd8e8a trivial-raw-io-20141217-git trivial-raw-io.asd
trivial-renamer http://beta.quicklisp.org/archive/trivial-renamer/2017-08-30/trivial-renamer-quicklisp-1282597d-git.tgz 3794 ff77e08decb7ca7b5b18e7b03c6cb05b 071cd2c4f5eb569ca958dbfd91a8effb3f0df647 trivial-renamer-quicklisp-1282597d-git trivial-renamer.asd
trivial-rfc-1123 http://beta.quicklisp.org/archive/trivial-rfc-1123/2017-01-24/trivial-rfc-1123-20170124-git.tgz 5622 a91a7fc1fae5a5da9e34ff58b72236e7 8fd5bfe63f661ab64c368a0831c81bedf9f0d015 trivial-rfc-1123-20170124-git trivial-rfc-1123.asd
trivial-shell http://beta.quicklisp.org/archive/trivial-shell/2018-02-28/trivial-shell-20180228-git.tgz 14473 d7b93648abd06be95148d43d09fa2ed0 cea06f83f2a0a7f17ba75b612535dc2676296025 trivial-shell-20180228-git trivial-shell-test.asd trivial-shell.asd
trivial-signal http://beta.quicklisp.org/archive/trivial-signal/2019-07-10/trivial-signal-20190710-git.tgz 13446 835a39ed6f968c22862be53487bab640 f1eda45929be115101e995590fefd4fcf8abd6f3 trivial-signal-20190710-git trivial-signal.asd
trivial-sockets http://beta.quicklisp.org/archive/trivial-sockets/2019-01-07/trivial-sockets-20190107-git.tgz 11603 bd56e19a9716b8beb0d482d38fc16472 da768132611e7d7ff0b44212a8011bf17b45e99f trivial-sockets-20190107-git trivial-sockets.asd
trivial-ssh http://beta.quicklisp.org/archive/trivial-ssh/2019-11-30/trivial-ssh-20191130-git.tgz 16118 d1b5dcc547de445a4fde156b66942ab1 001183c4093a3ff5b6133f9f81327f062842d8a5 trivial-ssh-20191130-git trivial-ssh-libssh2.asd trivial-ssh-test.asd trivial-ssh.asd
trivial-string-template http://beta.quicklisp.org/archive/trivial-string-template/2020-12-20/trivial-string-template-20201220-git.tgz 9793 3eeaa59237394b0bdc5f645219e355aa 4bcea2910724eeaabdbcd0200f7e4144c0df3fe2 trivial-string-template-20201220-git trivial-string-template-test.asd trivial-string-template.asd
trivial-swank http://beta.quicklisp.org/archive/trivial-swank/2018-02-28/trivial-swank-quicklisp-ab90d90f-git.tgz 5553 a5ca451d2b9c5bf338f16f5bbf52fd14 840a996a64f567f46af09caa8213fc7b38fd184a trivial-swank-quicklisp-ab90d90f-git trivial-swank.asd
trivial-tco http://beta.quicklisp.org/archive/trivial-tco/2013-10-03/trivial-tco-20131003-git.tgz 2541 9123b9c05aec84967cb9db6648c958f4 2416c68735324bfec2f53d16abfd76cc29846861 trivial-tco-20131003-git trivial-tco-test.asd trivial-tco.asd
trivial-thumbnail http://beta.quicklisp.org/archive/trivial-thumbnail/2019-07-10/trivial-thumbnail-20190710-git.tgz 5331 c8bfe5f627830e849104d7e0ba54bca6 86865b4054ada83afe01f1a5fbebf35076328215 trivial-thumbnail-20190710-git trivial-thumbnail.asd
trivial-timeout http://beta.quicklisp.org/archive/trivial-timeout/2018-01-31/trivial-timeout-20180131-git.tgz 8556 43a318a74a174a0a5bb0921f650f0727 afe9bd2217f8ebc0c67c9c66d4b3d76a678a4d98 trivial-timeout-20180131-git trivial-timeout.asd
trivial-timer http://beta.quicklisp.org/archive/trivial-timer/2021-05-31/trivial-timer-20210531-git.tgz 6060 16a1f8cadb31f234a77a673ead9acc44 92bafca098d4689410b25e0cbaf9df99977d78b9 trivial-timer-20210531-git trivial-timer.asd
trivial-timers http://beta.quicklisp.org/archive/trivial-timers/2010-10-06/trivial-timers-20101006-http.tgz 4064 c2191b98e93888880e7b99c5f3db050e caf09574cc58601410b46b2b03654f0e7742347b trivial-timers-20101006-http trivial-timers.asd
trivial-types http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz 3228 b14dbe0564dcea33d8f4e852a612d7db acf9e5a4b0ef99bdcb121cfbc8f07c647c302e57 trivial-types-20120407-git trivial-types.asd
trivial-update http://beta.quicklisp.org/archive/trivial-update/2018-01-31/trivial-update-20180131-git.tgz 2718 d8c0e6814b49272876ea768cd1e46e2f 4b672e0127418b00f5c12a21f24f5db7cc8af279 trivial-update-20180131-git trivial-update.asd
trivial-utf-8 http://beta.quicklisp.org/archive/trivial-utf-8/2020-09-25/trivial-utf-8-20200925-git.tgz 45210 799ece1f87cc4a83e81e598bc6b1dd1d ec688f645de5b645659b2091a0ef4d50f4ff519f trivial-utf-8-20200925-git trivial-utf-8.asd
trivial-utilities http://beta.quicklisp.org/archive/trivial-utilities/2020-02-18/trivial-utilities-20200218-git.tgz 7181 ddb2b1afc37daf68aab96568b56eda9b 3a38d9ffcc533879888047e4d78e099449280e77 trivial-utilities-20200218-git trivial-utilities.asd
trivial-variable-bindings http://beta.quicklisp.org/archive/trivial-variable-bindings/2019-10-07/trivial-variable-bindings-20191007-git.tgz 4594 13e84f4912598f04d5da6a4bd4c7be5f 8bfa3f68d6b82a13767f88f5595cecc8a6df2d3a trivial-variable-bindings-20191007-git trivial-variable-bindings.asd
trivial-wish http://beta.quicklisp.org/archive/trivial-wish/2017-06-30/trivial-wish-quicklisp-910afeea-git.tgz 3604 37c6d054b8047635f893bcca3b20043f 477cbc87778ab161717f3247495b99ce82d26fe0 trivial-wish-quicklisp-910afeea-git trivial-wish.asd
trivial-with http://beta.quicklisp.org/archive/trivial-with/2017-08-30/trivial-with-quicklisp-2fd8ca54-git.tgz 1554 8b816ed9e2c29f3f8015efb749417e1f ee005208b66ede42608dd15837b701d270932620 trivial-with-quicklisp-2fd8ca54-git trivial-with.asd
trivial-with-current-source-form http://beta.quicklisp.org/archive/trivial-with-current-source-form/2021-05-31/trivial-with-current-source-form-20210531-git.tgz 36862 cffc766a0270dc76cfa8e9e3736b334e 2c3edbbe7055431eca29e8d752b01945a2ae328d trivial-with-current-source-form-20210531-git trivial-with-current-source-form.asd
trivial-ws http://beta.quicklisp.org/archive/trivial-ws/2018-01-31/trivial-ws-20180131-git.tgz 2798 d94a58b084bfae82b57533be1ab60d22 6b21f895b2401e4b6ba676597db3398d4d45eeaa trivial-ws-20180131-git trivial-ws-client.asd trivial-ws-test.asd trivial-ws.asd
trivial-yenc http://beta.quicklisp.org/archive/trivial-yenc/2016-12-04/trivial-yenc-20161204-git.tgz 24777 3e30073ec4a3aac9eb79bcedd773afd3 63208129d025e58445a65f7da343aaf5a2661d96 trivial-yenc-20161204-git trivial-yenc.asd
trivialib.bdd http://beta.quicklisp.org/archive/trivialib.bdd/2018-03-28/trivialib.bdd-20180328-git.tgz 5701 13f189714290a75342f159476d9df3d1 f71adf02c9caabe16c2f23318d992d67d7c2b25a trivialib.bdd-20180328-git trivialib.bdd.asd trivialib.bdd.test.asd
trivialib.type-unify http://beta.quicklisp.org/archive/trivialib.type-unify/2020-03-25/trivialib.type-unify-20200325-git.tgz 6636 78d639eb1e7eda0e73a003854457938c 5c418715ea5055ed60e1f9e4315c98dfbe424db0 trivialib.type-unify-20200325-git trivialib.type-unify.asd trivialib.type-unify.test.asd
trucler http://beta.quicklisp.org/archive/trucler/2021-05-31/trucler-20210531-git.tgz 31268 252afa4c1da81e65d2c53ca09a5c115a 8a3c97271290ea720cfd2c51be36a6921f286133 trucler-20210531-git Code/Implementations/Native/Test/trucler-native-test.asd Code/Implementations/Native/trucler-native.asd Code/Implementations/Reference/trucler-reference.asd Code/trucler-base.asd Code/trucler.asd
truetype-clx http://beta.quicklisp.org/archive/truetype-clx/2020-02-18/truetype-clx-20200218-git.tgz 4022 78e52139bd604bed152972e39b46db2c e12cb1bd1ed1d70787c57d796d86bb274d8266bb truetype-clx-20200218-git truetype-clx.asd
ttt http://beta.quicklisp.org/archive/ttt/2021-04-11/ttt-20210411-git.tgz 1339419 615b1ae0259dc728b4503271c7f88fb5 c202b46b7e8f43a2d033f13541429f6ac2ac35c8 ttt-20210411-git src/ttt.asd
twfy http://beta.quicklisp.org/archive/twfy/2013-04-20/twfy-20130420-git.tgz 6872 970b20e4c143014bf2faf5d470e3cf72 3840c3c70a63c07bf225bea595bc196ed243b17c twfy-20130420-git twfy.asd
type-i http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz 5932 af344179d3f97b836d1e3106f8d1c306 ef2cd7a2e099a2d1c1bc1f5d913a711872735f1b type-i-20191227-git type-i.asd type-i.test.asd
type-r http://beta.quicklisp.org/archive/type-r/2019-12-27/type-r-20191227-git.tgz 10627 9dd5400746e6c8352fc4248e5384669a 82c0916f793c2f678770c2c0152dbd26af130259 type-r-20191227-git type-r.asd type-r.test.asd
uax-14 http://beta.quicklisp.org/archive/uax-14/2020-09-25/uax-14-20200925-git.tgz 130668 d2ed691427a0bb0f84d4bf22227d7a08 5189b0c0c726677222e011d7f551818617592fe3 uax-14-20200925-git uax-14-test.asd uax-14.asd
uax-15 http://beta.quicklisp.org/archive/uax-15/2021-05-31/uax-15-20210531-git.tgz 749238 bceff07d037c7daccbdd5c84683fcddd 36c7b09b6215e5474c57c804514cea582b9d6d96 uax-15-20210531-git uax-15.asd
uax-9 http://beta.quicklisp.org/archive/uax-9/2019-10-07/uax-9-20191007-git.tgz 1794867 dc653d87a4ddfb75efec85030a074cbc 7cdb719c1cdc1b1724860826c9436f71db9898c8 uax-9-20191007-git uax-9-test.asd uax-9.asd
ubiquitous http://beta.quicklisp.org/archive/ubiquitous/2019-07-10/ubiquitous-20190710-git.tgz 43252 f1300d3ed47beda6abc92ef0d85a8eee 30b0eb81f56864c4e07a916d94a849c72577cd9e ubiquitous-20190710-git ubiquitous-concurrent.asd ubiquitous.asd
ucons http://beta.quicklisp.org/archive/ucons/2021-02-28/ucons-20210228-git.tgz 5834 d5f2cfa499ee384b35d0a835a5f4386a c39b6d852d25253dc18052616ab8fe9c48f2eafa ucons-20210228-git code/ucons.asd
ucw http://beta.quicklisp.org/archive/ucw/2016-02-08/ucw-20160208-darcs.tgz 164029 b5a4f28e311b70010bd98be79e544c48 d461b81886f15d368a521ba254c282f224638623 ucw-20160208-darcs ucw-core.asd ucw.asd
uffi http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz 179928 b0dfb2f966912f4797327948aa7e9119 3fa7b46bc21bcbbc59528bf4c2ea9bda84f57088 uffi-20180228-git uffi-tests.asd uffi.asd
ufo http://beta.quicklisp.org/archive/ufo/2016-12-04/ufo-20161204-git.tgz 5130 bb490f5b3086088cab2746a7c7a102eb ff24b84a9e8f1118e87b77fe8edb002005b91883 ufo-20161204-git ufo-test.asd ufo.asd
ugly-tiny-infix-macro http://beta.quicklisp.org/archive/ugly-tiny-infix-macro/2016-08-25/ugly-tiny-infix-macro-20160825-git.tgz 8284 ed38d0a89cf772f96244934a78bc1ec4 3d5e3f693c1f45322d1c7f6d117fa96a3d9d4557 ugly-tiny-infix-macro-20160825-git ugly-tiny-infix-macro.asd
uiop http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz 100266 b13a79a5aede43c97428c1cac86d6c2e 236c12bfc4fe6dacc23844cfd10a57d1a4f181a6 uiop-3.3.4 asdf-driver.asd uiop.asd
umbra http://beta.quicklisp.org/archive/umbra/2021-04-11/umbra-20210411-git.tgz 24983 9b26b109e014dfa69677e064cd5385c4 3f8245c53ec640c9c0175fef98718b2b0bc6560e umbra-20210411-git umbra.asd
umlisp http://beta.quicklisp.org/archive/umlisp/2021-04-11/umlisp-20210411-git.tgz 46998 3cd1f69fa3046bb4d0d2b73b3be9eb46 9ac78a455125749ea9e12e714ba4b600b8c0c202 umlisp-20210411-git umlisp-tests.asd umlisp.asd
umlisp-orf http://beta.quicklisp.org/archive/umlisp-orf/2015-09-23/umlisp-orf-20150923-git.tgz 31495 401d1d133f874eccafc76426495bdfc6 340233287e9c9c427e2d0260eb2cb457cb494a56 umlisp-orf-20150923-git umlisp-orf.asd
uncursed http://beta.quicklisp.org/archive/uncursed/2021-02-28/uncursed-20210228-git.tgz 22880 45bea85746d1e0e03e6e462ad16306c3 680149201e47128dfbb1af183a75b7b27a7b9905 uncursed-20210228-git uncursed-examples.asd uncursed.asd
unicly http://beta.quicklisp.org/archive/unicly/2021-01-24/unicly-20210124-git.tgz 101946 b445da828ba22cad3d94bca17340da95 74a73d2f1507e0bd808aefffa5e7519ccadcdfbb unicly-20210124-git unicly.asd
unit-formula http://beta.quicklisp.org/archive/unit-formula/2018-07-11/unit-formula-20180711-git.tgz 22478 4739cdb264153430300215eec7d8a766 43c9faa30a3d9bf36d81be4df653f66c5104a8c2 unit-formula-20180711-git unit-formulas.asd
unit-test http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz 5026 ffcde1c03dd33862cd4f7288649c3cbc a90ba788826db66fb183ef221a2bd57550d66d51 unit-test-20120520-git unit-test.asd
universal-config http://beta.quicklisp.org/archive/universal-config/2018-04-30/universal-config-20180430-git.tgz 18717 ea3d382afa8904aa76d6e3131c89a1b8 b177d9d562fe68db71f805451e6d7e357647d055 universal-config-20180430-git universal-config.asd
unix-options http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz 11220 3bbdeafbef3e7a2e94b9756bf173f636 64c26167d493cca5c981c1c9a3f923f7406d6e25 unix-options-20151031-git unix-options.asd
unix-opts http://beta.quicklisp.org/archive/unix-opts/2021-01-24/unix-opts-20210124-git.tgz 15695 c75d3233c0f2e16793b1ce19bfc83811 89b779761b8146989d5272ae5323728e86aac92f unix-opts-20210124-git unix-opts.asd
uri-template http://beta.quicklisp.org/archive/uri-template/2019-08-13/uri-template-1.3.1.tgz 20667 2819c38acf5408c90ef2c4f12bfaf73e 42d350f11de6975925bd1aba0878e322836b8817 uri-template-1.3.1 uri-template.asd uri-template.test.asd
url-rewrite http://beta.quicklisp.org/archive/url-rewrite/2017-12-27/url-rewrite-20171227-git.tgz 12733 a27f51e1cd3b62263386c02b07b754b5 16fe74d55e44c734edc7286ac793686150721520 url-rewrite-20171227-git url-rewrite.asd
userial http://beta.quicklisp.org/archive/userial/2011-06-19/userial_0.8.2011.06.02.tgz 25305 18ca2d20cbb483ddb2cb6712387384dc 358b810d26b835ff5a26e1be33aeb6721801d94d userial_0.8.2011.06.02 userial-tests.asd userial.asd
usocket http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz 85851 b1103034f32565487ab3b6eb92c0ca2b 12cc3af115d1d393cad4eae8e9b3e3aa123617ed usocket-0.8.3 usocket-server.asd usocket-test.asd usocket.asd
utilities.binary-dump http://beta.quicklisp.org/archive/utilities.binary-dump/2018-12-10/utilities.binary-dump-20181210-git.tgz 13155 2f2ae5e2669f8d4f3e0bbea638cf473f 437ea86b8f923e9929ffc644beebc1e687433e9f utilities.binary-dump-20181210-git utilities.binary-dump.asd
utilities.print-items http://beta.quicklisp.org/archive/utilities.print-items/2021-04-11/utilities.print-items-20210411-git.tgz 10231 35be0e5ee4c957699082fb6ae8f14ef2 c33637c9bb1e66420c7a3b66dde1d9b3b992701d utilities.print-items-20210411-git utilities.print-items.asd
utilities.print-tree http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz 9696 618bf5b42c415a44a1566f4f96a2c69a b8acd1b1e01dd09e0176169491eb3ee9098dd220 utilities.print-tree-20200325-git utilities.print-tree.asd
utility http://beta.quicklisp.org/archive/utility/2019-02-02/utility-20190202-git.tgz 5158 55e9e5ba352fe19b956af04fa4dc19bc 62360ca825f0bbbbaf2d244698a01cbf75f6e86e utility-20190202-git utility.asd
utility-arguments http://beta.quicklisp.org/archive/utility-arguments/2016-12-04/utility-arguments-20161204-git.tgz 8656 0f60552f326f7164cac4b957e4d48099 9cdfeb9cad7d4e0d84c18ac8f895ce7561bf62e4 utility-arguments-20161204-git utility-arguments.asd
utils-kt http://beta.quicklisp.org/archive/utils-kt/2020-02-18/utils-kt-20200218-git.tgz 17973 888a8505fcd3f9023b4938ed53f700ec 2c82fb87dd2d9c9d1720b22508d7000d5bd13a38 utils-kt-20200218-git utils-kt.asd
utm http://beta.quicklisp.org/archive/utm/2020-02-18/utm-20200218-git.tgz 5366 1c8f9f8ad98c0022b9b606be96156cc3 972d99046777cc8e246357232ac39cb27954e0c1 utm-20200218-git utm.asd utm.test.asd
utm-ups http://beta.quicklisp.org/archive/utm-ups/2021-02-28/utm-ups-20210228-git.tgz 19924 1806dd729202723bea6d746d0569a095 84fcded58f15680b5f71c0fca1b46b119269c7f4 utm-ups-20210228-git utm-ups.asd
uuid http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz 22210 e550de5e4e0f8cc9dc92aff0b488a991 a68cc19869cbc10c691c967e6355c4fcb58e4f39 uuid-20200715-git uuid.asd
validate-list http://beta.quicklisp.org/archive/validate-list/2021-04-11/validate-list-20210411-git.tgz 11893 d372937ef2299768f6adb55ad6eaabd3 a002d9b7214e0deb8828f88e2bd1d42a19002abc validate-list-20210411-git validate-list.asd
varjo http://beta.quicklisp.org/archive/varjo/2021-01-24/varjo-release-quicklisp-92f9c75b-git.tgz 336707 78a3b8021885ebfab4015e20b885cdcf 5239f7015582f01cf2439a3e001f4417db2dd7b0 varjo-release-quicklisp-92f9c75b-git varjo.asd varjo.import.asd varjo.tests.asd
vas-string-metrics http://beta.quicklisp.org/archive/vas-string-metrics/2016-02-08/vas-string-metrics-20160208-git.tgz 6807 5f38d4ee241c11286be6147f481e7fd0 f8d0b6752ab519cc94a92c2371aca239867a4b9f vas-string-metrics-20160208-git test.vas-string-metrics.asd vas-string-metrics.asd
vecto http://beta.quicklisp.org/archive/vecto/2017-12-27/vecto-1.5.tgz 70758 69e6b2f7fa10066d50f9134942afad73 e5c820e88138ed60294d2987002a523ce37e2b02 vecto-1.5 vecto.asd vectometry/vectometry.asd
vector http://beta.quicklisp.org/archive/vector/2013-01-28/vector-20130128-git.tgz 13555 d00644c19ce7e0d1302acda0bf238081 042f916e4c5c4648ab2b8e2d41f164783563522a vector-20130128-git com.elbeno.vector.asd
vectors http://beta.quicklisp.org/archive/vectors/2017-12-27/vectors-20171227-git.tgz 4968 413caa1cced2681421c9ee3438079a7c a52d5b2e5ff875860d90cd76f8cf63650041e60a vectors-20171227-git vectors.asd
vellum http://beta.quicklisp.org/archive/vellum/2021-05-31/vellum-20210531-git.tgz 45683 044bca7b81e62c494fe8a51fe42ce820 856bc7158e268a1e7340fb61447203ff394166c0 vellum-20210531-git vellum-tests.asd vellum.asd
vellum-clim http://beta.quicklisp.org/archive/vellum-clim/2021-05-31/vellum-clim-20210531-git.tgz 1855 9a0f92839445a89d25934dd36ad58e22 0a9a1ee49e530d0fe058420642ad61cc46b0b61c vellum-clim-20210531-git vellum-clim.asd
vellum-csv http://beta.quicklisp.org/archive/vellum-csv/2021-05-31/vellum-csv-20210531-git.tgz 7922 45b305b984ed564aad2d53c1de8a3b52 992071448705cf0a8ca88cdeb75bbd55105b3d80 vellum-csv-20210531-git vellum-csv-tests.asd vellum-csv.asd
vellum-postmodern http://beta.quicklisp.org/archive/vellum-postmodern/2021-05-31/vellum-postmodern-20210531-git.tgz 2529 b4f94303ebee6d84c417ba8278013c11 e014ff38fb89d9c30369f957dd7944f4a743b068 vellum-postmodern-20210531-git vellum-postmodern.asd
verbose http://beta.quicklisp.org/archive/verbose/2020-12-20/verbose-20201220-git.tgz 61480 5a36b6316092d722acee9570dc590906 6560efa8ae90d4770a205fbbdb77a712563f7212 verbose-20201220-git verbose.asd
vernacular http://beta.quicklisp.org/archive/vernacular/2020-09-25/vernacular-20200925-git.tgz 40990 e6a5b03790a75c2788d3e941a3edef57 58a95976e3513383e09cdbbc14f51d5d20b745a7 vernacular-20200925-git vernacular.asd
verrazano http://beta.quicklisp.org/archive/verrazano/2012-09-09/verrazano-20120909-darcs.tgz 154093 fdb516677e8414b3400fd8dd6f91817b 3dfe039d928da642c40544b7418fcc8929a43dae verrazano-20120909-darcs verrazano-runtime.asd verrazano.asd
vertex http://beta.quicklisp.org/archive/vertex/2015-06-08/vertex-20150608-git.tgz 3549 f0e1a725b6733155306c4dd9d8245ea8 27473fcccbf03bd3a904a3c0d04b8c40413c514d vertex-20150608-git vertex-test.asd vertex.asd
vgplot http://beta.quicklisp.org/archive/vgplot/2021-05-31/vgplot-20210531-git.tgz 31819 67a25cfb568d999d361ace74314df34c acff4d2c5a13bbfcb37bc84063abec17580924cd vgplot-20210531-git vgplot.asd
vk http://beta.quicklisp.org/archive/vk/2021-05-31/vk-20210531-git.tgz 468970 1b09c8061dab4e079d79e02f28cc0b50 b2c3686a0c773c7cd35b2ae19dc0d370d34bcffc vk-20210531-git vk.asd
vom http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz 4286 ad16bdc0221b08de371be6ce25ce3d47 4618a41b412c27f8a543c70bef09b49d68d9b1f7 vom-20160825-git vom.asd
vom-json http://beta.quicklisp.org/archive/vom-json/2020-06-10/vom-json-20200610-git.tgz 5506 bf4c4f9418c91b8ff0a0b722aac2b335 5e740ae88b867216b8408e31eaee3f47f29ea45d vom-json-20200610-git vom-json.asd
vp-trees http://beta.quicklisp.org/archive/vp-trees/2020-12-20/vp-trees-20201220-git.tgz 4820 7f2ad883e5ee60ac2a33ba010a2f6d43 b8c04d60e0e9bbcde33ec7ed77907f954b9afc19 vp-trees-20201220-git vp-trees.asd
wallstreetflets http://beta.quicklisp.org/archive/wallstreetflets/2021-01-24/wallstreetflets-20210124-git.tgz 15171 a10c675031e79c976125ada9ab338cf5 c651255981ab41189858afdc27d8b9b0c696fb60 wallstreetflets-20210124-git wallstreetflets.asd
wasm-encoder http://beta.quicklisp.org/archive/wasm-encoder/2021-05-31/wasm-encoder-20210531-git.tgz 25734 1880ead035b320db885d1e94295a699b f5d389586825a6c340cc62a608ce285d630f48ad wasm-encoder-20210531-git wasm-encoder.asd
water http://beta.quicklisp.org/archive/water/2019-01-07/water-20190107-git.tgz 2387 8340d15004bc9b07d822eb08d73846d7 679bc44d0f73f8963f5ced8211c3abd45e7cb8b8 water-20190107-git water.asd
weblocks http://beta.quicklisp.org/archive/weblocks/2018-02-28/weblocks-20180228-git.tgz 312275 b6f3ca9a3ded521dafa271773a659883 e416f64744e54eb0e7cb6e199c09d3b797ea21b3 weblocks-20180228-git contrib/jwr/yui/weblocks-yui.asd contrib/s11001001/weblocks-s11.asd contrib/yarek/examples/weblocks-demo-popover/weblocks-demo-popover.asd contrib/yarek/weblocks-yarek.asd weblocks-scripts.asd weblocks-test.asd weblocks-util.asd weblocks.asd
weblocks-examples http://beta.quicklisp.org/archive/weblocks-examples/2020-12-20/weblocks-examples-20201220-git.tgz 376301 0876e1e60f8a64728380eebbc0f42ad3 e76406ecfff09e774fb56a0bbf6b1a18ade8f74a weblocks-examples-20201220-git simple-blog/simple-blog.asd weblocks-clsql-demo/weblocks-clsql-demo.asd weblocks-demo/weblocks-demo.asd
weblocks-prototype-js http://beta.quicklisp.org/archive/weblocks-prototype-js/2020-12-20/weblocks-prototype-js-20201220-git.tgz 91028 976a3f254387807a40abf413c5253664 72c0236178a34b140d68d9db171a05a622cf3935 weblocks-prototype-js-20201220-git weblocks-prototype-js.asd
weblocks-stores http://beta.quicklisp.org/archive/weblocks-stores/2020-10-16/weblocks-stores-20201016-git.tgz 24826 bebf91aca6d5926eeeef1810187e139d 55f2582051f6490ec3e505ddc8c81edb063794c8 weblocks-stores-20201016-git src/store/clsql/weblocks-clsql.asd src/store/custom/weblocks-custom.asd src/store/memory/weblocks-memory.asd src/store/montezuma/weblocks-montezuma.asd src/store/perec/weblocks-perec.asd src/store/prevalence/weblocks-prevalence.asd weblocks-store-test.asd weblocks-stores.asd
weblocks-tree-widget http://beta.quicklisp.org/archive/weblocks-tree-widget/2014-12-17/weblocks-tree-widget-20141217-git.tgz 10153 5b1d46fcd648d745bbaff396d3f36146 3c7ebac35e2c49ca5f288b84449f247475450854 weblocks-tree-widget-20141217-git weblocks-tree-widget.asd
weblocks-utils http://beta.quicklisp.org/archive/weblocks-utils/2017-01-24/weblocks-utils-20170124-git.tgz 15494 6434a0c9e0384261c38a620b4beeca8a d73a491d6787b8338f269427c1d0e740e5de042b weblocks-utils-20170124-git weblocks-utils.asd
websocket-driver http://beta.quicklisp.org/archive/websocket-driver/2019-01-07/websocket-driver-20190107-git.tgz 11394 d1504b09817ad229459d33120e9c52a1 7a704d461b3cde4dd89b4eab9d738a52bfcdae31 websocket-driver-20190107-git websocket-driver-base.asd websocket-driver-client.asd websocket-driver-server.asd websocket-driver.asd
weft http://beta.quicklisp.org/archive/weft/2018-02-28/weft-20180228-git.tgz 6282 ec7196f159294035d3c06b5723920058 d9ea5ff22d830c1f0deb6fd047e4b62ec280c74c weft-20180228-git weft.asd
westbrook http://beta.quicklisp.org/archive/westbrook/2018-01-31/westbrook-20180131-git.tgz 3249 43e514336921135f6fc3c1b3063eaf4b 97ed8af62728b92027a7321387a64b918475ca7c westbrook-20180131-git westbrook-tests.asd westbrook.asd
what3words http://beta.quicklisp.org/archive/what3words/2016-12-04/what3words-20161204-git.tgz 5600 54303b21497ffca394575c7376c8b9f3 7b37b1c4c32ab419d4f07cf6f1798f4a0b69b88f what3words-20161204-git what3words.asd
which http://beta.quicklisp.org/archive/which/2016-04-21/which-20160421-git.tgz 2063 d352101dca7f6e985c0e437bcdb6fe40 528a7fdbb3c1485e5685145fd0023ece6a9b32c5 which-20160421-git which-test.asd which.asd
whofields http://beta.quicklisp.org/archive/whofields/2018-08-31/whofields-20180831-git.tgz 5512 5679091e30971df0d7aae59146a3b1c6 520ef39d46eed4734d891be27a44fadd80b54ae4 whofields-20180831-git whofields.asd
wild-package-inferred-system http://beta.quicklisp.org/archive/wild-package-inferred-system/2021-05-31/wild-package-inferred-system-20210531-git.tgz 9674 4744e08ef5f50da04a429ae9af60bb80 6e8706a7d2208983ccf0d553ed201b9efb893b59 wild-package-inferred-system-20210531-git test/foo-wild/foo-wild.asd wild-package-inferred-system.asd
winhttp http://beta.quicklisp.org/archive/winhttp/2020-06-10/winhttp-20200610-git.tgz 15445 d241af100e613f3b24a800f35ed94944 e93d35b56fbd44ae4ea39074038776bf1b758b4a winhttp-20200610-git winhttp.asd
winlock http://beta.quicklisp.org/archive/winlock/2019-11-30/winlock-20191130-git.tgz 3577 f637484323c2b64fc680325bcadef786 fc646ddf5184afcbf5c84370b68087120a63e7bd winlock-20191130-git winlock.asd
with-c-syntax http://beta.quicklisp.org/archive/with-c-syntax/2021-05-31/with-c-syntax-20210531-git.tgz 64776 c93f4c94929d5ad2e3e0bbd510ba6aa8 ce999fa6ccd7d7cb96a5853df6aed8a0bfe06e95 with-c-syntax-20210531-git with-c-syntax-test.asd with-c-syntax.asd
with-cached-reader-conditionals http://beta.quicklisp.org/archive/with-cached-reader-conditionals/2017-06-30/with-cached-reader-conditionals-20170630-git.tgz 2457 16049564ecfdb5a6db9edd1bdcf0a921 4be7101d32ea9f59c716ce5b822a58e0bb124a05 with-cached-reader-conditionals-20170630-git with-cached-reader-conditionals.asd
with-contexts http://beta.quicklisp.org/archive/with-contexts/2021-02-28/with-contexts-20210228-git.tgz 27949 8d9f6572f2d4bb9691f50848bb1687a3 9bb8336e910e3a5306790384fbd9da516544672a with-contexts-20210228-git with-contexts.asd
with-output-to-stream http://beta.quicklisp.org/archive/with-output-to-stream/2019-10-07/with-output-to-stream_1.0.tgz 4266 d9bee5027d6c04bcd7f63f4c48706f5c a3b23295277552cf9dd81191edd50ed8019a1c67 with-output-to-stream_1.0 tests/with-output-to-stream_tests.asd with-output-to-stream.asd
with-setf http://beta.quicklisp.org/archive/with-setf/2018-02-28/with-setf-release-quicklisp-df3eed9d-git.tgz 2558 9218b3765e9e2fd26a7f103e63fc89fe a6db3e7df0bb1b289e2134d8668be0ff51b4389e with-setf-release-quicklisp-df3eed9d-git with-setf.asd
with-shadowed-bindings http://beta.quicklisp.org/archive/with-shadowed-bindings/2019-01-07/with-shadowed-bindings-1.0.tgz 5127 1f583c77f5d2c67c934ab33d2ba810c3 a786cd36c9aee7348f63f7d6fe482225a728ccb2 with-shadowed-bindings-1.0 tests/with-shadowed-bindings_tests.asd with-shadowed-bindings.asd
with-user-abort http://beta.quicklisp.org/archive/with-user-abort/2021-04-11/with-user-abort-20210411-git.tgz 1039 20cda05e4ec16ebd956096c2c88482f0 ab4043fcdb8735f97a17a243deb9936ac6eaae81 with-user-abort-20210411-git with-user-abort.asd
woo http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz 225553 9bbd96692e37dd61195f8bd57a654c65 96464a0cd1f841617e16aa9085e4ddba57daafa7 woo-20200427-git clack-handler-woo.asd woo-test.asd woo.asd
wookie http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz 29738 5e5d6537637312919fd528bb1d0c1eba 660d6b8277d9bc3a82aeb0db51bb2d51e71a3678 wookie-20191130-git wookie.asd
wordnet http://beta.quicklisp.org/archive/wordnet/2020-06-10/wordnet-20200610-git.tgz 10485232 4ac82106af2ebf6e2f754a4c3f78be3e 277f083bc115b2f6e8b1ede7b9b6214603426352 wordnet-20200610-git wordnet.asd
workout-timer http://beta.quicklisp.org/archive/workout-timer/2017-12-27/workout-timer-20171227-git.tgz 319162 b5dc79cd91c6d2a4aed6f67a244bff9a d99a5b7d16a1b94b17b0c248b5bb4e1873d7dff8 workout-timer-20171227-git workout-timer.asd
wu-decimal http://beta.quicklisp.org/archive/wu-decimal/2013-01-28/wu-decimal-20130128-git.tgz 6244 e0676ea5ba7ce65e4d80cc5128c1e668 b37c145557a1b9541f9219629c1091976dc2656f wu-decimal-20130128-git wu-decimal.asd
wu-sugar http://beta.quicklisp.org/archive/wu-sugar/2016-08-25/wu-sugar-20160825-git.tgz 3555 ef7aec6772cda55c04bf117a2a8cb4ac a2dde559d7e28bdaa93dfcf0e1f080447873c9d3 wu-sugar-20160825-git wu-sugar.asd
wuwei http://beta.quicklisp.org/archive/wuwei/2019-02-02/wuwei-20190202-git.tgz 140953 e389c75644b0a8a5900e21e0daecfcd8 da295007ea36414aabdd389c4fff3aa3a40b10ce wuwei-20190202-git wuwei.asd
x.let-star http://beta.quicklisp.org/archive/x.let-star/2020-03-25/x.let-star-20200325-git.tgz 7940 c6984b5a4e60a3a88d088ebe69e840b0 c66f72bf9b9e42964818dcc75c322203a262c52b x.let-star-20200325-git x.let-star.asd
xarray http://beta.quicklisp.org/archive/xarray/2014-01-13/xarray-20140113-git.tgz 26181 477bb421f87f6de0236065bf81949a32 5466b0687c3ac4a6466d2761b9d29510658785bb xarray-20140113-git xarray-test.asd xarray.asd
xcat http://beta.quicklisp.org/archive/xcat/2020-09-25/xcat-20200925-git.tgz 7671 ae0f3e8c401266ef9a56245b4021112f 2ca9c1cd50d20186d605ecb9a3ebd451ff5744cf xcat-20200925-git xcat.asd
xecto http://beta.quicklisp.org/archive/xecto/2015-12-18/xecto-20151218-git.tgz 29803 f770596c9d7a9ce86fb2d7952bc9e40e 489a3f39048451dfaab304a73681d5f8ce779a8b xecto-20151218-git xecto.asd
xhtmlambda http://beta.quicklisp.org/archive/xhtmlambda/2021-01-24/xhtmlambda-20210124-git.tgz 54206 cbfb19de2ae920f29b3a382a676feaa0 82e4806269ec825192b485c096feded0035014d5 xhtmlambda-20210124-git xhtmlambda.asd
xhtmlgen http://beta.quicklisp.org/archive/xhtmlgen/2017-01-24/xhtmlgen-20170124-git.tgz 4264 17fc90eab99b1fb0cf6335065e84c109 bbb503e316f419d7cffb2f3f648e0227bc61cb15 xhtmlgen-20170124-git xhtmlgen.asd
xlsx http://beta.quicklisp.org/archive/xlsx/2018-07-11/xlsx-20180711-git.tgz 3050 10133595e8973f9acdd0301c00d04f8c 5a5dc8579c348ffae3625fbb088aa4ee008e3eaf xlsx-20180711-git xlsx.asd
xlunit http://beta.quicklisp.org/archive/xlunit/2015-09-23/xlunit-20150923-git.tgz 9484 1c673862f57e998c7a7b8e74de0d0c92 de0142632a8227f339178055eb5543a0c8dce789 xlunit-20150923-git xlunit.asd
xml-emitter http://beta.quicklisp.org/archive/xml-emitter/2020-02-18/xml-emitter-20200218-git.tgz 8002 1abb086f02a4dacae939ce4e2dac6e39 676372deeff3a4ce69f21c4905d2c57974caf0e5 xml-emitter-20200218-git xml-emitter.asd
xml-mop http://beta.quicklisp.org/archive/xml-mop/2011-04-18/xml-mop-20110418-git.tgz 15391 028fde76c0d121865cb5167962a4b78b f5fb4a43a2defedb352b072be94d4c22f433dfc3 xml-mop-20110418-git xml-mop.asd
xml.location http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz 31507 90cf4fd2450ba562c7f9657391dacb1d e8ac43311d5a362c9e39e5e52fc46b1df2bc11ef xml.location-20200325-git xml.location-and-local-time.asd xml.location.asd
xmls http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz 113037 2462bab4a5d74e87ef7bdef41cd06dc8 80181e6c0ac15a4a41eb352b50b871679c65ab4d xmls-3.0.2 xmls.asd
xptest http://beta.quicklisp.org/archive/xptest/2015-09-23/xptest-20150923-git.tgz 6874 61f6ff5cc44cf8da5d8036084a31fbc3 09eebbc1fa611a9b628c9d2de12f6c81bf4420b8 xptest-20150923-git xptest.asd
xsubseq http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz 4006 960bb8f329649b6e4b820e065e6b38e8 77ef22871e590349e22e892cd8f80121db1b1566 xsubseq-20170830-git xsubseq-test.asd xsubseq.asd
xuriella http://beta.quicklisp.org/archive/xuriella/2012-03-05/xuriella-20120305-git.tgz 122204 55eb6e13da338bc47b640a2767b0bd20 49899b4682e3a72322c69feb21ced8a109675833 xuriella-20120305-git xuriella.asd
yaclml http://beta.quicklisp.org/archive/yaclml/2018-01-31/yaclml-20180131-git.tgz 32006 b3dba0cd334aef4fc75b465b2b31a94a 76172119d82a08b4483721cc6746228c8d9b8079 yaclml-20180131-git yaclml.asd
yason http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz 27918 7c3231635aa494f1721273713ea8c56a ac532785adb017b0eecdd6dfa9b3ab1add7100f9 yason-v0.7.8 yason.asd
youtube http://beta.quicklisp.org/archive/youtube/2019-12-27/youtube-20191227-git.tgz 3054 36af0a0118f51e4e57d1dee28f720a44 dc8b73c9c8d14ba29827baf8ef5bda3b0a25d275 youtube-20191227-git youtube.asd
zacl http://beta.quicklisp.org/archive/zacl/2021-02-28/zacl-20210228-git.tgz 23041 4e9c3dbd99370b4dbea6d72d070a241b 223c73c37ddc2e77f928798f21214ba41581b79a zacl-20210228-git zacl.asd
zaws http://beta.quicklisp.org/archive/zaws/2015-04-07/zaws-20150407-git.tgz 13832 13ada144680e2f5d111df8f0a0217d99 8d181469163fac8b77280c98c5ab28ca7098fe4b zaws-20150407-git xml/zaws-xml.asd zaws.asd
zbucium http://beta.quicklisp.org/archive/zbucium/2019-07-10/zbucium-20190710-git.tgz 4503 90b10e33e3fa82d42174016881d557bc d0e1df0c25eb87e1e0e66af27fd2dac5b20c7fb4 zbucium-20190710-git zbucium.asd
zcdb http://beta.quicklisp.org/archive/zcdb/2015-04-07/zcdb-1.0.4.tgz 7393 e924c2b419f9875364cd662184fc55d1 db5f7a8e8a22f858794b64ef255f7dea015835f8 zcdb-1.0.4 zcdb.asd
zenekindarl http://beta.quicklisp.org/archive/zenekindarl/2017-11-30/zenekindarl-20171130-git.tgz 17395 2c8e9002b6434d92761ced8e187c5903 0a732633d8173828feec7a8b5eaab103de638e7f zenekindarl-20171130-git zenekindarl-test.asd zenekindarl.asd
zip http://beta.quicklisp.org/archive/zip/2015-06-08/zip-20150608-git.tgz 20940 5be194863779dcbd3c83e07524392f14 a8fa33dc2a19df78942e02c0e35a78f054992bd7 zip-20150608-git zip.asd
zippy http://beta.quicklisp.org/archive/zippy/2021-04-11/zippy-20210411-git.tgz 98024 6bf57a66b267ed3ebb97520ffe4b107e 01a82c7a80a799742c37951c427f69125ac6f0d7 zippy-20210411-git zippy.asd
ziz http://beta.quicklisp.org/archive/ziz/2019-10-07/ziz-20191007-git.tgz 3184 24b32be09b15855c77b6fddc2d6d6ea3 f9d30703cd655564a12063a77b466930cd52a41d ziz-20191007-git ziz.asd
zlib http://beta.quicklisp.org/archive/zlib/2017-04-03/zlib-20170403-git.tgz 9104 67450036249df47288f4a8330ea28f57 498b41ab3e46c63d5f0ae3ece8eeb47c95009bad zlib-20170403-git zlib.asd
zpb-exif http://beta.quicklisp.org/archive/zpb-exif/2021-01-24/zpb-exif-release-1.2.5.tgz 14751 195389d99058243d1022f2c31facf0e7 bef28435ef937710fad945636aae240d5b236fe7 zpb-exif-release-1.2.5 zpb-exif.asd
zpb-ttf http://beta.quicklisp.org/archive/zpb-ttf/2021-01-24/zpb-ttf-release-1.0.4.tgz 45564 b66f67b0a1fc347657d4d71ddb304920 689de6a6535a6a5a005039c7f2d2248f41ef2ccb zpb-ttf-release-1.0.4 zpb-ttf.asd
zpng http://beta.quicklisp.org/archive/zpng/2015-04-07/zpng-1.2.2.tgz 40141 0a208f4ce0087ef578d477341d5f4078 0374a5e03f266152dea01c6fff9839798725697c zpng-1.2.2 zpng.asd
zs3 http://beta.quicklisp.org/archive/zs3/2019-10-07/zs3-1.3.3.tgz 57149 5ea13aa7a490758882e245c3f8bb063e 8b3bcc4f7a524ca09f3b6fa6600c510e1f2d9e3b zs3-1.3.3 zs3.asd
zsort http://beta.quicklisp.org/archive/zsort/2012-05-20/zsort-20120520-git.tgz 6259 08689032aed3f283c9ab84b536d0aca3 5b8b68c44983d394a8328f30cdc2b8fb6c96331a zsort-20120520-git zsort.asd
| 501,387 | Common Lisp | .l | 2,051 | 243.459776 | 15,181 | 0.867025 | tabuyos/quicklisp | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | cea1baece763562d217620695d80df0a358e778945379b2058791ec5b097cf2b | 40,754 | [
-1
] |
40,770 | languages.lisp | psteeve_fake-cl/languages.lisp | (defpackage :fake-cl.languages
(:use :common-lisp)
(:export *programming-languages*
*functional-languages*))
(in-package :fake-cl.languages)
(defvar *programming-languages* '("1C:Enterprise programming language" "A# .NET" "A-0 System" "A+" "A++" "ABAP"
"ABC" "ABC ALGOL" "ACC" "Accent"
"Ace DASL (Distributed Application Specification Language)" "Action!"
"ActionScript" "Actor" "Ada" "Adenine" "Agda" "Agilent VEE" "Agora" "AIMMS"
"Aldor" "Alef" "ALF" "ALGOL 58" "ALGOL 60" "ALGOL 68" "ALGOL W" "Alice"
"Alma-0" "AmbientTalk" "Amiga E" "AMOS" "AMPL" "AngelScript" "Apex" "APL"
"App Inventor for Android's visual block language" "AppleScript" "APT" "Arc"
"ARexx" "Argus" "Assembly language" "AutoHotkey" "AutoLISP / Visual LISP"
"Averest" "AWK" "Axum" "B" "Babbage" "Ballerina" "Bash" "BASIC" "bc" "BCPL"
"BeanShell" "Batch file (Windows/MS-DOS)" "Bertrand" "BETA" "BLISS" "Blockly"
"BlooP" "Boo" "Boomerang" "Bosque" "Bourne shell (including bash and ksh)" "C"
"C-- (C minus minus)" "C++ (C plus plus) – ISO/IEC 14882" "C*"
"C# (C sharp) – ISO/IEC 23270" "C/AL" "Caché ObjectScript" "C Shell (csh)"
"Caml" "Cayenne" "CDuce" "Cecil" "Cesil" "Céu" "Ceylon" "CFEngine" "Cg" "Ch"
"Chapel" "Charm" "CHILL" "CHIP-8" "chomski" "ChucK" "Cilk" "Citrine"
"CL (IBM)" "Claire" "Clarion" "Clean" "Clipper" "CLIPS" "CLIST" "Clojure"
"CLU" "CMS-2" "COBOL – ISO/IEC 1989" "CobolScript – COBOL Scripting language"
"Cobra" "CoffeeScript" "ColdFusion" "COMAL"
"Combined Programming Language (CPL)" "COMIT"
"Common Intermediate Language (CIL)" "Common Lisp (also known as CL)"
"COMPASS" "Component Pascal" "Constraint Handling Rules (CHR)" "COMTRAN"
"Cool" "Coq" "Coral 66" "CorVision" "COWSEL" "CPL" "Cryptol" "Crystal"
"Csound" "Cuneiform" "Curl" "Curry" "Cybil" "Cyclone" "Cython" "D"
"DASL (Datapoint's Advanced Systems Language)" "Dart" "Darwin" "DataFlex"
"Datalog" "DATATRIEVE" "dBase" "dc" "DCL" "DinkC" "DIBOL" "Dog" "Draco"
"DRAKON" "Dylan" "DYNAMO" "DAX (Data Analysis Expressions)" "E" "Ease"
"Easy PL/I" "EASYTRIEVE PLUS" "eC" "ECMAScript" "Edinburgh IMP" "EGL" "Eiffel"
"ELAN" "Elixir" "Elm" "Emacs Lisp" "Emerald" "Epigram"
"EPL (Easy Programming Language)" "EPL (Eltron Programming Language)" "Erlang"
"es" "Escher" "ESPOL" "Esterel" "Etoys" "Euclid" "Euler" "Euphoria"
"EusLisp Robot Programming Language" "CMS EXEC (EXEC)" "EXEC 2"
"Executable UML" "Ezhil" "F" "F#" "F*" "Factor" "Fantom" "FAUST" "FFP" "fish"
"Fjölnir" "FL" "Flavors" "Flex" "FlooP" "FLOW-MATIC" "FOCAL" "FOCUS" "FOIL"
"FORMAC" "@Formula" "Forth" "Fortran – ISO/IEC 1539" "Fortress" "FP"
"Franz Lisp" "Futhark" "F-Script" "Game Maker Language" "GameMonkey Script"
"GAMS" "GAP" "G-code" "GDScript" "Genie" "GDL" "GEORGE" "GLSL" "GNU E" "Go"
"Go!" "GOAL" "Gödel" "Golo" "GOM (Good Old Mad)" "Google Apps Script" "Gosu"
"GOTRAN" "GPSS" "GraphTalk" "GRASS" "Grasshopper" "Groovy" "Hack" "HAGGIS"
"HAL/S" "Halide (programming language)" "Hamilton C shell" "Harbour"
"Hartmann pipelines" "Haskell" "Haxe" "Hermes" "High Level Assembly" "HLSL"
"Hollywood" "HolyC" "Hop" "Hopscotch" "Hope" "Hugo" "Hume" "HyperTalk" "Io"
"Icon" "IBM Basic assembly language" "IBM HAScript" "IBM Informix-4GL"
"IBM RPG" "IDL" "Idris" "Inform" "J" "J#" "J++" "JADE" "JAL"
"Janus (concurrent constraint programming language)"
"Janus (time-reversible computing programming language)" "JASS" "Java"
"JavaFX Script" "JavaScript" "Jess (programming language)" "JCL" "JEAN"
"Join Java" "JOSS" "Joule" "JOVIAL" "Joy" "JScript" "JScript .NET" "Julia"
"Jython" "K" "Kaleidoscope" "Karel" "KEE" "Kixtart" "Klerer-May System" "KIF"
"Kojo" "Kotlin" "KRC" "KRL" "KRL (KUKA Robot Language)" "KRYPTON"
"Korn shell (ksh)" "Kodu" "Kv" "LabVIEW" "Ladder" "LANSA" "Lasso" "Lava"
"LC-3" "Legoscript" "LIL" "LilyPond" "Limbo" "Limnor" "LINC" "Lingo" "LINQ"
"LIS" "LISA" "Lisp – ISO/IEC 13816" "Lite-C" "Lithe" "Little b" "LLL" "Logo"
"Logtalk" "LotusScript" "LPC" "LSE" "LSL" "LiveCode" "LiveScript" "Lua"
"Lucid" "Lustre" "LYaPAS" "Lynx" "M2001" "M4" "M#" "Machine code"
"MAD (Michigan Algorithm Decoder)" "MAD/I" "Magik" "Magma" "Maude system"
"Máni" "Maple" "MAPPER (now part of BIS)" "MARK-IV (now VISION:BUILDER)"
"Mary" "MASM Microsoft Assembly x86" "MATH-MATIC" "Mathematica" "MATLAB"
"Maxima (see also Macsyma)"
"Max (Max Msp – Graphical Programming Environment)"
"MaxScript internal language 3D Studio Max" "Maya (MEL)" "MDL" "Mercury"
"Mesa" "Metafont" "MHEG-5 (Interactive TV programming language)" "Microcode"
"MicroScript" "MIIS" "Milk (programming language)" "MIMIC" "Mirah" "Miranda"
"MIVA Script" "MIVA Script" "ML" "Model 204" "Modelica" "Modula" "Modula-2"
"Modula-3" "Mohol" "MOO" "Mortran" "Mouse" "MPD" "Mathcad" "MSL" "MUMPS"
"MuPAD" "Mutan" "Mystic Programming Language (MPL)" "NASM" "Napier88" "Neko"
"Nemerle" "NESL" "Net.Data" "NetLogo" "NetRexx" "NewLISP" "NEWP" "Newspeak"
"NewtonScript" "Nial" "Nice" "Nickle (NITIN)" "Nim" "NPL"
"Not eXactly C (NXC)" "Not Quite C (NQC)" "NSIS" "Nu" "NWScript" "NXT-G"
"o:XML" "Oak" "Oberon" "OBJ2" "Object Lisp" "ObjectLOGO" "Object REXX"
"Object Pascal" "Objective-C" "Objective-J" "Obliq" "OCaml" "occam" "occam-π"
"Octave" "OmniMark" "Opa" "Opal" "OpenCL" "OpenEdge ABL" "OPL" "OpenVera"
"OPS5" "OptimJ" "Orc" "ORCA/Modula-2" "Oriel" "Orwell" "Oxygene" "Oz" "P" "P4"
"P′′" "ParaSail (programming language)" "PARI/GP" "Pascal – ISO 7185"
"Pascal Script" "PCASTL" "PCF" "PEARL" "PeopleCode" "Perl" "PDL" "Pharo" "PHP"
"Pico" "Picolisp" "Pict" "Pig (programming tool)" "Pike" "PILOT" "Pipelines"
"Pizza" "PL-11" "PL/0" "PL/B" "PL/C" "PL/I – ISO 6160" "PL/M" "PL/P" "PL/SQL"
"PL360" "PLANC" "Plankalkül" "Planner" "PLEX" "PLEXIL" "Plus" "POP-11" "POP-2"
"PostScript" "PortablE" "POV-Ray SDL" "Powerhouse"
"PowerBuilder – 4GL GUI application generator from Sybase" "PowerShell" "PPL"
"Processing" "Processing.js" "Prograph" "PROIV" "Prolog" "PROMAL" "Promela"
"PROSE modeling language" "PROTEL" "ProvideX" "Pro*C" "Pure" "Pure Data"
"PureScript" "Python" "Q (programming language from Kx Systems)"
"Q# (Microsoft programming language)" "Qalb" "QtScript" "QuakeC" "QPL"
"Qbasic" ".QL" "R" "R++" "Racket" "Raku" "RAPID" "Rapira" "Ratfiv" "Ratfor"
"rc" "React" "React Native" "Reason" "REBOL" "Red" "Redcode" "REFAL" "REXX"
"Rlab" "ROOP" "RPG" "RPL" "RSL" "RTL/2" "Ruby" "Rust" "S" "S2" "S3" "S-Lang"
"S-PLUS" "SA-C" "SabreTalk" "SAIL" "SAM76" "SAS" "SASL" "Sather" "Sawzall"
"Scala" "Scheme" "Scilab" "Scratch" "Script.NET" "Sed" "Seed7" "Self"
"SenseTalk" "SequenceL" "Serpent" "SETL" "SIMPOL" "SIGNAL" "SiMPLE"
"SIMSCRIPT" "Simula" "Simulink" "Singularity" "SISAL" "SLIP" "SMALL"
"Smalltalk" "SML" "Strongtalk" "Snap!" "SNOBOL (SPITBOL)" "Snowball" "SOL"
"Solidity" "SOPHAEROS" "Source" "SPARK" "Speakeasy" "Speedcode" "SPIN" "SP/k"
"SPS" "SQL" "SQR" "Squeak" "Squirrel" "SR" "S/SL" "Starlogo" "Strand" "Stata"
"Stateflow" "Subtext" "SBL" "SuperCollider" "SuperTalk"
"Swift (Apple programming language)" "Swift (parallel scripting language)"
"SYMPL" "SystemVerilog" "T" "TACL" "TACPOL" "TADS" "TAL" "Tcl" "Tea" "TECO"
"TELCOMP" "TeX" "TEX" "TIE" "TMG, compiler-compiler" "Tom" "TOM" "Toi"
"Topspeed" "TPU" "Trac" "TTM" "T-SQL" "Transcript" "TTCN" "Turing" "TUTOR"
"TXL" "TypeScript" "Tynker" "Ubercode" "UCSD Pascal" "Umple" "Unicon"
"Uniface" "UNITY" "Unix shell" "UnrealScript" "Vala" "Verilog" "VHDL"
"Vim script" "Viper" "Visual Basic" "Visual Basic .NET" "Visual C++"
"Visual DataFlex" "Visual DialogScript" "Visual Fortran" "Visual FoxPro"
"Visual J++" "Visual LISP" "Visual Objects" "Visual Prolog" "VSXu"
"WATFIV, WATFOR" "WebAssembly" "WebDNA" "Whiley" "Winbatch" "Wolfram Language"
"Wyvern" "X++" "X10" "xBase" "xBase++" "XBL" "XC (targets XMOS architecture)"
"xHarbour" "XL" "Xojo" "XOTcl" "XOD (programming language)" "XPL" "XPL0"
"XQuery" "XSB" "XSharp" "XSLT" "Xtend" "Yorick" "YQL" "Yoix" "YUI"
"Z notation" "Zebra, ZPL, ZPL2" "Zeno" "ZetaLisp" "ZOPL" "Zsh" "ZPL" "Z++"))
(defvar *functional-languages* '(
"APL"
"Agda"
"Clean"
"Clojure"
"Coq"
"Cuneiform"
"Curry"
"Elixir"
"Elm"
"Erlang"
"F#"
"Futhark"
"Haskell"
"Hope"
"Idris"
"Joy"
"Kent Recursive Calculator"
"Lean (proof assistant)"
"Mercury"
"Miranda"
"PureScript"
"PureScript"
"Racket"
"ReasonML"
"Rust"
"SAC programming language"
"SASL"
"Scala"
"SequenceL"
"Swift"
"Ur"))
| 12,935 | Common Lisp | .lisp | 145 | 55.710345 | 112 | 0.43257 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 0264733d7c03123d4fcdd0e0b59d7b1c38fe20abab5a21ece65ea54227572b4c | 40,770 | [
-1
] |
40,771 | quotes.lisp | psteeve_fake-cl/quotes.lisp | (defpackage :fake-cl.quotes
(:use :common-lisp)
(:export *programming-quotes*))
(in-package :fake-cl.quotes)
(defvar *programming-quotes* '(
(:author "John McCarthy"
:quote "Lisp's core occupies some kind of
local optimum in the space of programming languages"))
| 333 | Common Lisp | .lisp | 8 | 31.875 | 73 | 0.608696 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 790d3e00fe913371c96383251feb793602d86efb0817d462b704ca6a3d3cba3d | 40,771 | [
-1
] |
40,772 | number.lisp | psteeve_fake-cl/number.lisp | (defpackage :fake-cl.number
(:use :common-lisp)
(:export :gen-positive-number
:][))
(in-package :fake-cl.number)
(defun gen-positive-number (n)
(let ((result (if (equal 0 n) 0 (random (abs n)))))
(if (and (> n 1) (equal result 0))
(gen-positive-number n)
result)))
(defun ][ (min max)
"Generate a positive number between min and max exclusively.
If min is same as max return min"
(labels ((between (result)
(if (> result (min min max))
result
(between (gen-positive-number (max min max))))))
(if (equal min max)
min
(between (gen-positive-number (max min max))))))
| 676 | Common Lisp | .lisp | 20 | 27.25 | 65 | 0.588055 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | eafe11ec64e0be35525ab65c918170429f34ccec8c31dcf67b523b0e4b42c283 | 40,772 | [
-1
] |
40,773 | fake-data.lisp | psteeve_fake-cl/fake-data.lisp | (in-package :fake-cl)
(defvar *first-name* '(
"Enzo"
"Lucas"
"Mathis"
"Nathan"
"Thomas"
"Hugo"
"Théo"
"Tom"
"Louis"
"Raphaël"
"Clément"
"Léo"
"Mathéo"
"Maxime"
"Alexandre"
"Antoine"
"Yanis"
"Paul"
"Baptiste"
"Alexis"
"Gabriel"
"Arthur"
"Jules"
"Ethan"
"Noah"
"Quentin"
"Axel"
"Evan"
"Mattéo"
"Romain"
"Valentin"
"Maxence"
"Noa"
"Adam"
"Nicolas"
"Julien"
"Mael"
"Pierre"
"Rayan"
"Victor"
"Mohamed"
"Adrien"
"Kylian"
"Sacha"
"Benjamin"
"Léa"
"Clara"
"Manon"
"Chloé"
"Camille"
"Ines"
"Sarah"
"Jade"
"Lola"
"Anaïs"
"Lucie"
"Océane"
"Lilou"
"Marie"
"Eva"
"Romane"
"Lisa"
"Zoe"
"Julie"
"Mathilde"
"Louise"
"Juliette"
"Clémence"
"Célia"
"Laura"
"Lena"
"Maëlys"
"Charlotte"
"Ambre"
"Maeva"
"Pauline"
"Lina"
"Jeanne"
"Lou"
"Noémie"
"Justine"
"Louna"
"Elisa"
"Alice"
"Emilie"
"Carla"
"Maëlle"
"Alicia"
"Mélissa"))
(defvar *last-name* '(
"Martin"
"Bernard"
"Dubois"
"Thomas"
"Robert"
"Richard"
"Petit"
"Durand"
"Leroy"
"Moreau"
"Simon"
"Laurent"
"Lefebvre"
"Michel"
"Garcia"
"David"
"Bertrand"
"Roux"
"Vincent"
"Fournier"
"Morel"
"Girard"
"Andre"
"Lefevre"
"Mercier"
"Dupont"
"Lambert"
"Bonnet"
"Francois"
"Martinez"
"Legrand"
"Garnier"
"Faure"
"Rousseau"
"Blanc"
"Guerin"
"Muller"
"Henry"
"Roussel"
"Nicolas"
"Perrin"
"Morin"
"Mathieu"
"Clement"
"Gauthier"
"Dumont"
"Lopez"
"Fontaine"
"Chevalier"
"Robin"
"Masson"
"Sanchez"
"Gerard"
"Nguyen"
"Boyer"
"Denis"
"Lemaire"
"Duval"
"Joly"
"Gautier"
"Roger"
"Roche"
"Roy"
"Noel"
"Meyer"
"Lucas"
"Meunier"
"Jean"
"Perez"
"Marchand"
"Dufour"
"Blanchard"
"Marie"
"Barbier"
"Brun"
"Dumas"
"Brunet"
"Schmitt"
"Leroux"
"Colin"
"Fernandez"
"Pierre"
"Renard"
"Arnaud"
"Rolland"
"Caron"
"Aubert"
"Giraud"
"Leclerc"
"Vidal"
"Bourgeois"
"Renaud"
"Lemoine"
"Picard"
"Gaillard"
"Philippe"
"Leclercq"
"Lacroix"
"Fabre"
"Dupuis"
"Olivier"
"Rodriguez"
"Da silva"
"Hubert"
"Louis"
"Charles"
"Guillot"
"Riviere"
"Le gall"
"Guillaume"
"Adam"
"Rey"
"Moulin"
"Gonzalez"
"Berger"
"Lecomte"
"Menard"
"Fleury"
"Deschamps"
"Carpentier"
"Julien"
"Benoit"
"Paris"
"Maillard"
"Marchal"
"Aubry"
"Vasseur"
"Le roux"
"Renault"
"Jacquet"
"Collet"
"Prevost"
"Poirier"
"Charpentier"
"Royer"
"Huet"
"Baron"
"Dupuy"
"Pons"
"Paul"
"Laine"
"Carre"
"Breton"
"Remy"
"Schneider"
"Perrot"
"Guyot"
"Barre"
"Marty"
"Cousin"))
(defvar *phone-number* '("+33 6~a~a~a~a~a~a~a~a"
"+33 7~a~a~a~a~a~a~a~a"))
(defvar *free-email* '(
"gmail.com"
"yahoo.fr"
"hotmail.fr"))
(defvar *paris-metros* '(
"Wagram"
"Voltaire"
"Volontaires"
"Villiers"
"Villejuif"
"Villejuif"
"Villejuif"
"Victor Hugo"
"Verdun-Sud"
"Vavin"
"Vaugirard"
"Varenne"
"Vaneau"
"Tuileries"
"Trocadéro"
"Trinité"
"Tolbiac"
"Ternes"
"Temple"
"Télégraphe"
"Sully – Morland"
"Strasbourg – Saint-Denis"
"Stalingrad"
"Solférino"
"Simplon"
"Sèvres"
"Sèvres – Babylone"
"Sentier"
"Ségur"
"Saint-Sulpice"
"Saint-Sébastien – Froissart"
"Saint-Placide"
"Saint-Philippe du Roule"
"Saint-Paul"
"Saint-Michel"
"Saint-Marcel"
"Saint-Mandé"
"Saint-Lazare"
"Saint-Jacques"
"Saint-Germain-des-Prés"
"Saint-Georges"
"Saint-François-Xavier"
"Saint-Fargeau"
"Saint-Denis – Université"
"Saint-Denis – Porte de Paris"
"Saint-Augustin"
"Saint-Ambroise"
"Rue Saint-Maur"
"Rue du Bac"
"Rue des Boulets"
"Rue de la Pompe"
"Rome"
"Robespierre"
"Riquet"
"Richelieu – Drouot"
"Richard-Lenoir"
"Reuilly – Diderot"
"République"
"Rennes"
"Réaumur – Sébastopol"
"Raspail Raspail"
"Ranelagh Ranelagh"
"Rambuteau Rambuteau"
"Quatre-Septembre Quatre-Septembre"
"Quai de la Rapée Quai de la Rapée"
"Quai de la Gare Quai de la Gare"
"Pyrénées Pyrénées"
"Pyramides Pyramides"
"Pré Saint-Gervais Pré Saint-Gervais"
"Porte Maillot Porte Maillot"
"Porte Dorée Porte Dorée"
"Porte des Lilas Porte des Lilas"
"Porte de Vincennes Porte de Vincennes"
"Porte de Versailles Porte de Versailles"
"Porte de Vanves Porte de Vanves"
"Porte de Saint-Ouen Porte de Saint-Ouen"
"Porte de Saint-Cloud Porte de Saint-Cloud"
"Porte de Pantin Porte de Pantin"
"Porte de Montreuil Porte de Montreuil"
"Porte de la Villette Porte de la Villette"
"Porte de la Chapelle Porte de la Chapelle"
"Porte de Clignancourt Porte de Clignancourt"
"Porte de Clichy Porte de Clichy"
"Porte de Choisy Porte de Choisy"
"Porte de Charenton Porte de Charenton"
"Porte de Champerret Porte de Champerret"
"Porte de Bagnolet Porte de Bagnolet"
"Porte Dauphine Porte Dauphine"
"Porte d'Orléans Porte d’Orléans"
"Porte d'Ivry Porte d’Ivry"
"Porte d'Italie Porte d’Italie"
"Porte d'Auteuil Porte d’Auteuil"
"Pont Neuf Pont Neuf"
"Pont Marie Pont Marie"
"Pont de Sèvres Pont de Sèvres"
"Pont de Neuilly Pont de Neuilly"
"Pont de Levallois – Bécon Pont de Levallois – Bécon"
"Poissonnière Poissonnière"
"Pointe du Lac Pointe du Lac PTL 8 1 Créteil 8 October 2011 Stade Dominique Duvauchelle"
"Plaisance Plaisance"
"Place Monge Place Monge"
"Place des Fêtes Place des Fêtes"
"Place de Clichy Place de Clichy"
"Place d'Italie Place d’Italie"
"Pigalle Pigalle"
"Pierre et Marie Curie Pierre et Marie Curie"
"Picpus Picpus"
"Philippe Auguste Philippe Auguste"
"Pernety Pernety"
"Pereire Pereire"
"Père Lachaise Père Lachaise"
"Pelleport Pelleport"
"Pasteur Pasteur"
"Passy Pasteur"
"Parmentier Parmentier"
"Palais Royal – Musée du Louvre Palais Royal – Musée du Louvre"
"Ourcq Ourcq "
"Opéra Opéra "
"Olympiades Olympiades "
"Odéon"
"Oberkampf"
"Notre-Dame-des-Champs"
"Notre-Dame-de-Lorette"
"Nationale"
"Nation"
"Mouton-Duvernet"
"Montparnasse – Bienvenüe"
"Montgallet Montgallet 12-03 8 1 12 5 May 1931 Promenade plantée"
"Monceau Miromesnil"
"Miromesnil Miromesnil"
"Mirabeau Mirabeau"
"Michel-Ange – Molitor Michel-Ange – Molitor"
"Michel-Ange – Auteuil Michel-Ange – Auteuil"
"Michel Bizot Michel Bizot"
"Ménilmontant Ménilmontant"
"Maubert-Mutualité Maubert-Mutualité"
"Marx Dormoy Marx Dormoy"
"Marcel Sembat"
"Marcadet – Poissonniers"
"Maraîchers"
"Malesherbes"
"Malakoff – Rue Étienne Dolet"
"Malakoff – Plateau de Vanves"
"Maisons-Alfort – Stade"
"Maisons-Alfort – Les Juilliottes"
"Maison Blanche"
"Mairie des Lilas"
"Mairie de Saint-Ouen"
"Mairie de Montrouge"
"Mairie de Montreuil"
"Mairie de Clichy"
"Mairie d'Ivry"
"Mairie d'Issy"
"Madeleine"
"Mabillon"
"Louvre – Rivoli"
"Lourmel"
"Louise Michel"
"Louis Blanc"
"Liège"
"Liberté"
"Les Sablons"
"Les Halles"
"Les Gobelins"
"Les Courtilles"
"Les Agnettes"
"Ledru-Rollin"
"Le Peletier"
"Le Kremlin-Bicêtre"
"Laumière"
"Lamarck – Caulaincourt"
"La Tour-Maubourg"
"La Muette"
"La Motte-Picquet – Grenelle"
"La Fourche"
"La Défense – Grande Arche"
"La Courneuve – 8 Mai 1945"
"La Chapelle"
"Kléber"
"Jussieu"
"Jules Joffrin"
"Jourdain"
"Javel – André Citroën"
"Jaurès"
"Jasmin"
"Jacques Bonsergent"
"Invalides"
"Iéna"
"Hôtel de Ville"
"Hoche"
"Havre – Caumartin"
"Guy Môquet"
"Grands Boulevards"
"Goncourt"
"Glacière"
"George V"
"Garibaldi"
"Gare du Nord"
"Gare de Lyon"
"Gare de l'Est"
"Gare d'Austerlitz"
"Gambetta"
"Gallieni"
"Gaîté"
"Gabriel Péri"
"Front Populaire"
"Franklin D. Roosevelt"
"Fort d'Aubervilliers"
"Filles du Calvaire"
"Félix Faure"
"Falguière"
"Faidherbe – Chaligny"
"Exelmans"
"Europe"
"Étienne Marcel"
"Esplanade de La Défense"
"Église de Pantin"
"Église d'Auteuil"
"Edgar Quinet"
"École Vétérinaire de Maisons-Alfort"
"École Militaire"
"Duroc"
"Dupleix"
"Dugommier"
"Denfert-Rochereau"
"Daumesnil"
"Danube"
"Croix de Chavaux"
"Crimée"
"Créteil – Université"
"Créteil – Préfecture"
"Créteil – L'Échat"
"Couronnes"
"Courcelles"
"Cour Saint-Émilion"
"Corvisart"
"Corentin Celton"
"Corentin Cariou"
"Convention"
"Concorde"
"Commerce"
"Colonel Fabien"
"Cluny – La Sorbonne"
"Cité"
"Chevaleret"
"Chemin Vert"
"Chaussée d'Antin – La Fayette"
"Châtillon – Montrouge"
"Montrouge 9 November 1976 "
"Châtelet"
"Château Rouge"
"Château-Landon"
"Château de Vincennes"
"Château d'Eau"
"Charonne"
"Charles Michels"
"Charles de Gaulle – Étoile"
"Charenton – Écoles"
"Chardon Lagache"
"Champs-Élysées – Clemenceau"
"Censier – Daubenton"
"Carrefour Pleyel"
"Cardinal Lemoine"
"Campo Formio"
"Cambronne"
"Cadet"
"Buzenval"
"Buttes Chaumont"
"Brochant"
"Bréguet – Sabin"
"Bourse"
"Boulogne – Pont de Saint-Cloud"
"Boulogne – Jean Jaurès"
"Boucicaut"
"Botzaris"
"Bonne Nouvelle"
"Bolivar"
"Boissière"
"Bobigny – Pantin – Raymond Queneau"
"Bobigny – Pablo Picasso"
"Blanche"
"Bir-Hakeim"
"Billancourt"
"Bibliothèque François Mitterrand"
"Bercy"
"Bérault"
"Belleville"
"Bel-Air"
"Bastille"
"Basilique de Saint-Denis"
"Barbès – Rochechouart"
"Balard"
"Bagneux"
"Avron"
"Avenue Émile Zola"
"Aubervilliers – Pantin – Quatre Chemins"
"Assemblée Nationale"
"Arts et Métiers"
"Argentine"
"Anvers"
"Anatole France"
"Alma – Marceau"
"Alexandre Dumas"
"Alésia"
"Abbesses"))
| 21,789 | Common Lisp | .lisp | 554 | 14.308664 | 113 | 0.292574 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 10571c65e71d64a5c8ca8e181a3188c67c54bb40fa9252803ebb56d84ae37e0f | 40,773 | [
-1
] |
40,774 | fake-cl.lisp | psteeve_fake-cl/fake-cl.lisp | (defpackage :fake-cl
(:use
:common-lisp
:faker.lorem ;;; rename to fake-cl.lorem
:fake-cl.medecin
:fake-cl.languages
:fake-cl.country
:fake-cl.number
:fake-cl.list
:fake-cl.phone
:uuid
:str)
(:shadowing-import-from :str :words)
(:export
:gen-uuid
:firstname
:lastname
:name
:email
:phone
:functional-language
:sentence
:sentences
:paris-metro
:a-word
:some-words
:bool
:medecin-specialist
:language
:country
:list-of))
(in-package :fake-cl)
(defun firstname ()
(fake-cl.list:make-length-based-random *first-name*))
(defun lastname ()
(fake-cl.list:make-length-based-random *last-name*))
(defun name ()
(format nil "~a ~a" (firstname) (lastname)))
(defun paris-metro ()
(fake-cl.list:make-length-based-random *paris-metros*))
(defun phone ()
(make-phone-number *phone-number*))
(defun email ()
(format nil "~a.~a@~a"
(firstname)
(lastname)
(fake-cl.list:make-length-based-random *free-email*)))
(defun medecin-specialist ()
(fake-cl.list:make-length-based-random *specialities*))
(defun language ()
(fake-cl.list:make-length-based-random *programming-languages*))
(defun functional-language ()
(fake-cl.list:make-length-based-random *functional-languages*))
(defun random-from-list (list &optional (n 0))
(fake-cl.list:-random-from-list list n))
(defun country ()
(fake-cl.list:make-length-based-random *countries*))
(defun sentence ()
(faker.lorem:paragraph))
(defun sentences (&optional (n 1) (number-of-word 30))
(faker.lorem:paragraphs n number-of-word))
(defun a-word ()
(faker.lorem:word))
(defun some-words (&optional (n 1))
(faker.lorem:words n))
(defun bool ()
(nth (random 2) '(t nil)))
(defun gen-uuid ()
(string-downcase (format nil "~a" (uuid:make-v4-uuid))))
| 1,842 | Common Lisp | .lisp | 69 | 23.231884 | 66 | 0.68244 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 82d15bd37ab22a35cce7d7bdf36bebf3832698752766f9b684801ecf024306f0 | 40,774 | [
-1
] |
40,775 | country.lisp | psteeve_fake-cl/country.lisp | (defpackage :fake-cl.country
(:use :common-lisp)
(:export *countries*))
(in-package :fake-cl.country)
(defvar *countries* '(
"Afghanistan"
"Albania"
"Algeria"
"Andorra"
"Angola"
"Antigua and Barbuda"
"Argentina"
"Armenia"
"Australia"
"Austria"
"Azerbaijan"
"Bahamas"
"Bahrain"
"Bangladesh"
"Barbados"
"Belarus"
"Belgium"
"Belize"
"Benin"
"Bhutan"
"Bolivia"
"Bosnia and Herzegovina"
"Botswana"
"Brazil"
"Brunei"
"Bulgaria"
"Burkina Faso"
"Burundi"
"Cabo Verde"
"Cambodia"
"Cameroon"
"Canada"
"Central African Republic (CAR)"
"Chad"
"Chile"
"China"
"Colombia"
"Comoros"
"Congo, Democratic Republic of the"
"Congo, Republic of the"
"Costa Rica"
"Cote d'Ivoire"
"Croatia"
"Cuba"
"Cyprus"
"Czechia"
"Denmark"
"Djibouti"
"Dominica"
"Dominican Republic"
"Ecuador"
"Egypt"
"El Salvador"
"Equatorial Guinea"
"Eritrea"
"Estonia"
"Eswatini (formerly Swaziland)"
"Ethiopia"
"Fiji"
"Finland"
"France"
"Gabon"
"Gambia"
"Georgia"
"Germany"
"Ghana"
"Greece"
"Grenada"
"Guatemala"
"Guinea"
"Guinea-Bissau"
"Guyana"
"Haiti"
"Honduras"
"Hungary"
"Iceland"
"India"
"Indonesia"
"Iran"
"Iraq"
"Ireland"
"Israel"
"Italy"
"Jamaica"
"Japan"
"Jordan"
"Kazakhstan"
"Kenya"
"Kiribati"
"Kosovo"
"Kuwait"
"Kyrgyzstan"
"Laos"
"Latvia"
"Lebanon"
"Lesotho"
"Liberia"
"Libya"
"Liechtenstein"
"Lithuania"
"Luxembourg"
"Madagascar"
"Malawi"
"Malaysia"
"Maldives"
"Mali"
"Malta"
"Marshall Islands"
"Mauritania"
"Mauritius"
"Mexico"
"Micronesia"
"Moldova"
"Monaco"
"Mongolia"
"Montenegro"
"Morocco"
"Mozambique"
"Myanmar (formerly Burma)"
"Namibia"
"Nauru"
"Nepal"
"Netherlands"
"New Zealand"
"Nicaragua"
"Niger"
"Nigeria"
"North Korea"
"North Macedonia (formerly Macedonia)"
"Norway"
"Oman"
"Pakistan"
"Palau"
"Palestine"
"Panama"
"Papua New Guinea"
"Paraguay"
"Peru"
"Philippines"
"Poland"
"Portugal"
"Qatar"
"Romania"
"Russia"
"Rwanda"
"Saint Kitts and Nevis"
"Saint Lucia"
"Saint Vincent and the Grenadines"
"Samoa"
"San Marino"
"Sao Tome and Principe"
"Saudi Arabia"
"Senegal"
"Serbia"
"Seychelles"
"Sierra Leone"
"Singapore"
"Slovakia"
"Slovenia"
"Solomon Islands"
"Somalia"
"South Africa"
"South Korea"
"South Sudan"
"Spain"
"Sri Lanka"
"Sudan"
"Suriname"
"Sweden"
"Switzerland"
"Syria"
"Taiwan"
"Tajikistan"
"Tanzania"
"Thailand"
"Timor-Leste"
"Togo"
"Tonga"
"Trinidad and Tobago"
"Tunisia"
"Turkey"
"Turkmenistan"
"Tuvalu"
"Uganda"
"Ukraine"
"United Arab Emirates (UAE)"
"United Kingdom (UK)"
"United States of America (USA)"
"Uruguay"
"Uzbekistan"
"Vanuatu"
"Vatican City (Holy See)"
"Venezuela"
"Vietnam"
"Yemen"
"Zambia"
"Zimbabwe"))
| 6,847 | Common Lisp | .lisp | 202 | 11.415842 | 60 | 0.269567 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | f0c515471f43726b902eff4ab792136c4985d8975f72b0b9961f885ba7d10fe1 | 40,775 | [
-1
] |
40,776 | list.lisp | psteeve_fake-cl/list.lisp | (defpackage :fake-cl.list
(:use :common-lisp :fake-cl.number)
(:export
:list-of
:-random-from-list
:make-length-based-random))
(in-package :fake-cl.list)
(defun list-of (n generator)
"Return a list N values of type returned by GENERATOR.
If N is 0 return one value instead of a list."
(if (> n 0)
(loop for i to (1- n) collecting (funcall generator))
(funcall generator)))
(defun make-length-based-random (list)
(nth (random (length list)) list))
(defun -random-from-list (list &optional (n 0))
"Return a value randomly from LIST or a list of value of length N if N is > 0"
(let* ((length (length list))
(limit (min length n)))
(if (> n 0)
(let ((result nil))
(dotimes (i limit)
(push (nth (random length) list) result))
result)
(nth (random length) list))))
| 859 | Common Lisp | .lisp | 25 | 29.36 | 80 | 0.634176 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 47a0744f6f97faba7e63914dcc438e96b06663b177f4f001fe8b760ee42e571f | 40,776 | [
-1
] |
40,777 | medecin.lisp | psteeve_fake-cl/medecin.lisp | (defpackage :fake-cl.medecin
(:use :common-lisp)
(:export *specialities*))
(in-package :fake-cl.medecin)
(defvar *specialities* '("allergologie"
"andrologie"
"anesthésiologie"
"cardiologie"
"chirurgie"
"chirurgie cardiaque"
"chirurgie plastique, reconstructive et esthétique"
"chirurgie générale"
"chirurgie gynécologique"
"chirurgie maxillo-faciale"
"chirurgie oculaire"
"chirurgie orale"
"chirurgie pédiatrique"
"chirurgie thoracique"
"chirurgie vasculaire"
"chirurgie viscérale"
"neurochirurgie"
"dermatologie"
"endocrinologie"
"gastro-entérologie"
"gériatrie"
"gynécologie"
"hématologie"
"hépatologie"
"immunologie"
"infectiologie"
"médecine aiguë"
"médecine du travail"
"médecine d'urgence"
"médecine générale"
"médecine interne"
"médecine nucléaire"
"médecine palliative"
"médecine physique et de réadaptation"
"médecine préventive"
"néonatologie"
"néphrologie"
"neurologie"
"obstétrique"
"odontologie"
"oncologie"
"ophtalmologie"
"orthopédie"
"otorhinolaryngologie"
"pédiatrie"
"pneumologie"
"podologie"
"psychiatrie"
"radiologie"
"radiothérapie"
"rhumatologie"
"urologie"))
| 2,405 | Common Lisp | .lisp | 56 | 18.321429 | 76 | 0.3718 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 7208f519483b75d71756f6a5fa8255fa80a84eb4a9b72557ccc0c46ef53232e4 | 40,777 | [
-1
] |
40,778 | lorem.lisp | psteeve_fake-cl/lorem.lisp | (defpackage :faker.lorem
(:use :common-lisp)
(:export
:word
:words
:paragraph
:paragraphs))
(in-package :faker.lorem)
(defvar *prologue*
"Lorem ipsum dolor sit amet, consectetur adipiscing elit")
(defvar *words*
#("do" "eiusmod" "incididunt" "labore" "dolore" "aliqua" "erat" "bibendum"
"venenatis" "condimentum" "nisi" "natoque" "penatibus" "magnis" "dis"
"parturient" "montes" "aenean" "nam" "ante" "metus" "tempor" "nullam"
"suscipit" "justo" "posuere" "eleifend" "vulputate" "luctus" "accumsan"
"lacus" "dictum" "fusce" "euismod" "placerat" "elementum" "pharetra"
"maecenas" "ultricies" "suspendisse" "potenti" "pulvinar" "gravida"
"hendrerit" "interdum" "laoreet" "magna" "urna" "porttitor" "rhoncus"
"dolor" "non" "praesent" "nec" "pretium" "fringilla" "est" "nulla"
"facilisi" "etiam" "dignissim" "tincidunt" "lobortis" "vivamus" "augue"
"velit" "ligula" "ullamcorper" "malesuada" "a" "duis" "diam" "quam" "mattis"
"libero" "ornare" "arcu" "elit" "pellentesque" "habitant" "tristique"
"senectus" "netus" "ut" "sem" "eget" "viverra" "integer" "feugiat"
"scelerisque" "varius" "mollis" "consectetur" "lorem" "donec" "sapien"
"molestie" "semper" "auctor" "neque" "vitae" "tempus" "nisl" "ipsum"
"faucibus" "cras" "adipiscing" "enim" "eu" "turpis" "volutpat" "consequat"
"nunc" "congue" "leo" "vel" "porta" "fermentum" "et" "sollicitudin" "ac"
"orci" "phasellus" "egestas" "tellus" "rutrum" "mauris" "amet" "massa"
"nibh" "tortor" "id" "aliquet" "lectus" "proin" "aliquam" "vestibulum"
"blandit" "risus" "at" "ultrices" "mi" "facilisis" "sed" "morbi" "quis"
"commodo" "odio" "cursus" "in" "hac" "habitasse" "platea" "dictumst"
"quisque" "sagittis" "purus" "sit"))
(defun word () (aref *words* (random (length *words*))))
(defun words (n) (loop repeat n collect (word)))
(defun paragraph (&optional (number-of-word 30))
(with-output-to-string (s)
(princ *prologue* s)
(princ "." s)
(dotimes (i number-of-word)
(princ " " s)
(princ (aref *words* (random (length *words*))) s))
(when (> number-of-word 0) (princ "." s))))
(defun paragraphs (n &optional (number-of-word 30))
(with-output-to-string (s)
(dotimes (i n)
(princ (paragraph number-of-word) s)
(princ #\NewLine s))))
| 2,332 | Common Lisp | .lisp | 47 | 45.297872 | 80 | 0.64339 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 49b6ec9119c05d610b12ccbb7fea1874dd326fe5d760d968b86c29a553dbc9ed | 40,778 | [
-1
] |
40,779 | haiti.lisp | psteeve_fake-cl/haiti.lisp | (defpackage :fake-cl.haiti
(:use
:common-lisp
:fake-cl.number
:fake-cl.phone
:fake-cl.list)
(:export
*code-postal*
:city
:phone
:address))
(in-package :fake-cl.haiti)
(defparameter *code-postal* '(
(:code "HT4110" :commune "Gonaïves" :departement "artibonite")
(:code "HT4111" :commune "Petite Rivière de l’Artibonite" :departement "artibonite")
(:code "HT4120" :commune "Ennery" :departement "artibonite")
(:code "HT4130" :commune "L'Estère" :departement "artibonite")
(:code "HT4210" :commune "Gros Morne" :departement "artibonite")
(:code "HT4220" :commune "Terre-Neuve" :departement "artibonite")
(:code "HT4230" :commune "Anse-Rouge" :departement "artibonite")
(:code "HT4231" :commune "Sources Chaudes" :departement "artibonite")
(:code "HT4310" :commune "Saint-Marc" :departement "artibonite")
(:code "HT4311" :commune "Montrouis" :departement "artibonite")
(:code "HT4320" :commune "Verrettes" :departement "artibonite")
(:code "HT4321" :commune "Désarmes" :departement "artibonite")
(:code "HT4322" :commune "Deschapelles" :departement "artibonite")
(:code "HT4323" :commune "Liancourt" :departement "artibonite")
(:code "HT4410" :commune "Dessalines (Marchand-Dessalines)" :departement "artibonite")
(:code "HT4420" :commune "Petite-Rivière-de-l’Artibonite" :departement "artibonite")
(:code "HT4421" :commune "Savane à Roches" :departement "artibonite")
(:code "HT4430" :commune "Grande-Saline" :departement "artibonite")
(:code "HT4440" :commune "Desdunes" :departement "artibonite")
(:code "HT4510" :commune "Marmelade" :departement "artibonite")
(:code "HT4520" :commune "Saint-Michel-de-l’Attalaye)" :departement "artibonite")
(:code "HT5110" :commune " Hinche" :departement "centre")
(:code "HT5111" :commune "Los Palis" :departement "centre")
(:code "HT5120" :commune "Maïssade" :departement "centre")
(:code "HT5121" :commune "Louverture" :departement "centre")
(:code "HT5130" :commune "Thomonde" :departement "centre")
(:code "HT5140" :commune "Cerca-Carvajal" :departement "centre")
(:code "HT5210" :commune "Mirebalais" :departement "centre")
(:code "HT5211" :commune "Dufailly" :departement "centre")
(:code "HT5220" :commune "Saut-d’Eau" :departement "centre")
(:code "HT5230" :commune "Boucan-Carré" :departement "centre")
(:code "HT5231" :commune "Péligre" :departement "centre")
(:code "HT5310" :commune "Lascahobas" :departement "centre")
(:code "HT5320" :commune "Belladère" :departement "centre")
(:code "HT5321" :commune "Baptiste" :departement "centre")
(:code "HT5330" :commune "Savanette" :departement "centre")
(:code "HT5410" :commune "Cerca-la-Source" :departement "centre")
(:code "HT5411" :commune "Saltadère" :departement "centre")
(:code "HT5412" :commune "Lamielle" :departement "centre")
(:code "HT5420" :commune "Thomassique" :departement "centre")
(:code "HT7110" :commune "Jérémie" :departement "grand-anse")
(:code "HT7111" :commune "Léon" :departement "grand-anse")
(:code "HT7112" :commune "Marfranc" :departement "grand-anse")
(:code "HT7120" :commune "Abricots" :departement "grand-anse")
(:code "HT7130" :commune "Bonbon" :departement "grand-anse")
(:code "HT7140" :commune "Moron" :departement "grand-anse")
(:code "HT7141" :commune "Sources Chaudes" :departement "grand-anse")
(:code "HT7150" :commune "Chambellan" :departement "grand-anse")
(:code "HT7210" :commune "Anse-d’Hainault" :departement "grand-anse")
(:code "HT7220" :commune "Dame-Marie" :departement "grand-anse")
(:code "HT7221" :commune "Lesson" :departement "grand-anse")
(:code "HT7230" :commune "Les Irois" :departement "grand-anse")
(:code "HT7231" :commune "Carcasse" :departement "grand-anse")
(:code "HT7310" :commune "Corail" :departement "grand-anse")
(:code "HT7320" :commune "Roseaux" :departement "grand-anse")
(:code "HT7330" :commune "Beaumont" :departement "grand-anse")
(:code "HT7340" :commune "Pestel" :departement "grand-anse")
(:code "HT7410" :commune "Miragoâne" :departement "nippes")
(:code "HT7411" :commune "Saint-Michel-du-Sud" :departement "nippes")
(:code "HT7412" :commune "Paillant" :departement "nippes")
(:code "HT7413" :commune "Fonds-des-Nègres" :departement "nippes")
(:code "HT7420" :commune "Petite-Rivière-de-Nippes" :departement "nippes")
(:code "HT7510" :commune "Anse-à-Veau" :departement "nippes")
(:code "HT7520" :commune "Baradères" :departement "nippes")
(:code "HT7521" :commune "Grand-Boucan" :departement "nippes")
(:code "HT7530" :commune "Petit-Trou-de-Nippes" :departement "nippes")
(:code "HT7540" :commune "L’Asile" :departement "nippes")
(:code "HT1110" :commune "Cap-Haïtien (la ville)" :departement "nord")
(:code "HT1111" :commune "Bande-du-Nord (quartier du Cap)" :departement "nord")
(:code "HT1112" :commune "Labadie (quartier du Cap)" :departement "nord")
(:code "HT1113" :commune "Haut-du-Cap (quartier du Cap)" :departement "nord")
(:code "HT1114" :commune "Petite-Anse" :departement "nord")
(:code "HT1120" :commune "Quartier-Morin" :departement "nord")
(:code "HT1130" :commune "Limonade" :departement "nord")
(:code "HT1210" :commune "Acul-du-Nord" :departement "nord")
(:code "HT1211" :commune "La Soufrière" :departement "nord")
(:code "HT1220" :commune "Plaine-du-Nord" :departement "nord")
(:code "HT1221" :commune "Robillard" :departement "nord")
(:code "HT1230" :commune "Milot" :departement "nord")
(:code "HT1231" :commune "Carrefour-des-Pères" :departement "nord")
(:code "HT1310" :commune "Grande-Rivière-du-Nord" :departement "nord")
(:code "HT1320" :commune "Barbon" :departement "nord")
(:code "HT1410" :commune "Saint-Raphaël" :departement "nord")
(:code "HT1420" :commune "Dondon" :departement "nord")
(:code "HT1430" :commune "Ranquitte" :departement "nord")
(:code "HT1440" :commune "Pignon" :departement "nord")
(:code "HT1450" :commune "La Victoire" :departement "nord")
(:code "HT1510" :commune "Borgne" :departement "nord")
(:code "HT1511" :commune "Petit-Bourg-de-Borgne" :departement "nord")
(:code "HT1517" :commune "Côte-de-Fer et Fond" :departement "nord")
(:code "HT1520" :commune "Port-Margot" :departement "nord")
(:code "HT1521" :commune "Bayeux" :departement "nord")
(:code "HT1522" :commune "Margot" :departement "nord")
(:code "HT1610" :commune "Limbé" :departement "nord")
(:code "HT1611" :commune "Camp-Coq" :departement "nord")
(:code "HT1620" :commune "Bas-Limbé" :departement "nord")
(:code "HT1710" :commune "Plaisance" :departement "nord")
(:code "HT1720" :commune "Pilate" :departement "nord")
(:code "HT1723" :commune "Ravine-Trompette" :departement "nord")
(:code "HT2110" :commune "Fort-Liberté" :departement "nord-est")
(:code "HT2111" :commune "Dérac" :departement "nord-est")
(:code "HT2112" :commune "Acul Samedi" :departement "nord-est")
(:code "HT2120" :commune "Ferrier" :departement "nord-est")
(:code "HT2121" :commune "Maribahoux" :departement "nord-est")
(:code "HT2130" :commune "Perches" :departement "nord-est")
(:code "HT2210" :commune "Ouanaminthe" :departement "nord-est")
(:code "HT2220" :commune "Capotille" :departement "nord-est")
(:code "HT2230" :commune "Mont-Organisé" :departement "nord-est")
(:code "HT2310" :commune "Trou-duNord" :departement "nord-est")
(:code "HT2320" :commune "Sainte-Suzanne" :departement "nord-est")
(:code "HT2321" :commune "Dupity" :departement "nord-est")
(:code "HT2330" :commune "Terrier-Rouge" :departement "nord-est")
(:code "HT2331" :commune "Phaëton" :departement "nord-est")
(:code "HT2332" :commune "Paulette" :departement "nord-est")
(:code "HT2340" :commune "Caracol" :departement "nord-est")
(:code "HT2410" :commune "Vallières" :departement "nord-est")
(:code "HT2411" :commune "Grosse-Roche" :departement "nord-est")
(:code "HT2420" :commune "Carice" :departement "nord-est")
(:code "HT2430" :commune "Mombin-Crochu" :departement "nord-est")
(:code "HT2431" :commune "Bois-Laurence" :departement "nord-est")
(:code "HT3110" :commune "Port-de-Paix" :departement "nord-ouest")
(:code "HT3111" :commune "La Pointe" :departement "nord-ouest")
(:code "HT3120" :commune "La Tortue" :departement "nord-ouest")
(:code "HT3121" :commune "Pointe des Oiseaux" :departement "nord-ouest")
(:code "HT3122" :commune "Mare Rouge" :departement "nord-ouest")
(:code "HT3130" :commune "Bassin-Bleu" :departement "nord-ouest")
(:code "HT3140" :commune "Chansolme" :departement "nord-ouest")
(:code "HT3210" :commune "Saint-Louis-du-Nord" :departement "nord-ouest")
(:code "HT3211" :commune "Bonneau" :departement "nord-ouest")
(:code "HT3212" :commune "Guichard" :departement "nord-ouest")
(:code "HT3220" :commune "Anse-à-Foleur" :departement "nord-ouest")
(:code "HT3310" :commune "Môle-Saint-Nicolas" :departement "nord-ouest")
(:code "HT3320" :commune "Bombardopolis" :departement "nord-ouest")
(:code "HT3330" :commune "Baie-de-Henne" :departement "nord-ouest")
(:code "HT3340" :commune "Jean-Rabel" :departement "nord-ouest")
(:code "HT6110" :commune "Port-au-Prince" :departement "ouest")
(:code "HT6111" :commune " Bel-Air et Bourdon" :departement "ouest")
(:code "HT6112" :commune " Bas Peu de Choses" :departement "ouest")
(:code "HT6113" :commune " Turgeau" :departement "ouest")
(:code "HT6114" :commune " Bois Verna" :departement "ouest")
(:code "HT6115" :commune " Lalue" :departement "ouest")
(:code "HT6116" :commune " Carrefour Feuilles" :departement "ouest")
(:code "HT6117" :commune " Morne de l’Hôpital" :departement "ouest")
(:code "HT6118" :commune " Bolosse" :departement "ouest")
(:code "HT6119" :commune " Martissant et Fontamara" :departement "ouest")
(:code "HT6120" :commune " Delmas" :departement "ouest")
(:code "HT6121" :commune " Varreux" :departement "ouest")
(:code "HT6122" :commune " Cité soleil" :departement "ouest")
(:code "HT6123" :commune " Maïs Gâté, Tabarre zone 1" :departement "ouest")
(:code "HT6124" :commune " Petite Place Cazeau, Tabarre zone 2" :departement "ouest")
(:code "HT6125" :commune " Croix-des-Missions" :departement "ouest")
(:code "HT6130" :commune " Carrefour" :departement "ouest")
(:code "HT6131" :commune " Bizoton" :departement "ouest")
(:code "HT6132" :commune " Diquini, Thor" :departement "ouest")
(:code "HT6133" :commune " Côte-Page, Mahotière" :departement "ouest")
(:code "HT6134" :commune " Arcachon, Warney" :departement "ouest")
(:code "HT6135" :commune " Brochette" :departement "ouest")
(:code "HT6136" :commune " Lamentin, Mariani, Merger" :departement "ouest")
(:code "HT6140" :commune " Pétion-Ville" :departement "ouest")
(:code "HT6141" :commune " Frères, pergnier,peguy-ville" :departement "ouest")
(:code "HT6123" :commune " Tabarre (zone1)" :departement "ouest")
(:code "HT6124" :commune " Tabarre (zone2)" :departement "ouest")
(:code "HT6142" :commune " Pèlerin" :departement "ouest")
(:code "HT6143" :commune " Tête de l’Eau" :departement "ouest")
(:code "HT6144" :commune " Laboule" :departement "ouest")
(:code "HT6145" :commune " Thomassin 32 route Aimé-Bastient imp Laurent" :departement "ouest")
(:code "HT6146" :commune " Fermathe" :departement "ouest")
(:code "HT6147" :commune " Pergnier" :departement "ouest")
(:code "HT6150" :commune " Kenscoff" :departement "ouest")
(:code "HT6160" :commune " Gressier" :departement "ouest")
(:code "HT6210" :commune " Léogâne" :departement "ouest")
(:code "HT6211" :commune " Trouin" :departement "ouest")
(:code "HT6212" :commune " Orangers" :departement "ouest")
(:code "HT6220" :commune " PetitGoâve" :departement "ouest")
(:code "HT6221" :commune " Vialet" :departement "ouest")
(:code "HT6230" :commune " Grand Goâve" :departement "ouest")
(:code "HT6310" :commune " Croix-des-Bouquets" :departement "ouest")
(:code "HT6311" :commune " Santo" :departement "ouest")
(:code "HT6312" :commune " Bon Repos" :departement "ouest")
(:code "HT6320" :commune " Thomazeau" :departement "ouest")
(:code "HT6330" :commune " Ganthier" :departement "ouest")
(:code "HT6331" :commune " Fonds Parisien et Galette Bonbon" :departement "ouest")
(:code "HT6330" :commune " Cornillon" :departement "ouest")
(:code "HT6340" :commune " Fonds Verettes" :departement "ouest")
(:code "HT6410" :commune " Arcahaie" :departement "ouest")
(:code "HT6411" :commune " Saintard" :departement "ouest")
(:code "HT6420" :commune " Cabaret" :departement "ouest")
(:code "HT6421" :commune "Casale" :departement "ouest")
(:code "HT6510" :commune " Anse à Galets (La Gonâve)" :departement "ouest")
(:code "HT6520" :commune " Pointe à Raquette (La Gonâve)" :departement "ouest")
(:code "HT8110" :commune " Les Cayes" :departement "sud")
(:code "HT8120" :commune " Torbeck" :departement "sud")
(:code "HT8121" :commune " Ferme Le Blanc" :departement "sud")
(:code "HT8122" :commune " Ducis" :departement "sud")
(:code "HT8130" :commune " Chantal" :departement "sud")
(:code "HT8140" :commune " Camp Perrin" :departement "sud")
(:code "HT8150" :commune " Maniche" :departement "sud")
(:code "HT8160" :commune " L’Ïle à Vaches" :departement "sud")
(:code "HT8210" :commune " Port-Salut" :departement "sud")
(:code "HT8220" :commune " Saint Jean du Sud" :departement "sud")
(:code "HT8230" :commune " Arniquet" :departement "sud")
(:code "HT8310" :commune " Aquin" :departement "sud")
(:code "HT8311" :commune " Fond des Blanc" :departement "sud")
(:code "HT8312" :commune " Vieux Bourg d’Aquin" :departement "sud")
(:code "HT8313" :commune " La Colline" :departement "sud")
(:code "HT8320" :commune " Saint Louis du Sud" :departement "sud")
(:code "HT8330" :commune " Cavaillon" :departement "sud")
(:code "HT8410" :commune " Côteaux" :departement "sud")
(:code "HT8411" :commune " Damassin" :departement "sud")
(:code "HT8412" :commune " La Côte" :departement "sud")
(:code "HT8420" :commune " Port à Piment" :departement "sud")
(:code "HT8430" :commune " Roche à Bateau" :departement "sud")
(:code "HT8510" :commune " Chardonnières" :departement "sud")
(:code "HT8511" :commune " Randel" :departement "sud")
(:code "HT8520" :commune " Les Anglais" :departement "sud")
(:code "HT8530" :commune " Tiburon" :departement "sud")
(:code "HT8531" :commune " Cahonane" :departement "sud")
(:code "HT9110" :commune "Jacmel" :departement "sud-est")
(:code "HT9111" :commune " Marbial" :departement "sud-est")
(:code "HT9120" :commune " Marigot" :departement "sud-est")
(:code "HT9121" :commune " Seguin" :departement "sud-est")
(:code "HT9130" :commune " Cayes Jacmel" :departement "sud-est")
(:code "HT9140" :commune " La Vallée de Jacmel" :departement "sud-est")
(:code "HT9210" :commune " Bainet" :departement "sud-est")
(:code "HT9220" :commune " Côtes de Fer" :departement "sud-est")
(:code "HT9310" :commune " Belle-Anse" :departement "sud-est")
(:code "HT9311" :commune " Mapou" :departement "sud-est")
(:code "HT9320" :commune " Grand Gosier" :departement "sud-est")
(:code "HT9321" :commune " Bodarie" :departement "sud-est")
(:code "HT9330" :commune " Thiotte" :departement "sud-est")
(:code "HT9340" :commune " Anse à Pitre" :departement "sud-est")
(:code "HT9341" :commune " Banane" :departement "sud-est")))
(defvar *phone-number* '("+509 3~a~a~a~a~a~a~a"
"+509 4~a~a~a~a~a~a~a"))
(defun address ()
(let ((code (random-from-list *code-postal*)))
(format nil "~a, ~a, ~a, ~a, Haiti" (gen-positive-number 100) "Angle des rue capois et nicolas"
(getf code :commune) (getf code :code))))
(defun city ()
(getf (random-from-list *code-postal*) :commune))
(defun phone ()
(fake-cl.phone:make-phone-number *phone-number*))
| 22,433 | Common Lisp | .lisp | 255 | 59.035294 | 124 | 0.486124 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | ce7b242f0c0c7d2894b1a6d961b312b7ff5943adb1d5bec6de17922da5c69d48 | 40,779 | [
-1
] |
40,780 | fake-cl.asd | psteeve_fake-cl/fake-cl.asd | (asdf:defsystem :fake-cl
:serial t
:components ((:file "lorem")
(:file "medecin")
(:file "number")
(:file "list")
(:file "phone")
(:file "languages")
(:file "haiti")
(:file "country")
(:file "fake-cl")
(:file "fake-data"))
:depends-on (:str :uuid))
| 405 | Common Lisp | .asd | 13 | 18.153846 | 47 | 0.392857 | psteeve/fake-cl | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | 7daf715ade01369d2cfe062fdcca7fca400122fb4941e60b2df52d085f762d09 | 40,780 | [
-1
] |
40,809 | fractal-tree.lisp | foggynight_fractals/fractal-tree.lisp | ;;; --- fractal-tree.lisp ---
;;
;; Construct a fractal tree by splitting each point into some number of branches
;; where a point is the end of a previous branch. Branches splay outwards from
;; the center starting at the tree points.
;;
;; The starting point is a special case where the branches split evenly
;; distributed away from the center with a horizonal split, onwards branches
;; split away from the angle of their parent branch, with each set of branches
;; in a split being spread across an angle which is equal to a configuration
;; variable.
;;
;; Points are defined by an x-y position represented as a list containing the x
;; and y components as well as a list of child points.
;;
;; Trees are defined as m-ary trees of points, where m is the number of children
;; of each inner point.
;;
;; Trees are drawn by drawing lines between points and their children, these
;; lines are referred to as branches.
;;
;; The screen is centered on (0, 0), points are measured relative to the center
;; of the screen.
;;
;; Copyright (C) 2021 Robert Coffey
;; Released under the GPLv2 license
;;; PACKAGE SECTION ------------------------------------------------------------
(require :sdl2)
;;; CONFIG SECTION -------------------------------------------------------------
(defparameter *screen-width* 1280
"Screen width in pixels.")
(defparameter *screen-height* 720
"Screen height in pixels.")
(defparameter *target-fps* 144
"Target frames to render per second.")
(defparameter *frame-delay-ms* (round (/ 1000 *target-fps*))
"Time to sleep between frames in milliseconds.")
(defparameter *update-delay-ms* 1000
"Time between updates in milliseconds.")
(defparameter *update-delay-frame-count* (round (/ *update-delay-ms* *frame-delay-ms*))
"Number of frames between updates.")
(defparameter *center-x* (floor (/ *screen-width* 2))
"x coordinate at the center of the screen.")
(defparameter *center-y* (floor (/ *screen-height* 2))
"y coordinate at the center of the screen.")
(defparameter *background-color* '(0 0 0 255)
"Color used to draw the background.")
(defparameter *branch-color* '(255 0 0 255)
"Color used to draw the branches.")
(defparameter *split-angle* (/ pi 3)
"Angle between a pair of split branches in radians.")
(defparameter *split-count* 2
"Number of branches to split each point into.")
(defparameter *branch-length* 100
"Length of each branch -- Distance between start and end point.")
(defparameter *branch-shrink-factor* 0.8
"Factor by which to shrink the branches per iteration.")
;;; TREE-POINT SECTION ---------------------------------------------------------
(defclass tree-point ()
((x
:accessor x
:initarg :x
:documentation "x position of this tree-point.")
(y
:accessor y
:initarg :y
:documentation "y position of this tree-point.")
(ancestor-count
:accessor ancestor-count
:initarg :ancestor-count
:documentation "Number of ancestors of this tree-point.")
(parent-angle
:accessor parent-angle
:initarg :parent-angle
:documentation "Angle of the parent branch of this tree-point."))
(:documentation
"Tree-point class representing a point in the tree, each point has a parent
point and some number of child points; branches are lines drawn between a parent
and child point."))
(defun split-root-point (start-point)
"Split the root point into its child points."
(let ((point-list nil)
(point nil)
(angle 0)
(delta-angle (/ (* 2 pi) *split-count*)))
(dotimes (i *split-count*)
(setq point (make-instance 'tree-point
:x (+ (x start-point)
(* *branch-length*
(cos angle)))
:y (+ (y start-point)
(* *branch-length*
(sin angle)))
:ancestor-count 1
:parent-angle angle))
(setq angle (+ angle delta-angle))
(setq point-list (cons point point-list)))
point-list))
(defun split-point (start-point)
"Split a child point into its child points."
(let ((point-list nil)
(point nil)
(angle (- (parent-angle start-point)
(/ *split-angle* 2)))
(delta-angle (/ *split-angle* (1- *split-count*))))
(dotimes (i *split-count*)
(setq point (make-instance 'tree-point
:x (+ (x start-point)
(* *branch-length*
(expt *branch-shrink-factor* (ancestor-count start-point))
(cos angle)))
:y (+ (y start-point)
(* *branch-length*
(expt *branch-shrink-factor* (ancestor-count start-point))
(sin angle)))
:ancestor-count (1+ (ancestor-count start-point))
:parent-angle angle))
(setq angle (+ angle delta-angle))
(setq point-list (cons point point-list)))
point-list))
;;; RENDER SECTION -------------------------------------------------------------
(defun render-set-color (ren color)
"Set the draw color of the renderer."
(apply #'sdl2:set-render-draw-color (cons ren color)))
(defun render-draw-background (ren)
"Fill the screen with the background color."
(render-set-color ren *background-color*)
(sdl2:render-clear ren))
(defun render-draw-branch (ren start-point end-point)
"Draw a branch in the branch color using a line thats starts and ends at the
given points."
(render-set-color ren *branch-color*)
(sdl2:render-draw-line ren
(floor (+ (x start-point) *center-x*))
(floor (+ (y start-point) *center-y*))
(floor (+ (x end-point) *center-x*))
(floor (+ (y end-point) *center-y*))))
(defun render-draw-branch-list (ren start-point end-point-list)
"Draw a list of branches using a starting point and list of end points."
(dolist (end-point end-point-list)
(render-draw-branch ren start-point end-point)))
;;; MAIN SECTION ---------------------------------------------------------------
(defun main ()
(let* ((start-point (make-instance 'tree-point
:x 0 :y 0
:ancestor-count 0
:parent-angle 0))
(point-list (split-root-point start-point))
(next-point-list nil)
(frame-count 0))
(sdl2:with-init (:everything)
(sdl2:with-window (win :title "Fractal Tree"
:w *screen-width*
:h *screen-height*
:flags '(:shown))
(sdl2:with-renderer (ren win :flags '(:accelerated))
(render-draw-background ren)
(render-draw-branch-list ren start-point point-list)
(sdl2:render-present ren)
(sdl2:with-event-loop (:method :poll)
(:keydown
(:keysym key)
(when (sdl2:scancode= (sdl2:scancode-value key) :scancode-escape)
(sdl2:push-event :quit)))
(:idle
()
(unless (< frame-count *update-delay-frame-count*)
(setq frame-count 0)
(dolist (point point-list)
(let ((split-point-list (split-point point)))
(render-draw-branch-list ren point split-point-list)
(setq next-point-list (concatenate 'list next-point-list split-point-list))))
(sdl2:render-present ren)
(setq point-list next-point-list)
(setq next-point-list nil))
(incf frame-count)
(sdl2:delay *frame-delay-ms*))
(:quit () t)))))))
| 8,052 | Common Lisp | .lisp | 178 | 35.376404 | 100 | 0.568682 | foggynight/fractals | 0 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:48:40 AM (Europe/Amsterdam) | b6d2d2c1560755ebe991c900f643d5f73effdc7fb91aa6ec5481b2b19e109e88 | 40,809 | [
-1
] |
40,841 | struct-utils.lisp | aakropotkin_cl-compdb/struct-utils.lisp |
(in-package :cl-user)
(defpackage :compdb/struct-utils
(:USE :common-lisp)
(:EXPORT
#:update-struct
#:struct-slots
#:struct-values
#:struct-p
#:struct-to-list))
(in-package :compdb/struct-utils)
;; ========================================================================== ;;
(declaim
(ftype (function (structure-object &REST T) structure-object) update-struct)
(ftype (function (structure-object) list) struct-slots)
(ftype (function (structure-object) cons) struct-values)
(ftype (function (T) boolean) struct-p)
(ftype (function (T) T) struct-to-list))
;; -------------------------------------------------------------------------- ;;
(defun update-struct (struct &rest bindings)
"Copy `struct' with modified fields provided as `(quote FIELD) VALUE'
bindings in `&rest' parameters."
(loop with copy = (copy-structure struct)
for (slot value) on bindings by #'cddr
do (setf (slot-value copy slot) value)
finally (return copy)))
;; -------------------------------------------------------------------------- ;;
;;
;; Example Usage:
;;
;; CL-USER> (defstruct foo bar baz)
;; FOO
;; CL-USER> (defparameter *first* (make-foo :bar 3))
;; *FIRST*
;; CL-USER> (defparameter *second* (update-struct *first* 'baz 2))
;; *SECOND*
;; CL-USER> (values *first* *second*)
;; #S(FOO :BAR 3 :BAZ NIL)
;; #S(FOO :BAR 3 :BAZ 2)
;;
;;
;; -------------------------------------------------------------------------- ;;
(defun struct-slots (st)
(declare (type structure-object st))
(loop for sl in (sb-mop::class-direct-slots (class-of st))
collect (list
(sb-mop:slot-definition-name sl)
(slot-value sl 'sb-pcl::internal-reader-function))))
;; -------------------------------------------------------------------------- ;;
(defun struct-values (st)
(declare (type structure-object st))
(cons (type-of st)
(loop for np in (struct-slots st)
collect (cons (car np)
(funcall (cadr np) st)))))
;; -------------------------------------------------------------------------- ;;
(defun struct-p (x)
(equalp 'STRUCTURE-OBJECT
(sb-mop:class-name
(car (sb-mop:class-direct-superclasses (class-of x))))))
(deftype struct-t ()
`(satisfies struct-p))
;; -------------------------------------------------------------------------- ;;
(defun struct-to-list (x)
(typecase x
(struct-t (loop for v in (struct-values x)
collect (struct-to-list v)))
(cons (cons (struct-to-list (car x))
(struct-to-list (cdr x))))
(T x)))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 2,814 | Common Lisp | .lisp | 71 | 35.014085 | 80 | 0.461907 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 52d21e67fd2db004a70b95977cafddc378626603778e481495ebff74d1b0d438 | 40,841 | [
-1
] |
40,842 | string-utils.lisp | aakropotkin_cl-compdb/string-utils.lisp |
(in-package :cl-user)
(defpackage :compdb/string-utils
(:USE
:common-lisp
:compdb/types)
(:EXPORT
#:strs-equal
#:strs-intersect
#:strs-difference
#:strs-union
#:strs-uniq
#:str-append-char
))
(in-package :compdb/string-utils)
;; ========================================================================== ;;
(declaim (ftype (function (list-of-strings list-of-strings) boolean)
strs-equal)
(ftype (function (list-of-strings list-of-strings) list-of-strings)
strs-intersect
strs-difference
strs-union)
(ftype (function (list-of-strings) list-of-strings) strs-uniq)
(ftype (function (string character) string)))
;; -------------------------------------------------------------------------- ;;
(defun strs-equal (a b)
"Set equality for lists of strings."
(declare (type list-of-strings a b))
(the boolean (null (set-exclusive-or a b :TEST #'equal))))
;; -------------------------------------------------------------------------- ;;
(defun strs-intersect (a b)
(declare (type list-of-strings a b))
(the list-of-strings (intersection a b :TEST #'equal)))
(defun strs-difference (a b)
(declare (type list-of-strings a b))
(the list-of-strings (set-difference a b :TEST #'equal)))
(defun strs-union (a b)
(declare (type list-of-strings a b))
(the list-of-strings (union a b :TEST #'equal)))
;; -------------------------------------------------------------------------- ;;
(defun strs-uniq (lst)
(declare (type list-of-strings lst))
(the list-of-strings (remove-duplicates lst :TEST #'equal)))
;; -------------------------------------------------------------------------- ;;
(defun str-append-char (str ch)
(declare (type string str))
(declare (type character ch))
(the string (concatenate 'string str (string ch))))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 2,043 | Common Lisp | .lisp | 49 | 37.142857 | 80 | 0.47665 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 9de9799c3be07c3d49141c23c3ec6708fe1588e45467c5c46bdf5a84dedb88ea | 40,842 | [
-1
] |
40,843 | types.lisp | aakropotkin_cl-compdb/types.lisp |
(in-package :cl-user)
(defpackage :compdb/types
(:USE :common-lisp)
(:EXPORT
#:def-pair-type
#:def-list-type
#:list-of-strings-p
#:list-of-strings
#:list-of-pathnames-p
#:list-of-pathnames
#:pair-of-strings-p
#:pair-of-strings
#:list-of-symbols-p
#:list-of-symbols))
(in-package :compdb/types)
;; ========================================================================== ;;
(declaim
(ftype (function (T) boolean)
list-of-strings-p
list-of-strings
list-of-pathnames-p
list-of-pathnames
pair-of-strings-p
pair-of-strings
list-of-symbols-p
list-of-symbols))
;; -------------------------------------------------------------------------- ;;
(defmacro def-pair-type (name t1 t2)
(let ((name-t (intern
(concatenate 'string "PAIR-OF-" (symbol-name name))))
(name-p (intern
(concatenate 'string "PAIR-OF-" (symbol-name name) "-P"))))
`(progn
(defun ,name-p (x)
(the boolean (and (consp x)
(typep (car x) (quote ,t1))
(typep (cdr x) (quote ,t2))
T)))
(deftype ,name-t ()
(quote (satisfies ,name-p))))))
;; -------------------------------------------------------------------------- ;;
(defmacro def-list-type (name tp)
(let ((name-t (intern (concatenate 'string "LIST-OF-" (symbol-name name))))
(name-p (intern (concatenate 'string "LIST-OF-"
(symbol-name name)
"-P"))))
`(progn
(defun ,name-p (x)
(the boolean (and (listp x)
(every (lambda (e) (typep e (quote ,tp))) x)
T)))
(deftype ,name-t ()
(quote (satisfies ,name-p))))))
;; -------------------------------------------------------------------------- ;;
(def-list-type strings string)
(def-list-type pathnames pathname)
(def-pair-type strings string string)
(def-list-type symbols symbol)
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 2,280 | Common Lisp | .lisp | 60 | 29.033333 | 80 | 0.408451 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 4a4464ab017cc28fc59c5a5f6852d84fd0dcc08bdc6758b1a23cd354f97fd9bc | 40,843 | [
-1
] |
40,844 | json-cdb.lisp | aakropotkin_cl-compdb/json-cdb.lisp |
(in-package :cl-user)
(ql:quickload '(:compdb/types
:cl-json
:compdb/dirs
:compdb/lang-tag
:compdb/flags
:compdb/alias
:uiop
:str))
(defpackage :compdb/json-cdb
(:USE
:common-lisp
:compdb/types
:compdb/alias)
(:IMPORT-FROM :cl-json #:decode-json)
(:IMPORT-FROM :compdb/dirs #:parse-dir-namestring
#:join-pathnames)
(:IMPORT-FROM :compdb/lang-tag #:lang-tag-from-flags
#:lang-tag-from-compiler)
(:IMPORT-FROM :compdb/flags #:join-opt-args
#:split-spaceless-flag-arg)
(:IMPORT-FROM :uiop #:pathname-directory-pathname)
(:IMPORT-FROM :str #:starts-with-p)
(:EXPORT
#:parse-compdb-json
#:get-jcu-args
#:get-jcu-compiler
#:get-jcu-lang-tag
#:get-jcu-build-dir
#:get-jcu-src
#:get-jcu-output
))
(in-package :compdb/json-cdb)
;; ========================================================================== ;;
(defun parse-compdb-json (fpath)
(declare (type (or string pathname) fpath))
(with-open-file (fjson fpath)
(json:decode-json fjson)))
;; -------------------------------------------------------------------------- ;;
;(defun get-jcu-member (member jcu)
; (declare (type cons jcu))
; (loop for x in jcu
; when (equal member (car x))
; return (cdr x)))
(defun get-jcu-member (member jcu)
(declare (type keyword member))
(declare (type list jcu))
(cdr (assoc member jcu)))
;; -------------------------------------------------------------------------- ;;
(defun get-jcu-args
(jcu &key (raw NIL)
(join-char NIL))
(declare (type list jcu))
(declare (type boolean raw))
(declare (type (or character string null) join-char))
(let* ((r (get-jcu-member :ARGUMENTS jcu)))
(if raw r ;; Don't join arguments.
(if join-char (join-opt-args r :JOIN-CHAR join-char)
;; Split "spaceless argument" flags into `( FLAG . ARGUMENT )'.
(mapcar #'split-spaceless-flag-arg (join-opt-args r))))))
(defun get-jcu-compiler (jcu)
(declare (type list jcu))
(car (get-jcu-member :ARGUMENTS jcu)))
;; -------------------------------------------------------------------------- ;;
(defun get-jcu-lang-tag (jcu &key (compiler NIL))
(declare (type cunit jcu))
(declare (type (or string null) compiler))
(or (lang-tag-from-flags (get-jcu-args jcu))
(lang-tag-from-compiler (or compiler (get-jcu-compiler jcu)))))
;; -------------------------------------------------------------------------- ;;
(defun get-jcu-build-dir (jcu)
(declare (type cons jcu))
(parse-dir-namestring (get-jcu-member :DIRECTORY jcu)))
(defun get-jcu-src (jcu &key (relative NIL))
(declare (type cons jcu))
(declare (type boolean relative))
(let ((frel (parse-namestring (get-jcu-member :FILE jcu))))
(if relative frel (join-pathnames (get-jcu-build-dir jcu) frel))))
(defun get-jcu-src-dir (jcu &key (relative NIL))
(declare (type cons jcu))
(declare (type boolean relative))
(uiop:pathname-directory-pathname (get-jcu-src jcu :RELATIVE relative)))
;; -------------------------------------------------------------------------- ;;
(defun get-output-from-args (jcu &key (relative NIL))
(declare (type cons jcu))
(declare (type boolean relative))
(let* ((arglist (get-jcu-args jcu))
(out-arg (find-if (lambda (a) (str:starts-with-p "-o " a)) arglist))
(ofile (if out-arg
(parse-namestring (subseq out-arg 3 (length out-arg)))
NIL)))
(if (or (null ofile) relative) ofile
(join-pathnames (get-jcu-build-dir jcu) ofile))))
(defun get-jcu-output (jcu &key (relative NIL))
(declare (type cons jcu))
(declare (type boolean relative))
(let ((output (get-jcu-member :OUTPUT jcu)))
(if output (join-pathnames (get-jcu-build-dir jcu)
(parse-namestring output))
(get-output-from-args jcu :RELATIVE relative))))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 4,282 | Common Lisp | .lisp | 102 | 35.77451 | 80 | 0.519036 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | dd86763b0db50d41d4ea620189c137173b31bb7072ab158ca2683efce6502456 | 40,844 | [
-1
] |
40,845 | flag-collection.lisp | aakropotkin_cl-compdb/flag-collection.lisp |
(in-package :cl-user)
(ql:quickload
'(:compdb/types :compdb/flags :compdb/alias :compdb/json-cdb :compdb/lang-tag))
(defpackage :compdb/flag-collection
(:USE
:common-lisp
:compdb/types
:compdb/flags
:compdb/alias)
(:IMPORT-FROM :compdb/json-cdb #:get-jcu-args
#:get-jcu-compiler
#:get-jcu-lang-tag)
(:IMPORT-FROM :compdb/lang-tag #:lang-tag
#:c-lang-tag
#:c-lang-tag-p)
(:EXPORT
#:flag-set-kind-p
#:flag-set-kind
#:flag-set-p
#:flag-set
#:flag-set-kind
#:flag-set-flags
#:list-of-flag-sets-p
#:list-of-flag-sets
#:flag-set-has-kind-p
#:flag-set-inc-p
#:flag-set-def-p
#:flag-set-comp-p
#:flag-set-other-p
#:flag-set-kinds-eq-p
#:flag-set-mark-scopes
#:sibling-flag-sets-mark-scopes
;; ----------------------------------------------------------------------- ;;
#:lang-flag-set
#:lang-flag-set-p
#:lang-flag-set-ltag
#:lang-flag-set-flag-sets
#:lang-flag-set-has-lang-p
#:lang-flag-set-cc-p
#:lang-flag-set-cxx-p
#:lang-flag-set-get-all
#:lang-flag-set-has-kind-p
#:lang-flag-set-kinds
#:lang-flag-set-get-kind
#:lang-flag-set-get-inc
#:lang-flag-set-get-def
#:lang-flag-set-get-comp
#:lang-flag-set-get-other
#:lang-flag-set-mark-scopes
#:lfs-ltag
#:lfs-lang
#:lfs-flag-sets
#:lfs-flags
#:lfs-has-lang-p
#:lfs-ccp
#:lfs-cxxp
#:lfs-get-all
#:lfs-has-kind-p
#:lfs-kinds
#:lfs-get-kind
#:lfs-get-inc
#:lfs-get-def
#:lfs-get-comp
#:lfs-get-other
#:lfs-mark-scopes
#:list-of-lang-flag-sets-p
#:list-of-lang-flag-sets
#:list-of-lfs-p
#:list-of-lfs
#:mk-lang-flag-set
))
(in-package :compdb/flag-collection)
;; ========================================================================== ;;
(defun flag-set-kind-p (x)
(member x (list :INC :DEF :COMP :OTHER)))
(deftype flag-set-kind ()
`(satisfies flag-set-kind-p))
;; -------------------------------------------------------------------------- ;;
(defstruct flag-set
(kind :OTHER :TYPE flag-set-kind)
(flags '() :TYPE list-of-scoped-flags))
;; -------------------------------------------------------------------------- ;;
(defun list-of-flag-sets-p (x)
(and (listp x)
(every #'flag-set-p x)))
(deftype list-of-flag-sets ()
`(satisfies list-of-flag-sets-p))
;; -------------------------------------------------------------------------- ;;
(defun flag-set-has-kind-p (fs kind)
(declare (type flag-set fs))
(declare (type flag-set-kind kind))
(equal (flag-set-kind fs) kind))
(defun flag-set-inc-p (fs)
(flag-set-has-kind-p fs :INC))
(defun flag-set-def-p (fs)
(flag-set-has-kind-p fs :DEF))
(defun flag-set-comp-p (fs)
(flag-set-has-kind-p fs :COMP))
(defun flag-set-other-p (fs)
(flag-set-has-kind-p fs :OTHER))
(defun flag-set-kinds-eq-p (a b)
(declare (type flag-set a b))
(equal (flag-set-kind a) (flag-set-kind b)))
;; -------------------------------------------------------------------------- ;;
(defun flag-set-mark-scopes (common-flags fs)
(declare (type (or list-of-scoped-flags flag-set list-of-flag-sets)
common-flags))
(declare (type flag-set fs))
(typecase common-flags
;; Filter matching `kind' and recursively map.
;; There should almost never be multiple matches, but I won't assume.
(list-of-flag-sets
(mapc (lambda (c-fs) (flag-set-mark-scopes c-fs fs))
(remove (flag-set-kind fs) common-flags :TEST-NOT #'equal
:KEY #'flag-set-kind)))
;; When types match between `flag-sets'.
(flag-set (when (flag-set-kinds-eq-p common-flags fs)
(scoped-flags-mark-scopes (flag-set-flags common-flags)
(slot-value fs 'flags))))
;; No need to unpack the scoped flags.
(list-of-scoped-flags (scoped-flags-mark-scopes common-flags
(slot-value fs 'flags)))))
;; -------------------------------------------------------------------------- ;;
(defun sibling-flag-sets-mark-scopes (fsets)
(declare (type list-of-flag-sets fsets))
;; Collect by `kind' and pipe into `lolo-scoped-flags-mark-scopes'.
(flet
((fskind-mark-scopes (k)
(cons k
(lolo-scoped-flags-mark-scopes
(mapcar
(lambda (fs) (slot-value fs 'flags))
(remove k fsets :TEST-NOT #'equal :KEY #'flag-set-kind))))))
(mapcar #'fskind-mark-scopes
(remove-duplicates (mapcar #'flag-set-kind
fsets)))))
;; -------------------------------------------------------------------------- ;;
(defstruct lang-flag-set
(ltag NIL :TYPE (or lang-tag null))
(flag-sets NIL :TYPE (or list-of-flag-sets null)))
(defalias 'lang-flag-set-ltag 'lfs-lang)
(defalias 'lang-flag-set-flag-sets 'lfs-flags)
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-has-lang-p (lfs ltag)
(declare (type lang-flag-set lfs))
(declare (type lang-tag ltag))
(equal (lang-flag-set-ltag lfs) ltag))
(defun lang-flag-set-langs-eq-p (a b)
(declare (type lang-flag-set a b))
(equal (lang-flag-set-ltag a) (lang-flag-set-ltag b)))
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-cc-p (lfs)
(lang-flag-set-has-lang-p lfs :CC))
(defun lang-flag-set-cxx-p (lfs)
(lang-flag-set-has-lang-p lfs :CXX))
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-get-all (lfs)
(mapcan #'lang-flag-set-flag-sets lfs))
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-get-kind (lfs kind)
(declare (type lang-flag-set lfs))
(declare (type flag-set-kind kind))
(find-if (lambda (fs) (flag-set-has-kind-p fs kind))
(lang-flag-set-flag-sets lfs)))
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-has-kind-p (lfs kind)
(declare (type lang-flag-set lfs))
(declare (type flag-set-kind kind))
(any (lambda (fs) (flag-set-has-kind-p fs kind))
(lang-flag-set-flag-sets lfs)))
(defun lang-flag-set-kinds (lfs)
(mapcar #'flag-set-kind (lang-flag-set-flag-sets lfs)))
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-get-inc (lfs)
(lang-flag-set-get-kind lfs :INC))
(defun lang-flag-set-get-def (lfs)
(lang-flag-set-get-kind lfs :DEF))
(defun lang-flag-set-get-comp (lfs)
(lang-flag-set-get-kind lfs :COMP))
(defun lang-flag-set-get-other (lfs)
(lang-flag-set-get-kind lfs :OTHER))
;; -------------------------------------------------------------------------- ;;
(defun lang-flag-set-mark-scopes (common-flags lfs)
(declare (type (or list-of-scoped-flags
flag-set
list-of-flag-sets
lang-flag-set)
common-flags))
(declare (type lang-flag-set lfs))
(if (not (lang-flag-set-p common-flags))
(flag-set-mark-scopes common-flags (slot-value lfs 'flag-sets))
(when (lang-flag-set-langs-eq-p common-flags lfs)
(let ((c-fss (lang-flag-set-flag-sets common-flags)))
(mapc (lambda (fs) (flag-set-mark-scopes c-fss fs))
(slot-value lfs 'flag-sets))))))
;; -------------------------------------------------------------------------- ;;
(defaliases-replace-first
"lang-flag-set" "lfs"
'(lang-flag-set-ltag
lang-flag-set-flag-sets
lang-flag-set-has-lang-p
lang-flag-set-langs-eq-p
lang-flag-set-cxx-p
lang-flag-set-cc-p
lang-flag-set-get-all
lang-flag-set-get-kind
lang-flag-set-has-kind-p
lang-flag-set-kinds
lang-flag-set-get-inc
lang-flag-set-get-def
lang-flag-set-get-comp
lang-flag-set-get-other
lang-flag-set-mark-scopes))
;; -------------------------------------------------------------------------- ;;
(defun list-of-lang-flag-sets-p (x)
(and (listp x)
(every #'lang-flag-set-p x)))
(deftype list-of-lang-flag-sets ()
`(satisfies list-of-lang-flag-sets-p))
(defalias 'list-of-lang-flag-sets-p 'list-of-lfs-p)
(deftype list-of-lfs ()
`(satisfies list-of-lfs-p))
;; -------------------------------------------------------------------------- ;;
(defun mk-lang-flag-set
(jcu &key (builddir NIL fixup-includes-p)
(lang-tag NIL))
(declare (type list jcu))
(declare (type (or dirpath null) builddir))
(declare (type (or lang-tag null) ltag))
(let* ((flags (cds (get-jcu-args jcu)))
(compiler (get-jcu-compiler jcu))
(ltag (or lang-tag (get-jcu-lang-tag jcu :COMPILER compiler)))
(inc-flags (remove-if-not #'inc-flag-p flags))
(defs (remove-if-not #'def-flag-p flags))
(defs-sf (mapcar (lambda (f) (make-scoped-flag :FLAG f)) defs))
(defs-set (make-flag-set :KIND :DEF :FLAGS defs-sf))
(oflags (remove-if (lambda (f) (or (inc-flag-p f)
(def-flag-p f)))
flags))
(oflags-sf (mapcar (lambda (f) (make-scoped-flag :FLAG f)) oflags))
(comp-set (if ltag (make-flag-set :KIND :COMP :FLAGS oflags-sf) NIL))
(other-set (if (null ltag)
(make-flag-set :KIND :OTHER :FLAGS oflags-sf)
NIL))
(fixincs (and fixup-includes-p
(mapcar (lambda (c) (fixup-inc-flag-pair builddir c))
inc-flags)))
(incs-sf (mapcar (lambda (f) (make-scoped-flag :FLAG f))
(or fixincs inc-flags)))
(incs-set (make-flag-set :KIND :INC :FLAGS incs-sf))
(flag-sets (remove-if #'null (list (or comp-set other-set)
defs-set
incs-set))))
(make-lang-flag-sets :LTAG ltag :FLAG-SETS flag-sets)))
;; -------------------------------------------------------------------------- ;;
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 10,494 | Common Lisp | .lisp | 257 | 33.832685 | 80 | 0.498817 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | b82e5ed5d91f4ae802391cf9388cddddcd0d265965f9ee69f3486c5f90fefded | 40,845 | [
-1
] |
40,846 | flags.lisp | aakropotkin_cl-compdb/flags.lisp |
(in-package :cl-user)
(ql:quickload
'(:compdb/types :compdb/string-utils :compdb/dirs :compdb/lang-tag :str))
(defpackage :compdb/flags
(:USE :common-lisp :compdb/types :compdb/lang-tag)
(:IMPORT-FROM :compdb/string-utils #:str-append-char
#:strs-union)
(:IMPORT-FROM :compdb/dirs #:join-pathnames
#:dirpath
#:path-p
#:path)
(:IMPORT-FROM :str #:starts-with-p)
(:EXPORT
#:flag-pair-p
#:flag-pair
#:make-flag
#:copy-flag
#:flag-p
#:flag
#:flag-opt
#:flag-arg
#:flag-lang
#:flag-scope
#:list-of-flags-p
#:list-of-flags
#:list-of-list-of-flags-p
#:list-of-list-of-flags
#:flag-local-p
#:flag-common-p
#:flaggable-p
#:flaggable
#:list-of-flaggables-p
#:list-of-flaggables
#:as-flag
#:as-raw-flag-pair
#:as-flag-string
#:def-flag-p
#:inc-flag-p
#:fixup-inc-flag-pair
#:opt-with-arg-p
#:join-opt-args
#:spaceless-opt-arg-p
#:split-spaceless-flag-arg
#:flag-mark-scope
#:flags-mark-scopes
#:lolo-flags-get-common
#:lolo-flags-mark-scopes
))
(in-package :compdb/flags)
;; ========================================================================== ;;
(declaim
(ftype (function (flag) boolean)
flag-local-p
flag-common-p)
(ftype (function (T) boolean)
flag-pair-p
flag-p
list-of-flags-p
list-of-list-of-flags-p)
(ftype (function (flaggable &key (:NOSPACE boolean)) boolean)
spaceless-opt-arg-p)
(ftype (function (flaggable) boolean) def-flag-p inc-flag-p opt-with-arg-p)
(ftype (function (dirpath flag-pair) flag-pair) fixup-inc-flag-pair)
(ftype (function (list-of-flags flag) flag-scope) flag-mark-scope)
(ftype (function (list-of-flags list-of-flags) T) flag-mark-scopes)
(ftype (function (list-of-list-of-flags) list-of-flags)
lolo-flags-get-common
lolo-glags-mark-scopes))
;; -------------------------------------------------------------------------- ;;
(defun flag-scope-p (x)
"The argument `X' is a flag scope keyword?"
(and (member x (list :LOCAL :COMMON))
T))
(deftype flag-scope ()
`(satisfies flag-scope-p))
;; -------------------------------------------------------------------------- ;;
(defstruct flag
(opt NIL :TYPE (or string null))
(arg NIL :TYPE (or string path null))
(lang NIL :TYPE (or lang-tag null))
(scope NIL :TYPE (or flag-scope null)))
(def-list-type flags flag)
(def-list-type list-of-flags list-of-flags)
;; -------------------------------------------------------------------------- ;;
(defun raw-flag-pair-p (x)
"Argument `X' is a `cons' cell with a string `car', and either a `string' or
`path' as its `cdr'?"
(the boolean (and (consp x)
(stringp (car x))
(or (stringp (cdr x))
(path-p (cdr x)))
T)))
(deftype raw-flag-pair ()
`(satisfies raw-flag-pair-p))
;; -------------------------------------------------------------------------- ;;
(defun flag-pair-p (x)
"Argument `X' is of type `flag', or is explicitly a `raw-flag-pair'?"
(the boolean (or (raw-flag-pair-p x)
(and (flag-p x)
(not (null (flag-arg x)))
T))))
(deftype flag-pair ()
`(satisfies flag-pair-p))
;; -------------------------------------------------------------------------- ;;
(defun flaggable-p (x)
"It is possible to interpret `X' as a flag?
More explicitly `X' is already a `flag', or `X' may be converted to `flag' by
the `as-flag' function.
Notably no checking is performed to see if `string' inputs are actually valid
compiler or linker flags, only type checking is performed."
(the boolean (and (or (stringp x)
(flag-p x)
(raw-flag-pair-p x))
T)))
(deftype flaggable ()
`(satisfies flaggable-p))
(def-list-type flaggables flaggable)
;; -------------------------------------------------------------------------- ;;
(declaim
(ftype (function
(list-of-flaggables &key (:JOIN-CHAR (or character string null)))
list-of-flaggables)
join-opt-args)
(ftype (function (flaggable) flaggable) split-spaceless-flag-arg)
(ftype (function (flaggable &key (:LANG-FB (or lang-tag null))
(:SCOPE-FB (or flag-scope null)))
flag) as-flag)
(ftype (function (flaggable) raw-flag-pair) as-raw-flag-pair)
(ftype (function (flaggable) string) as-flag-string))
;; -------------------------------------------------------------------------- ;;
(defun as-flag (x &key (lang-fb NIL) (scope-fb NIL))
"Convert a `flaggable' argument to a `flag', using the optional fall-back keys
`lang-fb' and `scope-fb' for `:LANG' and `:SCOPE' values respectively.
An error is thrown when conversion is not possible."
(declare (type flaggable x))
(declare (type (or lang-tag null) lang-fb))
(declare (type (or flag-scope null) scope-fb))
(the flag
(etypecase x
(flag x)
(raw-flag-pair (make-flag :OPT (car x)
:ARG (cdr x)
:LANG lang-fb
:SCOPE scope-fb))
(string (make-flag :OPT x
:LANG lang-fb
:SCOPE scope-fb)))))
;; -------------------------------------------------------------------------- ;;
(defun as-raw-flag-pair (x)
"Convert a `flaggable' argument to a raw flag pair, throwing an error in cases
where conversion is not possible."
(declare (type flaggable x))
(the raw-flag-pair
(etypecase x
(raw-flag-pair x)
(flag (cons (the string (flag-opt x))
(the string (flag-arg x))))
(string
(let ((maybe-split (split-spaceless-flag-arg x)))
(etypecase maybe-split
(raw-flag-pair maybe-split)
(flag (cons (the string (flag-opt maybe-split))
(the string (flag-arg maybe-split))))))))))
;; -------------------------------------------------------------------------- ;;
(defun as-flag-string (x)
"Convert a `flaggable' argument to a string.
In cases where arguments are present a space separator will be used to create a
SINGLE string output.
Note that this will not reproduce the original argument list, which separates
options and arguments as separate strings.
An error is thrown when conversion is not possible."
(declare (type flaggable x))
(the string
(etypecase x
(string x)
(flag (concatenate 'string (flag-opt x) " " (flag-arg x)))
(raw-flag-pair (if (null (cdr x)) (car x)
(concatenate 'string (car x) " " (cadr x)))))))
;; -------------------------------------------------------------------------- ;;
(defun flag-local-p (f)
"A flag `F' is marked as `:LOCAL' scoped.
This indicated this flag differs from siblings - being other `cunit' members in
the same the same subdir, or other `subdir' members who share a parent dir."
(declare (type flag f))
(let ((s (flag-scope f)))
(the boolean (and s (eq s :LOCAL)))))
(defun flag-common-p (f)
"A flag `F' is marked as `:COMMON' scoped.
This indicated this flag is shared by siblings - being other `cunit' members in
the same the same subdir, or other `subdir' members who share a parent dir."
(declare (type flag f))
(let ((s (flag-scope f)))
(the boolean (and s (eq s :COMMON)))))
;; -------------------------------------------------------------------------- ;;
(defparameter *spaceless-opt-args*
(list "-I" "-D" "-l" "-L" "-z" "-u" "-U" "-B" "-W" "-g" "-O"))
(defun spaceless-opt-arg-p (f &key (nospace NIL))
(declare (type flaggable f))
(declare (type boolean nospace))
(the boolean
(typecase f
(flag (and (not nospace)
(not (null (flag-arg f)))
(find (flag-opt f) *spaceless-opt-args* :TEST #'equal)
T))
(raw-flag-pair (and (not nospace)
(find (car f) *spaceless-opt-args* :TEST #'equal)
T))
(string (and (< 2 (length f))
(or (null nospace) (not (equal #\SPACE (char f 2))))
(find-if (lambda (o) (str:starts-with-p o f))
*spaceless-opt-args*)
T)))))
;; -------------------------------------------------------------------------- ;;
(defparameter *include-args*
(list
"-I"
"-idirafter"
"-imacros"
"-imultilib"
"-include"
"-iprefix"
"-iquote"
"-isysroot"
"-isystem"
"-iwithprefix"
"-iwithprefixbefore"
;; FIXME: Technically `--sysroot=DIR' is an "include" option
))
(defun inc-flag-p (f)
"The ``flag like'' parameter `F' is an ``include style'' option.
This excludes the use of `--sysroot=<DIR>' options, but will recognize any other
GCC option which is prefixed with ``-i'' or ``-I''."
(declare (type flaggable f))
(let ((optstr (the string (etypecase f
(flag (flag-opt f))
(raw-flag-pair (car f))
(string f)))))
(the boolean (and (str:starts-with-p "-i" optstr :IGNORE-CASE T)
T))))
;; -------------------------------------------------------------------------- ;;
(defun fixup-inc-flag-pair (builddir fpair)
"Given a `(FLAG . RELATIVE-DIR)' pair, make directory absolute
using `builddir' as the parent directory.
Return the same type as the one provided, meaning when `fpair' is a
`raw-flag-pair' a modified `raw-flag-pair' is returned, while for a `flag' an
updated `flag' is returned."
(declare (type dirpath builddir))
(declare (type flag-pair fpair))
(flet ((fix-inc-path (x) (join-pathnames builddir x)))
(typecase fpair
(flag (the flag (make-flag :OPT (flag-opt fpair)
:ARG (fix-inc-path (flag-arg fpair))
:LANG (flag-lang fpair)
:SCOPE (flag-scope fpair))))
(raw-flag-pair (the raw-flag-pair (cons (car fpair)
(fix-inc-path (cdr fpair))))))))
;; -------------------------------------------------------------------------- ;;
(defparameter *opts-with-args*
(concatenate 'list
(strs-union *spaceless-opt-args* *include-args*)
(list
"--param"
"-A"
"-G"
"-MF"
"-MQ"
"-MT"
"-T"
"-Xassembler"
"-Xlinker"
"-Xpreprocessor"
"-allowable_client"
"-aux-info"
"-bundle_loader"
"-e"
"-o"
"-x"
;; FIXME: This does not include many options of the form `--OPT=ARG'
)))
(defun str-space-starts-with-p (prefix str)
(declare (type string prefix str))
(let ((spre (str-append-char prefix #\SPACE)))
(the boolean (str:starts-with-p spre str))))
(defun opt-with-arg-p (f)
"The ``flaggable'' parameter `F' has an argument?
In cases where `F' is a string, the flag and argument must be space separated."
(declare (type flaggable f))
(the boolean
(and (typecase f
(flag (find (flag-opt f) *opts-with-args* :TEST #'equal))
(raw-flag-pair (find (car f) *opts-with-args* :TEST #'equal))
(string
(find-if (lambda (a) (str-space-starts-with-p a f))
*opts-with-args*)))
T)))
;; -------------------------------------------------------------------------- ;;
(defun join-opt-args (args &key (join-char NIL))
"Loop over a list of ``flaggable'' elements, joining any consecutive strings
which can be interpreted as `raw-flag-pair's into such pairs.
Other list members are left unmodified."
(declare (type list-of-flaggables args))
(declare (type (or character string null) join-char))
(the list-of-flaggables
(let ((jc-str (if (and join-char (characterp join-char))
(string join-char)
join-char)))
(loop for a in args
for argp = (find a *opts-with-args* :TEST #'equal)
and joinp = NIL then argp
when (null argp)
collect (the flaggable
(if (null joinp) a
(if join-char
(concatenate 'string joinp jc-str a)
(cons joinp a))))))))
;; -------------------------------------------------------------------------- ;;
(defun def-flag-p (f)
"The ``flaggable'' parameter `F' is a C-Family ``-D<NAME>'' or
``-D<NAME>=<VAL>'' option."
(declare (type flaggable f))
(the boolean
(typecase f
(string (str:starts-with-p "-D" f))
(raw-flag-pair (equal "-D" (car f)))
(flag (equal "-D" (flag-opt f))))))
;; -------------------------------------------------------------------------- ;;
(defun split-spaceless-flag-arg (f)
"For a ``flaggable'' parameter `F' which satisfies ``spaceless-opt-arg-p'',
split `string' elements into `raw-flag-pair' cells.
Leave non-strings and strings which do not satisfy
``spaceless-opt-arg-p''unmodified."
(declare (type flaggable f))
;; If `f' isn't a string or an include flag don't change it.
(the flaggable
(if (not (and (stringp f) (spaceless-opt-arg-p f))) f
;; If there is a space just split there.
(let ((space-pos (the (or fixnum null) (position #\SPACE f))))
(if space-pos
(cons (subseq f 0 space-pos)
(subseq f (+ space-pos 1) (length f)))
;; Split immediately after option.
(let ((opt (find-if (lambda (o) (str:starts-with-p o f))
*spaceless-opt-args*)))
(or (and opt
(cons opt
(subseq f (length opt) (length f))))
f)))))))
;; -------------------------------------------------------------------------- ;;
(defun flag-mark-scope (common-flags f)
"The ``scope'' of flags in `common-flags' is actually irrelevant, since they
represent a hierarchy of ownership.
Local flags should be those that are not in any ancestors."
(declare (type list-of-flags common-flags))
(declare (type flag f))
(setf (flag-scope f)
(if (null (find-if (lambda (o) (and
(equal (flag-opt f) (flag-opt o))
(equal (flag-arg f) (flag-arg o))
(equal (flag-lang f) (flag-lang o))))
common-flags))
:LOCAL
:COMMON)))
;; -------------------------------------------------------------------------- ;;
(defun flags-mark-scopes (common-flags flags)
(declare (type list-of-flags common-flags flags))
(mapc (lambda (f) (flag-mark-scope common-flags f)) flags))
;; -------------------------------------------------------------------------- ;;
(defun lolo-flags-get-common (flagss)
"Discover the collection of common flags from a group of flag lists.
Equality is based on equality of all `flag' fields except for `scope'.
Returns a `list-of-flags' of ``common'' flags."
(flet ((unscoped-flags-eq (a b)
(the boolean (and (equal (flag-opt a) (flag-opt b))
(equal (flag-arg a) (flag-arg b))
(equal (flag-lang a) (flag-lang b))))))
(mapcar (lambda (f) (make-flag :OPT (flag-opt f)
:ARG (flag-arg f)
:LANG (flag-lang f)
:SCOPE :COMMON))
(reduce (lambda (a b) (intersection a b :TEST #'unscoped-flags-eq))
flagss))))
;; -------------------------------------------------------------------------- ;;
(defun lolo-flags-mark-scopes (flagss)
"From a collection of siblings, discover common flags, and set scopes.
Equality is based on equality of all `flag' fields except for `scope'.
Returns a `list-of-flags' of ``common'' flags."
(declare (type list-of-list-of-flags flagss))
(let ((commons (the list-of-flags (lolo-flags-get-common flagss))))
(mapc (lambda (f) (flags-mark-scopes commons f)) flagss)
commons))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 16,899 | Common Lisp | .lisp | 393 | 34.256997 | 80 | 0.499726 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | c0c297cd08be3485ef98cf50e6fad1172dd9b57021693c88c0c467feb446136d | 40,846 | [
-1
] |
40,847 | compdb.lisp | aakropotkin_cl-compdb/compdb.lisp |
(in-package :cl-user)
(defpackage :compdb/compdb
(:USE
:common-lisp
:compdb/types)
(:IMPORT-FROM :compdb/lang-tag #:list-of-lang-tags)
(:IMPORT-FROM :compdb/srcdir #:list-of-srcdirs)
(:IMPORT-FROM :compdb/flag-collection #:lang-flag-set)
(:IMPORT-FROM :compdb/json-cdb #:parse-compdb-json
#:get-jcu-src-dir
#:get-jcu-output
#:get-jcu-build-dir)
(:IMPORT-FROM :compdb/dirs #:subpath-p
#:as-pathname
#:get-paths-roots)
(:IMPORT-FROM :uiop #:pathname-directory-pathname)
(:EXPORT
#:compdb
#:compdb-p
#:make-compdb
#:compdb-json-obj
#:compdb-dbfile
#:compdb-src-roots
#:compdb-obj-roots
#:compdb-build-roots
#:compdb-languages
#:compdb-compilers
#:compdb-global-flags
#:mk-compdb))
(in-package :compdb/compdb)
;; ========================================================================== ;;
(defstruct compdb
(json-obj '() :TYPE list)
(dbfile #P"/" :TYPE path)
(src-roots '() :TYPE list-of-srcdirs)
(obj-roots '() :TYPE list-of-dirpaths)
(build-roots '() :TYPE list-of-dirpaths)
(languages '() :TYPE list-of-lang-tags)
(compilers '() :TYPE list-of-strings)
(global-flags NIL :TYPE (or lang-flag-set null)))
;; -------------------------------------------------------------------------- ;;
;; -------------------------------------------------------------------------- ;;
(defun mk-compdb (cdb-path)
(declare (type pathname cdb-path))
(let* ((jcdb (parse-compdb-json cdb-path))
(srcdirs (remove-duplicates (mapcar #'get-jcu-src-dir jcdb)))
(srcroots (get-paths-roots srcdirs))
(objdirs (remove-duplicates (mapcar #'uiop:pathname-directory-pathname
(mapcar #'get-jcu-output jcdb))))
(builddirs (remove-duplicates (mapcar #'get-jcu-build-dir jcdb))))
(make-compdb
:JSON-OBJ jcdb
:DBFILE (as-pathname cdb-path)
:SRC-ROOTS (get-paths-roots srcdirs)
:OBJ-ROOTS (get-paths-roots objdirs)
:BUILD-ROOTS (get-paths-roots builddirs)
)))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 2,494 | Common Lisp | .lisp | 59 | 34.305085 | 80 | 0.46959 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | fd549fe892283b178b8c990ac5fecb71067f86ebe5227c1aac71242cf48f1d20 | 40,847 | [
-1
] |
40,848 | grouping.lisp | aakropotkin_cl-compdb/grouping.lisp |
(ql:quickload :group-by)
(use-package :group-by)
(group-by '((a 1 2)
(a 3 4)
(b 5 6)))
; => ((A (1 2) (3 4)) (B (5 6)))
(group-by '((a 1 2) (a 3 4) (b 5 6)) :value #'identity)
; => ((A (A 1 2) (A 3 4)) (B (B 5 6)))
(ql:quickload :cl-json)
(use-package :cl-json)
(defparameter *cdb*
(with-open-file (s #P"compile_commands.json" :direction :input)
(decode-json s)))
(group-by *cdb*
:key (lambda (e) (assoc :DIRECTORY e))
;:key-fn #'cdr
;:value #'identity
:value (lambda (e) (assoc :FILE e))
)
| 581 | Common Lisp | .lisp | 19 | 25.052632 | 65 | 0.508993 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | c09e6dba84e165b11fb384b3af67f2710adb5c428c7d3fed7c608f428555aaa0 | 40,848 | [
-1
] |
40,849 | lang-tag.lisp | aakropotkin_cl-compdb/lang-tag.lisp |
(in-package :cl-user)
(defpackage :compdb/lang-tag
(:USE
:common-lisp
:compdb/types)
(:EXPORT
#:lang-tag-p
#:lang-tag
#:c-lang-tag-p
#:c-lang-tag
#:gen-lang-tag-p
#:gen-lang-tag
#:list-of-lang-tags-p
#:list-of-lang-tags
#:lang-tag-from-flags
#:lang-tag-from-compiler))
(in-package :compdb/lang-tag)
;; ========================================================================== ;;
(defun lang-tag-p (x)
(member x (list :CC :CXX :YACC :LEX :OTHER)))
(deftype lang-tag ()
`(satisfies lang-tag-p))
;; -------------------------------------------------------------------------- ;;
(defun c-lang-tag-p (x)
(member x (list :CC :CXX)))
(deftype c-lang-tag ()
`(satisfies c-lang-tag-p))
;; -------------------------------------------------------------------------- ;;
(defun gen-lang-tag-p (x)
(member x (list :YACC :LEX)))
(deftype gen-lang-tag ()
`(satisfies gen-lang-tag-p))
;; -------------------------------------------------------------------------- ;;
(defun list-of-lang-tags-p (lst)
(and (listp lst)
(every #'lang-tag-p lst)))
(deftype list-of-lang-tags ()
`(satisfies list-of-lang-tags-p))
;; -------------------------------------------------------------------------- ;;
(defun lang-tag-from-flags (flags)
(declare (type list-of-strings flags))
(let ((fl (cadr (member "-x" flags :TEST #'equal))))
(cond ((null fl) NIL)
((equal fl "c++") :CXX)
((equal fl "c") :CC)
(T NIL))))
;; -------------------------------------------------------------------------- ;;
(defun lang-tag-from-compiler (compiler)
(declare (type string compiler))
(let ((c (file-namestring compiler)))
(cond ((find c '("gcc" "cc" "icc" "clang") :TEST #'equal) :CC)
((find c '("g++" "clang++") :TEST #'equal) :CXX)
((find c '("yacc" "bison") :TEST #'equal) :YACC)
((find c '("lex" "flex") :TEST #'equal) :LEX))))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 2,157 | Common Lisp | .lisp | 56 | 34.517857 | 80 | 0.397683 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | a8f8f1b6692d05fb9cd67ee7d1f41ae98b7ef1f6168f7c837ebcfbcc8e447cdd | 40,849 | [
-1
] |
40,850 | alias.lisp | aakropotkin_cl-compdb/alias.lisp |
(in-package :cl-user)
(ql:quickload '(:str :compdb/types))
(defpackage :compdb/alias
(:USE :common-lisp)
(:IMPORT-FROM :str #:replace-first)
(:IMPORT-FROM :compdb/types #:list-of-symbols)
(:EXPORT
#:defalias
#:defalias-replace-first
#:defaliases-replace-first
))
(in-package :compdb/alias)
;; ========================================================================== ;;
(declaim (ftype (function (symbol symbol) compiled-function) defun-alias)
(ftype (function (symbol symbol) T) defvar-alias defalias)
(ftype (function (string string symbol) T) defaliase-replace-first)
(ftype (function (string string list-of-symbols) T)
defaliases-replace-first))
;; -------------------------------------------------------------------------- ;;
(defun defun-alias (old new)
(declare (type symbol old new))
(assert (fboundp old))
(the compiled-function (setf (symbol-function new) (symbol-function old))))
(defun defvar-alias (old new)
(declare (type symbol old new))
(assert (boundp old))
(setf (symbol-value new) (symbol-value old)))
(defun defalias (old new)
(declare (type symbol old new))
(if (fboundp old) (defun-alias old new) (defvar-alias old new)))
;; -------------------------------------------------------------------------- ;;
(defun defalias-replace-first (str-old str-new sym)
(declare (type string str-old str-new))
(declare (type symbol sym))
(defalias sym (make-symbol
(str:replace-first str-old str-new (symbol-name sym)))))
(defun defaliases-replace-first (str-old str-new syms)
(declare (type string str-old str-new))
(declare (type list-of-symbols syms))
(mapc (lambda (sym) (defalias-replace-first str-old str-new sym)) syms))
;; -------------------------------------------------------------------------- ;;
;;(defun defstruct-aliases (struct-sym newname)
;; (declare (type symbol struct-sym))
;; (declare (type string newname))
;; (let* ((sname (symbol-name struct-sym))
;; (sclass (find-class struct-sym))
;; (slot-syms (mapcar
;; (lambda (s)
;; (cons
;; (slot-value s 'sb-pcl::name)
;; (slot-value s 'sb-pcl::defstruct-accessor-symbol)))
;; (sb-mop:class-direct-slots sclass)))
;; (ctor-sym (slot-value sclass 'sb-pcl::defstruct-constructor))
;; )
;; (flet ((def-slot-alias (slot-syms)
;; (let* ((slot-name (symbol-name (car slot-syms)))
;; (new-acc-name (concatenate 'string newname "-" slot-name)))
;; (setf (symbol-function (make-symbol new-acc-name)) (cadr slot-syms))))
;; (def-ctor-alias (ctor-sym)
;; (setf (symbol-function (make-symbol (concatenate 'string "make-" newname)))
;; ctor-sym))
;; (def-pred-alias ()
;; (setf (symbol-function
;; (make-symbol (concatenate 'string newname "-p")))
;; (lambda (x) (typep x sclass)))))
;; ()
;; )))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 3,288 | Common Lisp | .lisp | 69 | 44.768116 | 90 | 0.510479 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | fd7c58a9901aad6133d73d34c1f8f72e3c16aaa4f622c94240a4680e2a6dc674 | 40,850 | [
-1
] |
40,851 | core.lisp | aakropotkin_cl-compdb/core.lisp |
(in-package :cl-user)
(ql:quickload '(:asdf :compdb/json-cdb))
(defpackage :compdb/core
(:USE :common-lisp)
(:IMPORT-FROM :compdb/json-cdb #:parse-compdb-json)
(:IMPORT-FROM :asdf #:system-relative-pathname)
(:EXPORT #:*cdb*))
(in-package :compdb/core)
;; ========================================================================== ;;
;; FIXME: This if just for testing.
(defparameter *cdb*
(parse-compdb-json (system-relative-pathname :COMPDB "compile_commands.json")))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 662 | Common Lisp | .lisp | 14 | 44.928571 | 80 | 0.438871 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 6029648a9eb1188d9941f796af0b3b94d1129c20bd8848d0e31588043eca3891 | 40,851 | [
-1
] |
40,852 | all.lisp | aakropotkin_cl-compdb/all.lisp |
;; ========================================================================== ;;
(uiop/package:define-package :compdb/all
(:NICKNAMES :compdb)
(:USE-REEXPORT
:compdb/compdb
:compdb/core
:compdb/cunit
:compdb/dirs
:compdb/flag-collection
:compdb/flags
:compdb/json-cdb
:compdb/lang-tag
:compdb/srcdir
:compdb/string-utils
:compdb/struct-utils
:compdb/types
:compdb/alias))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 587 | Common Lisp | .lisp | 19 | 27.105263 | 80 | 0.405357 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 6977f5cb10248eb98dfc3e14d2fb728774bfbf893d05f4eaca9ae986594279e7 | 40,852 | [
-1
] |
40,853 | cunit.lisp | aakropotkin_cl-compdb/cunit.lisp |
(in-package :cl-user)
(defpackage :compdb/cunit
(:USE
:common-lisp
:compdb/types)
(:IMPORT-FROM :compdb/flags #:list-of-flags)
;;(:IMPORT-FROM :compdb/flag-collection #:mk-flag-collection-json)
(:IMPORT-FROM :compdb/flag-collection #:mk-lang-flag-set
#:lang-flag-set)
(:IMPORT-FROM :compdb/lang-tag #:lang-tag
#:gen-lang-tag-p)
(:IMPORT-FROM :uiop #:pathname-equal)
(:IMPORT-FROM :compdb/json-cdb #:get-jcu-compiler
#:get-jcu-lang-tag
#:get-jcu-src
#:get-jcu-output)
(:EXPORT
#:cunit
#:cunit-p
#:make-cunit
#:cunit-json-obj
#:cunit-srcpath
#:cunit-output
#:cunit-language
#:cunit-compiler
#:cunit-is-generated
#:cunit-flags
#:cunit-local-flags
#:mk-cunit-json
;;#:update-cunit-fields
#:list-of-cunits-p
#:list-of-cunits
#:cunit-srcpath-equal-p
))
(in-package :compdb/cunit)
;; ========================================================================== ;;
(declaim (type compdb))
(declaim (type srcdir))
;; -------------------------------------------------------------------------- ;;
(defstruct cunit
(json-obj '() :TYPE list)
(srcpath NIL :TYPE (or path null))
(output NIL :TYPE (or path null))
(language :CC :TYPE lang-tag)
(compiler "cc" :TYPE string)
(is-generated NIL :TYPE boolean)
(flags NIL :TYPE (or lang-flag-set null))
;;(flags NIL :TYPE (or flag-collection null))
;;(local-flags NIL :TYPE (or flag-collection null))
)
;; -------------------------------------------------------------------------- ;;
(defun list-of-cunits-p (lst)
(and (listp lst)
(every (lambda (x) (typep x 'cunit)) lst)))
(deftype list-of-cunits ()
`(satisfies list-of-cunits-p))
;; -------------------------------------------------------------------------- ;;
(defun cunit-srcpath-equal-p (cu path)
(declare (type cunit cu))
(declare (type pathname path))
(uiop:pathname-equal (cunit-srcpath cu) path))
;; -------------------------------------------------------------------------- ;;
(defun mk-cunit-json (j)
(declare (type cons j))
(let* ((compiler (get-jcu-compiler j))
(ltag (get-jcu-lang-tag j))
(all-flags (mk-lang-flag-set j :LANG-TAG ltag))
)
(make-cunit
:JSON-OBJ j
:SRCPATH (get-jcu-src j)
:OUTPUT (get-jcu-output j)
:LANGUAGE ltag
:COMPILER compiler
:IS-GENERATED (gen-lang-tag-p ltag)
:FLAGS all-flags
:LOCAL-FLAGS NIL)))
;; -------------------------------------------------------------------------- ;;
;;(defun update-cunit-fields
;; (cu &key (cdb NIL)
;; (src NIL)
;; (src-flags NIL))
;;
;; (declare (type cunit cu))
;; (declare (type (or compdb null) cdb))
;; (declare (type (or srcdir null) src))
;; (declare (type (or list-of-flags null) src-flags))
;;
;; (let ((new-cdb (if (null cdb) (cunit-cdb cu) cdb))
;; (new-src (if (null src) (cunit-srcdir cu) src))
;; (new-local-flags (if (null src-flags) (cunit-local-flags cu)
;; (mk-flag-collection-json
;; (set-difference (cunit-flags cu) src-flags
;; :TEST #'equal)
;; :LANG_TAG (cunit-language cu)))))
;; (update-struct cu
;; 'cdb new-cdb
;; 'srcdir new-src
;; 'local-flags new-local-flags)))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 3,905 | Common Lisp | .lisp | 101 | 33.564356 | 80 | 0.444768 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 6bfd397c0de9aa7236c157f119db4a680fc883a8bfc2e1e1193666afa727f1b5 | 40,853 | [
-1
] |
40,854 | srcdir.lisp | aakropotkin_cl-compdb/srcdir.lisp |
(in-package :cl-user)
(defpackage :compdb/srcdir
(:USE
:common-lisp
:compdb/types
:compdb/flag-collection)
(:IMPORT-FROM :compdb/lang-tag #:list-of-lang-tags)
(:IMPORT-FROM :compdb/cunit #:cunit
#:list-of-cunits
#:cunit-srcpath-equal-p)
(:IMPORT-FROM :compdb/dirs #:subpath-p)
(:IMPORT-FROM :uiop #:pathname-equal)
(:EXPORT
#:srcdir
#:srcdir-p
#:make-srcdir
#:srcdir-dirpath
#:srcdir-parent-dir
#:srcdir-sources
#:srcdir-flags
#:srcdir-local-flags
#:srcdir-languages
#:srcdir-compilers
#:srcdir-child-dirs
#:list-of-srcdirs-p
#:list-of-srcdirs
#:srcdir-lookup-srcdir
#:srcdir-lookup-src))
(in-package :compdb/srcdir)
;; ========================================================================== ;;
;; Forward Declare
(declaim (type compdb))
;; -------------------------------------------------------------------------- ;;
(defstruct srcdir
(dirpath #P"/" :TYPE pathname)
(parent-dir NIL :TYPE (or srcdir null))
(sources '() :TYPE list-of-cunits)
;;(flags NIL :TYPE (or flag-collection null))
(flags NIL :TYPE (or lang-flag-set null))
(languages '() :TYPE list-of-lang-tags)
(compilers '() :TYPE list-of-strings)
(child-dirs '() :TYPE list-of-srcdirs))
;; -------------------------------------------------------------------------- ;;
(defun list-of-srcdirs-p (lst)
(and (listp lst)
(every (lambda (x) (typep x 'srcdir)) lst)))
(deftype list-of-srcdirs ()
`(satisfies list-of-srcdirs-p))
;; -------------------------------------------------------------------------- ;;
(defun srcdir-lookup-srcdir (csd path)
(declare (type srcdir csd))
(declare (type pathname path))
(cond
;; Exact match
((uiop:pathname-equal path (srcdir-dirpath csd)) csd)
;; Source in `csd'
((equal (pathname-directory path)
(pathname-directory (srcdir-dirpath csd)))
csd)
;; Check that filepaths match glob before recursively searching
((not (subpath-p (srcdir-dirpath csd) path)) NIL)
;; Recursively descend
(T (let ((s (find path (srcdir-child-dirs csd)
:TEST (lambda (p d) (subpath-p d p)))))
(if (null s) NIL (srcdir-lookup-srcdir s path))))))
(defun srcdir-lookup-src (csd path)
(declare (type srcdir csd))
(declare (type pathname path))
(if (not (subpath-p (srcdir-dirpath csd) path)) NIL
(let ((d (srcdir-lookup-srcdir csd path)))
(find path (srcdir-sources d)
:TEST (lambda (p s) (cunit-srcpath-equal-p s p))))))
;; -------------------------------------------------------------------------- ;;
;;(defun srcdir-set-cu-flags (csd cu)
;; (declare (type srcdir csd))
;; (declare (type cunit cu))
;; (setf (slot-value cu 'local-flags)
;; (flag-collection-difference (cunit-flags cu) (srcdir-local-flags csd))))
;; -------------------------------------------------------------------------- ;;
;;
;; When adding a single compilation unit we have a few cases:
;;
;; 1. The CU has the same flags as every other sibling. Do Nothing.
;; 2. The CU is a different language as other siblings. ???
;; 3. The CU is missing flags that were common among siblings.
;; Remove flag from `srcdir' and add it back to all siblings.
;; If the `srcdir' has child directories add the flag to child directories
;; as well.
;; 4. The CU is missing flags that were common among CC or CXX siblings.
;; Basically the same as (3), but don't worry about siblings for different
;; languages.
;; 5. The CU has flags that other siblings lack, same as (1), but if you have a
;; mechanism to explicitly track individual files with "unique" flags
;; ( perhaps for `automake' builds using `libtool' ) be sure to "mark" it.
;;
;; -------------------------------------------------------------------------- ;;
(defun srcdir-update-dir-flags (csd cu)
(declare (type srcdir csd))
(declare (type cunit cu))
;;(let* ((sd-l-flags (srcdir-local-flags csd))
;; (sd-flags (srcdir-flags csd))
;; (cu-flags (cunit-flags cu))
;; (l-isect (flag-collection-intersect sd-l-flags cu-flags))
;; (l-sc-diff )
;; ))
NIL)
;; -------------------------------------------------------------------------- ;;
(defun srcdir-update-cus-flags (csd)
(declare (type srcdir csd))
(declare (type cunit cu))
;; FIXME
NIL)
;; -------------------------------------------------------------------------- ;;
;;(defun srcdir-add-cunit
;; (csd cu :&key (update-dir-flags NIL)
;; (update-cus-flags NIL)
;; (set-cu-flags NIL))
;; (declare (type srcdir csd))
;; (declare (type cunit cu))
;; (declare (type boolean update-dir-flags update-cus-flags set-cu-flags))
;; ;; FIXME
;; NIL)
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 5,089 | Common Lisp | .lisp | 124 | 37.193548 | 82 | 0.517339 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 01ec4328aadd4ec475ecb024dfe5bb9ce5fe848cb21fc7b5e99b7df3376a9948 | 40,854 | [
-1
] |
40,855 | dirs.lisp | aakropotkin_cl-compdb/dirs.lisp |
(in-package :cl-user)
(ql:quickload '(:compdb/types :uiop))
(defpackage :compdb/dirs
(:USE :common-lisp :compdb/types)
(:IMPORT-FROM :uiop #:directory-separator-for-host)
(:EXPORT
#:directory-component-p
#:directory-component
#:list-of-directory-components-p
#:list-of-directory-components
#:directory-pathname-p
#:directory-pathname
#:list-of-directory-pathnames-p
#:list-of-directory-pathnames
#:dirpath-p
#:dirpath
#:list-of-dirpaths-p
#:list-of-dirpaths
#:path-p
#:path
#:list-of-paths-p
#:list-of-paths
#:as-pathname
#:as-directory-component
#:simplify-directory-component
#:simplify-path
#:join-pathnames
#:parse-dir-namestring
#:subpath-p
#:any-subpath-p
#:get-paths-roots
))
(in-package :compdb/dirs)
;; ========================================================================== ;;
(declaim
(ftype (function (T) boolean)
directory-component-head-p
directory-compenent-keyword-p
directory-component-elem-p
directory-component-p
directory-pathname-p
dirpath-p
path-p
list-of-directory-components-p
list-of-directory-pathnames-p
list-of-dirpaths-p
list-of-paths-p))
;; -------------------------------------------------------------------------- ;;
(defparameter *dir-sep-str*
(string (uiop:directory-separator-for-host)))
;; -------------------------------------------------------------------------- ;;
(defun directory-component-head-p (x)
(and (keywordp x)
(member x '(:RELATIVE :ABSOLUTE))
T))
(defun directory-compenent-keyword-p (x)
(and (keywordp x)
(or (directory-component-head-p x)
(member x '(:UP :BACK :WILD :WILD-INFERIORS :UNSPECIFIC)))
T))
(defun directory-component-elem-p (x)
(or (directory-compenent-keyword-p x)
(stringp x)))
(defun directory-component-p (x)
(and (listp x)
(member (car x) '(:RELATIVE :ABSOLUTE))
(every #'directory-component-elem-p (cdr x))))
(deftype directory-component ()
`(satisfies directory-component-p))
;; -------------------------------------------------------------------------- ;;
(declaim
(ftype (function (directory-component) directory-component))
(ftype (function (path) directory-component) as-directory-component)
(ftype (function (directory-component) directory-component)
simplify-directory-component))
;; -------------------------------------------------------------------------- ;;
(defun directory-component-ups-as-backs (dc)
"Replace all `:UP' elements with `:BACK' so they can be simplified."
(declare (type directory-component dc))
(subst :BACK :UP dc))
;; -------------------------------------------------------------------------- ;;
(defun directory-pathname-p (x)
(and (pathnamep x)
(null (pathname-name x))
(null (pathname-type x))))
(deftype directory-pathname ()
`(satisfies directory-pathname-p))
;; -------------------------------------------------------------------------- ;;
(defun dirpath-p (x)
(or (directory-component-p x)
(directory-pathname-p x)
(and (stringp x)
(let ((p (parse-namestring x)))
(and (not (null p))
(directory-pathname-p p))))))
(deftype dirpath ()
`(satisfies dirpath-p))
;; -------------------------------------------------------------------------- ;;
(defun path-p (x)
"A `pathname', `dirpath', or `string' which can be parsed as a `pathname'."
(or (pathnamep x)
(dirpath-p x)
(and (stringp x)
;; This is a bit goofy honestly because it's incredibly hard to
;; make an invalid pathname.
(not (null (parse-namestring x))))))
(deftype path ()
`(satisfies path-p))
;; -------------------------------------------------------------------------- ;;
(def-list-type directory-components directory-component)
(def-list-type directory-pathnames directory-pathname)
(def-list-type dirpaths dirpath)
(def-list-type paths path)
;; -------------------------------------------------------------------------- ;;
(declaim
(ftype (function (path) pathname) as-pathname)
(ftype (function (path) path) simplify-path)
;; FIXME: find out `ftype' for `&rest'
;(ftype (function (list-of-paths) pathname) join-pathnames)
; FIXME: parse-dir-namestring
)
;; -------------------------------------------------------------------------- ;;
(defun as-pathname (x)
(declare (type path x))
(the pathname
(etypecase x
(pathname x)
(string (parse-namestring x))
(directory-component (make-pathname :DIRECTORY x)))))
;; -------------------------------------------------------------------------- ;;
(defun as-directory-component (x)
(declare (type (path) x))
(the directory-component
(etypecase x
(pathname (pathname-directory x))
(string (pathname-directory (parse-dir-namestring x)))
(directory-component x))))
;; -------------------------------------------------------------------------- ;;
(defun simplify-directory-component (dc)
(declare (type directory-component dc))
(the directory-component
(pathname-directory
(make-pathname :DIRECTORY (directory-component-ups-as-backs dc)))))
;; -------------------------------------------------------------------------- ;;
(defun simplify-path (p)
(declare (type path p))
(the path
(etypecase p
(pathname (make-pathname
:DIRECTORY (directory-component-ups-as-backs
(pathname-directory p))
:DEFAULTS p))
(directory-component (simplify-directory-component p))
(string (let* ((pname (parse-namestring p))
(dc (pathname-directory pname))
(sdc (simplify-directory-component dc))
(spname (make-pathname
:DIRECTORY sdc
:DEFAULTS pname)))
(namestring spname))))))
;; -------------------------------------------------------------------------- ;;
(defun join-pathnames (&rest args)
(declare (type list-of-paths args))
;;(assert (list-of-dirpaths-p (butlast args)))
(let ((arg-pathnames (mapcar #'as-pathname args)))
(the pathname
(reduce (lambda (p1 p2) (merge-pathnames p2 p1)) arg-pathnames))))
;; -------------------------------------------------------------------------- ;;
(defun parse-dir-namestring (ns &key (simple T))
(declare (type string ns))
(declare (type boolean simple))
(let* ((try (parse-namestring ns))
(try-name (pathname-name try)))
(if (null try-name) try
(let ((dc (append (or (pathname-directory try) (list :RELATIVE))
(list try-name))))
(make-pathname
:NAME NIL
;:TYPE NIL
:DIRECTORY (if simple
(simplify-directory-component dc)
dc)
:DEFAULTS try)))))
;; -------------------------------------------------------------------------- ;;
(defun subpath-p (dir sub &key (direct NIL))
"Is `sub' a subdirectory of `dir'?
When `direct' is `T', detect direct children."
(declare (type dirpath dir))
(declare (type path sub))
(declare (type boolean direct))
(the boolean
(let ((pdir (simplify-path (as-pathname dir)))
(psub (simplify-path (as-pathname sub))))
(and (not (equal pdir psub))
(if direct
(if (null (pathname-name psub))
(pathname-match-p psub (merge-pathnames
(parse-dir-namestring "*/")
pdir))
(equal (pathname-directory pdir)
(pathname-directory psub)))
(pathname-match-p psub (uiop:wilden pdir)))))))
;; -------------------------------------------------------------------------- ;;
(defun any-subpath-p (dirs sub)
(declare (type list-of-dirpaths dirs))
(declare (type path sub))
(the boolean (some (lambda (d) (subpath-p d sub)) dirs)))
;; -------------------------------------------------------------------------- ;;
(defun get-paths-roots (paths)
(declare (type list-of-paths paths))
(let* ((dir-comps (remove-duplicates (mapcar #'as-directory-component
paths)))
(root-comps (remove-if (lambda (d) (any-subpath-p dir-comps d))
dir-comps)))
(mapcar #'as-pathname root-comps)))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 8,944 | Common Lisp | .lisp | 217 | 33.884793 | 80 | 0.486993 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | b31517691c870cb1bb1ba9ace2e0b02fe711d50f8f0c3e16b3cd0ef0bd3dadfe | 40,855 | [
-1
] |
40,856 | test-cunit.lisp | aakropotkin_cl-compdb/test/test-cunit.lisp |
(in-package :cl-user)
(defpackage :compdb/test/test-cunit
(:USE :common-lisp :prove :compdb/cunit))
(in-package :compdb/test/test-cunit)
;; ========================================================================== ;;
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 391 | Common Lisp | .lisp | 7 | 53.285714 | 80 | 0.269333 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 989050711d4463eb7472e8eef0955484834fea4ae4a0a9867b13a3b5f9bdb707 | 40,856 | [
-1
] |
40,857 | test-struct-utils.lisp | aakropotkin_cl-compdb/test/test-struct-utils.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/struct-utils))
(defpackage :compdb/test/test-struct-utils
(:USE :common-lisp :prove :compdb/struct-utils)
(:EXPORT
#:run-test-stuct-utils
#:test-update-struct
#:test-struct-slots
#:test-struct-values
#:test-struct-to-list
#:test-struct-p
#:run-test-struct-utils))
(in-package :compdb/test/test-struct-utils)
;; ========================================================================== ;;
(defstruct foo
(x 0 :TYPE fixnum)
y)
(defun test-update-struct ()
(subtest "Test `update-struct' function."
(let* ((f1 (make-foo :X 5 :Y "Hello"))
(f2 (update-struct f1 'y "World")))
(is (foo-x f1) (foo-x f2))
(isnt (foo-y f1) (foo-y f2) :TEST #'equal))))
;; -------------------------------------------------------------------------- ;;
(defun test-struct-slots ()
(subtest "Test `struct-slots' function."
(let ((f1 (make-foo :X 5 :Y "Hello"))
(f2 (make-foo :X 0 :Y 8)))
(let ((slots (struct-slots f1)))
(is-type (caar slots) 'symbol)
(is-type (caadr slots) 'symbol)
(is (caar slots) 'X)
(is (caadr slots) 'Y)
(is-type (cadar slots) 'compiled-function)
(is-type (cadadr slots) 'compiled-function))
(let ((slots (struct-slots f2)))
(is-type (caar slots) 'symbol)
(is-type (caadr slots) 'symbol)
(is (caar slots) 'X)
(is (caadr slots) 'Y)
(is-type (cadar slots) 'compiled-function)
(is-type (cadadr slots) 'compiled-function)))))
;; -------------------------------------------------------------------------- ;;
(defun test-struct-values ()
(subtest "Test `struct-values' function."
(let ((f1 (make-foo :X 5 :Y "Hello"))
(f2 (make-foo :X 0 :Y 8)))
(let ((vals (struct-values f1)))
(is-type vals 'list)
(is-type (car vals) 'symbol)
(is (car vals) 'foo)
(is (caadr vals) 'x)
(is (cdadr vals) 5)
(is (caaddr vals) 'y)
(is (cdaddr vals) "Hello" :TEST #'equal))
(let ((vals (struct-values f2)))
(is-type vals 'list)
(is-type (car vals) 'symbol)
(is (car vals) 'foo)
(is (caadr vals) 'x)
(is (cdadr vals) 0)
(is (caaddr vals) 'y)
(is (cdaddr vals) 8)))))
;; -------------------------------------------------------------------------- ;;
(defun test-struct-p ()
(subtest "Test `struct-p' function."
(let ((f1 (make-foo :X 5 :Y 8)))
(ok (struct-p f1))
(ok (not (struct-p 5))))))
;; -------------------------------------------------------------------------- ;;
(defun test-struct-to-list ()
(subtest "Test `struct-to-list' function."
(let ((f1 (make-foo :X 5 :Y 8))
(f2 (make-foo :X 0 :Y NIL))
(f3 (make-foo :X 8 :Y "Hello")))
(ok (equalp (struct-to-list f1) (struct-values f1)))
(ok (equalp (struct-to-list f2) (struct-values f2)))
(ok (equalp (struct-to-list f3) (struct-values f3)))
(let* ((f4 (make-foo :X 1 :Y f1))
(f1-l (struct-to-list f1))
(f4-l (struct-to-list f4))
(f4-y (cdaddr f4-l)))
(ok (not (equalp (struct-values f4) f4-l)))))))
;; -------------------------------------------------------------------------- ;;
(defun run-test-stuct-utils ()
(test-update-struct)
(test-struct-slots)
(test-struct-values)
(test-struct-to-list)
(test-struct-p))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 3,736 | Common Lisp | .lisp | 92 | 33.23913 | 80 | 0.448466 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | a94f76d8622352744eb693f97f182853b846ca9cf5b4c6f3337ba53721333db5 | 40,857 | [
-1
] |
40,858 | test-srcdir.lisp | aakropotkin_cl-compdb/test/test-srcdir.lisp |
(in-package :cl-user)
(defpackage :compdb/test/test-srcdir
(:USE :common-lisp :prove :compdb/srcdir))
(in-package :compdb/test/test-srcdir)
;; ========================================================================== ;;
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 394 | Common Lisp | .lisp | 7 | 53.714286 | 80 | 0.275132 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 140f5a81d691b6f2d354030d3d3dba2506fc21ac3623e88db33512baa0fa105f | 40,858 | [
-1
] |
40,859 | test-json-cdb.lisp | aakropotkin_cl-compdb/test/test-json-cdb.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/json-cdb))
(defpackage :compdb/test/test-json-cdb
(:USE :common-lisp :prove :compdb/json-cdb)
(:IMPORT-FROM :asdf #:system-relative-pathname)
(:EXPORT
#:test-parse-compdb-json
#:run-test-json-cdb))
(in-package :compdb/test/test-json-cdb)
;; ========================================================================== ;;
(defun test-parse-compdb-json ()
(subtest "Test `parse-compdb-json' function."
(let ((cdb (parse-compdb-json
(system-relative-pathname :COMPDB
"compile_commands.json"))))
(is-type cdb 'list)
(is-type (assoc :ARGUMENTS (car cdb)) 'list)
(is-type (assoc :DIRECTORY (car cdb)) 'cons)
(is-type (assoc :OUTPUT (car cdb)) 'cons)
(is-type (assoc :FILE (car cdb)) 'cons))))
;; -------------------------------------------------------------------------- ;;
(defparameter *cdb1*
(parse-compdb-json (system-relative-pathname :COMPDB
"compile_commands.json")))
;; -------------------------------------------------------------------------- ;;
(defun test-get-jcu-args ()
(subtest "Test `get-jcu-args' function."
(let ((jcu1 (car *cdb1*))
(jcu2 (cadr *cdb1*)))
)))
;; -------------------------------------------------------------------------- ;;
(defun run-test-json-cdb ()
(test-parse-compdb-json))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 1,625 | Common Lisp | .lisp | 35 | 39.771429 | 80 | 0.415022 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 44f3280b72e72b6f9849f7d0b1fdca88d4ceef631b941752f64aa40d2198fb4f | 40,859 | [
-1
] |
40,860 | test-string-utils.lisp | aakropotkin_cl-compdb/test/test-string-utils.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/string-utils))
(defpackage :compdb/test/test-string-utils
(:USE :common-lisp :prove :compdb/string-utils)
(:EXPORT
#:test-strs-equal
#:test-strs-intersect
#:test-strs-difference
#:test-strs-union
#:test-strs-uniq
#:test-str-append-char
#:run-test-string-utils))
(in-package :compdb/test/test-string-utils)
;; ========================================================================== ;;
(defun test-strs-equal ()
(subtest "Test `strs-equal' function."
(let ((lst-a (list "foo" "bar" "baz"))
(lst-b (list "foo" "bar" "baz"))
(lst-c (list "foo" "bar" "quux"))
(lst-d (list "foo" "bar"))
(lst-e (list)))
(ok (strs-equal lst-a lst-a))
(ok (strs-equal lst-a lst-b))
(ok (strs-equal lst-b lst-a))
(ok (strs-equal lst-e lst-e))
(ok (not (strs-equal lst-a lst-d)))
(ok (not (strs-equal lst-a lst-e)))
(ok (not (strs-equal lst-a lst-c))))))
;; -------------------------------------------------------------------------- ;;
(defun test-strs-intersect ()
(subtest "Test `strs-intersect' function."
(let ((lst-a (list "foo" "bar" "baz"))
(lst-b (list "foo" "bar"))
(lst-c (list "foo" "bar" "quux"))
(lst-d (list)))
(is (strs-intersect lst-a lst-b) (list "foo" "bar") :TEST #'strs-equal)
(is (strs-intersect lst-b lst-c) (list "foo" "bar") :TEST #'strs-equal)
(is (strs-intersect lst-a lst-d) (list))) :TEST #'strs-equal))
;; -------------------------------------------------------------------------- ;;
(defun test-strs-difference ()
(subtest "Test `strs-difference' function."
(let ((lst-a (list "foo" "bar" "baz"))
(lst-b (list "foo" "bar"))
(lst-c (list "foo" "bar" "quux"))
(lst-d (list)))
(is (strs-difference lst-a lst-b) (list "baz") :TEST #'strs-equal)
(is (strs-difference lst-b lst-c) (list) :TEST #'strs-equal)
(is (strs-difference lst-a lst-d) lst-a :TEST #'strs-equal)
(isnt (strs-difference lst-b lst-a) (list "baz") :TEST #'strs-equal))))
;; -------------------------------------------------------------------------- ;;
(defun test-strs-union ()
(subtest "Test `strs-union' function."
(let ((lst-a (list "foo" "bar" "baz"))
(lst-b (list "foo" "bar"))
(lst-c (list "foo" "bar" "quux"))
(lst-d (list)))
(is (strs-union lst-a lst-b) lst-a :TEST #'strs-equal)
(is (strs-union lst-b lst-c) lst-c :TEST #'strs-equal)
(is (strs-union lst-a lst-c)
(list "foo" "bar" "baz" "quux")
:TEST #'strs-equal)
(is (strs-union lst-a lst-d) lst-a :TEST #'strs-equal))))
;; -------------------------------------------------------------------------- ;;
(defun test-strs-uniq ()
(subtest "Test `strs-uniq' function."
(is (strs-uniq (list "foo" "bar" "baz"))
(list "foo" "bar" "baz")
:TEST #'strs-equal)
(is (strs-uniq (list)) (list) :TEST #'strs-equal)
(is (strs-uniq (list "foo" "bar" "foo"))
(list "foo" "bar")
:TEST #'strs-equal)))
;; -------------------------------------------------------------------------- ;;
(defun test-str-append-char ()
(subtest "Test `str-append-char' function."
(is (str-append-char "foo" #\/) "foo/" :TEST #'equal)))
;; -------------------------------------------------------------------------- ;;
(defun run-test-string-utils ()
(test-strs-equal)
(test-strs-intersect)
(test-strs-difference)
(test-strs-union)
(test-strs-uniq)
(test-str-append-char))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 3,876 | Common Lisp | .lisp | 86 | 38.255814 | 80 | 0.450438 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 1588436c15f8ae1f5dc52ae0cea8ff198073231dd0cd307d0f7ecf85f544cf10 | 40,860 | [
-1
] |
40,861 | test-lang-tag.lisp | aakropotkin_cl-compdb/test/test-lang-tag.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/lang-tag))
(defpackage :compdb/test/test-lang-tag
(:USE :common-lisp :prove :compdb/lang-tag)
(:EXPORT
#:test-lang-tag-t
#:test-c-lang-tag-t
#:test-gen-lang-tag-t
#:test-list-of-lang-tags-t
#:test-lang-tag-from-flags
#:test-lang-tag-from-compiler
#:run-test-lang-tag))
(in-package :compdb/test/test-lang-tag)
;; ========================================================================== ;;
(defun test-lang-tag-t ()
(subtest "Test `lang-tag' type."
(ok (lang-tag-p :CC))
(ok (lang-tag-p :CXX))
(ok (lang-tag-p :YACC))
(ok (lang-tag-p :LEX))
(ok (lang-tag-p :OTHER))
(ok (not (lang-tag-p :HOWDY)))
(is-type :CC 'lang-tag)
(is-type :CXX 'lang-tag)
(is-type :YACC 'lang-tag)
(is-type :LEX 'lang-tag)
(is-type :OTHER 'lang-tag)
(ok (not (typep :HOWDY 'lang-tag)))))
;; -------------------------------------------------------------------------- ;;
(defun test-c-lang-tag-t ()
(subtest "Test `c-lang-tag' type."
(ok (c-lang-tag-p :CC))
(ok (c-lang-tag-p :CXX))
(is-type :CC 'c-lang-tag)
(is-type :CXX 'c-lang-tag)
(ok (not (c-lang-tag-p :YACC)))
(ok (not (c-lang-tag-p :LEX)))
(ok (not (c-lang-tag-p :OTHER)))
(ok (not (c-lang-tag-p :HOWDY)))))
;; -------------------------------------------------------------------------- ;;
(defun test-gen-lang-tag-t ()
(subtest "Test `gen-lang-tag' type."
(ok (gen-lang-tag-p :YACC))
(ok (gen-lang-tag-p :LEX))
(ok (not (gen-lang-tag-p :OTHER)))
(ok (not (gen-lang-tag-p :HOWDY)))
(is-type :YACC 'gen-lang-tag)
(is-type :LEX 'gen-lang-tag)))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-lang-tags-t ()
(subtest "Test `list-of-lang-tag' type."
(is-type (list :CC :CXX :YACC :LEX :OTHER) 'list-of-lang-tags)))
;; -------------------------------------------------------------------------- ;;
(defun test-lang-tag-from-flags ()
(subtest "Test `lang-tag-from-flags' function."
(is :CXX (lang-tag-from-flags (list "foo" "-x" "c++")))
(is :CC (lang-tag-from-flags (list "foo" "-x" "c")))
(ok (null (lang-tag-from-flags (list "foo" "bar"))))))
;; -------------------------------------------------------------------------- ;;
(defun test-lang-tag-from-compiler ()
(subtest "Test `lang-tag-from-compiler' function."
(is :CC (lang-tag-from-compiler "gcc"))
(is :CC (lang-tag-from-compiler "cc"))
(is :CC (lang-tag-from-compiler "icc"))
(is :CC (lang-tag-from-compiler "clang"))
(is :CXX (lang-tag-from-compiler "g++"))
(is :CXX (lang-tag-from-compiler "clang++"))
(is :YACC (lang-tag-from-compiler "yacc"))
(is :YACC (lang-tag-from-compiler "bison"))
(is :LEX (lang-tag-from-compiler "lex"))
(is :LEX (lang-tag-from-compiler "flex"))))
;; -------------------------------------------------------------------------- ;;
(defun run-test-lang-tag ()
(test-lang-tag-t)
(test-c-lang-tag-t)
(test-gen-lang-tag-t)
(test-list-of-lang-tags-t)
(test-lang-tag-from-flags)
(test-lang-tag-from-compiler))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 3,318 | Common Lisp | .lisp | 81 | 37.037037 | 80 | 0.474603 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 9de5cf96c28b61f3c43b9cd46d331dc5751af6ebbe6416e65e26733ead89e6b3 | 40,861 | [
-1
] |
40,862 | test-types.lisp | aakropotkin_cl-compdb/test/test-types.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/types))
(defpackage :compdb/test/test-types
(:USE :common-lisp :prove :compdb/types)
(:EXPORT
#:run-test-types
#:test-list-of-strings
#:test-list-of-pathnames
#:test-pair-of-strings
#:test-list-of-symbols))
(in-package :compdb/test/test-types)
;; ========================================================================== ;;
(defun test-list-of-strings ()
(subtest "Test `list-of-strings' type."
(ok (list-of-strings-p (list "foo" "bar")))
(ok (list-of-strings-p (list)))
(ok (not (list-of-strings-p (list "foo" 4))))
(ok (not (list-of-strings-p (list 'foo 'bar))))
(is-type (list "foo" "bar") 'list-of-strings)
(is-type (list) 'list-of-strings)
(ok (typep (list "foo" "bar") 'list-of-strings))
(ok (not (typep (list "foo" 4) 'list-of-strings)))
(ok (not (typep (list 'foo 'bar) 'list-of-strings)))))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-pathnames ()
(subtest "Test `list-of-pathnames' type."
(ok (list-of-pathnames-p (list #P"foo")))
(ok (list-of-pathnames-p (list #P"foo" #P"bar")))
(ok (not (list-of-pathnames-p (list "foo" "bar"))))
(ok (not (list-of-pathnames-p (list #P"foo" "bar"))))
(is-type (list #P"foo" #P"bar") 'list-of-pathnames)
(ok (typep (list #P"foo" #P"bar") 'list-of-pathnames))
(ok (not (typep (list "foo" "bar") 'list-of-pathnames)))
(ok (not (typep (list #P"foo" "bar") 'list-of-pathnames)))))
;; -------------------------------------------------------------------------- ;;
(defun test-pair-of-strings ()
(subtest "Test `pair-of-strings' type."
(ok (pair-of-strings-p (cons "foo" "bar")))
(ok (not (pair-of-strings-p (cons "foo" 4))))
(is-type (cons "foo" "bar") 'pair-of-strings)
(ok (typep (cons "foo" "bar") 'pair-of-strings))
(ok (not (typep (cons "foo" 4) 'pair-of-strings)))))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-symbols ()
(subtest "Test `list-of-symbols' type."
(ok (list-of-symbols-p (list 'a 'b 'c)))
(ok (list-of-symbols-p (list 'a 'b :C)))
(ok (list-of-symbols-p (list)))
(ok (not (list-of-symbols-p 4)))
(ok (not (list-of-symbols-p (list 'a 4))))
(is-type (list 'a 'b) 'list-of-symbols)
(is-type (list 'a :B) 'list-of-symbols)
(ok (typep (list 'a 'b) 'list-of-symbols))
(ok (not (typep (list 'a 'b 4) 'list-of-symbols)))))
;; -------------------------------------------------------------------------- ;;
(defun run-test-types ()
(test-list-of-strings)
(test-list-of-pathnames)
(test-pair-of-strings)
(test-list-of-symbols))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 2,954 | Common Lisp | .lisp | 62 | 42.612903 | 80 | 0.477882 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | b05580c9622cdb914adf96cab94b13c0e07755c58142974bcfff5faf2eee587e | 40,862 | [
-1
] |
40,863 | test-flags.lisp | aakropotkin_cl-compdb/test/test-flags.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/flags))
(defpackage :compdb/test/test-flags
(:USE :common-lisp :prove :compdb/flags)
(:EXPORT
#:test-raw-flag-pair-t
#:test-flag-pair-t
#:test-raw-flaggable-t
#:test-raw-list-of-flaggables
#:run-test-flags))
(in-package :compdb/test/test-flags)
;; ========================================================================== ;;
(defun test-raw-flag-pair-t ()
(subtest "Test `flag-pair' type on actual pairs."
(ok (flag-pair-p (cons "foo" "bar")))
(ok (flag-pair-p (cons "foo" #P"bar")))
(ok (not (flag-pair-p (cons #P"bar" "foo"))))
(ok (not (flag-pair-p (cons "foo" 4))))
(is-type (cons "foo" "bar") 'flag-pair)
(is-type (cons "foo" #P"bar") 'flag-pair)
(ok (typep (cons "foo" "bar") 'flag-pair))
(ok (typep (cons "foo" #P"bar") 'flag-pair))
(ok (not (typep (cons #P"bar" "foo") 'flag-pair)))
(ok (not (typep (cons "foo" 4) 'flag-pair)))))
;; -------------------------------------------------------------------------- ;;
(defparameter *raw-flag-pairs*
(list (cons "foo" "bar")
(cons "foo" #P"bar")))
(defparameter *not-raw-flag-pairs*
(list (cons #P"bar" "foo")
(cons "foo" 4)))
;; -------------------------------------------------------------------------- ;;
(defun test-flag-pair-t ()
(subtest "Test `flag-pair' type."
(ok (every #'flaggable-p *raw-flag-pairs*))
(ok (notany #'flaggable-p *not-raw-flag-pairs*))
(ok (flag-pair-p (make-flag :OPT "foo" :ARG "bar")))
(ok (flag-pair-p (make-flag :OPT "foo" :ARG #P"bar")))
(ok (not (flag-pair-p (make-flag :OPT "foo"))))
(ok (not (flag-pair-p (make-flag :OPT "foo" :SCOPE :COMMON))))
(is-type (make-flag :OPT "foo" :ARG "bar") 'flag-pair)
(is-type (make-flag :OPT "foo" :ARG #P"bar") 'flag-pair)))
;; -------------------------------------------------------------------------- ;;
(defparameter *flag-pairs*
(append *raw-flag-pairs*
(list (make-flag :OPT "foo" :ARG "bar")
(make-flag :OPT "foo" :ARG #P"bar"))))
(defparameter *not-flag-pairs*
(append *not-raw-flag-pairs*
(list (make-flag :OPT "foo")
(make-flag :OPT "foo" :SCOPE :COMMON))))
;; -------------------------------------------------------------------------- ;;
(defun test-raw-flaggable-t ()
(subtest "Test `flaggable' type on `string's and `raw-flar-pair's."
(ok (flaggable-p "foo"))
(is-type "foo" 'flaggable)
(ok (typep "foo" 'flaggable))
(ok (every #'flaggable-p *raw-flag-pairs*))
(ok (notany #'flaggable-p *not-raw-flag-pairs*))
(ok (not (flaggable-p 4)))
(ok (not (typep 4 'flaggable)))
(ok (not (flaggable-p 'foo)))
(ok (not (typep 'foo 'flaggable)))
(is-type (cons "foo" "bar") 'flaggable)
(ok (typep (cons "foo" "bar") 'flaggable))
(is-type (cons "foo" #P"bar") 'flaggable)
(ok (typep (cons "foo" #P"bar") 'flaggable))))
;; -------------------------------------------------------------------------- ;;
(defun test-raw-list-of-flaggables ()
(subtest "Test `list-of-flaggables' type."
(ok (list-of-flaggables-p (list "foo" (cons "bar" "baz"))))
(ok (list-of-flaggables-p (list)))
(ok (not (list-of-flaggables-p (list 4))))
(ok (not (list-of-flaggables-p 4)))
(ok (not (list-of-flaggables-p (list "foo" 4))))
(is-type (list "foo" (cons "bar" "baz") (cons "qux" #P"sal"))
'list-of-flaggables)
(is-type (list) 'list-of-flaggables)
(ok (not (typep (list 4) 'list-of-flaggables)))
(ok (typep (list "foo" (cons "bar" "baz")) 'list-of-flaggables))))
;; -------------------------------------------------------------------------- ;;
(defun run-test-flags ()
(test-raw-flag-pair-t)
(test-flag-pair-t)
(test-raw-flaggable-t)
(test-raw-list-of-flaggables))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 4,011 | Common Lisp | .lisp | 88 | 40.772727 | 80 | 0.484078 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 3ae370de2a8d14b2c4a831b2691a3818ff155af8e1c7cea3e4e639c0ae707339 | 40,863 | [
-1
] |
40,864 | test-compdb.lisp | aakropotkin_cl-compdb/test/test-compdb.lisp |
(in-package :cl-user)
(defpackage :compdb/test/test-compdb
(:USE :common-lisp :prove :compdb/compdb))
(in-package :compdb/test/test-compdb)
;; ========================================================================== ;;
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 394 | Common Lisp | .lisp | 7 | 53.714286 | 80 | 0.275132 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 3a29c663fd0e5a2dd5f3580cbb2a4b7d1387879a4e20c828e5645ff2ec89c9c2 | 40,864 | [
-1
] |
40,865 | test-flag-collection.lisp | aakropotkin_cl-compdb/test/test-flag-collection.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/flag-collection))
(defpackage :compdb/test/test-flag-collection
(:USE :common-lisp :prove :compdb/flag-collection))
(in-package :compdb/test/test-flag-collection)
;; ========================================================================== ;;
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 471 | Common Lisp | .lisp | 8 | 56.375 | 80 | 0.362031 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 1bcf6f7dbf6fc073d27cdbd682b3310d05465392a7221ebdea4730262508c01c | 40,865 | [
-1
] |
40,866 | test-all.lisp | aakropotkin_cl-compdb/test/test-all.lisp |
;; ========================================================================== ;;
(uiop/package:define-package :compdb/test/all
(:NICKNAMES :compdb/test)
(:USE-REEXPORT
:compdb/test/test-alias
:compdb/test/test-compdb
:compdb/test/test-core
:compdb/test/test-cunit
:compdb/test/test-dirs
:compdb/test/test-flags
:compdb/test/test-flag-collection
:compdb/test/test-json-cdb
:compdb/test/test-lang-tag
:compdb/test/test-srcdir
:compdb/test/test-string-utils
:compdb/test/test-struct-utils
:compdb/test/test-types))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 726 | Common Lisp | .lisp | 19 | 34.473684 | 80 | 0.484286 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | e0632ee77c51bacb270e8b96494fc5b1112d6a90c6dae585cd659a842034a614 | 40,866 | [
-1
] |
40,867 | test-dirs.lisp | aakropotkin_cl-compdb/test/test-dirs.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/dirs))
(defpackage :compdb/test/test-dirs
(:USE :common-lisp :prove :compdb/dirs)
(:EXPORT
#:test-directory-component-t
#:test-list-of-directory-components-t
#:test-directory-pathname-t
#:test-list-of-directory-pathnames-t #:test-dirpath-t
#:test-list-of-dirpaths-t
#:test-path-t
#:test-list-of-paths-t
#:test-as-pathname
#:test-as-directory-component
#:test-simplify-path
#:test-simplify-directory-component
#:test-join-pathnames
#:test-parse-dir-namestring
#:test-subpath-p
#:test-any-subpath-p
#:test-get-paths-roots
#:run-test-dirs))
(in-package :compdb/test/test-dirs)
;; ========================================================================== ;;
(defun test-directory-component-t ()
(subtest "Test `directory-component' type."
(is-type (list :RELATIVE "foo") 'directory-component)
(directory-component-p (list :RELATIVE "foo"))))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-directory-components-t ()
(subtest "Test `list-of-directory-component' type."
(is-type (list (list :RELATIVE "foo")) 'list-of-directory-components)
(list-of-directory-components-p (list (list :RELATIVE "foo")))))
;; -------------------------------------------------------------------------- ;;
(defun test-directory-pathname-t ()
(subtest "Test `directory-pathname' type."
(is-type (parse-namestring "foo/") 'directory-pathname))
(directory-pathname-p (parse-namestring "foo/")))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-directory-pathnames-t ()
(subtest "Test `list-of-directory-pathnames' type."
(is-type (list (parse-namestring "foo/")) 'list-of-directory-pathnames))
(list-of-directory-pathnames-p (list (parse-namestring "foo/"))))
;; -------------------------------------------------------------------------- ;;
(defun test-dirpath-t ()
(subtest "Test `dirpath' type."
(is-type (list :RELATIVE "foo") 'dirpath)
(is-type (parse-namestring "foo/") 'dirpath)
(is-type "foo/" 'dirpath)
(dirpath-p (list :RELATIVE "foo"))
(dirpath-p (parse-namestring "foo/"))
(dirpath-p "foo/")))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-dirpaths-t ()
(subtest "Test `list-of-dirpaths' type."
(is-type (list (list :RELATIVE "foo")) 'list-of-dirpaths)
(is-type (list (parse-namestring "foo/")) 'list-of-dirpaths)
(is-type (list "foo/") 'list-of-dirpaths)
(list-of-dirpaths-p (list (list :RELATIVE "foo")))
(list-of-dirpaths-p (list (parse-namestring "foo/")))
(list-of-dirpaths-p (list "foo/"))))
;; -------------------------------------------------------------------------- ;;
(defun test-path-t ()
(subtest "Test `path' type."
(is-type "foo/" 'path)
(is-type (list :RELATIVE "foo") 'path)
(is-type (parse-namestring "foo/") 'path)
(is-type (parse-namestring "foo/bar") 'path)
(path-p "foo/")
(path-p (list :RELATIVE "foo"))
(path-p (parse-namestring "foo/"))
(path-p (parse-namestring "foo/bar"))))
;; -------------------------------------------------------------------------- ;;
(defun test-list-of-paths-t ()
(subtest "Test `list-of-paths' type."
(is-type (list "foo/") 'list-of-paths)
(is-type (list (list :RELATIVE "foo")) 'list-of-paths)
(is-type (list (parse-namestring "foo/")) 'list-of-paths)
(is-type (list (parse-namestring "foo/bar")) 'list-of-paths)
(list-of-paths-p (list "foo/"))
(list-of-paths-p (list (list :RELATIVE "foo")))
(list-of-paths-p (list (parse-namestring "foo/")))
(list-of-paths-p (list (parse-namestring "foo/bar")))))
;; -------------------------------------------------------------------------- ;;
(defun test-as-pathname ()
(subtest "Test `as-pathname' function."
(is-type (as-pathname "foo/") 'pathname)
(is-type (as-pathname (parse-namestring "foo/")) 'pathname)
(is-type (as-pathname (list :RELATIVE "foo")) 'pathname)
;; Note that `:BACK' is "simplified" while `:UP' is not.
(ok (equal (as-pathname (list :RELATIVE "foo" "bar" :BACK "baz"))
(as-pathname (list :RELATIVE "foo" "baz"))))
(ok (not (equal (as-pathname (list :RELATIVE "foo" "bar" :UP "baz"))
(as-pathname (list :RELATIVE "foo" "baz")))))))
;; -------------------------------------------------------------------------- ;;
(defun test-as-directory-component ()
(subtest "Test `as-directory-component' function."
(is-type (as-directory-component "foo/") 'directory-component)
(is-type (as-directory-component (list :RELATIVE "foo"))
'directory-component)
(is-type (as-directory-component (parse-namestring "foo/"))
'directory-component)))
;; -------------------------------------------------------------------------- ;;
(defun test-simplify-directory-component ()
(subtest "Test `simplify-directory-component' function."
(ok (equal (simplify-directory-component
(list :RELATIVE "foo" "bar" :BACK "baz"))
(list :RELATIVE "foo" "baz")))
(ok (equal (simplify-directory-component
(list :RELATIVE "foo" "bar" :UP "baz"))
(list :RELATIVE "foo" "baz")))))
;; -------------------------------------------------------------------------- ;;
(defun test-simplify-path ()
(subtest "Test `simplify-path' function."
(ok (equal (simplify-path "foo/bar/../baz") "foo/baz"))
(ok (equal (simplify-path #P"foo/bar/../baz") #P"foo/baz"))
(ok (equal (simplify-path (list :RELATIVE "foo" "bar" :BACK "baz"))
(list :RELATIVE "foo" "baz")))
(ok (equal (simplify-path (list :RELATIVE "foo" "bar" :UP "baz"))
(list :RELATIVE "foo" "baz")))))
;; -------------------------------------------------------------------------- ;;
(defun test-join-pathnames ()
(subtest "Test `join-pathnames' function."
(is-type (join-pathnames "foo/" "bar") 'pathname)
(ok (equal (parse-namestring "foo/bar") (join-pathnames "foo/" "bar")))))
;; -------------------------------------------------------------------------- ;;
(defun test-parse-dir-namestring ()
(subtest "Test `parse-dir-namestring' function"
(is-type (parse-dir-namestring "foo/bar/") 'pathname)
(is-type (parse-dir-namestring "foo/bar") 'pathname)
(is-type (parse-dir-namestring "foo/bar/") 'directory-pathname)
(is-type (parse-dir-namestring "foo/bar") 'directory-pathname)
(is-type (parse-dir-namestring "foo bar") 'directory-pathname)))
;; -------------------------------------------------------------------------- ;;
(defun test-subpath-p ()
(subtest "Test `subpath-p' function."
(ok (subpath-p "foo/" "foo/bar/baz"))
(ok (not (subpath-p "foo/" "quux/bar/baz")))
(ok (not (subpath-p "foo/" "foo/bar/baz" :DIRECT T)))
(ok (subpath-p "foo/" "foo/bar" :DIRECT T))
(ok (subpath-p "foo/" "foo/bar/" :DIRECT T))
(let ((dir1 (list :RELATIVE "foo"))
(dir2 (list :RELATIVE "foo" "bar"))
(dir3 (list :RELATIVE "baz"))
(dir4 (list :ABSOLUTE "foo"))
(dir5 (list :RELATIVE "baz" "bakk" :BACK))
(dir6 (list :RELATIVE "baz" "bakk" :UP))
(dir7 (list :RELATIVE "baz" "bakk" :BACK "billy"))
(dir8 (list :RELATIVE "baz" "bakk" :UP "sally")))
(ok (subpath-p dir1 (as-pathname dir2)))
(ok (not (subpath-p dir1 (as-pathname dir3))))
(ok (not (subpath-p dir1 (as-pathname dir4))))
(ok (not (subpath-p dir3 (as-pathname dir5))))
(ok (not (subpath-p dir3 (as-pathname dir6))))
(ok (subpath-p dir3 (as-pathname dir7)))
(ok (subpath-p dir3 (as-pathname dir8)))
(ok (subpath-p dir5 (as-pathname dir7)))
(ok (subpath-p dir5 (as-pathname dir8)))
(ok (subpath-p dir6 (as-pathname dir8)))
(ok (subpath-p dir6 (as-pathname dir7))))))
;; -------------------------------------------------------------------------- ;;
(defun test-any-subpath-p ()
(subtest "Test `any-subpath-p' function."
(let ((dir1 (list :RELATIVE "foo"))
(dir2 (list :RELATIVE "foo" "bar"))
(dir3 (list :RELATIVE "baz"))
(dir4 (list :ABSOLUTE "foo"))
(dir5 (list :RELATIVE "baz" "bakk" :BACK))
(dir6 (list :RELATIVE "baz" "bakk" :UP))
(dir7 (list :RELATIVE "baz" "bakk" :BACK "billy"))
(dir8 (list :RELATIVE "baz" "bakk" :UP "sally")))
(ok (any-subpath-p (list dir1) (as-pathname dir2)))
(ok (not (any-subpath-p (list dir1) (as-pathname dir3))))
(ok (not (any-subpath-p (list dir1) (as-pathname dir4))))
(ok (not (any-subpath-p (list dir3) (as-pathname dir5))))
(ok (not (any-subpath-p (list dir3) (as-pathname dir6))))
(ok (any-subpath-p (list dir3) (as-pathname dir7)))
(ok (any-subpath-p (list dir3) (as-pathname dir8)))
(ok (any-subpath-p (list dir5) (as-pathname dir7)))
(ok (any-subpath-p (list dir5) (as-pathname dir8)))
(ok (any-subpath-p (list dir6) (as-pathname dir8)))
(ok (any-subpath-p (list dir6) (as-pathname dir7))))))
;; -------------------------------------------------------------------------- ;;
(defun test-get-paths-roots ()
(subtest "Test `get-paths-roots' function."
(let ((p1 #P"foo/bar/baz")
(p2 #P"foo/bar/quux")
(p3 #P"a/b/c")
(p4 #P"a/b/d"))
(ok (equal (list #P"foo/bar/" #P"a/b/")
(get-paths-roots (list p1 p2 p3 p4)))))))
;; -------------------------------------------------------------------------- ;;
(defun run-test-dirs ()
(test-directory-component-t)
(test-list-of-directory-components-t)
(test-directory-pathname-t)
(test-list-of-directory-pathnames-t)
(test-dirpath-t)
(test-list-of-dirpaths-t)
(test-path-t)
(test-list-of-paths-t)
(test-as-pathname)
(test-as-directory-component)
(test-simplify-directory-component)
(test-simplify-path)
(test-join-pathnames)
(test-parse-dir-namestring)
(test-subpath-p)
(test-any-subpath-p)
(test-get-paths-roots))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 10,326 | Common Lisp | .lisp | 212 | 43.34434 | 80 | 0.527054 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | ec7e47dea69f8bfe63219abe92353f740c97606d040c390cf34224bc21b35a77 | 40,867 | [
-1
] |
40,868 | test-alias.lisp | aakropotkin_cl-compdb/test/test-alias.lisp |
(in-package :cl-user)
(ql:quickload '(:prove :compdb/alias))
(defpackage :compdb/test/test-alias
(:USE :common-lisp :prove :compdb/alias)
(:EXPORT
#:test-defalias
;#:test-defalias-replace-first
;#:test-defaliases-replace-first
#:run-test-alias))
(in-package :compdb/test/test-alias)
;; ========================================================================== ;;
(defparameter *x* 1)
(defalias '*x* '*x1*)
(defparameter *y* 2)
(defalias '*y* '*y1*)
(defun add1 (x) (+ 1 x))
(defalias 'add1 'adder)
(defun test-defalias ()
(subtest "Test `test-defalias' function."
(ok (equal *x* *x1*))
(ok (equal *y* *y1*))
(ok (equal (add1 1) (adder 1)))))
;; -------------------------------------------------------------------------- ;;
(defparameter var-x *x*)
(defalias-replace-first "var" "bar" 'var-x)
(defparameter var-y *y*)
(defalias-replace-first "var" "bar" 'var-y)
(defun foo-x () *x*)
(defalias-replace-first "foo" "baz" 'foo-x)
(defun foo-y () *y*)
(defalias-replace-first "foo" "baz" 'foo-y)
;(defun test-defalias-replace-first ()
; (subtest "Test `test-defalias-replace-first' function."
; ;(ok (equal var-x bar-x))
; ;(ok (equal var-y bar-y))
; (ok (equal (foo-x) (baz-x)))
; (ok (equal (foo-y) (baz-y)))))
;; -------------------------------------------------------------------------- ;;
;(defun test-defaliases-replace-first ()
; (subtest "Test `test-defaliases-replace-first' function."
; (ok T)))
;; -------------------------------------------------------------------------- ;;
(defun run-test-alias ()
(test-defalias)
;(test-defalias-replace-first)
;(test-defaliases-replace-first)
)
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 1,830 | Common Lisp | .lisp | 49 | 35.142857 | 80 | 0.475568 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 00fb89e5ce7e89a69c0eb144cd7b2a672512838a11cf4b6f26baae1332156935 | 40,868 | [
-1
] |
40,869 | test-core.lisp | aakropotkin_cl-compdb/test/test-core.lisp |
(in-package :cl-user)
(defpackage :compdb/test/test-core
(:USE :common-lisp :prove :compdb/core))
(in-package :compdb/test/test-core)
;; ========================================================================== ;;
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 388 | Common Lisp | .lisp | 7 | 52.857143 | 80 | 0.263441 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 86553026720e39f35d3c20e3afacc8560ac82d58c746806749d7a23cf97e1c19 | 40,869 | [
-1
] |
40,870 | compdb.asd | aakropotkin_cl-compdb/compdb.asd |
#-asdf3 (error "compdb requires ASDF 3")
;; ========================================================================== ;;
(asdf:defsystem :compdb
:NAME "Common Lisp Compilation Database Parser"
:DESCRIPTION "compdb: parse compile_commands.json files."
:VERSION "0.0.1"
:AUTHOR "Alex Ameen <[email protected]>"
:LICENSE "Public Domain"
:CLASS :package-inferred-system
:DEFSYSTEM-DEPENDS-ON (:asdf-package-system)
:DEPENDS-ON (:compdb/all))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 722 | Common Lisp | .asd | 13 | 52.615385 | 80 | 0.392857 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | a2a52aa28ff6b50b335958438522a5e1b642612a7ff872cc02422f9542035e87 | 40,870 | [
-1
] |
40,871 | compdb-test.asd | aakropotkin_cl-compdb/test/compdb-test.asd |
#-asdf3 (error "compdb requires ASDF 3")
;; ========================================================================== ;;
(asdf:defsystem :compdb-test
:NAME "Common Lisp Compilation Database Parser - Tests"
:DESCRIPTION "compdb-test: parse compile_commands.json files."
:VERSION "0.0.1"
:AUTHOR "Alex Ameen <[email protected]>"
:LICENSE "Public Domain"
:CLASS :package-inferred-system
:DEFSYSTEM-DEPENDS-ON (:asdf-package-system)
:DEPENDS-ON (:compdb/test/test-all))
;; -------------------------------------------------------------------------- ;;
;; ========================================================================== ;;
| 750 | Common Lisp | .asd | 13 | 54.769231 | 80 | 0.406593 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 2bba795e449fff987a751e217032754e62dd393914ffb8a9ea7f16e17bfdcba0 | 40,871 | [
-1
] |
40,880 | compile_commands.json | aakropotkin_cl-compdb/compile_commands.json | [
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
".libs/gl_list.o",
"../../gnulib/gl_list.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_list.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/gl_list.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
".libs/gl_list.o",
"../../gnulib/gl_list.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_list.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/gl_list.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"gl_list.o",
"../../gnulib/gl_list.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_list.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/gl_list.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"gl_list.o",
"../../gnulib/gl_list.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_list.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/gl_list.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
".libs/gl_map.o",
"../../gnulib/gl_map.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_map.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/gl_map.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
".libs/gl_map.o",
"../../gnulib/gl_map.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_map.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/gl_map.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"gl_map.o",
"../../gnulib/gl_map.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_map.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/gl_map.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"gl_map.o",
"../../gnulib/gl_map.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_map.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/gl_map.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
".libs/gl_set.o",
"../../gnulib/gl_set.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_set.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/gl_set.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
".libs/gl_set.o",
"../../gnulib/gl_set.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_set.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/gl_set.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"gl_set.o",
"../../gnulib/gl_set.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_set.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/gl_set.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"gl_set.o",
"../../gnulib/gl_set.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/gl_set.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/gl_set.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
".libs/unistd.o",
"../../gnulib/unistd.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/unistd.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/unistd.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
".libs/unistd.o",
"../../gnulib/unistd.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/unistd.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/.libs/unistd.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"unistd.o",
"../../gnulib/unistd.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/unistd.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/unistd.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I../../gnulib",
"-I..",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"unistd.o",
"../../gnulib/unistd.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build/gnulib",
"file": "/home/camus/src/c/graphs/libgraph/build/gnulib/../../gnulib/unistd.c",
"output": "/home/camus/src/c/graphs/libgraph/build/gnulib/unistd.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/gsort.o",
"../src/gsort.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/gsort.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/gsort.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/gsort.o",
"../src/gsort.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/gsort.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/gsort.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/graph.o",
"../src/graph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/graph.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/graph.o",
"../src/graph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/graph.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/graph.o",
"../src/graph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/graph.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/graph.o",
"../src/graph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/graph.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/pq.o",
"../src/pq.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/pq.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/pq.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/pq.o",
"../src/pq.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/pq.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/pq.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/pq.o",
"../src/pq.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/pq.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/pq.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/pq.o",
"../src/pq.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/pq.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/pq.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/gsearch.o",
"../src/gsearch.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/gsearch.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/gsearch.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/gsearch.o",
"../src/gsearch.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/gsearch.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/gsearch.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/gsearch.o",
"../src/gsearch.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/gsearch.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/gsearch.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/gsearch.o",
"../src/gsearch.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/gsearch.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/gsearch.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/dijkstra.o",
"../src/dijkstra.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/dijkstra.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/dijkstra.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/dijkstra.o",
"../src/dijkstra.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/dijkstra.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/dijkstra.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/dijkstra.o",
"../src/dijkstra.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/dijkstra.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/dijkstra.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/dijkstra.o",
"../src/dijkstra.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/dijkstra.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/dijkstra.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/cycle.o",
"../src/cycle.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/cycle.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/cycle.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/cycle.o",
"../src/cycle.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/cycle.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/cycle.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/cycle.o",
"../src/cycle.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/cycle.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/cycle.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/cycle.o",
"../src/cycle.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/cycle.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/cycle.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/hgraph.o",
"../src/hgraph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/hgraph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/hgraph.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/hgraph.o",
"../src/hgraph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/hgraph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/hgraph.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/hgraph.o",
"../src/hgraph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/hgraph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/hgraph.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/hgraph.o",
"../src/hgraph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/hgraph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/hgraph.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/shortest_path.o",
"../src/shortest_path.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/shortest_path.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/shortest_path.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/shortest_path.o",
"../src/shortest_path.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/shortest_path.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/shortest_path.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/shortest_path.o",
"../src/shortest_path.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/shortest_path.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/shortest_path.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/shortest_path.o",
"../src/shortest_path.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/shortest_path.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/shortest_path.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-o",
"src/.libs/graph_util.o",
"../src/graph_util.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph_util.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/graph_util.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-fPIC",
"-DPIC",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/.libs/graph_util.o",
"../src/graph_util.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph_util.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/.libs/graph_util.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/graph_util.o",
"../src/graph_util.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph_util.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/graph_util.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/graph_util.o",
"../src/graph_util.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/graph_util.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/graph_util.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/test/test_graph.o",
"../src/test/test_graph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_graph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_graph.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/test/test_graph.o",
"../src/test/test_graph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_graph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_graph.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/test/test_gsearch.o",
"../src/test/test_gsearch.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_gsearch.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_gsearch.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/test/test_gsearch.o",
"../src/test/test_gsearch.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_gsearch.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_gsearch.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/test/test_shortest_path.o",
"../src/test/test_shortest_path.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_shortest_path.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_shortest_path.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/test/test_shortest_path.o",
"../src/test/test_shortest_path.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_shortest_path.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_shortest_path.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/test/test_cycle.o",
"../src/test/test_cycle.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_cycle.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_cycle.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/test/test_cycle.o",
"../src/test/test_cycle.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_cycle.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_cycle.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-DTEST_SRCDIR=\"/home/camus/src/c/graphs/libgraph/build/../src/test\"",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/test/test_hgraph-test_hgraph.o",
"../src/test/test_hgraph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_hgraph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_hgraph-test_hgraph.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-DTEST_SRCDIR=\"/home/camus/src/c/graphs/libgraph/build/../src/test\"",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/test/test_hgraph-test_hgraph.o",
"../src/test/test_hgraph.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_hgraph.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_hgraph-test_hgraph.o"
},
{
"arguments": [
"/home/camus/.nix-profile/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-o",
"src/test/test_graph_util.o",
"../src/test/test_graph_util.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_graph_util.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_graph_util.o"
},
{
"arguments": [
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/bin/gcc",
"-DHAVE_CONFIG_H",
"-I.",
"-I..",
"-I../include",
"-D_GNU_SOURCE",
"-I./gnulib",
"-I../gnulib",
"-ggdb3",
"-Wall",
"-pedantic",
"-I/home/camus/.nix-profile/include",
"-I/home/camus/.local/include",
"-c",
"-B/nix/store/5lgyy30nyvq59c4m2a7skmwaqz3jja3n-gcc-10.3.0-lib/lib",
"-B/nix/store/ikl21vjfq900ccbqg1xasp83kadw6q8y-glibc-2.32-46/lib/",
"-idirafter",
"/nix/store/niplk2w8g0ri0n8h07zyp1l3cbnzv7a2-glibc-2.32-46-dev/include",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed",
"-idirafter",
"/nix/store/cfkfpca5ymx2rf66k6f16sa3lb6ndgc2-gcc-10.3.0/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include",
"-B/nix/store/gg2rq3hrl3rf92nq6dnqhdyyxaa89aqf-gcc-wrapper-10.3.0/bin/",
"-o",
"src/test/test_graph_util.o",
"../src/test/test_graph_util.c"
],
"directory": "/home/camus/src/c/graphs/libgraph/build",
"file": "/home/camus/src/c/graphs/libgraph/build/../src/test/test_graph_util.c",
"output": "/home/camus/src/c/graphs/libgraph/build/src/test/test_graph_util.o"
}
]
| 58,181 | Common Lisp | .l | 1,723 | 27.421938 | 117 | 0.593432 | aakropotkin/cl-compdb | 0 | 0 | 5 | GPL-3.0 | 9/19/2024, 11:48:48 AM (Europe/Amsterdam) | 3e71c70a9803bd1d0bff0be80e160760d1d0c1f1d2325eb46f413f6f7a80386e | 40,880 | [
-1
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.