#|
(defun method-info (m) (list (METHOD-QUALIFIERS m)(closer-mop:METHOD-LAMBDA-LIST m) (closer-mop:METHOD-SPECIALIZERS m)(closer-mop:METHOD-FUNCTION m) ;; (closer-mop:ACCESSOR-METHOD-SLOT-DEFINITION m) (DOCUMENTATION 'STANDARD-METHOD m)))
(closer-mop:METHOD-LAMBDA-LIST m) (closer-mop:METHOD-SPECIALIZERS m)(closer-mop:METHOD-FUNCTION m) ;; (closer-mop:ACCESSOR-METHOD-SLOT-DEFINITION m) (DOCUMENTATION 'STANDARD-METHOD m)))

|#

;;(quicklisp-quickstart:install)

#+clisp
  (progn    
    (load "asdf/build/asdf.lisp")
    (load "~/quicklisp/setup.lisp")
    (load "quicklisp.lisp"))

(ql:quickload "closer-mop")

(defun set-last-cdr (list ele) (let ((tail (cdr list))) (if (null tail) (rplacd list ele) (set-last-cdr tail ele))))
(defun push-non-nil (info default prop value) (unless (equal value default) (set-last-cdr info (list (list prop value)))))
(defun slot-info (m) (let ((def (list (list :name (closer-mop:slot-definition-name m)))))
 (incf *slotno*)
 (push-non-nil def :always :ordinal *slotno*)
 (push-non-nil def :instance :allocation (closer-mop:slot-definition-allocation m))
 (push-non-nil def () :initform (closer-mop:slot-definition-initform m))
 '(push-non-nil def () :initfunction (closer-mop:slot-definition-initfunction m))
 (push-non-nil def 't :type (closer-mop:slot-definition-type m))
 (push-non-nil def () :initargs (closer-mop:slot-definition-initargs m))
 (push-non-nil def () :readers (closer-mop:slot-definition-readers m))
 #+sbcl (push-non-nil def () :writers (closer-mop:slot-definition-writers m))
 ;;(push-non-nil def () :documentation (closer-mop:slot-definition-documentation m)) 
 def))

(defun print-psv-maybe (skip str a b) (unless (equal b skip) (print-psv str a b)))
(defun print-psv (str a b) (unless (eq a b)(let ((*print-case* :downcase)(*print-readably* nil)(*package* (find-package :keyword))) (pprint (list :mop-direct a str b )))))
(defun print-subclasses (root &optional pre-print) (let ((class (typecase root (class root) (symbol (find-class root)) (t (class-of root)))))
   (handler-case (unless (closer-mop:class-finalized-p class) (closer-mop:finalize-inheritance class))  (t ()))
   (handler-case  (print-psv-maybe () :default-initargs (class-name class) (closer-mop:COMPUTE-DEFAULT-INITARGS class))  (t ()))
 
 (when ()
	 (dolist (item (mapcar #'class-name (closer-mop:class-direct-superclasses class))) (print-psv :superclass (class-name class) item)) 
	 (dolist (item (mapcar #'class-name (closer-mop:class-direct-subclasses class))) (print-psv :superclass item (class-name class) ))
   (print-psv :package-name (class-name class) (package-name (symbol-package (class-name class))))
  #+sbcl (print-psv-maybe '(t) :precedance (class-name class) (mapcar #'class-name (cdr (closer-mop:compute-class-precedence-list class))))
  (print-psv :CLASSOF (class-name class) (class-name (CLASS-OF class)))
  (print-psv :TYPEOF (class-name class) (TYPE-OF class)) 
  ;(print-psv :documentation (class-name class) (closer-mop:class-documentation class))
  (when (equal (TYPE-OF class) 'cl:structure-class)  )
  (setq *slotno* 0)
  (when pre-print (print-psv :superclass (class-name class) (class-name pre-print) ))
  (dolist (item (mapcar #'slot-info (closer-mop:class-direct-slots class))) (print-psv :slot (class-name class) item))
 '(dolist (item (closer-mop:specializer-direct-methods class)) (print-psv :method (class-name class) item ))
 '(dolist (item (mapcar #'method-info (closer-mop:specializer-direct-methods class))) (print-psv :method (class-name class) item ))
  (handler-case (let ((b (closer-mop:CLASS-PROTOTYPE class)))(print-psv :PROTOTYPE (class-name class) b ) )(t () ))
 )
 (dolist (item (closer-mop:class-direct-subclasses class)) (print-subclasses item class))
 ))


(print-subclasses t)

(force-output)
(terpri)




#|

Strct props:


 cl:length
 cl:type
 sb-kernel::alternate-metaclass
 sb-kernel::conc-name
 sb-kernel::constructors
 sb-kernel::copier-name
 sb-kernel::doc
 sb-kernel::element-type
 sb-kernel::include
 sb-kernel::inherited-accessor-alist
 sb-kernel::name
 sb-kernel::named
 sb-kernel::null-lexenv-p
 sb-kernel::offset
 sb-kernel::predicate-name
 sb-kernel::print-option
 sb-kernel::printer-fname
 sb-kernel::pure
 sb-kernel::slots
            

This is SBCL 1.3.1.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.
To load "closer-mop":
  Load 1 ASDF system:
    closer-mop
; Loading "closer-mop"


; file: /home/dmiles/logicmoo_workspace/packs_usr/wam_common_lisp/t/reference/sbcl.info
; in: DEFUN SLOT-INFO
;     (INCF *SLOTNO*)
; ==>
;   (SETQ *SLOTNO* (+ 1 *SLOTNO*))
;
; caught WARNING:
;   undefined variable: *SLOTNO*
;
; compilation unit finished
;   Undefined variable:
;     *SLOTNO*
;   caught 1 WARNING condition

; in: DEFUN PRINT-PSV-MAYBE
;     (PRINT-PSV STR A B)
;
; caught STYLE-WARNING:
;   undefined function: PRINT-PSV
;
; compilation unit finished
;   Undefined function:
;     PRINT-PSV
;   caught 1 STYLE-WARNING condition

; in: DEFUN PRINT-SUBCLASSES
;     (SETQ *SLOTNO* 0)
;
; caught WARNING:
;   undefined variable: *SLOTNO*
;
; compilation unit finished
;   Undefined variable:
;     *SLOTNO*
;   caught 1 WARNING condition

(:mop-direct common-lisp:array :superclass common-lisp:t)
(:mop-direct sb-ext:simd-pack :superclass common-lisp:t)
(:mop-direct common-lisp:number :superclass common-lisp:t)
(:mop-direct sb-kernel::random-class :superclass common-lisp:t)
(:mop-direct sb-kernel:fdefn :superclass common-lisp:t)
(:mop-direct sb-kernel:lra :superclass common-lisp:t)
(:mop-direct sb-kernel:code-component :superclass common-lisp:t)
(:mop-direct sb-ext:weak-pointer :superclass common-lisp:t)
(:mop-direct sb-sys:system-area-pointer :superclass common-lisp:t)
(:mop-direct common-lisp:symbol :superclass common-lisp:t)
(:mop-direct common-lisp:character :superclass common-lisp:t)
(:mop-direct sb-pcl::slot-object :superclass common-lisp:t)
(:mop-direct common-lisp:sequence :superclass common-lisp:t)
(:mop-direct common-lisp:stream :superclass common-lisp:t)
(:mop-direct common-lisp:function :superclass common-lisp:t)
(:mop-direct common-lisp:t :package-name "COMMON-LISP")
(:mop-direct common-lisp:t :precedance common-lisp:nil)
(:mop-direct common-lisp:t :classof sb-pcl:system-class)
(:mop-direct common-lisp:t :typeof sb-pcl:system-class)
(:mop-direct common-lisp:array :superclass common-lisp:t)
(:mop-direct common-lisp:simple-array :superclass common-lisp:array)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:array :package-name "COMMON-LISP")
(:mop-direct common-lisp:array :classof common-lisp:built-in-class)
(:mop-direct common-lisp:array :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:array :superclass common-lisp:t)
(:mop-direct common-lisp:simple-array :superclass common-lisp:array)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:simple-array)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-array :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-array :precedance
 (common-lisp:array common-lisp:t))
(:mop-direct common-lisp:simple-array :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-array :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-array :superclass common-lisp:array)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-vector :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :prototype #())
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-bit-vector :precedance
 (common-lisp:bit-vector common-lisp:vector common-lisp:simple-array
  common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :prototype #*)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-8 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-8 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-16 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-16 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-fixnum :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-fixnum :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-32 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-32 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-64 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-64 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-single-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-single-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-double-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-double-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-single-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-single-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-double-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-double-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :prototype #())
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:simple-array
                     common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
 (sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
 (common-lisp:base-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
 (sb-kernel::character-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct common-lisp:simple-string :prototype 42)
(:mop-direct common-lisp:simple-array :prototype #0A0)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:vector :superclass common-lisp:sequence)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:vector :precedance
 (common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-vector :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :prototype #())
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:bit-vector :precedance
 (common-lisp:vector common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-bit-vector :precedance
 (common-lisp:bit-vector common-lisp:vector common-lisp:simple-array
  common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :prototype #*)
(:mop-direct common-lisp:bit-vector :prototype #*)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-8 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-8 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-16 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-16 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-fixnum :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-fixnum :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-32 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-32 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-64 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-64 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-single-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-single-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-double-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-double-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-single-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-single-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-double-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-double-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :prototype #())
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct common-lisp:string :package-name "COMMON-LISP")
(:mop-direct common-lisp:string :precedance
 (common-lisp:vector common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:simple-array
                     common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
 (sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
 (common-lisp:base-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
 (sb-kernel::character-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct common-lisp:simple-string :prototype 42)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::vector-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::vector-nil :precedance
 (common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
                     common-lisp:t))
(:mop-direct sb-kernel::vector-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::vector-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
 (sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct sb-kernel::vector-nil :prototype "")
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:base-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
                     common-lisp:t))
(:mop-direct common-lisp:base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
 (common-lisp:base-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct common-lisp:base-string :prototype "")
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::character-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
                     common-lisp:t))
(:mop-direct sb-kernel::character-string :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::character-string :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
 (sb-kernel::character-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct sb-kernel::character-string :prototype "")
(:mop-direct common-lisp:string :prototype 42)
(:mop-direct common-lisp:vector :prototype 42)
(:mop-direct common-lisp:array :prototype #0A0)
(:mop-direct sb-ext:simd-pack :superclass common-lisp:t)
(:mop-direct sb-ext:simd-pack :package-name "SB-EXT")
(:mop-direct sb-ext:simd-pack :classof common-lisp:built-in-class)
(:mop-direct sb-ext:simd-pack :typeof common-lisp:built-in-class)
(:mop-direct sb-ext:simd-pack :superclass common-lisp:t)
(:mop-direct sb-ext:simd-pack :prototype
 #<sb-ext:simd-pack  2A 00 00 00  00 00 00 00  2A 00 00 00  00 00 00 00>)
(:mop-direct common-lisp:number :superclass common-lisp:t)
(:mop-direct common-lisp:complex :superclass common-lisp:number)
(:mop-direct common-lisp:real :superclass common-lisp:number)
(:mop-direct common-lisp:number :package-name "COMMON-LISP")
(:mop-direct common-lisp:number :classof common-lisp:built-in-class)
(:mop-direct common-lisp:number :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:number :superclass common-lisp:t)
(:mop-direct common-lisp:complex :superclass common-lisp:number)
(:mop-direct sb-kernel:complex-single-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-double-float :superclass common-lisp:complex)
(:mop-direct common-lisp:complex :package-name "COMMON-LISP")
(:mop-direct common-lisp:complex :precedance (common-lisp:number common-lisp:t))
(:mop-direct common-lisp:complex :classof common-lisp:built-in-class)
(:mop-direct common-lisp:complex :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:complex :superclass common-lisp:number)
(:mop-direct sb-kernel:complex-single-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel:complex-single-float :precedance
 (common-lisp:complex common-lisp:number common-lisp:t))
(:mop-direct sb-kernel:complex-single-float :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-single-float :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-single-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-single-float :prototype #C(42.0 42.0))
(:mop-direct sb-kernel:complex-double-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel:complex-double-float :precedance
 (common-lisp:complex common-lisp:number common-lisp:t))
(:mop-direct sb-kernel:complex-double-float :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-double-float :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-double-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-double-float :prototype #C(42.0d0 42.0d0))
(:mop-direct common-lisp:complex :prototype #C(42 42))
(:mop-direct common-lisp:real :superclass common-lisp:number)
(:mop-direct common-lisp:float :superclass common-lisp:real)
(:mop-direct common-lisp:rational :superclass common-lisp:real)
(:mop-direct common-lisp:real :package-name "COMMON-LISP")
(:mop-direct common-lisp:real :precedance (common-lisp:number common-lisp:t))
(:mop-direct common-lisp:real :classof common-lisp:built-in-class)
(:mop-direct common-lisp:real :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:real :superclass common-lisp:number)
(:mop-direct common-lisp:float :superclass common-lisp:real)
(:mop-direct common-lisp:single-float :superclass common-lisp:float)
(:mop-direct common-lisp:double-float :superclass common-lisp:float)
(:mop-direct common-lisp:float :package-name "COMMON-LISP")
(:mop-direct common-lisp:float :precedance
 (common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:float :classof common-lisp:built-in-class)
(:mop-direct common-lisp:float :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:float :superclass common-lisp:real)
(:mop-direct common-lisp:single-float :superclass common-lisp:float)
(:mop-direct common-lisp:single-float :package-name "COMMON-LISP")
(:mop-direct common-lisp:single-float :precedance
 (common-lisp:float common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:single-float :classof common-lisp:built-in-class)
(:mop-direct common-lisp:single-float :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:single-float :superclass common-lisp:float)
(:mop-direct common-lisp:single-float :prototype 42.0)
(:mop-direct common-lisp:double-float :superclass common-lisp:float)
(:mop-direct common-lisp:double-float :package-name "COMMON-LISP")
(:mop-direct common-lisp:double-float :precedance
 (common-lisp:float common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:double-float :classof common-lisp:built-in-class)
(:mop-direct common-lisp:double-float :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:double-float :superclass common-lisp:float)
(:mop-direct common-lisp:double-float :prototype 42.0d0)
(:mop-direct common-lisp:float :prototype 42)
(:mop-direct common-lisp:rational :superclass common-lisp:real)
(:mop-direct common-lisp:ratio :superclass common-lisp:rational)
(:mop-direct common-lisp:integer :superclass common-lisp:rational)
(:mop-direct common-lisp:rational :package-name "COMMON-LISP")
(:mop-direct common-lisp:rational :precedance
 (common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:rational :classof common-lisp:built-in-class)
(:mop-direct common-lisp:rational :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:rational :superclass common-lisp:real)
(:mop-direct common-lisp:ratio :superclass common-lisp:rational)
(:mop-direct common-lisp:ratio :package-name "COMMON-LISP")
(:mop-direct common-lisp:ratio :precedance
 (common-lisp:rational common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:ratio :classof common-lisp:built-in-class)
(:mop-direct common-lisp:ratio :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:ratio :superclass common-lisp:rational)
(:mop-direct common-lisp:ratio :prototype 1/42)
(:mop-direct common-lisp:integer :superclass common-lisp:rational)
(:mop-direct common-lisp:fixnum :superclass common-lisp:integer)
(:mop-direct common-lisp:bignum :superclass common-lisp:integer)
(:mop-direct common-lisp:integer :package-name "COMMON-LISP")
(:mop-direct common-lisp:integer :precedance
 (common-lisp:rational common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:integer :classof common-lisp:built-in-class)
(:mop-direct common-lisp:integer :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:integer :superclass common-lisp:rational)
(:mop-direct common-lisp:fixnum :superclass common-lisp:integer)
(:mop-direct common-lisp:fixnum :package-name "COMMON-LISP")
(:mop-direct common-lisp:fixnum :precedance
 (common-lisp:integer common-lisp:rational common-lisp:real common-lisp:number
  common-lisp:t))
(:mop-direct common-lisp:fixnum :classof common-lisp:built-in-class)
(:mop-direct common-lisp:fixnum :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:fixnum :superclass common-lisp:integer)
(:mop-direct common-lisp:fixnum :prototype 42)
(:mop-direct common-lisp:bignum :superclass common-lisp:integer)
(:mop-direct common-lisp:bignum :package-name "COMMON-LISP")
(:mop-direct common-lisp:bignum :precedance
 (common-lisp:integer common-lisp:rational common-lisp:real common-lisp:number
  common-lisp:t))
(:mop-direct common-lisp:bignum :classof common-lisp:built-in-class)
(:mop-direct common-lisp:bignum :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:bignum :superclass common-lisp:integer)
(:mop-direct common-lisp:bignum :prototype 79228162514264337593543950336)
(:mop-direct common-lisp:integer :prototype 42)
(:mop-direct common-lisp:rational :prototype 42)
(:mop-direct common-lisp:real :prototype 42)
(:mop-direct common-lisp:number :prototype 42)
(:mop-direct sb-kernel::random-class :superclass common-lisp:t)
(:mop-direct sb-kernel::random-class :package-name "SB-KERNEL")
(:mop-direct sb-kernel::random-class :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::random-class :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::random-class :superclass common-lisp:t)
(:mop-direct sb-kernel::random-class :prototype 42)
(:mop-direct sb-kernel:fdefn :superclass common-lisp:t)
(:mop-direct sb-kernel:fdefn :package-name "SB-KERNEL")
(:mop-direct sb-kernel:fdefn :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:fdefn :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:fdefn :superclass common-lisp:t)
(:mop-direct sb-kernel:fdefn :prototype #<FDEFINITION for "42">)
(:mop-direct sb-kernel:lra :superclass common-lisp:t)
(:mop-direct sb-kernel:lra :package-name "SB-KERNEL")
(:mop-direct sb-kernel:lra :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:lra :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:lra :superclass common-lisp:t)
(:mop-direct sb-kernel:lra :prototype 42)
(:mop-direct sb-kernel:code-component :superclass common-lisp:t)
(:mop-direct sb-kernel:code-component :package-name "SB-KERNEL")
(:mop-direct sb-kernel:code-component :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:code-component :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:code-component :superclass common-lisp:t)
(:mop-direct sb-kernel:code-component :prototype 42)
(:mop-direct sb-ext:weak-pointer :superclass common-lisp:t)
(:mop-direct sb-ext:weak-pointer :package-name "SB-EXT")
(:mop-direct sb-ext:weak-pointer :classof common-lisp:built-in-class)
(:mop-direct sb-ext:weak-pointer :typeof common-lisp:built-in-class)
(:mop-direct sb-ext:weak-pointer :superclass common-lisp:t)
(:mop-direct sb-ext:weak-pointer :prototype
 #<weak pointer: #<common-lisp:package "COMMON-LISP">>)
(:mop-direct sb-sys:system-area-pointer :superclass common-lisp:t)
(:mop-direct sb-sys:system-area-pointer :package-name "SB-SYS")
(:mop-direct sb-sys:system-area-pointer :classof common-lisp:built-in-class)
(:mop-direct sb-sys:system-area-pointer :typeof common-lisp:built-in-class)
(:mop-direct sb-sys:system-area-pointer :superclass common-lisp:t)
(:mop-direct sb-sys:system-area-pointer :prototype
 #.(sb-sys:int-sap #X0000002A))
(:mop-direct common-lisp:symbol :superclass common-lisp:t)
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:symbol :package-name "COMMON-LISP")
(:mop-direct common-lisp:symbol :classof common-lisp:built-in-class)
(:mop-direct common-lisp:symbol :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:symbol :superclass common-lisp:t)
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:null :superclass common-lisp:list)
(:mop-direct common-lisp:null :package-name "COMMON-LISP")
(:mop-direct common-lisp:null :precedance
 (common-lisp:symbol common-lisp:list common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:null :classof common-lisp:built-in-class)
(:mop-direct common-lisp:null :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:null :prototype common-lisp:nil)
(:mop-direct common-lisp:symbol :prototype #:mu)
(:mop-direct common-lisp:character :superclass common-lisp:t)
(:mop-direct common-lisp:character :package-name "COMMON-LISP")
(:mop-direct common-lisp:character :classof common-lisp:built-in-class)
(:mop-direct common-lisp:character :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:character :superclass common-lisp:t)
(:mop-direct common-lisp:character :prototype #\*)
(:mop-direct sb-pcl::slot-object :superclass common-lisp:t)
(:mop-direct common-lisp:standard-object :superclass sb-pcl::slot-object)
(:mop-direct common-lisp:structure-object :superclass sb-pcl::slot-object)
(:mop-direct common-lisp:condition :superclass sb-pcl::slot-object)
(:mop-direct sb-pcl::slot-object :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-object :classof sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-object :typeof sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-object :superclass common-lisp:t)
(:mop-direct common-lisp:standard-object :superclass sb-pcl::slot-object)
(:mop-direct ql-bundle:bundle :superclass common-lisp:standard-object)
(:mop-direct quicklisp-client::client-info :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::client-file-info :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::load-strategy :superclass
 common-lisp:standard-object)
(:mop-direct ql-dist::preference-mixin :superclass common-lisp:standard-object)
(:mop-direct ql-dist:dist :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::cdb-writer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::hash-table-bucket :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::record-pointer :superclass common-lisp:standard-object)
(:mop-direct ql-http:url :superclass common-lisp:standard-object)
(:mop-direct ql-http::header :superclass common-lisp:standard-object)
(:mop-direct ql-http::octet-sink :superclass common-lisp:standard-object)
(:mop-direct ql-http::cbuf :superclass common-lisp:standard-object)
(:mop-direct ql-http::matcher :superclass common-lisp:standard-object)
(:mop-direct ql-progress::progress-bar :superclass common-lisp:standard-object)
(:mop-direct ql-impl:sbcl :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:host-ent :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:socket :superclass common-lisp:standard-object)
(:mop-direct sb-posix:termios :superclass common-lisp:standard-object)
(:mop-direct sb-posix:stat :superclass common-lisp:standard-object)
(:mop-direct sb-posix:timeval :superclass common-lisp:standard-object)
(:mop-direct sb-posix:group :superclass common-lisp:standard-object)
(:mop-direct sb-posix:passwd :superclass common-lisp:standard-object)
(:mop-direct sb-posix:flock :superclass common-lisp:standard-object)
(:mop-direct ql-impl:mkcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ecl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lispworks :superclass common-lisp:standard-object)
(:mop-direct ql-impl:scl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clasp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ccl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:abcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:allegro :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lisp :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan :superclass common-lisp:standard-object)
(:mop-direct asdf/action:action-status :superclass common-lisp:standard-object)
(:mop-direct asdf/operation:operation :superclass common-lisp:standard-object)
(:mop-direct asdf/system:proto-system :superclass common-lisp:standard-object)
(:mop-direct asdf/component:component :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::plist-mixin :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::definition-source-mixin :superclass
 common-lisp:standard-object)
(:mop-direct sb-mop:metaobject :superclass common-lisp:standard-object)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:standard-object)
(:mop-direct common-lisp:standard-object :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-object :precedance
 (sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-object :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-object :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-object :superclass sb-pcl::slot-object)
(:mop-direct ql-bundle:bundle :superclass common-lisp:standard-object)
(:mop-direct ql-bundle:bundle :package-name "QL-BUNDLE")
(:mop-direct ql-bundle:bundle :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-bundle:bundle :classof common-lisp:standard-class)
(:mop-direct ql-bundle:bundle :typeof common-lisp:standard-class)
(:mop-direct ql-bundle:bundle :superclass common-lisp:standard-object)
(:mop-direct ql-bundle:bundle :slot
 ((:name ql-bundle:requested-systems) (:ordinal 1)
  (:initargs (:requested-systems)) (:readers (ql-bundle:requested-systems))))
(:mop-direct ql-bundle:bundle :slot
 ((:name ql-bundle::creation-time) (:ordinal 2) (:initargs (:creation-time))
  (:readers (ql-bundle::creation-time))))
(:mop-direct ql-bundle:bundle :slot
 ((:name ql-bundle::release-table) (:ordinal 3) (:initargs (:release-table))
  (:readers (ql-bundle::release-table))))
(:mop-direct ql-bundle:bundle :slot
 ((:name ql-bundle::system-table) (:ordinal 4) (:initargs (:system-table))
  (:readers (ql-bundle::system-table))))
(:mop-direct quicklisp-client::client-info :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::client-info :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::client-info :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::client-info :classof common-lisp:standard-class)
(:mop-direct quicklisp-client::client-info :typeof common-lisp:standard-class)
(:mop-direct quicklisp-client::client-info :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::client-info :slot
 ((:name quicklisp-client::setup-info) (:ordinal 1) (:initargs (:setup-info))
  (:readers (quicklisp-client::setup-info))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name quicklisp-client::asdf-info) (:ordinal 2) (:initargs (:asdf-info))
  (:readers (quicklisp-client::asdf-info))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name quicklisp-client::client-tar-info) (:ordinal 3)
  (:initargs (:client-tar-info))
  (:readers (quicklisp-client::client-tar-info))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name quicklisp-client::canonical-client-info-url) (:ordinal 4)
  (:initargs (:canonical-client-info-url))
  (:readers (quicklisp-client::canonical-client-info-url))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name ql-dist:version) (:ordinal 5) (:initargs (:version))
  (:readers (ql-dist:version))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name ql-dist:subscription-url) (:ordinal 6) (:initargs (:subscription-url))
  (:readers (ql-dist:subscription-url))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name quicklisp-client::plist) (:ordinal 7) (:initargs (:plist))
  (:readers (quicklisp-client::plist))))
(:mop-direct quicklisp-client::client-info :slot
 ((:name quicklisp-client::source-file) (:ordinal 8) (:initargs (:source-file))
  (:readers (quicklisp-client::source-file))))
(:mop-direct quicklisp-client::client-file-info :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::client-tar-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::setup-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::asdf-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::client-file-info :package-name
 "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::client-file-info :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::client-file-info :classof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::client-file-info :typeof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::client-file-info :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name quicklisp-client::plist-key) (:ordinal 1) (:initargs (:plist-key))
  (:readers (quicklisp-client::plist-key))))
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name quicklisp-client::file-url) (:ordinal 2) (:initargs (:url))
  (:readers (quicklisp-client::file-url))))
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name ql-dist:name) (:ordinal 3) (:initargs (:name))
  (:readers (ql-dist:name))))
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name quicklisp-client::size) (:ordinal 4) (:initargs (:size))
  (:readers (quicklisp-client::size))))
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name quicklisp-client::md5) (:ordinal 5) (:initargs (:md5))
  (:readers (quicklisp-client::md5))))
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name quicklisp-client::sha256) (:ordinal 6) (:initargs (:sha256))
  (:readers (quicklisp-client::sha256))))
(:mop-direct quicklisp-client::client-file-info :slot
 ((:name quicklisp-client::plist) (:ordinal 7) (:initargs (:plist))
  (:readers (quicklisp-client::plist))))
(:mop-direct quicklisp-client::client-tar-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::client-tar-file-info :package-name
 "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::client-tar-file-info :precedance
 (quicklisp-client::client-file-info common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::client-tar-file-info :classof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::client-tar-file-info :typeof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::client-tar-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::setup-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::setup-file-info :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::setup-file-info :precedance
 (quicklisp-client::client-file-info common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::setup-file-info :classof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::setup-file-info :typeof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::setup-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::asdf-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::asdf-file-info :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::asdf-file-info :precedance
 (quicklisp-client::client-file-info common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::asdf-file-info :classof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::asdf-file-info :typeof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::asdf-file-info :superclass
 quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::load-strategy :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::load-strategy :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::load-strategy :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::load-strategy :classof
 common-lisp:standard-class)
(:mop-direct quicklisp-client::load-strategy :typeof common-lisp:standard-class)
(:mop-direct quicklisp-client::load-strategy :superclass
 common-lisp:standard-object)
(:mop-direct quicklisp-client::load-strategy :slot
 ((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
  (:readers (ql-dist:name)) (:writers ((common-lisp:setf ql-dist:name)))))
(:mop-direct quicklisp-client::load-strategy :slot
 ((:name quicklisp-client::asdf-systems) (:ordinal 2)
  (:initargs (:asdf-systems)) (:readers (quicklisp-client::asdf-systems))
  (:writers ((common-lisp:setf quicklisp-client::asdf-systems)))))
(:mop-direct quicklisp-client::load-strategy :slot
 ((:name quicklisp-client::quicklisp-systems) (:ordinal 3)
  (:initargs (:quicklisp-systems))
  (:readers (quicklisp-client::quicklisp-systems))
  (:writers ((common-lisp:setf quicklisp-client::quicklisp-systems)))))
(:mop-direct quicklisp-client::load-strategy :prototype

(:mop-direct ql-dist::preference-mixin :superclass common-lisp:standard-object)
(:mop-direct ql-dist:system :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:release :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist::preference-mixin :package-name "QL-DIST")
(:mop-direct ql-dist::preference-mixin :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist::preference-mixin :classof common-lisp:standard-class)
(:mop-direct ql-dist::preference-mixin :typeof common-lisp:standard-class)
(:mop-direct ql-dist::preference-mixin :superclass common-lisp:standard-object)
(:mop-direct ql-dist:system :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:system :default-initargs
 ((:metadata-name "systems"
   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")
     {1005525AFB}>)))
(:mop-direct ql-dist:system :package-name "QL-DIST")
(:mop-direct ql-dist:system :precedance
 (ql-dist::preference-mixin common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-dist:system :classof common-lisp:standard-class)
(:mop-direct ql-dist:system :typeof common-lisp:standard-class)
(:mop-direct ql-dist:system :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:system :slot
 ((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
  (:readers (ql-dist:short-description ql-dist:name))
  (:writers ((common-lisp:setf ql-dist:name)))))
(:mop-direct ql-dist:system :slot
 ((:name ql-dist:system-file-name) (:ordinal 2) (:initargs (:system-file-name))
  (:readers (ql-dist:system-file-name))
  (:writers ((common-lisp:setf ql-dist:system-file-name)))))
(:mop-direct ql-dist:system :slot
 ((:name ql-dist:release) (:ordinal 3) (:initargs (:release))
  (:readers (ql-dist:preference-parent ql-dist:release))
  (:writers ((common-lisp:setf ql-dist:release)))))
(:mop-direct ql-dist:system :slot
 ((:name ql-dist:dist) (:ordinal 4) (:initargs (:dist))
  (:readers (ql-dist:dist)) (:writers ((common-lisp:setf ql-dist:dist)))))
(:mop-direct ql-dist:system :slot
 ((:name ql-dist:required-systems) (:ordinal 5) (:initargs (:required-systems))
  (:readers (ql-dist:required-systems))
  (:writers ((common-lisp:setf ql-dist:required-systems)))))
(:mop-direct ql-dist:system :slot
 ((:name ql-dist:metadata-name) (:ordinal 6) (:initargs (:metadata-name))
  (:readers (ql-dist:metadata-name))
  (:writers ((common-lisp:setf ql-dist:metadata-name)))))

(:mop-direct ql-dist:release :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:release :default-initargs
 ((:metadata-name "releases"
   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")
     {100549C3AB}>)))
(:mop-direct ql-dist:release :package-name "QL-DIST")
(:mop-direct ql-dist:release :precedance
 (ql-dist::preference-mixin common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-dist:release :classof common-lisp:standard-class)
(:mop-direct ql-dist:release :typeof common-lisp:standard-class)
(:mop-direct ql-dist:release :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:project-name) (:ordinal 1) (:initargs (:project-name))
  (:readers (ql-dist:project-name ql-dist:name))
  (:writers
   ((common-lisp:setf ql-dist:project-name) (common-lisp:setf ql-dist:name)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:dist) (:ordinal 2) (:initargs (:dist))
  (:readers (ql-dist:preference-parent ql-dist:dist))
  (:writers ((common-lisp:setf ql-dist:dist)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:provided-systems) (:ordinal 3) (:initargs (:provided-systems))
  (:readers (ql-dist:provided-systems))
  (:writers ((common-lisp:setf ql-dist:provided-systems)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:archive-url) (:ordinal 4) (:initargs (:archive-url))
  (:readers (ql-dist:archive-url))
  (:writers ((common-lisp:setf ql-dist:archive-url)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:archive-size) (:ordinal 5) (:initargs (:archive-size))
  (:readers (ql-dist:archive-size))
  (:writers ((common-lisp:setf ql-dist:archive-size)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:archive-md5) (:ordinal 6) (:initargs (:archive-md5))
  (:readers (ql-dist:archive-md5))
  (:writers ((common-lisp:setf ql-dist:archive-md5)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:archive-content-sha1) (:ordinal 7)
  (:initargs (:archive-content-sha1)) (:readers (ql-dist:archive-content-sha1))
  (:writers ((common-lisp:setf ql-dist:archive-content-sha1)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:prefix) (:ordinal 8) (:initargs (:prefix))
  (:readers (ql-dist:short-description ql-dist:prefix))
  (:writers ((common-lisp:setf ql-dist:prefix)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:system-files) (:ordinal 9) (:initargs (:system-files))
  (:readers (ql-dist:system-files))
  (:writers ((common-lisp:setf ql-dist:system-files)))))
(:mop-direct ql-dist:release :slot
 ((:name ql-dist:metadata-name) (:ordinal 10) (:initargs (:metadata-name))
  (:readers (ql-dist:metadata-name))
  (:writers ((common-lisp:setf ql-dist:metadata-name)))))

(:mop-direct ql-dist:dist :superclass common-lisp:standard-object)
(:mop-direct ql-dist:dist :default-initargs
 ((:name "unnamed"
   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")
     {100540B94B}>)
  (:version "unknown"
   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")
     {100540B62B}>)
  (:distinfo-subscription-url common-lisp:nil
   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)
               :in
               common-lisp:constantly)
     {1000D05A2B}>)))
(:mop-direct ql-dist:dist :package-name "QL-DIST")
(:mop-direct ql-dist:dist :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:dist :classof common-lisp:standard-class)
(:mop-direct ql-dist:dist :typeof common-lisp:standard-class)
(:mop-direct ql-dist:dist :superclass common-lisp:standard-object)
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:base-directory) (:ordinal 1) (:initargs (:base-directory))
  (:readers (ql-dist:base-directory))
  (:writers ((common-lisp:setf ql-dist:base-directory)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:name) (:ordinal 2) (:initargs (:name))
  (:readers (ql-dist:name)) (:writers ((common-lisp:setf ql-dist:name)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:version) (:ordinal 3) (:initargs (:version))
  (:readers (ql-dist:version)) (:writers ((common-lisp:setf ql-dist:version)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:system-index-url) (:ordinal 4) (:initargs (:system-index-url))
  (:readers (ql-dist:system-index-url))
  (:writers ((common-lisp:setf ql-dist:system-index-url)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:release-index-url) (:ordinal 5)
  (:initargs (:release-index-url)) (:readers (ql-dist:release-index-url))
  (:writers ((common-lisp:setf ql-dist:release-index-url)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:available-versions-url) (:ordinal 6)
  (:initargs (:available-versions-url))
  (:readers (ql-dist:available-versions-url))
  (:writers ((common-lisp:setf ql-dist:available-versions-url)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist::archive-base-url) (:ordinal 7)
  (:initargs (:archive-base-url)) (:readers (ql-dist::archive-base-url))
  (:writers ((common-lisp:setf ql-dist::archive-base-url)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:canonical-distinfo-url) (:ordinal 8)
  (:initargs (:canonical-distinfo-url))
  (:readers (ql-dist:canonical-distinfo-url))
  (:writers ((common-lisp:setf ql-dist:canonical-distinfo-url)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist::distinfo-subscription-url) (:ordinal 9)
  (:initargs (:distinfo-subscription-url))
  (:readers (ql-dist::distinfo-subscription-url))
  (:writers ((common-lisp:setf ql-dist::distinfo-subscription-url)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist::system-index) (:ordinal 10) (:initargs (:system-index))
  (:readers (ql-dist::system-index))
  (:writers ((common-lisp:setf ql-dist::system-index)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist::release-index) (:ordinal 11) (:initargs (:release-index))
  (:readers (ql-dist::release-index))
  (:writers ((common-lisp:setf ql-dist::release-index)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:provided-systems) (:ordinal 12)
  (:initargs (:provided-systems)) (:readers (ql-dist:provided-systems))
  (:writers ((common-lisp:setf ql-dist:provided-systems)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist:provided-releases) (:ordinal 13)
  (:initargs (:provided-releases)) (:readers (ql-dist:provided-releases))
  (:writers ((common-lisp:setf ql-dist:provided-releases)))))
(:mop-direct ql-dist:dist :slot
 ((:name ql-dist::local-distinfo-file) (:ordinal 14)
  (:initargs (:local-distinfo-file)) (:readers (ql-dist::local-distinfo-file))
  (:writers ((common-lisp:setf ql-dist::local-distinfo-file)))))

(:mop-direct ql-cdb::cdb-writer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::cdb-writer :package-name "QL-CDB")
(:mop-direct ql-cdb::cdb-writer :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-cdb::cdb-writer :classof common-lisp:standard-class)
(:mop-direct ql-cdb::cdb-writer :typeof common-lisp:standard-class)
(:mop-direct ql-cdb::cdb-writer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::cdb-writer :slot
 ((:name ql-cdb::buckets) (:ordinal 1) (:initargs (:buckets))
  (:readers (ql-cdb::buckets)) (:writers ((common-lisp:setf ql-cdb::buckets)))))
(:mop-direct ql-cdb::cdb-writer :slot
 ((:name ql-cdb::end-of-records-position) (:ordinal 2)
  (:initargs (:end-of-records-position))
  (:readers (ql-cdb::end-of-records-position))
  (:writers ((common-lisp:setf ql-cdb::end-of-records-position)))))
(:mop-direct ql-cdb::cdb-writer :slot
 ((:name ql-cdb::output) (:ordinal 3) (:initargs (:output))
  (:readers (ql-cdb::output)) (:writers ((common-lisp:setf ql-cdb::output)))))
(:mop-direct ql-cdb::hash-table-bucket :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::hash-table-bucket :package-name "QL-CDB")
(:mop-direct ql-cdb::hash-table-bucket :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-cdb::hash-table-bucket :classof common-lisp:standard-class)
(:mop-direct ql-cdb::hash-table-bucket :typeof common-lisp:standard-class)
(:mop-direct ql-cdb::hash-table-bucket :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::hash-table-bucket :slot
 ((:name ql-cdb::table-position) (:ordinal 1) (:initargs (:table-position))
  (:readers (ql-cdb::table-position))
  (:writers ((common-lisp:setf ql-cdb::table-position)))))
(:mop-direct ql-cdb::hash-table-bucket :slot
 ((:name ql-cdb::entries) (:ordinal 2) (:initargs (:entries))
  (:readers (ql-cdb::entries)) (:writers ((common-lisp:setf ql-cdb::entries)))))
(:mop-direct ql-cdb::record-pointer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::record-pointer :default-initargs
 ((:hash-value 0
   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)
               :in
               common-lisp:constantly)
     {1000CE2A9B}>)
  (:record-position 0
   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)
               :in
               common-lisp:constantly)
     {1000CE2A9B}>)))
(:mop-direct ql-cdb::record-pointer :package-name "QL-CDB")
(:mop-direct ql-cdb::record-pointer :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-cdb::record-pointer :classof common-lisp:standard-class)
(:mop-direct ql-cdb::record-pointer :typeof common-lisp:standard-class)
(:mop-direct ql-cdb::record-pointer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::record-pointer :slot
 ((:name ql-cdb::hash-value) (:ordinal 1) (:initargs (:hash-value))
  (:readers (ql-cdb::hash-value))
  (:writers ((common-lisp:setf ql-cdb::hash-value)))))
(:mop-direct ql-cdb::record-pointer :slot
 ((:name ql-cdb::record-position) (:ordinal 2) (:initargs (:record-position))
  (:readers (ql-cdb::record-position))
  (:writers ((common-lisp:setf ql-cdb::record-position)))))

(:mop-direct ql-http:url :superclass common-lisp:standard-object)
(:mop-direct ql-http:url :package-name "QL-HTTP")
(:mop-direct ql-http:url :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http:url :classof common-lisp:standard-class)
(:mop-direct ql-http:url :typeof common-lisp:standard-class)
(:mop-direct ql-http:url :superclass common-lisp:standard-object)
(:mop-direct ql-http:url :slot
 ((:name ql-http:scheme) (:ordinal 1) (:initargs (:scheme))
  (:readers (ql-http:scheme)) (:writers ((common-lisp:setf ql-http:scheme)))))
(:mop-direct ql-http:url :slot
 ((:name ql-http:hostname) (:ordinal 2) (:initargs (:hostname))
  (:readers (ql-http:hostname))
  (:writers ((common-lisp:setf ql-http:hostname)))))
(:mop-direct ql-http:url :slot
 ((:name ql-http:port) (:ordinal 3) (:initargs (:port))
  (:readers (ql-http:port)) (:writers ((common-lisp:setf ql-http:port)))))
(:mop-direct ql-http:url :slot
 ((:name ql-http:path) (:ordinal 4) (:initform "/") (:initargs (:path))
  (:readers (ql-http:path)) (:writers ((common-lisp:setf ql-http:path)))))

(:mop-direct ql-http::header :superclass common-lisp:standard-object)
(:mop-direct ql-http::header :package-name "QL-HTTP")
(:mop-direct ql-http::header :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::header :classof common-lisp:standard-class)
(:mop-direct ql-http::header :typeof common-lisp:standard-class)
(:mop-direct ql-http::header :superclass common-lisp:standard-object)
(:mop-direct ql-http::header :slot
 ((:name ql-http::data) (:ordinal 1) (:initargs (:data))
  (:readers (ql-http::data)) (:writers ((common-lisp:setf ql-http::data)))))
(:mop-direct ql-http::header :slot
 ((:name ql-http::status) (:ordinal 2) (:initargs (:status))
  (:readers (ql-http::status)) (:writers ((common-lisp:setf ql-http::status)))))
(:mop-direct ql-http::header :slot
 ((:name ql-http::name-starts) (:ordinal 3) (:initargs (:name-starts))
  (:readers (ql-http::name-starts))
  (:writers ((common-lisp:setf ql-http::name-starts)))))
(:mop-direct ql-http::header :slot
 ((:name ql-http::name-ends) (:ordinal 4) (:initargs (:name-ends))
  (:readers (ql-http::name-ends))
  (:writers ((common-lisp:setf ql-http::name-ends)))))
(:mop-direct ql-http::header :slot
 ((:name ql-http::value-starts) (:ordinal 5) (:initargs (:value-starts))
  (:readers (ql-http::value-starts))
  (:writers ((common-lisp:setf ql-http::value-starts)))))
(:mop-direct ql-http::header :slot
 ((:name ql-http::value-ends) (:ordinal 6) (:initargs (:value-ends))
  (:readers (ql-http::value-ends))
  (:writers ((common-lisp:setf ql-http::value-ends)))))
(:mop-direct ql-http::octet-sink :superclass common-lisp:standard-object)
(:mop-direct ql-http::octet-sink :package-name "QL-HTTP")
(:mop-direct ql-http::octet-sink :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::octet-sink :classof common-lisp:standard-class)
(:mop-direct ql-http::octet-sink :typeof common-lisp:standard-class)
(:mop-direct ql-http::octet-sink :superclass common-lisp:standard-object)
(:mop-direct ql-http::octet-sink :slot
 ((:name ql-http::storage) (:ordinal 1) (:initargs (:storage))
  (:readers (ql-http::storage))
  (:writers ((common-lisp:setf ql-http::storage)))))
(:mop-direct ql-http::cbuf :superclass common-lisp:standard-object)
(:mop-direct ql-http::cbuf :package-name "QL-HTTP")
(:mop-direct ql-http::cbuf :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::cbuf :classof common-lisp:standard-class)
(:mop-direct ql-http::cbuf :typeof common-lisp:standard-class)
(:mop-direct ql-http::cbuf :superclass common-lisp:standard-object)
(:mop-direct ql-http::cbuf :slot
 ((:name ql-http::data) (:ordinal 1) (:initargs (:data))
  (:readers (ql-http::data)) (:writers ((common-lisp:setf ql-http::data)))))
(:mop-direct ql-http::cbuf :slot
 ((:name ql-http::connection) (:ordinal 2) (:initargs (:connection))
  (:readers (ql-http::connection))
  (:writers ((common-lisp:setf ql-http::connection)))))
(:mop-direct ql-http::cbuf :slot
 ((:name ql-http::start) (:ordinal 3) (:initargs (:start))
  (:readers (ql-http::start)) (:writers ((common-lisp:setf ql-http::start)))))
(:mop-direct ql-http::cbuf :slot
 ((:name ql-http::end) (:ordinal 4) (:initargs (:end))
  (:readers (ql-http::end)) (:writers ((common-lisp:setf ql-http::end)))))
(:mop-direct ql-http::cbuf :slot
 ((:name ql-http::eofp) (:ordinal 5) (:initargs (:eofp))
  (:readers (ql-http::eofp)) (:writers ((common-lisp:setf ql-http::eofp)))))
(:mop-direct ql-http::matcher :superclass common-lisp:standard-object)
(:mop-direct ql-http::matcher :package-name "QL-HTTP")
(:mop-direct ql-http::matcher :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::matcher :classof common-lisp:standard-class)
(:mop-direct ql-http::matcher :typeof common-lisp:standard-class)
(:mop-direct ql-http::matcher :superclass common-lisp:standard-object)
(:mop-direct ql-http::matcher :slot
 ((:name ql-http::pattern) (:ordinal 1) (:initargs (:pattern))
  (:readers (ql-http::pattern))))
(:mop-direct ql-http::matcher :slot
 ((:name ql-http::pos) (:ordinal 2) (:initform 0)
  (:readers (ql-http::match-pos))
  (:writers ((common-lisp:setf ql-http::match-pos)))))
(:mop-direct ql-http::matcher :slot
 ((:name ql-http::matchedp) (:ordinal 3) (:readers (ql-http::matchedp))
  (:writers ((common-lisp:setf ql-http::matchedp)))))
(:mop-direct ql-progress::progress-bar :superclass common-lisp:standard-object)
(:mop-direct ql-progress::uncertain-size-progress-bar :superclass
 ql-progress::progress-bar)
(:mop-direct ql-progress::progress-bar :package-name "QL-PROGRESS")
(:mop-direct ql-progress::progress-bar :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-progress::progress-bar :classof common-lisp:standard-class)
(:mop-direct ql-progress::progress-bar :typeof common-lisp:standard-class)
(:mop-direct ql-progress::progress-bar :superclass common-lisp:standard-object)
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::start-time) (:ordinal 1) (:initargs (:start-time))
  (:readers (ql-progress::start-time))
  (:writers ((common-lisp:setf ql-progress::start-time)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::end-time) (:ordinal 2) (:initargs (:end-time))
  (:readers (ql-progress::end-time))
  (:writers ((common-lisp:setf ql-progress::end-time)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::progress-character) (:ordinal 3)
  (:initargs (:progress-character))
  (:readers (ql-progress::progress-character))
  (:writers ((common-lisp:setf ql-progress::progress-character)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::character-count) (:ordinal 4)
  (:initargs (:character-count)) (:readers (ql-progress::character-count))
  (:writers ((common-lisp:setf ql-progress::character-count)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::characters-so-far) (:ordinal 5)
  (:initargs (:characters-so-far)) (:readers (ql-progress::characters-so-far))
  (:writers ((common-lisp:setf ql-progress::characters-so-far)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::update-interval) (:ordinal 6)
  (:initargs (:update-interval)) (:readers (ql-progress::update-interval))
  (:writers ((common-lisp:setf ql-progress::update-interval)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::last-update-time) (:ordinal 7)
  (:initargs (:last-update-time)) (:readers (ql-progress::last-update-time))
  (:writers ((common-lisp:setf ql-progress::last-update-time)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::total) (:ordinal 8) (:initargs (:total))
  (:readers (ql-progress::total))
  (:writers ((common-lisp:setf ql-progress::total)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::progress) (:ordinal 9) (:initargs (:progress))
  (:readers (ql-progress::progress))
  (:writers ((common-lisp:setf ql-progress::progress)))))
(:mop-direct ql-progress::progress-bar :slot
 ((:name ql-progress::pending) (:ordinal 10) (:initargs (:pending))
  (:readers (ql-progress::pending))
  (:writers ((common-lisp:setf ql-progress::pending)))))
(:mop-direct ql-progress::uncertain-size-progress-bar :superclass
 ql-progress::progress-bar)
(:mop-direct ql-progress::uncertain-size-progress-bar :package-name
 "QL-PROGRESS")
(:mop-direct ql-progress::uncertain-size-progress-bar :precedance
 (ql-progress::progress-bar common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-progress::uncertain-size-progress-bar :classof
 common-lisp:standard-class)
(:mop-direct ql-progress::uncertain-size-progress-bar :typeof
 common-lisp:standard-class)
(:mop-direct ql-progress::uncertain-size-progress-bar :superclass
 ql-progress::progress-bar)
(:mop-direct ql-progress::uncertain-size-progress-bar :slot
 ((:name ql-progress::progress-char-index) (:ordinal 1)
  (:initargs (:progress-char-index))
  (:readers (ql-progress::progress-char-index))
  (:writers ((common-lisp:setf ql-progress::progress-char-index)))))
(:mop-direct ql-progress::uncertain-size-progress-bar :slot
 ((:name ql-progress::units-per-char) (:ordinal 2)
  (:initargs (:units-per-char)) (:readers (ql-progress::units-per-char))
  (:writers ((common-lisp:setf ql-progress::units-per-char)))))
(:mop-direct ql-impl:sbcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:sbcl :package-name "QL-IMPL")
(:mop-direct ql-impl:sbcl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:sbcl :classof common-lisp:standard-class)
(:mop-direct ql-impl:sbcl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:sbcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:sbcl :prototype #<ql-impl:sbcl {1004D747A3}>)
(:mop-direct sb-bsd-sockets:host-ent :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:host-ent :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:host-ent :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:host-ent :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:host-ent :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:host-ent :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:host-ent :slot
 ((:name sb-bsd-sockets::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-bsd-sockets:host-ent-name))))
(:mop-direct sb-bsd-sockets:host-ent :slot
 ((:name sb-bsd-sockets::aliases) (:ordinal 2) (:initargs (:aliases))
  (:readers (sb-bsd-sockets:host-ent-aliases))))
(:mop-direct sb-bsd-sockets:host-ent :slot
 ((:name sb-bsd-sockets::address-type) (:ordinal 3) (:initargs (:type))
  (:readers (sb-bsd-sockets:host-ent-address-type))))
(:mop-direct sb-bsd-sockets:host-ent :slot
 ((:name sb-bsd-sockets::addresses) (:ordinal 4) (:initargs (:addresses))
  (:readers (sb-bsd-sockets:host-ent-addresses))))
(:mop-direct sb-bsd-sockets:socket :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:inet-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet6-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:local-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:socket :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:socket :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:socket :slot
 ((:name sb-bsd-sockets::file-descriptor) (:ordinal 1)
  (:initargs (:descriptor)) (:readers (sb-bsd-sockets:socket-file-descriptor))))
(:mop-direct sb-bsd-sockets:socket :slot
 ((:name sb-bsd-sockets::family) (:ordinal 2)
  (:initform (common-lisp:error "No socket family"))
  (:readers (sb-bsd-sockets:socket-family))))
(:mop-direct sb-bsd-sockets:socket :slot
 ((:name sb-bsd-sockets::protocol) (:ordinal 3) (:initargs (:protocol))
  (:readers (sb-bsd-sockets:socket-protocol))))
(:mop-direct sb-bsd-sockets:socket :slot
 ((:name common-lisp:type) (:ordinal 4) (:initargs (:type))
  (:readers (sb-bsd-sockets:socket-type))))
(:mop-direct sb-bsd-sockets:socket :slot
 ((:name common-lisp:stream) (:ordinal 5)))
(:mop-direct sb-bsd-sockets:inet-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet-socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:inet-socket :precedance
 (sb-bsd-sockets:socket common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-bsd-sockets:inet-socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet-socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet-socket :slot
 ((:name sb-bsd-sockets::family) (:ordinal 1)
  (:initform sb-bsd-sockets-internal::af-inet)))
(:mop-direct sb-bsd-sockets:inet6-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet6-socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:inet6-socket :precedance
 (sb-bsd-sockets:socket common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-bsd-sockets:inet6-socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet6-socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet6-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet6-socket :slot
 ((:name sb-bsd-sockets::family) (:ordinal 1)
  (:initform sb-bsd-sockets-internal::af-inet6)))
(:mop-direct sb-bsd-sockets:local-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:local-abstract-socket :superclass
 sb-bsd-sockets:local-socket)
(:mop-direct sb-bsd-sockets:local-socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:local-socket :precedance
 (sb-bsd-sockets:socket common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-bsd-sockets:local-socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:local-socket :slot
 ((:name sb-bsd-sockets::family) (:ordinal 1)
  (:initform sb-bsd-sockets-internal::af-local)))
(:mop-direct sb-bsd-sockets:local-abstract-socket :superclass
 sb-bsd-sockets:local-socket)
(:mop-direct sb-bsd-sockets:local-abstract-socket :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:local-abstract-socket :precedance
 (sb-bsd-sockets:local-socket sb-bsd-sockets:socket common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:local-abstract-socket :classof
 common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-abstract-socket :typeof
 common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-abstract-socket :superclass
 sb-bsd-sockets:local-socket)
(:mop-direct sb-posix:termios :superclass common-lisp:standard-object)
(:mop-direct sb-posix:termios :package-name "SB-POSIX")
(:mop-direct sb-posix:termios :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:termios :classof common-lisp:standard-class)
(:mop-direct sb-posix:termios :typeof common-lisp:standard-class)
(:mop-direct sb-posix:termios :superclass common-lisp:standard-object)
(:mop-direct sb-posix:termios :slot
 ((:name sb-posix::iflag) (:ordinal 1) (:initargs (:iflag))
  (:readers (sb-posix:termios-iflag))
  (:writers ((common-lisp:setf sb-posix:termios-iflag)))))
(:mop-direct sb-posix:termios :slot
 ((:name sb-posix::oflag) (:ordinal 2) (:initargs (:oflag))
  (:readers (sb-posix:termios-oflag))
  (:writers ((common-lisp:setf sb-posix:termios-oflag)))))
(:mop-direct sb-posix:termios :slot
 ((:name sb-posix::cflag) (:ordinal 3) (:initargs (:cflag))
  (:readers (sb-posix:termios-cflag))
  (:writers ((common-lisp:setf sb-posix:termios-cflag)))))
(:mop-direct sb-posix:termios :slot
 ((:name sb-posix::lflag) (:ordinal 4) (:initargs (:lflag))
  (:readers (sb-posix:termios-lflag))
  (:writers ((common-lisp:setf sb-posix:termios-lflag)))))
(:mop-direct sb-posix:termios :slot
 ((:name sb-posix::cc) (:ordinal 5) (:initargs (:cc))
  (:readers (sb-posix:termios-cc))
  (:writers ((common-lisp:setf sb-posix:termios-cc)))))
(:mop-direct sb-posix:stat :superclass common-lisp:standard-object)
(:mop-direct sb-posix:stat :package-name "SB-POSIX")
(:mop-direct sb-posix:stat :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:stat :classof common-lisp:standard-class)
(:mop-direct sb-posix:stat :typeof common-lisp:standard-class)
(:mop-direct sb-posix:stat :superclass common-lisp:standard-object)
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::mode) (:ordinal 1) (:initargs (:mode))
  (:readers (sb-posix:stat-mode))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::ino) (:ordinal 2) (:initargs (:ino))
  (:readers (sb-posix:stat-ino))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::dev) (:ordinal 3) (:initargs (:dev))
  (:readers (sb-posix:stat-dev))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::nlink) (:ordinal 4) (:initargs (:nlink))
  (:readers (sb-posix:stat-nlink))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::uid) (:ordinal 5) (:initargs (:uid))
  (:readers (sb-posix:stat-uid))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::gid) (:ordinal 6) (:initargs (:gid))
  (:readers (sb-posix:stat-gid))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::size) (:ordinal 7) (:initargs (:size))
  (:readers (sb-posix:stat-size))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::rdev) (:ordinal 8) (:initargs (:rdev))
  (:readers (sb-posix:stat-rdev))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::atime) (:ordinal 9) (:initargs (:atime))
  (:readers (sb-posix:stat-atime))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::mtime) (:ordinal 10) (:initargs (:mtime))
  (:readers (sb-posix:stat-mtime))))
(:mop-direct sb-posix:stat :slot
 ((:name sb-posix::ctime) (:ordinal 11) (:initargs (:ctime))
  (:readers (sb-posix:stat-ctime))))
(:mop-direct sb-posix:timeval :superclass common-lisp:standard-object)
(:mop-direct sb-posix:timeval :package-name "SB-POSIX")
(:mop-direct sb-posix:timeval :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:timeval :classof common-lisp:standard-class)
(:mop-direct sb-posix:timeval :typeof common-lisp:standard-class)
(:mop-direct sb-posix:timeval :superclass common-lisp:standard-object)
(:mop-direct sb-posix:timeval :slot
 ((:name sb-posix::sec) (:ordinal 1) (:initargs (:tv-sec))
  (:readers (sb-posix:timeval-sec))
  (:writers ((common-lisp:setf sb-posix:timeval-sec)))))
(:mop-direct sb-posix:timeval :slot
 ((:name sb-posix::usec) (:ordinal 2) (:initargs (:tv-usec))
  (:readers (sb-posix:timeval-usec))
  (:writers ((common-lisp:setf sb-posix:timeval-usec)))))
(:mop-direct sb-posix:group :superclass common-lisp:standard-object)
(:mop-direct sb-posix:group :package-name "SB-POSIX")
(:mop-direct sb-posix:group :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:group :classof common-lisp:standard-class)
(:mop-direct sb-posix:group :typeof common-lisp:standard-class)
(:mop-direct sb-posix:group :superclass common-lisp:standard-object)
(:mop-direct sb-posix:group :slot
 ((:name sb-posix::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-posix:group-name))
  (:writers ((common-lisp:setf sb-posix:group-name)))))
(:mop-direct sb-posix:group :slot
 ((:name sb-posix:passwd) (:ordinal 2) (:initargs (:passwd))
  (:readers (sb-posix:group-passwd))
  (:writers ((common-lisp:setf sb-posix:group-passwd)))))
(:mop-direct sb-posix:group :slot
 ((:name sb-posix::gid) (:ordinal 3) (:initargs (:gid))
  (:readers (sb-posix:group-gid))
  (:writers ((common-lisp:setf sb-posix:group-gid)))))
(:mop-direct sb-posix:passwd :superclass common-lisp:standard-object)
(:mop-direct sb-posix:passwd :package-name "SB-POSIX")
(:mop-direct sb-posix:passwd :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:passwd :classof common-lisp:standard-class)
(:mop-direct sb-posix:passwd :typeof common-lisp:standard-class)
(:mop-direct sb-posix:passwd :superclass common-lisp:standard-object)
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-posix:passwd-name))
  (:writers ((common-lisp:setf sb-posix:passwd-name)))))
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix:passwd) (:ordinal 2) (:initargs (:passwd))
  (:readers (sb-posix:passwd-passwd))
  (:writers ((common-lisp:setf sb-posix:passwd-passwd)))))
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix::uid) (:ordinal 3) (:initargs (:uid))
  (:readers (sb-posix:passwd-uid))
  (:writers ((common-lisp:setf sb-posix:passwd-uid)))))
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix::gid) (:ordinal 4) (:initargs (:gid))
  (:readers (sb-posix:passwd-gid))
  (:writers ((common-lisp:setf sb-posix:passwd-gid)))))
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix::gecos) (:ordinal 5) (:initargs (:gecos))
  (:readers (sb-posix:passwd-gecos))
  (:writers ((common-lisp:setf sb-posix:passwd-gecos)))))
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix::dir) (:ordinal 6) (:initargs (:dir))
  (:readers (sb-posix:passwd-dir))
  (:writers ((common-lisp:setf sb-posix:passwd-dir)))))
(:mop-direct sb-posix:passwd :slot
 ((:name sb-posix::shell) (:ordinal 7) (:initargs (:shell))
  (:readers (sb-posix:passwd-shell))
  (:writers ((common-lisp:setf sb-posix:passwd-shell)))))
(:mop-direct sb-posix:flock :superclass common-lisp:standard-object)
(:mop-direct sb-posix:flock :package-name "SB-POSIX")
(:mop-direct sb-posix:flock :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:flock :classof common-lisp:standard-class)
(:mop-direct sb-posix:flock :typeof common-lisp:standard-class)
(:mop-direct sb-posix:flock :superclass common-lisp:standard-object)
(:mop-direct sb-posix:flock :slot
 ((:name common-lisp:type) (:ordinal 1) (:initargs (:type))
  (:readers (sb-posix:flock-type))
  (:writers ((common-lisp:setf sb-posix:flock-type)))))
(:mop-direct sb-posix:flock :slot
 ((:name sb-posix::whence) (:ordinal 2) (:initargs (:whence))
  (:readers (sb-posix:flock-whence))
  (:writers ((common-lisp:setf sb-posix:flock-whence)))))
(:mop-direct sb-posix:flock :slot
 ((:name sb-posix::start) (:ordinal 3) (:initargs (:start))
  (:readers (sb-posix:flock-start))
  (:writers ((common-lisp:setf sb-posix:flock-start)))))
(:mop-direct sb-posix:flock :slot
 ((:name sb-posix::len) (:ordinal 4) (:initargs (:len))
  (:readers (sb-posix:flock-len))
  (:writers ((common-lisp:setf sb-posix:flock-len)))))
(:mop-direct sb-posix:flock :slot
 ((:name sb-posix::pid) (:ordinal 5) (:initform 0)
  (:readers (sb-posix:flock-pid))))
(:mop-direct ql-impl:mkcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:mkcl :package-name "QL-IMPL")
(:mop-direct ql-impl:mkcl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:mkcl :classof common-lisp:standard-class)
(:mop-direct ql-impl:mkcl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:mkcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ecl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ecl :package-name "QL-IMPL")
(:mop-direct ql-impl:ecl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:ecl :classof common-lisp:standard-class)
(:mop-direct ql-impl:ecl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:ecl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lispworks :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lispworks :package-name "QL-IMPL")
(:mop-direct ql-impl:lispworks :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:lispworks :classof common-lisp:standard-class)
(:mop-direct ql-impl:lispworks :typeof common-lisp:standard-class)
(:mop-direct ql-impl:lispworks :superclass common-lisp:standard-object)
(:mop-direct ql-impl:scl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:scl :package-name "QL-IMPL")
(:mop-direct ql-impl:scl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:scl :classof common-lisp:standard-class)
(:mop-direct ql-impl:scl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:scl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :package-name "QL-IMPL")
(:mop-direct ql-impl:cmucl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:cmucl :classof common-lisp:standard-class)
(:mop-direct ql-impl:cmucl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:cmucl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :prototype #<ql-impl:cmucl {10067B1743}>)
(:mop-direct ql-impl:clisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clisp :package-name "QL-IMPL")
(:mop-direct ql-impl:clisp :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:clisp :classof common-lisp:standard-class)
(:mop-direct ql-impl:clisp :typeof common-lisp:standard-class)
(:mop-direct ql-impl:clisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clasp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clasp :package-name "QL-IMPL")
(:mop-direct ql-impl:clasp :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:clasp :classof common-lisp:standard-class)
(:mop-direct ql-impl:clasp :typeof common-lisp:standard-class)
(:mop-direct ql-impl:clasp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ccl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ccl :package-name "QL-IMPL")
(:mop-direct ql-impl:ccl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:ccl :classof common-lisp:standard-class)
(:mop-direct ql-impl:ccl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:ccl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:abcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:abcl :package-name "QL-IMPL")
(:mop-direct ql-impl:abcl :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:abcl :classof common-lisp:standard-class)
(:mop-direct ql-impl:abcl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:abcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:allegro :superclass common-lisp:standard-object)
(:mop-direct ql-impl:allegro :package-name "QL-IMPL")
(:mop-direct ql-impl:allegro :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:allegro :classof common-lisp:standard-class)
(:mop-direct ql-impl:allegro :typeof common-lisp:standard-class)
(:mop-direct ql-impl:allegro :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lisp :package-name "QL-IMPL")
(:mop-direct ql-impl:lisp :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:lisp :classof common-lisp:standard-class)
(:mop-direct ql-impl:lisp :typeof common-lisp:standard-class)
(:mop-direct ql-impl:lisp :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan-traversal :superclass asdf/plan:plan)
(:mop-direct asdf/plan:plan :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:plan :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:plan :classof common-lisp:standard-class)
(:mop-direct asdf/plan:plan :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:plan :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan-traversal :superclass asdf/plan:plan)
(:mop-direct asdf/plan:sequential-plan :superclass asdf/plan:plan-traversal)
(:mop-direct asdf/plan:plan-traversal :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:plan-traversal :precedance
 (asdf/plan:plan common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:plan-traversal :classof common-lisp:standard-class)
(:mop-direct asdf/plan:plan-traversal :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:plan-traversal :superclass asdf/plan:plan)
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/system:system) (:ordinal 1) (:initargs (:system))
  (:readers (asdf/plan:plan-system))
  (:writers ((common-lisp:setf asdf/plan:plan-system)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:forced) (:ordinal 2) (:initargs (:force))
  (:readers (asdf/plan::plan-forced))
  (:writers ((common-lisp:setf asdf/plan::plan-forced)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:forced-not) (:ordinal 3) (:initargs (:force-not))
  (:readers (asdf/plan::plan-forced-not))
  (:writers ((common-lisp:setf asdf/plan::plan-forced-not)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:total-action-count) (:ordinal 4) (:initform 0)
  (:readers (asdf/plan::plan-total-action-count))
  (:writers ((common-lisp:setf asdf/plan::plan-total-action-count)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:planned-action-count) (:ordinal 5) (:initform 0)
  (:readers (asdf/plan::plan-planned-action-count))
  (:writers ((common-lisp:setf asdf/plan::plan-planned-action-count)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:planned-output-action-count) (:ordinal 6) (:initform 0)
  (:readers (asdf/plan::plan-planned-output-action-count))
  (:writers ((common-lisp:setf asdf/plan::plan-planned-output-action-count)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:visited-actions) (:ordinal 7)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
  (:readers (asdf/plan::plan-visited-actions))
  (:writers ((common-lisp:setf asdf/plan::plan-visited-actions)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:visiting-action-set) (:ordinal 8)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
  (:readers (asdf/plan::plan-visiting-action-set))
  (:writers ((common-lisp:setf asdf/plan::plan-visiting-action-set)))))
(:mop-direct asdf/plan:plan-traversal :slot
 ((:name asdf/plan:visiting-action-list) (:ordinal 9)
  (:readers (asdf/plan::plan-visiting-action-list))
  (:writers ((common-lisp:setf asdf/plan::plan-visiting-action-list)))))
(:mop-direct asdf/plan:sequential-plan :superclass asdf/plan:plan-traversal)
(:mop-direct asdf/plan:filtered-sequential-plan :superclass
 asdf/plan:sequential-plan)
(:mop-direct asdf/plan:sequential-plan :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:sequential-plan :precedance
 (asdf/plan:plan-traversal asdf/plan:plan common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:sequential-plan :classof common-lisp:standard-class)
(:mop-direct asdf/plan:sequential-plan :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:sequential-plan :superclass asdf/plan:plan-traversal)
(:mop-direct asdf/plan:sequential-plan :slot
 ((:name asdf/plan::actions-r) (:ordinal 1)
  (:readers (asdf/plan:plan-actions-r))
  (:writers ((common-lisp:setf asdf/plan:plan-actions-r)))))
(:mop-direct asdf/plan:filtered-sequential-plan :superclass
 asdf/plan:sequential-plan)
(:mop-direct asdf/plan:filtered-sequential-plan :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:filtered-sequential-plan :precedance
 (asdf/plan:sequential-plan asdf/plan:plan-traversal asdf/plan:plan
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:filtered-sequential-plan :classof
 common-lisp:standard-class)
(:mop-direct asdf/plan:filtered-sequential-plan :typeof
 common-lisp:standard-class)
(:mop-direct asdf/plan:filtered-sequential-plan :superclass
 asdf/plan:sequential-plan)
(:mop-direct asdf/plan:filtered-sequential-plan :slot
 ((:name asdf/plan::action-filter) (:ordinal 1) (:initform common-lisp:t)
  (:initargs (:action-filter)) (:readers (asdf/plan:plan-action-filter))))
(:mop-direct asdf/plan:filtered-sequential-plan :slot
 ((:name asdf/plan::component-type) (:ordinal 2) (:initform common-lisp:t)
  (:initargs (:component-type)) (:readers (asdf/plan:plan-component-type))))
(:mop-direct asdf/plan:filtered-sequential-plan :slot
 ((:name asdf/plan::keep-operation) (:ordinal 3) (:initform common-lisp:t)
  (:initargs (:keep-operation)) (:readers (asdf/plan:plan-keep-operation))))
(:mop-direct asdf/plan:filtered-sequential-plan :slot
 ((:name asdf/plan::keep-component) (:ordinal 4) (:initform common-lisp:t)
  (:initargs (:keep-component)) (:readers (asdf/plan:plan-keep-component))))
(:mop-direct asdf/plan:filtered-sequential-plan :prototype
 #<asdf/plan:filtered-sequential-plan {1006814A33}>)
(:mop-direct asdf/plan:sequential-plan :prototype
 #<asdf/plan:sequential-plan {1007146083}>)
(:mop-direct asdf/plan:plan-traversal :prototype
 #<asdf/plan:plan-traversal {100681A0F3}>)
(:mop-direct asdf/action:action-status :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:planned-action-status :superclass
 asdf/action:action-status)
(:mop-direct asdf/action:action-status :package-name "ASDF/ACTION")
(:mop-direct asdf/action:action-status :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/action:action-status :classof common-lisp:standard-class)
(:mop-direct asdf/action:action-status :typeof common-lisp:standard-class)
(:mop-direct asdf/action:action-status :superclass common-lisp:standard-object)
(:mop-direct asdf/action:action-status :slot
 ((:name asdf/action:stamp) (:ordinal 1) (:initargs (:stamp))
  (:readers (asdf/action:action-stamp))))
(:mop-direct asdf/action:action-status :slot
 ((:name asdf/action:done-p) (:ordinal 2) (:initargs (:done-p))
  (:readers (asdf/action:action-done-p))))
(:mop-direct asdf/plan:planned-action-status :superclass
 asdf/action:action-status)
(:mop-direct asdf/plan:planned-action-status :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:planned-action-status :precedance
 (asdf/action:action-status common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/plan:planned-action-status :classof
 common-lisp:standard-class)
(:mop-direct asdf/plan:planned-action-status :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:planned-action-status :superclass
 asdf/action:action-status)
(:mop-direct asdf/plan:planned-action-status :slot
 ((:name asdf/plan:planned-p) (:ordinal 1) (:initargs (:planned-p))
  (:readers (asdf/plan:action-planned-p))))
(:mop-direct asdf/plan:planned-action-status :slot
 ((:name asdf/plan:index) (:ordinal 2) (:initargs (:index))
  (:readers (asdf/plan:action-index))))
(:mop-direct asdf/plan:planned-action-status :prototype


(:mop-direct asdf/operation:operation :superclass common-lisp:standard-object)
(:mop-direct asdf/bundle:monolithic-op :superclass asdf/operation:operation)
(:mop-direct asdf/lisp-action:basic-compile-op :superclass
 asdf/operation:operation)
(:mop-direct asdf/lisp-action:basic-load-op :superclass
 asdf/operation:operation)
(:mop-direct asdf/action:non-propagating-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/action:selfward-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/action:sideway-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:upward-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:downward-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/operation:operation :package-name "ASDF/OPERATION")
(:mop-direct asdf/operation:operation :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/operation:operation :classof common-lisp:standard-class)
(:mop-direct asdf/operation:operation :typeof common-lisp:standard-class)
(:mop-direct asdf/operation:operation :superclass common-lisp:standard-object)
(:mop-direct asdf/operation:operation :slot
 ((:name asdf/operation:original-initargs) (:ordinal 1)
  (:initargs (:original-initargs))
  (:readers (asdf/operation:operation-original-initargs))
  (:writers ((common-lisp:setf asdf/operation:operation-original-initargs)))))
(:mop-direct asdf/bundle:monolithic-op :superclass asdf/operation:operation)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
 asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-op :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-op :superclass asdf/operation:operation)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
 asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-bundle-op :precedance
 (asdf/bundle:monolithic-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
 asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
 ((:name asdf/bundle:prologue-code) (:ordinal 1)
  (:readers (asdf/bundle:prologue-code))
  (:writers ((common-lisp:setf asdf/bundle:prologue-code)))))
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
 ((:name asdf/bundle:epilogue-code) (:ordinal 2)
  (:readers (asdf/bundle:epilogue-code))
  (:writers ((common-lisp:setf asdf/bundle:epilogue-code)))))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :precedance
 (asdf/concatenate-source::basic-concatenate-source-op
  asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:image-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:image-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:image-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :image)))
(:mop-direct asdf/bundle:image-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 2) (:allocation :class)
  (:initform '(asdf/lisp-action:load-op))))
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-op :precedance
 (asdf/bundle:image-op asdf/bundle:monolithic-bundle-op
  asdf/bundle:monolithic-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:program-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :program)))
(:mop-direct asdf/bundle:program-op :prototype #<asdf/bundle:program-op >)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
 "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
 ((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/lisp-action:basic-compile-op :superclass
 asdf/operation:operation)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:bundle-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:basic-compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:basic-compile-op :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/lisp-action:basic-compile-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-compile-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-compile-op :superclass
 asdf/operation:operation)
(:mop-direct asdf/lisp-action:basic-compile-op :slot
 ((:name asdf/lisp-action::proclamations) (:ordinal 1)
  (:initargs (:proclamations))
  (:readers (asdf/lisp-action:compile-op-proclamations))
  (:writers ((common-lisp:setf asdf/lisp-action:compile-op-proclamations)))))
(:mop-direct asdf/lisp-action:basic-compile-op :slot
 ((:name asdf/lisp-action:flags) (:ordinal 2) (:initargs (:flags))
  (:readers (asdf/lisp-action:compile-op-flags))
  (:writers ((common-lisp:setf asdf/lisp-action:compile-op-flags)))))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
 asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-compile-concatenated-source-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
 asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :precedance
 (asdf/concatenate-source::basic-compile-concatenated-source-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
 asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   '(asdf/lisp-action:prepare-op
     asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :prototype #<asdf/concatenate-source::basic-compile-concatenated-source-op >)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:deliver-asd-op :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:deliver-asd-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/bundle:deliver-asd-op :prototype
 #<asdf/bundle:deliver-asd-op >)
(:mop-direct asdf/bundle:bundle-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :superclass
 asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:basic-compile-bundle-op :superclass
 asdf/bundle:bundle-op)
(:mop-direct asdf/bundle::gather-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle::link-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:bundle-op :precedance
 (asdf/lisp-action:basic-compile-op asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:bundle-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:bundle-op :slot
 ((:name asdf/bundle:build-args) (:ordinal 1) (:initargs (:args))
  (:readers (asdf/bundle::extra-build-args))
  (:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/bundle:bundle-op :slot
 ((:name asdf/bundle:name-suffix) (:ordinal 2) (:initargs (:name-suffix))))
(:mop-direct asdf/bundle:bundle-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 3) (:initform :no-output-file)
  (:readers (asdf/bundle:bundle-type))))
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :superclass
 asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :package-name
 "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :precedance
 (asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :superclass
 asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform "lisp")))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :precedance
 (asdf/concatenate-source::basic-concatenate-source-op
  asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :package-name
 "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:concatenate-source-op :precedance
 (asdf/concatenate-source::basic-concatenate-source-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :prototype
 #<asdf/concatenate-source::basic-concatenate-source-op >)
(:mop-direct asdf/bundle:basic-compile-bundle-op :superclass
 asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:basic-compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:basic-compile-bundle-op :precedance
 (asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:basic-compile-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:basic-compile-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:basic-compile-bundle-op :superclass
 asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:basic-compile-bundle-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :fasl)))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
 "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
 ((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compile-bundle-op :precedance
 (asdf/bundle:basic-compile-bundle-op asdf/action:selfward-operation
  asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:compile-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:prepare-bundle-op))))
(:mop-direct asdf/bundle:basic-compile-bundle-op :prototype
 #<asdf/bundle:basic-compile-bundle-op >)
(:mop-direct asdf/bundle::gather-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle::gather-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle::gather-op :precedance
 (asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle::gather-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle::gather-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle::gather-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle::gather-op :slot
 ((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
  (:readers (asdf/bundle::gather-op))))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
 "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
 ((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:dll-op :precedance
 (asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:dll-op :prototype #<asdf/bundle:dll-op >)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compile-bundle-op :precedance
 (asdf/bundle:basic-compile-bundle-op asdf/action:selfward-operation
  asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:compile-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:prepare-bundle-op))))
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:lib-op :precedance
 (asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :lib)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :prototype #<asdf/bundle:lib-op >)
(:mop-direct asdf/bundle::gather-op :prototype #<asdf/bundle::gather-op >)
(:mop-direct asdf/bundle::link-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle::link-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle::link-op :precedance
 (asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle::link-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle::link-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle::link-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:dll-op :precedance
 (asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:dll-op :prototype #<asdf/bundle:dll-op >)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:lib-op :precedance
 (asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :lib)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :prototype #<asdf/bundle:lib-op >)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
 asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-bundle-op :precedance
 (asdf/bundle:monolithic-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
 ((:name asdf/bundle:prologue-code) (:ordinal 1)
  (:readers (asdf/bundle:prologue-code))
  (:writers ((common-lisp:setf asdf/bundle:prologue-code)))))
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
 ((:name asdf/bundle:epilogue-code) (:ordinal 2)
  (:readers (asdf/bundle:epilogue-code))
  (:writers ((common-lisp:setf asdf/bundle:epilogue-code)))))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :precedance
 (asdf/concatenate-source::basic-concatenate-source-op
  asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:image-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:image-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:image-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :image)))
(:mop-direct asdf/bundle:image-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 2) (:allocation :class)
  (:initform '(asdf/lisp-action:load-op))))
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-op :precedance
 (asdf/bundle:image-op asdf/bundle:monolithic-bundle-op
  asdf/bundle:monolithic-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:program-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :program)))
(:mop-direct asdf/bundle:program-op :prototype #<asdf/bundle:program-op >)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
 "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
 ((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:compile-op :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:compile-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:prepare-op)))
(:mop-direct asdf/lisp-action:compile-op :prototype
 #<asdf/lisp-action:compile-op >)
(:mop-direct asdf/lisp-action:basic-load-op :superclass
 asdf/operation:operation)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:basic-load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:basic-load-op :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/lisp-action:basic-load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-load-op :superclass
 asdf/operation:operation)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :precedance
 (asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op :classof
 common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-load-compiled-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   'asdf/concatenate-source:monolithic-compile-concatenated-source-op)))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-load-compiled-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   '(asdf/lisp-action:prepare-op
     asdf/concatenate-source:compile-concatenated-source-op))))
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op :prototype
 #<asdf/concatenate-source::basic-load-compiled-concatenated-source-op >)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
 asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :precedance
 (asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-load-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
 asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :package-name
 "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :precedance
 (asdf/concatenate-source::basic-load-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
 asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   '(asdf/lisp-action:prepare-op
     asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :prototype #<asdf/concatenate-source::basic-load-concatenated-source-op >)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:load-bundle-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:load-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:prepare-bundle-op asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:load-bundle-op :prototype
 #<asdf/bundle:load-bundle-op >)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-source-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:prepare-source-op)))
(:mop-direct asdf/lisp-action:load-source-op :prototype
 #<asdf/lisp-action:load-source-op >)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/lisp-action:prepare-op asdf/lisp-action:compile-op))))
(:mop-direct asdf/lisp-action:load-op :prototype #<asdf/lisp-action:load-op >)
(:mop-direct asdf/action:non-propagating-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/operate:build-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/action:non-propagating-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:non-propagating-operation :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:non-propagating-operation :classof
 common-lisp:standard-class)
(:mop-direct asdf/action:non-propagating-operation :typeof
 common-lisp:standard-class)
(:mop-direct asdf/action:non-propagating-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :precedance
 (asdf/concatenate-source::basic-concatenate-source-op
  asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
 :superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :package-name
 "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:concatenate-source-op :precedance
 (asdf/concatenate-source::basic-concatenate-source-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:concatenate-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
 "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
 ((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:dll-op :precedance
 (asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:dll-op :prototype #<asdf/bundle:dll-op >)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:lib-op :precedance
 (asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:lib-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :lib)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
  asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :prototype #<asdf/bundle:lib-op >)
(:mop-direct asdf/operate:build-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/operate:build-op :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:build-op :precedance
 (asdf/action:non-propagating-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/operate:build-op :classof common-lisp:standard-class)
(:mop-direct asdf/operate:build-op :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:build-op :superclass
 asdf/action:non-propagating-operation)
(:mop-direct asdf/operate:build-op :prototype #<asdf/operate:build-op >)
(:mop-direct asdf/action:selfward-operation :superclass
 asdf/operation:operation)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:test-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/action:selfward-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:selfward-operation :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:selfward-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:selfward-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:selfward-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/action:selfward-operation :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:type (common-lisp:or asdf/action::operation-designator common-lisp:list))
  (:readers (asdf/action:selfward-operation))))
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :precedance
 (asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op :classof
 common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-load-compiled-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
 asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   'asdf/concatenate-source:monolithic-compile-concatenated-source-op)))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-load-compiled-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
 :superclass
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   '(asdf/lisp-action:prepare-op
     asdf/concatenate-source:compile-concatenated-source-op))))
(:mop-direct
 asdf/concatenate-source::basic-load-compiled-concatenated-source-op :prototype
 #<asdf/concatenate-source::basic-load-compiled-concatenated-source-op >)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
 asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-compile-concatenated-source-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
 :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
 asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :precedance
 (asdf/concatenate-source::basic-compile-concatenated-source-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
 asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   '(asdf/lisp-action:prepare-op
     asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
 :prototype #<asdf/concatenate-source::basic-compile-concatenated-source-op >)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
 asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :precedance
 (asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :precedance
 (asdf/concatenate-source::basic-load-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
 :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
 asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :package-name
 "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :precedance
 (asdf/concatenate-source::basic-load-concatenated-source-op
  asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
 asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform
   '(asdf/lisp-action:prepare-op
     asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
 :prototype #<asdf/concatenate-source::basic-load-concatenated-source-op >)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:image-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:image-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:image-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:image-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :image)))
(:mop-direct asdf/bundle:image-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 2) (:allocation :class)
  (:initform '(asdf/lisp-action:load-op))))
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-op :precedance
 (asdf/bundle:image-op asdf/bundle:monolithic-bundle-op
  asdf/bundle:monolithic-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:program-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :slot
 ((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :program)))
(:mop-direct asdf/bundle:program-op :prototype #<asdf/bundle:program-op >)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:deliver-asd-op :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:deliver-asd-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:deliver-asd-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
  asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
 asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/bundle:deliver-asd-op :prototype
 #<asdf/bundle:deliver-asd-op >)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:load-bundle-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:selfward-operation
  asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:load-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:load-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:prepare-bundle-op asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
 (asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
  asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
  asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
 asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:load-bundle-op :prototype
 #<asdf/bundle:load-bundle-op >)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compile-bundle-op :precedance
 (asdf/bundle:basic-compile-bundle-op asdf/action:selfward-operation
  asdf/bundle::gather-op asdf/bundle:bundle-op
  asdf/lisp-action:basic-compile-op asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:compile-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/bundle:prepare-bundle-op))))
(:mop-direct asdf/lisp-action:test-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:test-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:test-op :precedance
 (asdf/action:selfward-operation asdf/operation:operation
                                 common-lisp:standard-object
                                 sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:test-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:test-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:test-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:test-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:test-op :prototype #<asdf/lisp-action:test-op >)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-source-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:prepare-source-op)))
(:mop-direct asdf/lisp-action:load-source-op :prototype
 #<asdf/lisp-action:load-source-op >)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:compile-op :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:compile-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:prepare-op)))
(:mop-direct asdf/lisp-action:compile-op :prototype
 #<asdf/lisp-action:compile-op >)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/lisp-action:prepare-op asdf/lisp-action:compile-op))))
(:mop-direct asdf/lisp-action:load-op :prototype #<asdf/lisp-action:load-op >)
(:mop-direct asdf/action:selfward-operation :prototype
 #<asdf/action:selfward-operation >)
(:mop-direct asdf/action:sideway-operation :superclass asdf/operation:operation)
(:mop-direct asdf/bundle:prepare-bundle-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/action:sideway-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:sideway-operation :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:sideway-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:sideway-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:sideway-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:sideway-operation :slot
 ((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
  (:type asdf/action::operation-designator)
  (:readers (asdf/action:sideway-operation))))
(:mop-direct asdf/bundle:prepare-bundle-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/bundle:prepare-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prepare-bundle-op :precedance
 (asdf/action:sideway-operation asdf/operation:operation
                                common-lisp:standard-object sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct asdf/bundle:prepare-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prepare-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prepare-bundle-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/bundle:prepare-bundle-op :slot
 ((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :package-name
 "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-source-op :precedance
 (asdf/action:upward-operation asdf/action:sideway-operation
                               asdf/operation:operation
                               common-lisp:standard-object sb-pcl::slot-object
                               common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :slot
 ((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:load-source-op)))
(:mop-direct asdf/lisp-action:prepare-source-op :prototype
 #<asdf/lisp-action:prepare-source-op >)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-op :precedance
 (asdf/action:upward-operation asdf/action:sideway-operation
                               asdf/operation:operation
                               common-lisp:standard-object sb-pcl::slot-object
                               common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :slot
 ((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:prepare-op :prototype
 #<asdf/lisp-action:prepare-op >)
(:mop-direct asdf/action:upward-operation :superclass asdf/operation:operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/action:upward-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:upward-operation :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:upward-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:upward-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:upward-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:upward-operation :slot
 ((:name asdf/action:upward-operation) (:ordinal 1) (:allocation :class)
  (:type asdf/action::operation-designator)
  (:readers (asdf/action:upward-operation))))
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :package-name
 "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-source-op :precedance
 (asdf/action:upward-operation asdf/action:sideway-operation
                               asdf/operation:operation
                               common-lisp:standard-object sb-pcl::slot-object
                               common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :typeof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :slot
 ((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:load-source-op)))
(:mop-direct asdf/lisp-action:prepare-source-op :prototype
 #<asdf/lisp-action:prepare-source-op >)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-op :precedance
 (asdf/action:upward-operation asdf/action:sideway-operation
                               asdf/operation:operation
                               common-lisp:standard-object sb-pcl::slot-object
                               common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :superclass
 asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :slot
 ((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:prepare-op :prototype
 #<asdf/lisp-action:prepare-op >)
(:mop-direct asdf/action:upward-operation :prototype
 #<asdf/action:upward-operation >)
(:mop-direct asdf/action:downward-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/action:downward-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:downward-operation :precedance
 (asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:downward-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:downward-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:downward-operation :superclass
 asdf/operation:operation)
(:mop-direct asdf/action:downward-operation :slot
 ((:name asdf/action:downward-operation) (:ordinal 1) (:allocation :class)
  (:type asdf/action::operation-designator)
  (:readers (asdf/action:downward-operation))))
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-source-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-source-op :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:prepare-source-op)))
(:mop-direct asdf/lisp-action:load-source-op :prototype
 #<asdf/lisp-action:load-source-op >)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:compile-op :precedance
 (asdf/lisp-action:basic-compile-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:compile-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform 'asdf/lisp-action:prepare-op)))
(:mop-direct asdf/lisp-action:compile-op :prototype
 #<asdf/lisp-action:compile-op >)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-op :precedance
 (asdf/lisp-action:basic-load-op asdf/action:downward-operation
  asdf/action:selfward-operation asdf/operation:operation
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :superclass
 asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :slot
 ((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
  (:initform '(asdf/lisp-action:prepare-op asdf/lisp-action:compile-op))))
(:mop-direct asdf/lisp-action:load-op :prototype #<asdf/lisp-action:load-op >)
(:mop-direct asdf/action:downward-operation :prototype
 #<asdf/action:downward-operation >)
(:mop-direct asdf/operation:operation :prototype #<asdf/operation:operation >)
(:mop-direct asdf/system:proto-system :superclass common-lisp:standard-object)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/system:proto-system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:proto-system :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/system:proto-system :classof common-lisp:standard-class)
(:mop-direct asdf/system:proto-system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:proto-system :superclass common-lisp:standard-object)
(:mop-direct asdf/system:proto-system :slot
 ((:name asdf/component:name) (:ordinal 1)))
(:mop-direct asdf/system:proto-system :slot
 ((:name asdf/component:source-file) (:ordinal 2)))
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/system:system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:system :precedance
 (asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/system:system :classof common-lisp:standard-class)
(:mop-direct asdf/system:system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:description) (:ordinal 1)
  (:readers (asdf/system:system-description))
  (:writers ((common-lisp:setf asdf/system:system-description)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:long-description) (:ordinal 2)
  (:readers (asdf/system:system-long-description))
  (:writers ((common-lisp:setf asdf/system:system-long-description)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:author) (:ordinal 3) (:initargs (:author))
  (:readers (asdf/system:system-author))
  (:writers ((common-lisp:setf asdf/system:system-author)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:maintainer) (:ordinal 4) (:initargs (:maintainer))
  (:readers (asdf/system:system-maintainer))
  (:writers ((common-lisp:setf asdf/system:system-maintainer)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:licence) (:ordinal 5) (:initargs (:license :licence))
  (:readers (asdf/system:system-license asdf/system:system-licence))
  (:writers
   ((common-lisp:setf asdf/system:system-license)
    (common-lisp:setf asdf/system:system-licence)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:homepage) (:ordinal 6) (:initargs (:homepage))
  (:readers (asdf/system:system-homepage))
  (:writers ((common-lisp:setf asdf/system:system-homepage)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:bug-tracker) (:ordinal 7) (:initargs (:bug-tracker))
  (:readers (asdf/system:system-bug-tracker))
  (:writers ((common-lisp:setf asdf/system:system-bug-tracker)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:mailto) (:ordinal 8) (:initargs (:mailto))
  (:readers (asdf/system:system-mailto))
  (:writers ((common-lisp:setf asdf/system:system-mailto)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:long-name) (:ordinal 9) (:initargs (:long-name))
  (:readers (asdf/system:system-long-name))
  (:writers ((common-lisp:setf asdf/system:system-long-name)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:source-control) (:ordinal 10)
  (:initargs (:source-control)) (:readers (asdf/system:system-source-control))
  (:writers ((common-lisp:setf asdf/system:system-source-control)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:builtin-system-p) (:ordinal 11)
  (:initargs (:builtin-system-p)) (:readers (asdf/system:builtin-system-p))
  (:writers ((common-lisp:setf asdf/system:builtin-system-p)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:build-pathname) (:ordinal 12)
  (:initargs (:build-pathname))
  (:readers (asdf/system:component-build-pathname))
  (:writers ((common-lisp:setf asdf/system:component-build-pathname)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:entry-point) (:ordinal 13) (:initargs (:entry-point))
  (:readers (asdf/system:component-entry-point))
  (:writers ((common-lisp:setf asdf/system:component-entry-point)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:source-file) (:ordinal 14) (:initargs (:source-file))
  (:readers (asdf/system:system-source-file))
  (:writers ((common-lisp:setf asdf/system:system-source-file)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:defsystem-depends-on) (:ordinal 15)
  (:initargs (:defsystem-depends-on))
  (:readers (asdf/system:system-defsystem-depends-on))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system::depends-on) (:ordinal 16)
  (:readers (asdf/system:system-depends-on))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system::weakly-depends-on) (:ordinal 17)
  (:readers (asdf/system:system-weakly-depends-on))))
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :package-name
 "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-inferred-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-inferred-system :classof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :typeof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-system :package-name
 "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-system :precedance
 (asdf/package-inferred-system:package-inferred-system asdf/system:system
  asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-system :classof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :typeof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prebuilt-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:prebuilt-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :slot
 ((:name asdf/system:build-pathname) (:ordinal 1)
  (:initargs (:lib :static-library))
  (:readers (asdf/bundle::prebuilt-system-static-library))
  (:writers ((common-lisp:setf asdf/bundle::prebuilt-system-static-library)))))
(:mop-direct asdf/bundle:prebuilt-system :prototype

(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:precompiled-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:precompiled-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :slot
 ((:name asdf/system:build-pathname) (:ordinal 1) (:initargs (:fasl))))
(:mop-direct asdf/bundle:precompiled-system :prototype

(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:program-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle:prologue-code) (:ordinal 1) (:initargs (:prologue-code))
  (:readers (asdf/bundle:prologue-code))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle:epilogue-code) (:ordinal 2) (:initargs (:epilogue-code))
  (:readers (asdf/bundle:epilogue-code))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::no-uiop) (:ordinal 3) (:initargs (:no-uiop))
  (:readers (asdf/bundle::no-uiop))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::prefix-lisp-object-files) (:ordinal 4)
  (:initargs (:prefix-lisp-object-files))
  (:readers (asdf/bundle::prefix-lisp-object-files))
  (:writers ((common-lisp:setf asdf/bundle::prefix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::postfix-lisp-object-files) (:ordinal 5)
  (:initargs (:postfix-lisp-object-files))
  (:readers (asdf/bundle::postfix-lisp-object-files))
  (:writers ((common-lisp:setf asdf/bundle::postfix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::extra-object-files) (:ordinal 6)
  (:initargs (:extra-object-files))
  (:readers (asdf/bundle::extra-object-files))
  (:writers ((common-lisp:setf asdf/bundle::extra-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::extra-build-args) (:ordinal 7)
  (:initargs (:extra-build-args)) (:readers (asdf/bundle::extra-build-args))
  (:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:require-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/operate:require-system :classof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :slot
 ((:name asdf/component:module) (:ordinal 1) (:initargs (:module))
  (:readers (asdf/operate::required-module))
  (:writers ((common-lisp:setf asdf/operate::required-module)))))
(:mop-direct asdf/operate:require-system :prototype


(:mop-direct asdf/system:proto-system :prototype
 #<asdf/system:proto-system {1006DE6A43}>)
(:mop-direct asdf/component:component :superclass common-lisp:standard-object)
(:mop-direct asdf/component:parent-component :superclass
 asdf/component:component)
(:mop-direct asdf/component:child-component :superclass
 asdf/component:component)
(:mop-direct asdf/component:component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:component :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:component :classof common-lisp:standard-class)
(:mop-direct asdf/component:component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:component :superclass common-lisp:standard-object)
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:name) (:ordinal 1) (:type common-lisp:string)
  (:initargs (:name)) (:readers (asdf/component:component-name))
  (:writers ((common-lisp:setf asdf/component:component-name)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:version) (:ordinal 2) (:initargs (:version))
  (:readers (asdf/component:component-version))
  (:writers ((common-lisp:setf asdf/component:component-version)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:description) (:ordinal 3) (:initargs (:description))
  (:readers (asdf/component:component-description))
  (:writers ((common-lisp:setf asdf/component:component-description)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:long-description) (:ordinal 4)
  (:initargs (:long-description))
  (:readers (asdf/component:component-long-description))
  (:writers ((common-lisp:setf asdf/component:component-long-description)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:sideway-dependencies) (:ordinal 5)
  (:readers (asdf/component:component-sideway-dependencies))
  (:writers
   ((common-lisp:setf asdf/component:component-sideway-dependencies)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:if-feature) (:ordinal 6) (:initargs (:if-feature))
  (:readers (asdf/component:component-if-feature))
  (:writers ((common-lisp:setf asdf/component:component-if-feature)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:in-order-to) (:ordinal 7) (:initargs (:in-order-to))
  (:readers (asdf/component:component-in-order-to))
  (:writers ((common-lisp:setf asdf/component:component-in-order-to)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:inline-methods) (:ordinal 8)
  (:readers (asdf/component:component-inline-methods))
  (:writers ((common-lisp:setf asdf/component:component-inline-methods)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:relative-pathname) (:ordinal 9)
  (:initargs (:pathname))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:absolute-pathname) (:ordinal 10)))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:operation-times) (:ordinal 11)
  (:initform (common-lisp:make-hash-table))
  (:readers (asdf/component:component-operation-times))
  (:writers ((common-lisp:setf asdf/component:component-operation-times)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:around-compile) (:ordinal 12)
  (:initargs (:around-compile))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:properties) (:ordinal 13) (:initargs (:properties))
  (:readers (asdf/component:component-properties))
  (:writers ((common-lisp:setf asdf/component:component-properties)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:%encoding) (:ordinal 14) (:initargs (:encoding))
  (:readers (asdf/component::%component-encoding))
  (:writers ((common-lisp:setf asdf/component::%component-encoding)))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component:parent) (:ordinal 15) (:initargs (:parent))
  (:readers (asdf/component:component-parent))))
(:mop-direct asdf/component:component :slot
 ((:name asdf/component::build-operation) (:ordinal 16)
  (:initargs (:build-operation))
  (:readers (asdf/component:component-build-operation))))
(:mop-direct asdf/component:parent-component :superclass
 asdf/component:component)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/component:parent-component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:parent-component :precedance
 (asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:parent-component :classof
 common-lisp:standard-class)
(:mop-direct asdf/component:parent-component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:parent-component :superclass
 asdf/component:component)
(:mop-direct asdf/component:parent-component :slot
 ((:name asdf/component:children) (:ordinal 1) (:initargs (:components))
  (:readers
   (asdf/component:component-children asdf/component:module-components))
  (:writers ((common-lisp:setf asdf/component:component-children)))))
(:mop-direct asdf/component:parent-component :slot
 ((:name asdf/component:children-by-name) (:ordinal 2)
  (:readers
   (asdf/component:component-children-by-name
    asdf/component::module-components-by-name))
  (:writers ((common-lisp:setf asdf/component:component-children-by-name)))))
(:mop-direct asdf/component:parent-component :slot
 ((:name asdf/component:default-component-class) (:ordinal 3)
  (:initargs (:default-component-class))
  (:readers (asdf/component:module-default-component-class))
  (:writers
   ((common-lisp:setf asdf/component:module-default-component-class)))))
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/component:module :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:module :precedance
 (asdf/component:child-component asdf/component:parent-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:module :classof common-lisp:standard-class)
(:mop-direct asdf/component:module :typeof common-lisp:standard-class)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/system:system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:system :precedance
 (asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/system:system :classof common-lisp:standard-class)
(:mop-direct asdf/system:system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:description) (:ordinal 1)
  (:readers (asdf/system:system-description))
  (:writers ((common-lisp:setf asdf/system:system-description)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:long-description) (:ordinal 2)
  (:readers (asdf/system:system-long-description))
  (:writers ((common-lisp:setf asdf/system:system-long-description)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:author) (:ordinal 3) (:initargs (:author))
  (:readers (asdf/system:system-author))
  (:writers ((common-lisp:setf asdf/system:system-author)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:maintainer) (:ordinal 4) (:initargs (:maintainer))
  (:readers (asdf/system:system-maintainer))
  (:writers ((common-lisp:setf asdf/system:system-maintainer)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:licence) (:ordinal 5) (:initargs (:license :licence))
  (:readers (asdf/system:system-license asdf/system:system-licence))
  (:writers
   ((common-lisp:setf asdf/system:system-license)
    (common-lisp:setf asdf/system:system-licence)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:homepage) (:ordinal 6) (:initargs (:homepage))
  (:readers (asdf/system:system-homepage))
  (:writers ((common-lisp:setf asdf/system:system-homepage)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:bug-tracker) (:ordinal 7) (:initargs (:bug-tracker))
  (:readers (asdf/system:system-bug-tracker))
  (:writers ((common-lisp:setf asdf/system:system-bug-tracker)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:mailto) (:ordinal 8) (:initargs (:mailto))
  (:readers (asdf/system:system-mailto))
  (:writers ((common-lisp:setf asdf/system:system-mailto)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:long-name) (:ordinal 9) (:initargs (:long-name))
  (:readers (asdf/system:system-long-name))
  (:writers ((common-lisp:setf asdf/system:system-long-name)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:source-control) (:ordinal 10)
  (:initargs (:source-control)) (:readers (asdf/system:system-source-control))
  (:writers ((common-lisp:setf asdf/system:system-source-control)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:builtin-system-p) (:ordinal 11)
  (:initargs (:builtin-system-p)) (:readers (asdf/system:builtin-system-p))
  (:writers ((common-lisp:setf asdf/system:builtin-system-p)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:build-pathname) (:ordinal 12)
  (:initargs (:build-pathname))
  (:readers (asdf/system:component-build-pathname))
  (:writers ((common-lisp:setf asdf/system:component-build-pathname)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:entry-point) (:ordinal 13) (:initargs (:entry-point))
  (:readers (asdf/system:component-entry-point))
  (:writers ((common-lisp:setf asdf/system:component-entry-point)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:source-file) (:ordinal 14) (:initargs (:source-file))
  (:readers (asdf/system:system-source-file))
  (:writers ((common-lisp:setf asdf/system:system-source-file)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:defsystem-depends-on) (:ordinal 15)
  (:initargs (:defsystem-depends-on))
  (:readers (asdf/system:system-defsystem-depends-on))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system::depends-on) (:ordinal 16)
  (:readers (asdf/system:system-depends-on))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system::weakly-depends-on) (:ordinal 17)
  (:readers (asdf/system:system-weakly-depends-on))))
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :package-name
 "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-inferred-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-inferred-system :classof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :typeof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-system :package-name
 "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-system :precedance
 (asdf/package-inferred-system:package-inferred-system asdf/system:system
  asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-system :classof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :typeof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prebuilt-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:prebuilt-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :slot
 ((:name asdf/system:build-pathname) (:ordinal 1)
  (:initargs (:lib :static-library))
  (:readers (asdf/bundle::prebuilt-system-static-library))
  (:writers ((common-lisp:setf asdf/bundle::prebuilt-system-static-library)))))
(:mop-direct asdf/bundle:prebuilt-system :prototype

(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:precompiled-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:precompiled-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :slot
 ((:name asdf/system:build-pathname) (:ordinal 1) (:initargs (:fasl))))
(:mop-direct asdf/bundle:precompiled-system :prototype

(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:program-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle:prologue-code) (:ordinal 1) (:initargs (:prologue-code))
  (:readers (asdf/bundle:prologue-code))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle:epilogue-code) (:ordinal 2) (:initargs (:epilogue-code))
  (:readers (asdf/bundle:epilogue-code))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::no-uiop) (:ordinal 3) (:initargs (:no-uiop))
  (:readers (asdf/bundle::no-uiop))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::prefix-lisp-object-files) (:ordinal 4)
  (:initargs (:prefix-lisp-object-files))
  (:readers (asdf/bundle::prefix-lisp-object-files))
  (:writers ((common-lisp:setf asdf/bundle::prefix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::postfix-lisp-object-files) (:ordinal 5)
  (:initargs (:postfix-lisp-object-files))
  (:readers (asdf/bundle::postfix-lisp-object-files))
  (:writers ((common-lisp:setf asdf/bundle::postfix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::extra-object-files) (:ordinal 6)
  (:initargs (:extra-object-files))
  (:readers (asdf/bundle::extra-object-files))
  (:writers ((common-lisp:setf asdf/bundle::extra-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::extra-build-args) (:ordinal 7)
  (:initargs (:extra-build-args)) (:readers (asdf/bundle::extra-build-args))
  (:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:require-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/operate:require-system :classof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :slot
 ((:name asdf/component:module) (:ordinal 1) (:initargs (:module))
  (:readers (asdf/operate::required-module))
  (:writers ((common-lisp:setf asdf/operate::required-module)))))
(:mop-direct asdf/operate:require-system :prototype



(:mop-direct asdf/component:parent-component :prototype

(:mop-direct asdf/component:child-component :superclass
 asdf/component:component)
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/component:file-component :superclass
 asdf/component:child-component)
(:mop-direct asdf/component:child-component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:child-component :precedance
 (asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:child-component :classof common-lisp:standard-class)
(:mop-direct asdf/component:child-component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:child-component :superclass
 asdf/component:component)
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/component:module :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:module :precedance
 (asdf/component:child-component asdf/component:parent-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:module :classof common-lisp:standard-class)
(:mop-direct asdf/component:module :typeof common-lisp:standard-class)
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/system:system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:system :precedance
 (asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/system:system :classof common-lisp:standard-class)
(:mop-direct asdf/system:system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:description) (:ordinal 1)
  (:readers (asdf/system:system-description))
  (:writers ((common-lisp:setf asdf/system:system-description)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:long-description) (:ordinal 2)
  (:readers (asdf/system:system-long-description))
  (:writers ((common-lisp:setf asdf/system:system-long-description)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:author) (:ordinal 3) (:initargs (:author))
  (:readers (asdf/system:system-author))
  (:writers ((common-lisp:setf asdf/system:system-author)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:maintainer) (:ordinal 4) (:initargs (:maintainer))
  (:readers (asdf/system:system-maintainer))
  (:writers ((common-lisp:setf asdf/system:system-maintainer)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:licence) (:ordinal 5) (:initargs (:license :licence))
  (:readers (asdf/system:system-license asdf/system:system-licence))
  (:writers
   ((common-lisp:setf asdf/system:system-license)
    (common-lisp:setf asdf/system:system-licence)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:homepage) (:ordinal 6) (:initargs (:homepage))
  (:readers (asdf/system:system-homepage))
  (:writers ((common-lisp:setf asdf/system:system-homepage)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:bug-tracker) (:ordinal 7) (:initargs (:bug-tracker))
  (:readers (asdf/system:system-bug-tracker))
  (:writers ((common-lisp:setf asdf/system:system-bug-tracker)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:mailto) (:ordinal 8) (:initargs (:mailto))
  (:readers (asdf/system:system-mailto))
  (:writers ((common-lisp:setf asdf/system:system-mailto)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:long-name) (:ordinal 9) (:initargs (:long-name))
  (:readers (asdf/system:system-long-name))
  (:writers ((common-lisp:setf asdf/system:system-long-name)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:source-control) (:ordinal 10)
  (:initargs (:source-control)) (:readers (asdf/system:system-source-control))
  (:writers ((common-lisp:setf asdf/system:system-source-control)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:builtin-system-p) (:ordinal 11)
  (:initargs (:builtin-system-p)) (:readers (asdf/system:builtin-system-p))
  (:writers ((common-lisp:setf asdf/system:builtin-system-p)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:build-pathname) (:ordinal 12)
  (:initargs (:build-pathname))
  (:readers (asdf/system:component-build-pathname))
  (:writers ((common-lisp:setf asdf/system:component-build-pathname)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system:entry-point) (:ordinal 13) (:initargs (:entry-point))
  (:readers (asdf/system:component-entry-point))
  (:writers ((common-lisp:setf asdf/system:component-entry-point)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:source-file) (:ordinal 14) (:initargs (:source-file))
  (:readers (asdf/system:system-source-file))
  (:writers ((common-lisp:setf asdf/system:system-source-file)))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/component:defsystem-depends-on) (:ordinal 15)
  (:initargs (:defsystem-depends-on))
  (:readers (asdf/system:system-defsystem-depends-on))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system::depends-on) (:ordinal 16)
  (:readers (asdf/system:system-depends-on))))
(:mop-direct asdf/system:system :slot
 ((:name asdf/system::weakly-depends-on) (:ordinal 17)
  (:readers (asdf/system:system-weakly-depends-on))))
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :package-name
 "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-inferred-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-inferred-system :classof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :typeof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
 asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-system :package-name
 "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-system :precedance
 (asdf/package-inferred-system:package-inferred-system asdf/system:system
  asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-system :classof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :typeof
 common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :superclass
 asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prebuilt-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:prebuilt-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :slot
 ((:name asdf/system:build-pathname) (:ordinal 1)
  (:initargs (:lib :static-library))
  (:readers (asdf/bundle::prebuilt-system-static-library))
  (:writers ((common-lisp:setf asdf/bundle::prebuilt-system-static-library)))))
(:mop-direct asdf/bundle:prebuilt-system :prototype

(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:precompiled-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:precompiled-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :slot
 ((:name asdf/system:build-pathname) (:ordinal 1) (:initargs (:fasl))))
(:mop-direct asdf/bundle:precompiled-system :prototype

(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:program-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle:prologue-code) (:ordinal 1) (:initargs (:prologue-code))
  (:readers (asdf/bundle:prologue-code))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle:epilogue-code) (:ordinal 2) (:initargs (:epilogue-code))
  (:readers (asdf/bundle:epilogue-code))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::no-uiop) (:ordinal 3) (:initargs (:no-uiop))
  (:readers (asdf/bundle::no-uiop))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::prefix-lisp-object-files) (:ordinal 4)
  (:initargs (:prefix-lisp-object-files))
  (:readers (asdf/bundle::prefix-lisp-object-files))
  (:writers ((common-lisp:setf asdf/bundle::prefix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::postfix-lisp-object-files) (:ordinal 5)
  (:initargs (:postfix-lisp-object-files))
  (:readers (asdf/bundle::postfix-lisp-object-files))
  (:writers ((common-lisp:setf asdf/bundle::postfix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::extra-object-files) (:ordinal 6)
  (:initargs (:extra-object-files))
  (:readers (asdf/bundle::extra-object-files))
  (:writers ((common-lisp:setf asdf/bundle::extra-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
 ((:name asdf/bundle::extra-build-args) (:ordinal 7)
  (:initargs (:extra-build-args)) (:readers (asdf/bundle::extra-build-args))
  (:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:require-system :precedance
 (asdf/system:system asdf/component:module asdf/component:child-component
  asdf/component:parent-component asdf/component:component
  asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/operate:require-system :classof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :slot
 ((:name asdf/component:module) (:ordinal 1) (:initargs (:module))
  (:readers (asdf/operate::required-module))
  (:writers ((common-lisp:setf asdf/operate::required-module)))))
(:mop-direct asdf/operate:require-system :prototype



(:mop-direct asdf/component:file-component :superclass
 asdf/component:child-component)
(:mop-direct asdf/bundle:compiled-file :superclass
 asdf/component:file-component)
(:mop-direct asdf/component:source-file :superclass
 asdf/component:file-component)
(:mop-direct asdf/component:file-component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:file-component :precedance
 (asdf/component:child-component asdf/component:component
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:file-component :classof common-lisp:standard-class)
(:mop-direct asdf/component:file-component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:file-component :superclass
 asdf/component:child-component)
(:mop-direct asdf/component:file-component :slot
 ((:name common-lisp:type) (:ordinal 1) (:initargs (:type))
  (:readers (asdf/component:file-type))
  (:writers ((common-lisp:setf asdf/component:file-type)))))
(:mop-direct asdf/bundle:compiled-file :superclass
 asdf/component:file-component)
(:mop-direct asdf/bundle:compiled-file :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compiled-file :precedance
 (asdf/component:file-component asdf/component:child-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/bundle:compiled-file :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compiled-file :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compiled-file :superclass
 asdf/component:file-component)
(:mop-direct asdf/bundle:compiled-file :slot
 ((:name common-lisp:type) (:ordinal 1)
  (:initform (uiop/lisp-build:compile-file-type))))

(:mop-direct asdf/component:source-file :superclass
 asdf/component:file-component)
(:mop-direct asdf/lisp-action:cl-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:static-file :superclass asdf/component:source-file)
(:mop-direct asdf/component:java-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:c-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:source-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:source-file :precedance
 (asdf/component:file-component asdf/component:child-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:source-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:source-file :superclass
 asdf/component:file-component)
(:mop-direct asdf/component:source-file :slot
 ((:name common-lisp:type) (:ordinal 1)
  (:readers (asdf/component:source-file-explicit-type))
  (:writers ((common-lisp:setf asdf/component:source-file-explicit-type)))))
(:mop-direct asdf/lisp-action:cl-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :superclass
 asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.cl :superclass
 asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:cl-source-file :precedance
 (asdf/component:source-file asdf/component:file-component
  asdf/component:child-component asdf/component:component
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:cl-source-file :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/lisp-action:cl-source-file :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform "lisp")))
(:mop-direct asdf/lisp-action:cl-source-file.lsp :superclass
 asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :package-name
 "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:cl-source-file.lsp :precedance
 (asdf/lisp-action:cl-source-file asdf/component:source-file
  asdf/component:file-component asdf/component:child-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/lisp-action:cl-source-file.lsp :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :typeof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :superclass
 asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform "lsp")))
(:mop-direct asdf/lisp-action:cl-source-file.cl :superclass
 asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.cl :package-name
 "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:cl-source-file.cl :precedance
 (asdf/lisp-action:cl-source-file asdf/component:source-file
  asdf/component:file-component asdf/component:child-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/lisp-action:cl-source-file.cl :classof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.cl :typeof
 common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.cl :superclass
 asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.cl :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform "cl")))
(:mop-direct asdf/lisp-action:cl-source-file :prototype

(:mop-direct asdf/component:static-file :superclass asdf/component:source-file)
(:mop-direct asdf/component:doc-file :superclass asdf/component:static-file)
(:mop-direct asdf/component:static-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:static-file :precedance
 (asdf/component:source-file asdf/component:file-component
  asdf/component:child-component asdf/component:component
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:static-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:static-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:static-file :superclass asdf/component:source-file)
(:mop-direct asdf/component:static-file :slot
 ((:name common-lisp:type) (:ordinal 1)))
(:mop-direct asdf/component:doc-file :superclass asdf/component:static-file)
(:mop-direct asdf/component:html-file :superclass asdf/component:doc-file)
(:mop-direct asdf/component:doc-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:doc-file :precedance
 (asdf/component:static-file asdf/component:source-file
  asdf/component:file-component asdf/component:child-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:doc-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:doc-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:doc-file :superclass asdf/component:static-file)
(:mop-direct asdf/component:html-file :superclass asdf/component:doc-file)
(:mop-direct asdf/component:html-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:html-file :precedance
 (asdf/component:doc-file asdf/component:static-file asdf/component:source-file
  asdf/component:file-component asdf/component:child-component
  asdf/component:component common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:html-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:html-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:html-file :superclass asdf/component:doc-file)
(:mop-direct asdf/component:html-file :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform "html")))

(:mop-direct asdf/component:java-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:java-source-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:java-source-file :precedance
 (asdf/component:source-file asdf/component:file-component
  asdf/component:child-component asdf/component:component
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:java-source-file :classof
 common-lisp:standard-class)
(:mop-direct asdf/component:java-source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:java-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:java-source-file :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform "java")))
(:mop-direct asdf/component:c-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:c-source-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:c-source-file :precedance
 (asdf/component:source-file asdf/component:file-component
  asdf/component:child-component asdf/component:component
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:c-source-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:c-source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:c-source-file :superclass
 asdf/component:source-file)
(:mop-direct asdf/component:c-source-file :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform "c")))

(:mop-direct asdf/component:file-component :prototype

(:mop-direct asdf/component:child-component :prototype


(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:stream)
(:mop-direct sb-gray:fundamental-binary-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-output-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-input-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-stream :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:stream
  common-lisp:t))
(:mop-direct sb-gray:fundamental-stream :classof common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-stream :typeof common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :slot
 ((:name sb-gray::open-p) (:ordinal 1) (:initform common-lisp:t)
  (:readers (sb-gray::stream-open-p))
  (:writers ((common-lisp:setf sb-gray::stream-open-p)))))
(:mop-direct sb-gray:fundamental-binary-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-character-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :package-name
 "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-stream :prototype
 #<sb-gray:fundamental-character-stream {1003B1B4D3}>)
(:mop-direct sb-gray:fundamental-output-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-output-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-output-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :package-name
 "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-output-stream :prototype
 #<sb-gray:fundamental-output-stream {1003B2FF33}>)
(:mop-direct sb-gray:fundamental-input-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-input-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-input-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-input-stream :prototype
 #<sb-gray:fundamental-input-stream {1003B44993}>)
(:mop-direct sb-gray:fundamental-stream :prototype
 #<sb-gray:fundamental-stream {1003B45893}>)
(:mop-direct sb-pcl::plist-mixin :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::dependent-update-mixin :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct sb-pcl::plist-mixin :package-name "SB-PCL")
(:mop-direct sb-pcl::plist-mixin :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::plist-mixin :classof common-lisp:standard-class)
(:mop-direct sb-pcl::plist-mixin :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::plist-mixin :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::plist-mixin :slot
 ((:name sb-pcl::plist) (:ordinal 1) (:initargs (sb-pcl::plist))
  (:readers (sb-pcl::object-plist))
  (:writers ((common-lisp:setf sb-pcl::object-plist)))))
(:mop-direct sb-pcl::dependent-update-mixin :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct sb-pcl::dependent-update-mixin :package-name "SB-PCL")
(:mop-direct sb-pcl::dependent-update-mixin :precedance
 (sb-pcl::plist-mixin common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::dependent-update-mixin :classof common-lisp:standard-class)
(:mop-direct sb-pcl::dependent-update-mixin :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::dependent-update-mixin :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct common-lisp:class :package-name "COMMON-LISP")
(:mop-direct common-lisp:class :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:class :classof common-lisp:standard-class)
(:mop-direct common-lisp:class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (common-lisp:class-name))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::class-eq-specializer) (:ordinal 2)
  (:readers (sb-pcl::class-eq-specializer))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-superclasses) (:ordinal 3)
  (:readers (sb-mop:class-direct-superclasses))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-subclasses) (:ordinal 4)
  (:readers (sb-mop:class-direct-subclasses))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-methods) (:ordinal 5)
  (:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::safe-p) (:ordinal 7) (:initargs (sb-pcl::safe-p))
  (:readers (sb-pcl::safe-p)) (:writers ((common-lisp:setf sb-pcl::safe-p)))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::finalized-p) (:ordinal 8)
  (:readers (sb-mop:class-finalized-p))))
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::pcl-class :package-name "SB-PCL")
(:mop-direct sb-pcl::pcl-class :precedance
 (common-lisp:class sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pcl-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::%class-precedence-list) (:ordinal 1)
  (:readers (sb-mop:class-precedence-list))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::cpl-available-p) (:ordinal 2)
  (:readers (sb-pcl::cpl-available-p))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::can-precede-list) (:ordinal 3)
  (:readers (sb-pcl::class-can-precede-list))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::incompatible-superclass-list) (:ordinal 4)
  (:readers (sb-pcl::class-incompatible-superclass-list))
  (:writers ((common-lisp:setf sb-pcl::class-incompatible-superclass-list)))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::wrapper) (:ordinal 5) (:readers (sb-pcl::class-wrapper))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::prototype) (:ordinal 6) (:readers (sb-mop:class-prototype))))
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct sb-pcl:system-class :package-name "SB-PCL")
(:mop-direct sb-pcl:system-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl:system-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:built-in-class :precedance
 (sb-pcl:system-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:built-in-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :prototype
 #<common-lisp:built-in-class {10012439C3}>)
(:mop-direct sb-pcl:system-class :prototype #<sb-pcl:system-class {100123B8A3}>)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :package-name "SB-MOP")
(:mop-direct sb-mop:forward-referenced-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:forward-referenced-class :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :typeof common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :prototype
 #<sb-mop:forward-referenced-class {1001277F03}>)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-class :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :slot
 ((:name sb-pcl::direct-slots) (:ordinal 1)
  (:readers (sb-mop:class-direct-slots))))
(:mop-direct sb-pcl::slot-class :slot
 ((:name sb-pcl::slots) (:ordinal 2) (:readers (sb-mop:class-slots))))
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::defstruct-form) (:ordinal 1)
  (:readers (sb-pcl::class-defstruct-form))
  (:writers ((common-lisp:setf sb-pcl::class-defstruct-form)))))
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::defstruct-constructor) (:ordinal 2)
  (:readers (sb-pcl::class-defstruct-constructor))
  (:writers ((common-lisp:setf sb-pcl::class-defstruct-constructor)))))
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::from-defclass-p) (:ordinal 3) (:initargs (:from-defclass-p))))
(:mop-direct common-lisp:structure-class :prototype
 #<common-lisp:structure-class {100127B323}>)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :prototype
 #<sb-pcl::condition-class {100128DD63}>)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-pcl::std-class :package-name "SB-PCL")
(:mop-direct sb-pcl::std-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::std-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :default-initargs
 ((:direct-superclasses
   (common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {1002941D9B}>)))
(:mop-direct sb-mop:funcallable-standard-class :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-class :precedance
 (sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-class :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :prototype
 #<sb-mop:funcallable-standard-class {10012B8DA3}>)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :default-initargs
 ((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {1002941E9B}>)))
(:mop-direct common-lisp:standard-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-class :precedance
 (sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :prototype
 #<common-lisp:standard-class {10012870E3}>)
(:mop-direct sb-pcl::std-class :prototype #<sb-pcl::std-class {10012BBBC3}>)
(:mop-direct sb-pcl::slot-class :prototype #<sb-pcl::slot-class {1001224D93}>)
(:mop-direct sb-pcl::pcl-class :prototype #<sb-pcl::pcl-class {1001291113}>)
(:mop-direct common-lisp:class :prototype #<common-lisp:class {10012D0863}>)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::initial-methods) (:ordinal 2)
  (:readers (sb-pcl::generic-function-initial-methods))
  (:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::encapsulations) (:ordinal 3)
  (:readers (sb-pcl::generic-function-encapsulations))
  (:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
 (common-lisp:generic-function sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
  (:readers (sb-mop:generic-function-methods))
  (:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
  (:readers (sb-mop:generic-function-method-class))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%method-combination) (:ordinal 4)
  (:initargs (:method-combination))
  (:readers (sb-mop:generic-function-method-combination))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::declarations) (:ordinal 5)
  (:initargs (:declare :declarations))
  (:readers (sb-mop:generic-function-declarations))
  (:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
  (:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
  (:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%lock) (:ordinal 8)
  (:initform (sb-thread:make-mutex :name "GF lock"))
  (:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::info-needs-update) (:ordinal 9)
  (:readers (sb-pcl::gf-info-needs-update))
  (:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
 (common-lisp:standard-generic-function common-lisp:generic-function
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
 #<closer-mop:standard-generic-function {1003BFA4AB}>)
(:mop-direct common-lisp:standard-generic-function :prototype
 #<common-lisp:standard-generic-function {10012846CB}>)
(:mop-direct common-lisp:generic-function :prototype
 #<common-lisp:generic-function {100127F4BB}>)
(:mop-direct sb-pcl::dependent-update-mixin :prototype
 #<sb-pcl::dependent-update-mixin {10012A66D3}>)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct common-lisp:standard-method :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-method :precedance
 (sb-pcl::plist-mixin sb-pcl::definition-source-mixin common-lisp:method
  sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:standard-method :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%generic-function) (:ordinal 1)
  (:readers (sb-mop:method-generic-function))
  (:writers ((common-lisp:setf sb-mop:method-generic-function)))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::qualifiers) (:ordinal 2) (:initargs (:qualifiers))
  (:readers (common-lisp:method-qualifiers))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::specializers) (:ordinal 3) (:initargs (:specializers))
  (:readers (sb-mop:method-specializers))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::lambda-list) (:ordinal 4) (:initargs (:lambda-list))
  (:readers (sb-mop:method-lambda-list))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%function) (:ordinal 5) (:initargs (:function))
  (:readers (sb-mop:method-function))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::simple-next-method-call) (:ordinal 7)
  (:initargs (sb-pcl::simple-next-method-call))
  (:readers (sb-pcl::simple-next-method-call-p))))
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-pcl::accessor-method :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-method :precedance
 (common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::accessor-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::accessor-method :slot
 ((:name sb-pcl::slot-name) (:ordinal 1) (:initargs (:slot-name))
  (:readers (sb-pcl::accessor-method-slot-name))))
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-boundp-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :prototype
 #<sb-pcl::global-boundp-method {1001288183}>)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-writer-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :prototype
 #<sb-pcl::global-writer-method {1001282243}>)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-reader-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :prototype
 #<sb-pcl::global-reader-method {10012ADE93}>)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-accessor-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-accessor-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-accessor-method :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :slot
 ((:name sb-pcl::%slot-definition) (:ordinal 1) (:initargs (:slot-definition))
  (:readers (sb-mop:accessor-method-slot-definition))))
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-boundp-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :prototype
 #<sb-pcl::standard-boundp-method {10012ABA93}>)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-writer-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :prototype
 #<sb-mop:standard-writer-method {10012487D3}>)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-reader-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :prototype
 #<sb-mop:standard-reader-method {1001280DB3}>)
(:mop-direct sb-mop:standard-accessor-method :prototype
 #<sb-mop:standard-accessor-method {10012ACCD3}>)
(:mop-direct sb-pcl::accessor-method :prototype
 #<sb-pcl::accessor-method {100126AFF3}>)
(:mop-direct common-lisp:standard-method :prototype
 #<common-lisp:standard-method {10012446D3}>)
(:mop-direct sb-pcl::plist-mixin :prototype #<sb-pcl::plist-mixin {100123E003}>)
(:mop-direct sb-pcl::definition-source-mixin :superclass
 common-lisp:standard-object)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::definition-source-mixin :package-name "SB-PCL")
(:mop-direct sb-pcl::definition-source-mixin :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::definition-source-mixin :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::definition-source-mixin :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::definition-source-mixin :superclass
 common-lisp:standard-object)
(:mop-direct sb-pcl::definition-source-mixin :slot
 ((:name sb-pcl::source) (:ordinal 1) (:initargs (:definition-source))
  (:readers (sb-pcl::definition-source))))
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct common-lisp:class :package-name "COMMON-LISP")
(:mop-direct common-lisp:class :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:class :classof common-lisp:standard-class)
(:mop-direct common-lisp:class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (common-lisp:class-name))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::class-eq-specializer) (:ordinal 2)
  (:readers (sb-pcl::class-eq-specializer))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-superclasses) (:ordinal 3)
  (:readers (sb-mop:class-direct-superclasses))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-subclasses) (:ordinal 4)
  (:readers (sb-mop:class-direct-subclasses))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-methods) (:ordinal 5)
  (:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::safe-p) (:ordinal 7) (:initargs (sb-pcl::safe-p))
  (:readers (sb-pcl::safe-p)) (:writers ((common-lisp:setf sb-pcl::safe-p)))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::finalized-p) (:ordinal 8)
  (:readers (sb-mop:class-finalized-p))))
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::pcl-class :package-name "SB-PCL")
(:mop-direct sb-pcl::pcl-class :precedance
 (common-lisp:class sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pcl-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::%class-precedence-list) (:ordinal 1)
  (:readers (sb-mop:class-precedence-list))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::cpl-available-p) (:ordinal 2)
  (:readers (sb-pcl::cpl-available-p))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::can-precede-list) (:ordinal 3)
  (:readers (sb-pcl::class-can-precede-list))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::incompatible-superclass-list) (:ordinal 4)
  (:readers (sb-pcl::class-incompatible-superclass-list))
  (:writers ((common-lisp:setf sb-pcl::class-incompatible-superclass-list)))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::wrapper) (:ordinal 5) (:readers (sb-pcl::class-wrapper))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::prototype) (:ordinal 6) (:readers (sb-mop:class-prototype))))
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct sb-pcl:system-class :package-name "SB-PCL")
(:mop-direct sb-pcl:system-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl:system-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:built-in-class :precedance
 (sb-pcl:system-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:built-in-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :prototype
 #<common-lisp:built-in-class {10012439C3}>)
(:mop-direct sb-pcl:system-class :prototype #<sb-pcl:system-class {100123B8A3}>)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :package-name "SB-MOP")
(:mop-direct sb-mop:forward-referenced-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:forward-referenced-class :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :typeof common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :prototype
 #<sb-mop:forward-referenced-class {1001277F03}>)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-class :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :slot
 ((:name sb-pcl::direct-slots) (:ordinal 1)
  (:readers (sb-mop:class-direct-slots))))
(:mop-direct sb-pcl::slot-class :slot
 ((:name sb-pcl::slots) (:ordinal 2) (:readers (sb-mop:class-slots))))
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::defstruct-form) (:ordinal 1)
  (:readers (sb-pcl::class-defstruct-form))
  (:writers ((common-lisp:setf sb-pcl::class-defstruct-form)))))
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::defstruct-constructor) (:ordinal 2)
  (:readers (sb-pcl::class-defstruct-constructor))
  (:writers ((common-lisp:setf sb-pcl::class-defstruct-constructor)))))
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::from-defclass-p) (:ordinal 3) (:initargs (:from-defclass-p))))
(:mop-direct common-lisp:structure-class :prototype
 #<common-lisp:structure-class {100127B323}>)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :prototype
 #<sb-pcl::condition-class {100128DD63}>)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-pcl::std-class :package-name "SB-PCL")
(:mop-direct sb-pcl::std-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::std-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :default-initargs
 ((:direct-superclasses
   (common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {1002941D9B}>)))
(:mop-direct sb-mop:funcallable-standard-class :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-class :precedance
 (sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-class :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :prototype
 #<sb-mop:funcallable-standard-class {10012B8DA3}>)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :default-initargs
 ((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {1002941E9B}>)))
(:mop-direct common-lisp:standard-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-class :precedance
 (sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :prototype
 #<common-lisp:standard-class {10012870E3}>)
(:mop-direct sb-pcl::std-class :prototype #<sb-pcl::std-class {10012BBBC3}>)
(:mop-direct sb-pcl::slot-class :prototype #<sb-pcl::slot-class {1001224D93}>)
(:mop-direct sb-pcl::pcl-class :prototype #<sb-pcl::pcl-class {1001291113}>)
(:mop-direct common-lisp:class :prototype #<common-lisp:class {10012D0863}>)
(:mop-direct sb-pcl::standard-method-combination :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :superclass
 common-lisp:method-combination)
(:mop-direct sb-pcl::short-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::standard-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-method-combination :precedance
 (sb-pcl::definition-source-mixin common-lisp:method-combination
  sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::standard-method-combination :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :slot
 ((:name sb-pcl::type-name) (:ordinal 1) (:initargs (:type-name))
  (:readers (sb-pcl::method-combination-type-name))))
(:mop-direct sb-pcl::standard-method-combination :slot
 ((:name sb-pcl::options) (:ordinal 2) (:initargs (:options))
  (:readers (sb-pcl::method-combination-options))))
(:mop-direct sb-pcl::short-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::short-method-combination :precedance
 (sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
  common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::short-method-combination :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :slot
 ((:name sb-pcl::operator) (:ordinal 1) (:initargs (:operator))
  (:readers (sb-pcl::short-combination-operator))))
(:mop-direct sb-pcl::short-method-combination :slot
 ((:name sb-pcl::identity-with-one-argument) (:ordinal 2)
  (:initargs (:identity-with-one-argument))
  (:readers (sb-pcl::short-combination-identity-with-one-argument))))
(:mop-direct sb-pcl::short-method-combination :prototype
 #<sb-pcl::short-method-combination #<unbound slot> #<unbound slot>
   {1001269D93}>)
(:mop-direct sb-pcl::long-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination :precedance
 (sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
  common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :slot
 ((:name common-lisp:function) (:ordinal 1) (:initargs (:function))
  (:readers (sb-pcl::long-method-combination-function))))
(:mop-direct sb-pcl::long-method-combination :slot
 ((:name sb-pcl::args-lambda-list) (:ordinal 2) (:initargs (:args-lambda-list))
  (:readers (sb-pcl::long-method-combination-args-lambda-list))))
(:mop-direct sb-pcl::long-method-combination :prototype
 #<sb-pcl::long-method-combination #<unbound slot> #<unbound slot>
   {10012294C3}>)
(:mop-direct sb-pcl::standard-method-combination :prototype
 #<sb-pcl::standard-method-combination #<unbound slot> #<unbound slot>
   {10012BC723}>)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct common-lisp:standard-method :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-method :precedance
 (sb-pcl::plist-mixin sb-pcl::definition-source-mixin common-lisp:method
  sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:standard-method :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%generic-function) (:ordinal 1)
  (:readers (sb-mop:method-generic-function))
  (:writers ((common-lisp:setf sb-mop:method-generic-function)))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::qualifiers) (:ordinal 2) (:initargs (:qualifiers))
  (:readers (common-lisp:method-qualifiers))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::specializers) (:ordinal 3) (:initargs (:specializers))
  (:readers (sb-mop:method-specializers))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::lambda-list) (:ordinal 4) (:initargs (:lambda-list))
  (:readers (sb-mop:method-lambda-list))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%function) (:ordinal 5) (:initargs (:function))
  (:readers (sb-mop:method-function))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::simple-next-method-call) (:ordinal 7)
  (:initargs (sb-pcl::simple-next-method-call))
  (:readers (sb-pcl::simple-next-method-call-p))))
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-pcl::accessor-method :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-method :precedance
 (common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::accessor-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::accessor-method :slot
 ((:name sb-pcl::slot-name) (:ordinal 1) (:initargs (:slot-name))
  (:readers (sb-pcl::accessor-method-slot-name))))
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-boundp-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :prototype
 #<sb-pcl::global-boundp-method {1001288183}>)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-writer-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :prototype
 #<sb-pcl::global-writer-method {1001282243}>)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-reader-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :prototype
 #<sb-pcl::global-reader-method {10012ADE93}>)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-accessor-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-accessor-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-accessor-method :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :slot
 ((:name sb-pcl::%slot-definition) (:ordinal 1) (:initargs (:slot-definition))
  (:readers (sb-mop:accessor-method-slot-definition))))
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-boundp-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :prototype
 #<sb-pcl::standard-boundp-method {10012ABA93}>)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-writer-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :prototype
 #<sb-mop:standard-writer-method {10012487D3}>)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-reader-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :prototype
 #<sb-mop:standard-reader-method {1001280DB3}>)
(:mop-direct sb-mop:standard-accessor-method :prototype
 #<sb-mop:standard-accessor-method {10012ACCD3}>)
(:mop-direct sb-pcl::accessor-method :prototype
 #<sb-pcl::accessor-method {100126AFF3}>)
(:mop-direct common-lisp:standard-method :prototype
 #<common-lisp:standard-method {10012446D3}>)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::initial-methods) (:ordinal 2)
  (:readers (sb-pcl::generic-function-initial-methods))
  (:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::encapsulations) (:ordinal 3)
  (:readers (sb-pcl::generic-function-encapsulations))
  (:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
 (common-lisp:generic-function sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
  (:readers (sb-mop:generic-function-methods))
  (:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
  (:readers (sb-mop:generic-function-method-class))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%method-combination) (:ordinal 4)
  (:initargs (:method-combination))
  (:readers (sb-mop:generic-function-method-combination))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::declarations) (:ordinal 5)
  (:initargs (:declare :declarations))
  (:readers (sb-mop:generic-function-declarations))
  (:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
  (:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
  (:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%lock) (:ordinal 8)
  (:initform (sb-thread:make-mutex :name "GF lock"))
  (:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::info-needs-update) (:ordinal 9)
  (:readers (sb-pcl::gf-info-needs-update))
  (:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
 (common-lisp:standard-generic-function common-lisp:generic-function
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
 #<closer-mop:standard-generic-function {1003BFA4AB}>)
(:mop-direct common-lisp:standard-generic-function :prototype
 #<common-lisp:standard-generic-function {10012846CB}>)
(:mop-direct common-lisp:generic-function :prototype
 #<common-lisp:generic-function {100127F4BB}>)
(:mop-direct sb-pcl::definition-source-mixin :prototype
 #<sb-pcl::definition-source-mixin {10012CD593}>)
(:mop-direct sb-mop:metaobject :superclass common-lisp:standard-object)
(:mop-direct sb-mop:specializer :superclass sb-mop:metaobject)
(:mop-direct sb-mop:slot-definition :superclass sb-mop:metaobject)
(:mop-direct common-lisp:method-combination :superclass sb-mop:metaobject)
(:mop-direct common-lisp:method :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct sb-mop:metaobject :package-name "SB-MOP")
(:mop-direct sb-mop:metaobject :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:metaobject :classof common-lisp:standard-class)
(:mop-direct sb-mop:metaobject :typeof common-lisp:standard-class)
(:mop-direct sb-mop:metaobject :superclass common-lisp:standard-object)
(:mop-direct sb-mop:specializer :superclass sb-mop:metaobject)
(:mop-direct sb-pcl::exact-class-specializer :superclass sb-mop:specializer)
(:mop-direct sb-pcl::specializer-with-object :superclass sb-mop:specializer)
(:mop-direct sb-pcl::standard-specializer :superclass sb-mop:specializer)
(:mop-direct sb-mop:specializer :package-name "SB-MOP")
(:mop-direct sb-mop:specializer :precedance
 (sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-mop:specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:specializer :superclass sb-mop:metaobject)
(:mop-direct sb-mop:specializer :slot
 ((:name sb-pcl::%type) (:ordinal 1) (:readers (sb-pcl::specializer-type))))
(:mop-direct sb-pcl::exact-class-specializer :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::exact-class-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::exact-class-specializer :precedance
 (sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::exact-class-specializer :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::exact-class-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::exact-class-specializer :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :package-name "SB-MOP")
(:mop-direct sb-mop:eql-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::exact-class-specializer
  sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:eql-specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:object))
  (:readers (sb-mop:eql-specializer-object sb-pcl::specializer-object))))
(:mop-direct sb-mop:eql-specializer :slot
 ((:name sb-pcl::direct-methods) (:ordinal 2)
  (:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct sb-mop:eql-specializer :prototype
 #<sb-mop:eql-specializer  {10012B48F3}>)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-eq-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::exact-class-specializer
  sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-eq-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-eq-specializer :prototype
 #<sb-pcl::class-eq-specializer {1001230EC3}>)
(:mop-direct sb-pcl::exact-class-specializer :prototype
 #<sb-pcl::exact-class-specializer {10012D5803}>)
(:mop-direct sb-pcl::specializer-with-object :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::specializer-with-object :package-name "SB-PCL")
(:mop-direct sb-pcl::specializer-with-object :precedance
 (sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::specializer-with-object :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::specializer-with-object :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::specializer-with-object :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :package-name "SB-MOP")
(:mop-direct sb-mop:eql-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::exact-class-specializer
  sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:eql-specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:object))
  (:readers (sb-mop:eql-specializer-object sb-pcl::specializer-object))))
(:mop-direct sb-mop:eql-specializer :slot
 ((:name sb-pcl::direct-methods) (:ordinal 2)
  (:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct sb-mop:eql-specializer :prototype
 #<sb-mop:eql-specializer  {10012B48F3}>)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-prototype-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::specializer-with-object
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-prototype-specializer :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-prototype-specializer :prototype
 #<sb-pcl::class-prototype-specializer {1001276C63}>)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-eq-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::exact-class-specializer
  sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-eq-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-eq-specializer :prototype
 #<sb-pcl::class-eq-specializer {1001230EC3}>)
(:mop-direct sb-pcl::specializer-with-object :prototype
 #<sb-pcl::specializer-with-object {1001269973}>)
(:mop-direct sb-pcl::standard-specializer :superclass sb-mop:specializer)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::standard-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-specializer :precedance
 (sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-specializer :superclass sb-mop:specializer)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct common-lisp:class :package-name "COMMON-LISP")
(:mop-direct common-lisp:class :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:class :classof common-lisp:standard-class)
(:mop-direct common-lisp:class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (common-lisp:class-name))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::class-eq-specializer) (:ordinal 2)
  (:readers (sb-pcl::class-eq-specializer))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-superclasses) (:ordinal 3)
  (:readers (sb-mop:class-direct-superclasses))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-subclasses) (:ordinal 4)
  (:readers (sb-mop:class-direct-subclasses))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::direct-methods) (:ordinal 5)
  (:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::safe-p) (:ordinal 7) (:initargs (sb-pcl::safe-p))
  (:readers (sb-pcl::safe-p)) (:writers ((common-lisp:setf sb-pcl::safe-p)))))
(:mop-direct common-lisp:class :slot
 ((:name sb-pcl::finalized-p) (:ordinal 8)
  (:readers (sb-mop:class-finalized-p))))
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::pcl-class :package-name "SB-PCL")
(:mop-direct sb-pcl::pcl-class :precedance
 (common-lisp:class sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pcl-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::%class-precedence-list) (:ordinal 1)
  (:readers (sb-mop:class-precedence-list))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::cpl-available-p) (:ordinal 2)
  (:readers (sb-pcl::cpl-available-p))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::can-precede-list) (:ordinal 3)
  (:readers (sb-pcl::class-can-precede-list))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::incompatible-superclass-list) (:ordinal 4)
  (:readers (sb-pcl::class-incompatible-superclass-list))
  (:writers ((common-lisp:setf sb-pcl::class-incompatible-superclass-list)))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::wrapper) (:ordinal 5) (:readers (sb-pcl::class-wrapper))))
(:mop-direct sb-pcl::pcl-class :slot
 ((:name sb-pcl::prototype) (:ordinal 6) (:readers (sb-mop:class-prototype))))
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct sb-pcl:system-class :package-name "SB-PCL")
(:mop-direct sb-pcl:system-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl:system-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:built-in-class :precedance
 (sb-pcl:system-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:built-in-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :prototype
 #<common-lisp:built-in-class {10012439C3}>)
(:mop-direct sb-pcl:system-class :prototype #<sb-pcl:system-class {100123B8A3}>)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :package-name "SB-MOP")
(:mop-direct sb-mop:forward-referenced-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:forward-referenced-class :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :typeof common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :prototype
 #<sb-mop:forward-referenced-class {1001277F03}>)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-class :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-class :precedance
 (sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin
  sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :slot
 ((:name sb-pcl::direct-slots) (:ordinal 1)
  (:readers (sb-mop:class-direct-slots))))
(:mop-direct sb-pcl::slot-class :slot
 ((:name sb-pcl::slots) (:ordinal 2) (:readers (sb-mop:class-slots))))
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::defstruct-form) (:ordinal 1)
  (:readers (sb-pcl::class-defstruct-form))
  (:writers ((common-lisp:setf sb-pcl::class-defstruct-form)))))
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::defstruct-constructor) (:ordinal 2)
  (:readers (sb-pcl::class-defstruct-constructor))
  (:writers ((common-lisp:setf sb-pcl::class-defstruct-constructor)))))
(:mop-direct common-lisp:structure-class :slot
 ((:name sb-pcl::from-defclass-p) (:ordinal 3) (:initargs (:from-defclass-p))))
(:mop-direct common-lisp:structure-class :prototype
 #<common-lisp:structure-class {100127B323}>)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :prototype
 #<sb-pcl::condition-class {100128DD63}>)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-pcl::std-class :package-name "SB-PCL")
(:mop-direct sb-pcl::std-class :precedance
 (sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::std-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :default-initargs
 ((:direct-superclasses
   (common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {1002941D9B}>)))
(:mop-direct sb-mop:funcallable-standard-class :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-class :precedance
 (sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-class :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :prototype
 #<sb-mop:funcallable-standard-class {10012B8DA3}>)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :default-initargs
 ((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {1002941E9B}>)))
(:mop-direct common-lisp:standard-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-class :precedance
 (sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-pcl::standard-specializer
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :prototype
 #<common-lisp:standard-class {10012870E3}>)
(:mop-direct sb-pcl::std-class :prototype #<sb-pcl::std-class {10012BBBC3}>)
(:mop-direct sb-pcl::slot-class :prototype #<sb-pcl::slot-class {1001224D93}>)
(:mop-direct sb-pcl::pcl-class :prototype #<sb-pcl::pcl-class {1001291113}>)
(:mop-direct common-lisp:class :prototype #<common-lisp:class {10012D0863}>)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :package-name "SB-MOP")
(:mop-direct sb-mop:eql-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::exact-class-specializer
  sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:eql-specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:object))
  (:readers (sb-mop:eql-specializer-object sb-pcl::specializer-object))))
(:mop-direct sb-mop:eql-specializer :slot
 ((:name sb-pcl::direct-methods) (:ordinal 2)
  (:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct sb-mop:eql-specializer :prototype
 #<sb-mop:eql-specializer  {10012B48F3}>)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-prototype-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::specializer-with-object
  sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-prototype-specializer :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-prototype-specializer :prototype
 #<sb-pcl::class-prototype-specializer {1001276C63}>)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-eq-specializer :precedance
 (sb-pcl::standard-specializer sb-pcl::exact-class-specializer
  sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-eq-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :superclass
 sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :slot
 ((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-eq-specializer :prototype
 #<sb-pcl::class-eq-specializer {1001230EC3}>)
(:mop-direct sb-pcl::standard-specializer :prototype
 #<sb-pcl::standard-specializer {1001271413}>)
(:mop-direct sb-mop:specializer :prototype #<sb-mop:specializer {1001271B33}>)
(:mop-direct sb-mop:slot-definition :superclass sb-mop:metaobject)
(:mop-direct sb-mop:effective-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-mop:direct-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-pcl::condition-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-mop:standard-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:slot-definition :precedance
 (sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-mop:slot-definition :classof common-lisp:standard-class)
(:mop-direct sb-mop:slot-definition :typeof common-lisp:standard-class)
(:mop-direct sb-mop:slot-definition :superclass sb-mop:metaobject)
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-mop:slot-definition-name))
  (:writers ((common-lisp:setf sb-mop:slot-definition-name)))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::initform) (:ordinal 2) (:initargs (:initform))
  (:readers (sb-mop:slot-definition-initform))
  (:writers ((common-lisp:setf sb-mop:slot-definition-initform)))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::initfunction) (:ordinal 3) (:initargs (:initfunction))
  (:readers (sb-mop:slot-definition-initfunction))
  (:writers ((common-lisp:setf sb-mop:slot-definition-initfunction)))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::initargs) (:ordinal 4) (:initargs (:initargs))
  (:readers (sb-mop:slot-definition-initargs))
  (:writers ((common-lisp:setf sb-mop:slot-definition-initargs)))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::%type) (:ordinal 5) (:initform common-lisp:t)
  (:initargs (:type)) (:readers (sb-mop:slot-definition-type))
  (:writers ((common-lisp:setf sb-mop:slot-definition-type)))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))
  (:readers (sb-pcl::%slot-definition-documentation))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::%class) (:ordinal 7) (:initargs (:class))
  (:readers (sb-pcl::slot-definition-class))
  (:writers ((common-lisp:setf sb-pcl::slot-definition-class)))))
(:mop-direct sb-mop:slot-definition :slot
 ((:name sb-pcl::source) (:ordinal 8) (:initargs (sb-pcl::source))
  (:readers (sb-pcl::definition-source))
  (:writers ((common-lisp:setf sb-pcl::definition-source)))))
(:mop-direct sb-mop:effective-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-mop:effective-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:effective-slot-definition :precedance
 (sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:effective-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-mop:effective-slot-definition :slot
 ((:name sb-pcl::accessor-flags) (:ordinal 1) (:initform 0)))
(:mop-direct sb-mop:effective-slot-definition :slot
 ((:name sb-int:info) (:ordinal 2) (:readers (sb-pcl::slot-definition-info))
  (:writers ((common-lisp:setf sb-pcl::slot-definition-info)))))
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-effective-slot-definition :precedance
 (sb-pcl::structure-slot-definition sb-mop:effective-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :prototype
 #<sb-pcl::structure-effective-slot-definition {10012CEE43}>)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-effective-slot-definition :precedance
 (sb-pcl::condition-slot-definition sb-mop:effective-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :prototype
 #<sb-pcl::condition-effective-slot-definition {10012C9BF3}>)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-effective-slot-definition :precedance
 (sb-mop:standard-slot-definition sb-mop:effective-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :slot
 ((:name sb-pcl::location) (:ordinal 1)
  (:readers (sb-mop:slot-definition-location))
  (:writers ((common-lisp:setf sb-mop:slot-definition-location)))))
(:mop-direct sb-mop:standard-effective-slot-definition :prototype
 #<sb-mop:standard-effective-slot-definition {10012AD4F3}>)
(:mop-direct sb-mop:effective-slot-definition :prototype
 #<sb-mop:effective-slot-definition {1001234973}>)
(:mop-direct sb-mop:direct-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-mop:direct-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:direct-slot-definition :precedance
 (sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:direct-slot-definition :classof common-lisp:standard-class)
(:mop-direct sb-mop:direct-slot-definition :typeof common-lisp:standard-class)
(:mop-direct sb-mop:direct-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:direct-slot-definition :slot
 ((:name sb-pcl::readers) (:ordinal 1) (:initargs (:readers))
  (:readers (sb-mop:slot-definition-readers))
  (:writers ((common-lisp:setf sb-mop:slot-definition-readers)))))
(:mop-direct sb-mop:direct-slot-definition :slot
 ((:name sb-pcl::writers) (:ordinal 2) (:initargs (:writers))
  (:readers (sb-mop:slot-definition-writers))
  (:writers ((common-lisp:setf sb-mop:slot-definition-writers)))))
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-direct-slot-definition :precedance
 (sb-pcl::structure-slot-definition sb-mop:direct-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-direct-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :prototype
 #<sb-pcl::structure-direct-slot-definition {10012DFA93}>)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-direct-slot-definition :precedance
 (sb-pcl::condition-slot-definition sb-mop:direct-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-direct-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :prototype
 #<sb-pcl::condition-direct-slot-definition {10012CEA73}>)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-direct-slot-definition :precedance
 (sb-mop:standard-slot-definition sb-mop:direct-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-direct-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :prototype
 #<sb-mop:standard-direct-slot-definition {10012DE713}>)
(:mop-direct sb-mop:direct-slot-definition :prototype
 #<sb-mop:direct-slot-definition {10012AADF3}>)
(:mop-direct sb-pcl::structure-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-slot-definition :precedance
 (sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-slot-definition :slot
 ((:name sb-pcl::defstruct-accessor-symbol) (:ordinal 1)
  (:initargs (:defstruct-accessor-symbol))
  (:readers (sb-pcl::slot-definition-defstruct-accessor-symbol))
  (:writers
   ((common-lisp:setf sb-pcl::slot-definition-defstruct-accessor-symbol)))))
(:mop-direct sb-pcl::structure-slot-definition :slot
 ((:name sb-pcl::internal-reader-function) (:ordinal 2)
  (:initargs (:internal-reader-function))
  (:readers (sb-pcl::slot-definition-internal-reader-function))
  (:writers
   ((common-lisp:setf sb-pcl::slot-definition-internal-reader-function)))))
(:mop-direct sb-pcl::structure-slot-definition :slot
 ((:name sb-pcl::internal-writer-function) (:ordinal 3)
  (:initargs (:internal-writer-function))
  (:readers (sb-pcl::slot-definition-internal-writer-function))
  (:writers
   ((common-lisp:setf sb-pcl::slot-definition-internal-writer-function)))))
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-effective-slot-definition :precedance
 (sb-pcl::structure-slot-definition sb-mop:effective-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :prototype
 #<sb-pcl::structure-effective-slot-definition {10012CEE43}>)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-direct-slot-definition :precedance
 (sb-pcl::structure-slot-definition sb-mop:direct-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-direct-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
 sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :prototype
 #<sb-pcl::structure-direct-slot-definition {10012DFA93}>)
(:mop-direct sb-pcl::structure-slot-definition :prototype
 #<sb-pcl::structure-slot-definition {10012AF3E3}>)
(:mop-direct sb-pcl::condition-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-slot-definition :precedance
 (sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-slot-definition :superclass
 sb-mop:slot-definition)
(:mop-direct sb-pcl::condition-slot-definition :slot
 ((:name sb-pcl::allocation) (:ordinal 1) (:initform :instance)
  (:initargs (:allocation)) (:readers (sb-mop:slot-definition-allocation))
  (:writers ((common-lisp:setf sb-mop:slot-definition-allocation)))))
(:mop-direct sb-pcl::condition-slot-definition :slot
 ((:name sb-pcl::allocation-class) (:ordinal 2) (:initargs (:allocation-class))
  (:readers (sb-pcl::slot-definition-allocation-class))
  (:writers ((common-lisp:setf sb-pcl::slot-definition-allocation-class)))))
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-effective-slot-definition :precedance
 (sb-pcl::condition-slot-definition sb-mop:effective-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :prototype
 #<sb-pcl::condition-effective-slot-definition {10012C9BF3}>)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-direct-slot-definition :precedance
 (sb-pcl::condition-slot-definition sb-mop:direct-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-direct-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
 sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :prototype
 #<sb-pcl::condition-direct-slot-definition {10012CEA73}>)
(:mop-direct sb-pcl::condition-slot-definition :prototype
 #<sb-pcl::condition-slot-definition {10012830B3}>)
(:mop-direct sb-mop:standard-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-slot-definition :precedance
 (sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-slot-definition :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:standard-slot-definition :slot
 ((:name sb-pcl::allocation) (:ordinal 1) (:initform :instance)
  (:initargs (:allocation)) (:readers (sb-mop:slot-definition-allocation))
  (:writers ((common-lisp:setf sb-mop:slot-definition-allocation)))))
(:mop-direct sb-mop:standard-slot-definition :slot
 ((:name sb-pcl::allocation-class) (:ordinal 2) (:initargs (:allocation-class))
  (:readers (sb-pcl::slot-definition-allocation-class))
  (:writers ((common-lisp:setf sb-pcl::slot-definition-allocation-class)))))
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-effective-slot-definition :precedance
 (sb-mop:standard-slot-definition sb-mop:effective-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-effective-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :slot
 ((:name sb-pcl::location) (:ordinal 1)
  (:readers (sb-mop:slot-definition-location))
  (:writers ((common-lisp:setf sb-mop:slot-definition-location)))))
(:mop-direct sb-mop:standard-effective-slot-definition :prototype
 #<sb-mop:standard-effective-slot-definition {10012AD4F3}>)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-direct-slot-definition :precedance
 (sb-mop:standard-slot-definition sb-mop:direct-slot-definition
  sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-direct-slot-definition :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :typeof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
 sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :prototype
 #<sb-mop:standard-direct-slot-definition {10012DE713}>)
(:mop-direct sb-mop:standard-slot-definition :prototype
 #<sb-mop:standard-slot-definition {1001274533}>)
(:mop-direct sb-mop:slot-definition :prototype
 #<sb-mop:slot-definition {100122A743}>)
(:mop-direct common-lisp:method-combination :superclass sb-mop:metaobject)
(:mop-direct sb-pcl::standard-method-combination :superclass
 common-lisp:method-combination)
(:mop-direct common-lisp:method-combination :package-name "COMMON-LISP")
(:mop-direct common-lisp:method-combination :precedance
 (sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:method-combination :classof common-lisp:standard-class)
(:mop-direct common-lisp:method-combination :typeof common-lisp:standard-class)
(:mop-direct common-lisp:method-combination :superclass sb-mop:metaobject)
(:mop-direct common-lisp:method-combination :slot
 ((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct sb-pcl::standard-method-combination :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :superclass
 common-lisp:method-combination)
(:mop-direct sb-pcl::short-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::standard-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-method-combination :precedance
 (sb-pcl::definition-source-mixin common-lisp:method-combination
  sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::standard-method-combination :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :superclass
 common-lisp:method-combination)
(:mop-direct sb-pcl::standard-method-combination :slot
 ((:name sb-pcl::type-name) (:ordinal 1) (:initargs (:type-name))
  (:readers (sb-pcl::method-combination-type-name))))
(:mop-direct sb-pcl::standard-method-combination :slot
 ((:name sb-pcl::options) (:ordinal 2) (:initargs (:options))
  (:readers (sb-pcl::method-combination-options))))
(:mop-direct sb-pcl::short-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::short-method-combination :precedance
 (sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
  common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::short-method-combination :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :typeof
 common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :slot
 ((:name sb-pcl::operator) (:ordinal 1) (:initargs (:operator))
  (:readers (sb-pcl::short-combination-operator))))
(:mop-direct sb-pcl::short-method-combination :slot
 ((:name sb-pcl::identity-with-one-argument) (:ordinal 2)
  (:initargs (:identity-with-one-argument))
  (:readers (sb-pcl::short-combination-identity-with-one-argument))))
(:mop-direct sb-pcl::short-method-combination :prototype
 #<sb-pcl::short-method-combination #<unbound slot> #<unbound slot>
   {1001269D93}>)
(:mop-direct sb-pcl::long-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination :precedance
 (sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
  common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination :classof
 common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :superclass
 sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :slot
 ((:name common-lisp:function) (:ordinal 1) (:initargs (:function))
  (:readers (sb-pcl::long-method-combination-function))))
(:mop-direct sb-pcl::long-method-combination :slot
 ((:name sb-pcl::args-lambda-list) (:ordinal 2) (:initargs (:args-lambda-list))
  (:readers (sb-pcl::long-method-combination-args-lambda-list))))
(:mop-direct sb-pcl::long-method-combination :prototype
 #<sb-pcl::long-method-combination #<unbound slot> #<unbound slot>
   {10012294C3}>)
(:mop-direct sb-pcl::standard-method-combination :prototype
 #<sb-pcl::standard-method-combination #<unbound slot> #<unbound slot>
   {10012BC723}>)
(:mop-direct common-lisp:method-combination :prototype
 #<common-lisp:method-combination {1001244B73}>)
(:mop-direct common-lisp:method :superclass sb-mop:metaobject)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct common-lisp:method :package-name "COMMON-LISP")
(:mop-direct common-lisp:method :precedance
 (sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:method :classof common-lisp:standard-class)
(:mop-direct common-lisp:method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:method :superclass sb-mop:metaobject)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct common-lisp:standard-method :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-method :precedance
 (sb-pcl::plist-mixin sb-pcl::definition-source-mixin common-lisp:method
  sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:standard-method :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%generic-function) (:ordinal 1)
  (:readers (sb-mop:method-generic-function))
  (:writers ((common-lisp:setf sb-mop:method-generic-function)))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::qualifiers) (:ordinal 2) (:initargs (:qualifiers))
  (:readers (common-lisp:method-qualifiers))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::specializers) (:ordinal 3) (:initargs (:specializers))
  (:readers (sb-mop:method-specializers))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::lambda-list) (:ordinal 4) (:initargs (:lambda-list))
  (:readers (sb-mop:method-lambda-list))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%function) (:ordinal 5) (:initargs (:function))
  (:readers (sb-mop:method-function))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:standard-method :slot
 ((:name sb-pcl::simple-next-method-call) (:ordinal 7)
  (:initargs (sb-pcl::simple-next-method-call))
  (:readers (sb-pcl::simple-next-method-call-p))))
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-pcl::accessor-method :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-method :precedance
 (common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::accessor-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::accessor-method :slot
 ((:name sb-pcl::slot-name) (:ordinal 1) (:initargs (:slot-name))
  (:readers (sb-pcl::accessor-method-slot-name))))
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-boundp-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :prototype
 #<sb-pcl::global-boundp-method {1001288183}>)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-writer-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :prototype
 #<sb-pcl::global-writer-method {1001282243}>)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-reader-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :prototype
 #<sb-pcl::global-reader-method {10012ADE93}>)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-accessor-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-accessor-method :precedance
 (sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-accessor-method :classof
 common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :superclass
 sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :slot
 ((:name sb-pcl::%slot-definition) (:ordinal 1) (:initargs (:slot-definition))
  (:readers (sb-mop:accessor-method-slot-definition))))
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-boundp-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :prototype
 #<sb-pcl::standard-boundp-method {10012ABA93}>)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-writer-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :prototype
 #<sb-mop:standard-writer-method {10012487D3}>)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-reader-method :precedance
 (sb-mop:standard-accessor-method sb-pcl::accessor-method
  common-lisp:standard-method sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :superclass
 sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :prototype
 #<sb-mop:standard-reader-method {1001280DB3}>)
(:mop-direct sb-mop:standard-accessor-method :prototype
 #<sb-mop:standard-accessor-method {10012ACCD3}>)
(:mop-direct sb-pcl::accessor-method :prototype
 #<sb-pcl::accessor-method {100126AFF3}>)
(:mop-direct common-lisp:standard-method :prototype
 #<common-lisp:standard-method {10012446D3}>)
(:mop-direct common-lisp:method :prototype #<common-lisp:method {10012BDCD3}>)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::initial-methods) (:ordinal 2)
  (:readers (sb-pcl::generic-function-initial-methods))
  (:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::encapsulations) (:ordinal 3)
  (:readers (sb-pcl::generic-function-encapsulations))
  (:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
 (common-lisp:generic-function sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
  (:readers (sb-mop:generic-function-methods))
  (:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
  (:readers (sb-mop:generic-function-method-class))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%method-combination) (:ordinal 4)
  (:initargs (:method-combination))
  (:readers (sb-mop:generic-function-method-combination))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::declarations) (:ordinal 5)
  (:initargs (:declare :declarations))
  (:readers (sb-mop:generic-function-declarations))
  (:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
  (:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
  (:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%lock) (:ordinal 8)
  (:initform (sb-thread:make-mutex :name "GF lock"))
  (:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::info-needs-update) (:ordinal 9)
  (:readers (sb-pcl::gf-info-needs-update))
  (:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
 (common-lisp:standard-generic-function common-lisp:generic-function
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
 #<closer-mop:standard-generic-function {1003BFA4AB}>)
(:mop-direct common-lisp:standard-generic-function :prototype
 #<common-lisp:standard-generic-function {10012846CB}>)
(:mop-direct common-lisp:generic-function :prototype
 #<common-lisp:generic-function {100127F4BB}>)
(:mop-direct sb-mop:metaobject :prototype #<sb-mop:metaobject {10012CE753}>)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:function)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:standard-object)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct sb-mop:funcallable-standard-object :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-object :precedance
 (common-lisp:function common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-object :classof
 sb-mop:funcallable-standard-class)
(:mop-direct sb-mop:funcallable-standard-object :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:standard-object)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::initial-methods) (:ordinal 2)
  (:readers (sb-pcl::generic-function-initial-methods))
  (:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::encapsulations) (:ordinal 3)
  (:readers (sb-pcl::generic-function-encapsulations))
  (:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
 (common-lisp:generic-function sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
  (:readers (sb-mop:generic-function-methods))
  (:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
  (:readers (sb-mop:generic-function-method-class))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%method-combination) (:ordinal 4)
  (:initargs (:method-combination))
  (:readers (sb-mop:generic-function-method-combination))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::declarations) (:ordinal 5)
  (:initargs (:declare :declarations))
  (:readers (sb-mop:generic-function-declarations))
  (:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
  (:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
  (:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%lock) (:ordinal 8)
  (:initform (sb-thread:make-mutex :name "GF lock"))
  (:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::info-needs-update) (:ordinal 9)
  (:readers (sb-pcl::gf-info-needs-update))
  (:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
 (common-lisp:standard-generic-function common-lisp:generic-function
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
 #<closer-mop:standard-generic-function {1003BFA4AB}>)
(:mop-direct common-lisp:standard-generic-function :prototype
 #<common-lisp:standard-generic-function {10012846CB}>)
(:mop-direct common-lisp:generic-function :prototype
 #<common-lisp:generic-function {100127F4BB}>)
(:mop-direct sb-mop:funcallable-standard-object :prototype
 #<sb-mop:funcallable-standard-object {100126230B}>)
(:mop-direct common-lisp:standard-object :prototype
 #<common-lisp:standard-object {1001230373}>)
(:mop-direct common-lisp:structure-object :superclass sb-pcl::slot-object)
(:mop-direct ql-gunzipper::decode-tree :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::bit-stream :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::sliding-window-stream :superclass
 common-lisp:structure-object)
(:mop-direct sb-impl::process :superclass common-lisp:structure-object)
(:mop-direct sb-profile::time-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::overhead :superclass common-lisp:structure-object)
(:mop-direct sb-profile::profile-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::counter :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::class-precedence-description :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::dfun-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::pv-table :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::arg-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fast-instance-boundp :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::fast-method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::cache :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fgen :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::slot-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::dead-beef-structure-object :superclass
 common-lisp:structure-object)
(:mop-direct sb-loop::loop-path :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-collector :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-universe :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-minimax :superclass common-lisp:structure-object)
(:mop-direct sb-eval::env :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::location-group :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::source-form-cache :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::offs-hook :superclass common-lisp:structure-object)
(:mop-direct sb-di::fun-end-cookie :superclass common-lisp:structure-object)
(:mop-direct sb-di:breakpoint :superclass common-lisp:structure-object)
(:mop-direct sb-di::breakpoint-data :superclass common-lisp:structure-object)
(:mop-direct sb-di:frame :superclass common-lisp:structure-object)
(:mop-direct sb-di:code-location :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-block :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-fun :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-var :superclass common-lisp:structure-object)
(:mop-direct sb-ext:timer :superclass common-lisp:structure-object)
(:mop-direct sb-impl::priority-queue :superclass common-lisp:structure-object)
(:mop-direct sb-thread::session :superclass common-lisp:structure-object)
(:mop-direct sb-thread:semaphore-notification :superclass
 common-lisp:structure-object)
(:mop-direct sb-thread:semaphore :superclass common-lisp:structure-object)
(:mop-direct sb-thread:waitqueue :superclass common-lisp:structure-object)
(:mop-direct sb-impl::token-buf :superclass common-lisp:structure-object)
(:mop-direct sb-impl::unprintable-object :superclass
 common-lisp:structure-object)
(:mop-direct sb-vm::result-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::arg-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::ea :superclass common-lisp:structure-object)
(:mop-direct sb-c::reg-spec :superclass common-lisp:structure-object)
(:mop-direct sb-c::location-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::conset :superclass common-lisp:structure-object)
(:mop-direct sb-c::interval :superclass common-lisp:structure-object)
(:mop-direct sb-c::compiler-error-context :superclass
 common-lisp:structure-object)
(:mop-direct sb-fasl::circularity :superclass common-lisp:structure-object)
(:mop-direct sb-fasl:fasl-output :superclass common-lisp:structure-object)
(:mop-direct sb-assem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:disassem-state :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::storage-info :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::cached-fun :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::valsrc :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::funstate :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::instruction-format :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::arg :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::arg-form-kind :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space-choice :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:instruction :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::fun-cache :superclass common-lisp:structure-object)
(:mop-direct sb-c::approximate-key-info :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::approximate-fun-type :superclass
 common-lisp:structure-object)
(:mop-direct sb-fasl::undefined-package :superclass
 common-lisp:structure-object)
(:mop-direct sb-alien::shared-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::core-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::fixup-note :superclass common-lisp:structure-object)
(:mop-direct sb-c:fixup :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::pprint-dispatch-entry :superclass
 common-lisp:structure-object)
(:mop-direct sb-pretty::logical-block :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::queued-op :superclass common-lisp:structure-object)
(:mop-direct sb-pretty:pprint-dispatch-table :superclass
 common-lisp:structure-object)
(:mop-direct common-lisp:pathname :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:host :superclass common-lisp:structure-object)
(:mop-direct common-lisp:readtable :superclass common-lisp:structure-object)
(:mop-direct common-lisp:hash-table :superclass common-lisp:structure-object)
(:mop-direct common-lisp:random-state :superclass common-lisp:structure-object)
(:mop-direct common-lisp:package :superclass common-lisp:structure-object)
(:mop-direct sb-int:package-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-c::transform :superclass common-lisp:structure-object)
(:mop-direct sb-alien::alien-type-class :superclass
 common-lisp:structure-object)
(:mop-direct sb-format::format-directive :superclass
 common-lisp:structure-object)
(:mop-direct sb-kernel::condition-slot :superclass common-lisp:structure-object)
(:mop-direct sb-c::source-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::file-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-nlx-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::return-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-physenv :superclass common-lisp:structure-object)
(:mop-direct sb-c::entry-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-lvar :superclass common-lisp:structure-object)
(:mop-direct sb-c:primitive-type :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:key-info :superclass common-lisp:structure-object)
(:mop-direct sb-int:xset :superclass common-lisp:structure-object)
(:mop-direct sb-int:sset :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-class :superclass common-lisp:structure-object)
(:mop-direct sb-c::fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::event-info :superclass common-lisp:structure-object)
(:mop-direct sb-impl::external-format :superclass common-lisp:structure-object)
(:mop-direct sb-impl::buffer :superclass common-lisp:structure-object)
(:mop-direct sb-impl::pollfds :superclass common-lisp:structure-object)
(:mop-direct sb-impl::handler :superclass common-lisp:structure-object)
(:mop-direct sb-impl::huffman-node :superclass common-lisp:structure-object)
(:mop-direct sb-vm::specialized-array-element-type-properties :superclass
 common-lisp:structure-object)
(:mop-direct sb-alien::callback-info :superclass common-lisp:structure-object)
(:mop-direct sb-impl::encapsulation-info :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::info-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::raw-slot-data :superclass common-lisp:structure-object)
(:mop-direct sb-alien-internals:alien-value :superclass
 common-lisp:structure-object)
(:mop-direct sb-thread:thread :superclass common-lisp:structure-object)
(:mop-direct sb-sys:structure!object :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::fasl-input :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:structure-object)
(:mop-direct common-lisp:restart :superclass common-lisp:structure-object)
(:mop-direct sb-int:deprecation-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::policy-dependent-quality :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::meta-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::abstract-lexenv :superclass common-lisp:structure-object)
(:mop-direct sb-c:policy :superclass common-lisp:structure-object)
(:mop-direct sb-impl::comma :superclass common-lisp:structure-object)
(:mop-direct common-lisp:structure-object :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-object :precedance
 (sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-object :classof common-lisp:structure-class)
(:mop-direct common-lisp:structure-object :typeof common-lisp:structure-class)
(:mop-direct common-lisp:structure-object :superclass sb-pcl::slot-object)
(:mop-direct ql-gunzipper::decode-tree :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::decode-tree :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::decode-tree :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::decode-tree :classof common-lisp:structure-class)
(:mop-direct ql-gunzipper::decode-tree :typeof common-lisp:structure-class)
(:mop-direct ql-gunzipper::decode-tree :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::decode-tree :slot
 ((:name ql-gunzipper::length-count) (:ordinal 1)
  (:initform
   (common-lisp:make-array 16 :element-type 'common-lisp:fixnum
                           :initial-element 0))
  (:type (common-lisp:simple-array common-lisp:fixnum (common-lisp:*)))))
(:mop-direct ql-gunzipper::decode-tree :slot
 ((:name ql-gunzipper::code-symbols) (:ordinal 2)
  (:initform
   (common-lisp:make-array 16 :element-type 'common-lisp:fixnum
                           :initial-element 0))
  (:type (common-lisp:simple-array common-lisp:fixnum (common-lisp:*)))))
(:mop-direct ql-gunzipper::decode-tree :prototype
 #S(ql-gunzipper::decode-tree :length-count 0 :code-symbols 0))
(:mop-direct ql-gunzipper::bit-stream :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::bit-stream :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::bit-stream :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::bit-stream :classof common-lisp:structure-class)
(:mop-direct ql-gunzipper::bit-stream :typeof common-lisp:structure-class)
(:mop-direct ql-gunzipper::bit-stream :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::bit-stream :slot
 ((:name common-lisp:stream) (:ordinal 1) (:type common-lisp:stream)))
(:mop-direct ql-gunzipper::bit-stream :slot
 ((:name ql-gunzipper::next-byte) (:ordinal 2) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct ql-gunzipper::bit-stream :slot
 ((:name ql-gunzipper::bits) (:ordinal 3) (:initform 0)
  (:type (common-lisp:unsigned-byte 29))))
(:mop-direct ql-gunzipper::bit-stream :slot
 ((:name ql-gunzipper::bit-count) (:ordinal 4) (:initform 0)
  (:type (common-lisp:unsigned-byte 8))))
(:mop-direct ql-gunzipper::bit-stream :prototype
 #S(ql-gunzipper::bit-stream :stream 0 :next-byte 0 :bits 0 :bit-count 0))
(:mop-direct ql-gunzipper::sliding-window-stream :superclass
 common-lisp:structure-object)
(:mop-direct ql-gunzipper::sliding-window-stream :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::sliding-window-stream :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::sliding-window-stream :classof
 common-lisp:structure-class)
(:mop-direct ql-gunzipper::sliding-window-stream :typeof
 common-lisp:structure-class)
(:mop-direct ql-gunzipper::sliding-window-stream :superclass
 common-lisp:structure-object)
(:mop-direct ql-gunzipper::sliding-window-stream :slot
 ((:name common-lisp:stream) (:ordinal 1) (:type common-lisp:stream)))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
 ((:name ql-gunzipper::buffer) (:ordinal 2)
  (:initform
   (common-lisp:make-array ql-gunzipper::+sliding-window-size+ :element-type
                           '(common-lisp:unsigned-byte 8)))
  (:type (common-lisp:simple-array (common-lisp:unsigned-byte 8) (32768)))))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
 ((:name ql-gunzipper::buffer-end) (:ordinal 3) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
 ((:name ql-gunzipper::checksum) (:ordinal 4) (:type common-lisp:symbol)))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
 ((:name ql-gunzipper::checksum-value) (:ordinal 5) (:initform 0)
  (:type (common-lisp:unsigned-byte 32))))
(:mop-direct ql-gunzipper::sliding-window-stream :prototype
 #S(ql-gunzipper::sliding-window-stream
    :stream 0
    :buffer 0
    :buffer-end 0
    :checksum 0
    :checksum-value 0))
(:mop-direct sb-impl::process :superclass common-lisp:structure-object)
(:mop-direct sb-impl::process :package-name "SB-IMPL")
(:mop-direct sb-impl::process :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::process :classof common-lisp:structure-class)
(:mop-direct sb-impl::process :typeof common-lisp:structure-class)
(:mop-direct sb-impl::process :superclass common-lisp:structure-object)
(:mop-direct sb-impl::process :slot ((:name sb-impl::pid) (:ordinal 1)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::%status) (:ordinal 2)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::%exit-code) (:ordinal 3)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::core-dumped) (:ordinal 4)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::pty) (:ordinal 5)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::input) (:ordinal 6)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::output) (:ordinal 7)))
(:mop-direct sb-impl::process :slot ((:name common-lisp:error) (:ordinal 8)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::status-hook) (:ordinal 9)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::plist) (:ordinal 10)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::cookie) (:ordinal 11)))
(:mop-direct sb-impl::process :prototype #<sb-impl::process 0 0>)
(:mop-direct sb-profile::time-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::time-info :package-name "SB-PROFILE")
(:mop-direct sb-profile::time-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::time-info :classof common-lisp:structure-class)
(:mop-direct sb-profile::time-info :typeof common-lisp:structure-class)
(:mop-direct sb-profile::time-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::time-info :slot
 ((:name sb-profile::name) (:ordinal 1)))
(:mop-direct sb-profile::time-info :slot
 ((:name sb-profile::calls) (:ordinal 2)))
(:mop-direct sb-profile::time-info :slot
 ((:name sb-profile::seconds) (:ordinal 3)))
(:mop-direct sb-profile::time-info :slot
 ((:name sb-profile::consing) (:ordinal 4)))
(:mop-direct sb-profile::time-info :slot
 ((:name sb-profile::gc-run-time) (:ordinal 5)))
(:mop-direct sb-profile::time-info :prototype
 #S(sb-profile::time-info
    :name 0
    :calls 0
    :seconds 0
    :consing 0
    :gc-run-time 0))
(:mop-direct sb-profile::overhead :superclass common-lisp:structure-object)
(:mop-direct sb-profile::overhead :package-name "SB-PROFILE")
(:mop-direct sb-profile::overhead :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::overhead :classof common-lisp:structure-class)
(:mop-direct sb-profile::overhead :typeof common-lisp:structure-class)
(:mop-direct sb-profile::overhead :superclass common-lisp:structure-object)
(:mop-direct sb-profile::overhead :slot
 ((:name sb-profile::call) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:single-float)))
(:mop-direct sb-profile::overhead :slot
 ((:name sb-profile::internal) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:single-float)))
(:mop-direct sb-profile::overhead :slot
 ((:name sb-profile::total) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:single-float)))
(:mop-direct sb-profile::overhead :prototype
 #S(sb-profile::overhead :call 0.0 :internal 0.0 :total 0.0))
(:mop-direct sb-profile::profile-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::profile-info :package-name "SB-PROFILE")
(:mop-direct sb-profile::profile-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::profile-info :classof common-lisp:structure-class)
(:mop-direct sb-profile::profile-info :typeof common-lisp:structure-class)
(:mop-direct sb-profile::profile-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::profile-info :slot
 ((:name sb-profile::name) (:ordinal 1) (:initform (sb-int:missing-arg))))
(:mop-direct sb-profile::profile-info :slot
 ((:name sb-profile::encapsulated-fun) (:ordinal 2)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :slot
 ((:name sb-profile::encapsulation-fun) (:ordinal 3)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :slot
 ((:name sb-profile::read-stats-fun) (:ordinal 4)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :slot
 ((:name sb-profile::clear-stats-fun) (:ordinal 5)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :prototype
 #S(sb-profile::profile-info
    :name 0
    :encapsulated-fun 0
    :encapsulation-fun 0
    :read-stats-fun 0
    :clear-stats-fun 0))
(:mop-direct sb-profile::counter :superclass common-lisp:structure-object)
(:mop-direct sb-profile::counter :package-name "SB-PROFILE")
(:mop-direct sb-profile::counter :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::counter :classof common-lisp:structure-class)
(:mop-direct sb-profile::counter :typeof common-lisp:structure-class)
(:mop-direct sb-profile::counter :superclass common-lisp:structure-object)
(:mop-direct sb-profile::counter :slot
 ((:name sb-ext:word) (:ordinal 1) (:initform 0) (:type sb-ext:word)))
(:mop-direct sb-profile::counter :slot
 ((:name sb-profile::overflow) (:ordinal 2) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-profile::counter :prototype
 #S(sb-profile::counter :word 0 :overflow 0))
(:mop-direct sb-pcl::class-precedence-description :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::class-precedence-description :package-name "SB-PCL")
(:mop-direct sb-pcl::class-precedence-description :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-precedence-description :classof
 common-lisp:structure-class)
(:mop-direct sb-pcl::class-precedence-description :typeof
 common-lisp:structure-class)
(:mop-direct sb-pcl::class-precedence-description :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::class-precedence-description :slot
 ((:name sb-pcl::cpd-class) (:ordinal 1)))
(:mop-direct sb-pcl::class-precedence-description :slot
 ((:name sb-pcl::cpd-supers) (:ordinal 2)))
(:mop-direct sb-pcl::class-precedence-description :slot
 ((:name sb-pcl::cpd-after) (:ordinal 3)))
(:mop-direct sb-pcl::class-precedence-description :slot
 ((:name sb-pcl::cpd-count) (:ordinal 4) (:initform 0)))
(:mop-direct sb-pcl::class-precedence-description :prototype
 #<sb-pcl::class-precedence-description 0>)
(:mop-direct sb-pcl::dfun-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::constant-value :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::caching :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::checking :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::accessor-dfun-info :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::default-method-only :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dispatch :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::initial :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::no-methods :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dfun-info :package-name "SB-PCL")
(:mop-direct sb-pcl::dfun-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::dfun-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::dfun-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::dfun-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::dfun-info :slot ((:name sb-pcl::cache) (:ordinal 1)))
(:mop-direct sb-pcl::constant-value :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::constant-value :package-name "SB-PCL")
(:mop-direct sb-pcl::constant-value :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::constant-value :classof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-value :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-value :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::constant-value :prototype
 #<sb-pcl::constant-value {10043BD743}>)
(:mop-direct sb-pcl::caching :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::caching :package-name "SB-PCL")
(:mop-direct sb-pcl::caching :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::caching :classof common-lisp:structure-class)
(:mop-direct sb-pcl::caching :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::caching :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::caching :prototype #<sb-pcl::caching {10043D94B3}>)
(:mop-direct sb-pcl::checking :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::checking :package-name "SB-PCL")
(:mop-direct sb-pcl::checking :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::checking :classof common-lisp:structure-class)
(:mop-direct sb-pcl::checking :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::checking :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::checking :slot ((:name common-lisp:function) (:ordinal 1)))
(:mop-direct sb-pcl::checking :prototype #<sb-pcl::checking {10043F6213}>)
(:mop-direct sb-pcl::accessor-dfun-info :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::n-n :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::one-index-dfun-info :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::accessor-dfun-info :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-dfun-info :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::accessor-dfun-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::accessor-dfun-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::accessor-dfun-info :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::accessor-dfun-info :slot
 ((:name sb-pcl::accessor-type) (:ordinal 1)))
(:mop-direct sb-pcl::n-n :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::n-n :package-name "SB-PCL")
(:mop-direct sb-pcl::n-n :precedance
 (sb-pcl::accessor-dfun-info sb-pcl::dfun-info common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::n-n :classof common-lisp:structure-class)
(:mop-direct sb-pcl::n-n :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::n-n :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::n-n :prototype #<sb-pcl::n-n {100441AB33}>)
(:mop-direct sb-pcl::one-index-dfun-info :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::one-index :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-class :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-index-dfun-info :package-name "SB-PCL")
(:mop-direct sb-pcl::one-index-dfun-info :precedance
 (sb-pcl::accessor-dfun-info sb-pcl::dfun-info common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::one-index-dfun-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index-dfun-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index-dfun-info :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::one-index-dfun-info :slot
 ((:name sb-int:index) (:ordinal 1)))
(:mop-direct sb-pcl::one-index :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-index :package-name "SB-PCL")
(:mop-direct sb-pcl::one-index :precedance
 (sb-pcl::one-index-dfun-info sb-pcl::accessor-dfun-info sb-pcl::dfun-info
                              common-lisp:structure-object sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-pcl::one-index :classof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-index :prototype #<sb-pcl::one-index {100443FAD3}>)
(:mop-direct sb-pcl::one-class :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::two-class :superclass sb-pcl::one-class)
(:mop-direct sb-pcl::one-class :package-name "SB-PCL")
(:mop-direct sb-pcl::one-class :precedance
 (sb-pcl::one-index-dfun-info sb-pcl::accessor-dfun-info sb-pcl::dfun-info
                              common-lisp:structure-object sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-pcl::one-class :classof common-lisp:structure-class)
(:mop-direct sb-pcl::one-class :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::one-class :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-class :slot ((:name sb-pcl::wrapper0) (:ordinal 1)))
(:mop-direct sb-pcl::two-class :superclass sb-pcl::one-class)
(:mop-direct sb-pcl::two-class :package-name "SB-PCL")
(:mop-direct sb-pcl::two-class :precedance
 (sb-pcl::one-class sb-pcl::one-index-dfun-info sb-pcl::accessor-dfun-info
  sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::two-class :classof common-lisp:structure-class)
(:mop-direct sb-pcl::two-class :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::two-class :superclass sb-pcl::one-class)
(:mop-direct sb-pcl::two-class :slot ((:name sb-pcl::wrapper1) (:ordinal 1)))
(:mop-direct sb-pcl::two-class :prototype #<sb-pcl::two-class {1004464A63}>)
(:mop-direct sb-pcl::one-class :prototype #<sb-pcl::one-class {100447B113}>)
(:mop-direct sb-pcl::one-index-dfun-info :prototype
 #<sb-pcl::one-index-dfun-info {1004491793}>)
(:mop-direct sb-pcl::accessor-dfun-info :prototype
 #<sb-pcl::accessor-dfun-info {10044A8003}>)
(:mop-direct sb-pcl::default-method-only :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::default-method-only :package-name "SB-PCL")
(:mop-direct sb-pcl::default-method-only :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::default-method-only :classof common-lisp:structure-class)
(:mop-direct sb-pcl::default-method-only :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::default-method-only :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::default-method-only :prototype
 #<sb-pcl::default-method-only {10044C4303}>)
(:mop-direct sb-pcl::dispatch :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dispatch :package-name "SB-PCL")
(:mop-direct sb-pcl::dispatch :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::dispatch :classof common-lisp:structure-class)
(:mop-direct sb-pcl::dispatch :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::dispatch :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dispatch :prototype #<sb-pcl::dispatch {10044E0093}>)
(:mop-direct sb-pcl::initial :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::initial :package-name "SB-PCL")
(:mop-direct sb-pcl::initial :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::initial :classof common-lisp:structure-class)
(:mop-direct sb-pcl::initial :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::initial :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::initial :prototype #<sb-pcl::initial {10044FBBC3}>)
(:mop-direct sb-pcl::no-methods :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::no-methods :package-name "SB-PCL")
(:mop-direct sb-pcl::no-methods :precedance
 (sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::no-methods :classof common-lisp:structure-class)
(:mop-direct sb-pcl::no-methods :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::no-methods :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::no-methods :prototype #<sb-pcl::no-methods {10045177E3}>)
(:mop-direct sb-pcl::dfun-info :prototype #<sb-pcl::dfun-info {100452DF43}>)
(:mop-direct sb-pcl::pv-table :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::pv-table :package-name "SB-PCL")
(:mop-direct sb-pcl::pv-table :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pv-table :classof common-lisp:structure-class)
(:mop-direct sb-pcl::pv-table :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::pv-table :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::pv-table :slot
 ((:name sb-pcl::cache) (:ordinal 1)
  (:type (common-lisp:or sb-pcl::cache common-lisp:null))))
(:mop-direct sb-pcl::pv-table :slot
 ((:name sb-pcl::pv-size) (:ordinal 2) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-pcl::pv-table :slot
 ((:name sb-pcl::slot-name-lists) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-pcl::pv-table :prototype
 #S(sb-pcl::pv-table :cache 0 :pv-size 0 :slot-name-lists 0))
(:mop-direct sb-pcl::arg-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::arg-info :package-name "SB-PCL")
(:mop-direct sb-pcl::arg-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::arg-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::arg-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::arg-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::arg-info-lambda-list) (:ordinal 1)
  (:initform :no-lambda-list)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::arg-info-precedence) (:ordinal 2)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::arg-info-metatypes) (:ordinal 3)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::arg-info-number-optional) (:ordinal 4)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::arg-info-key/rest-p) (:ordinal 5)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::arg-info-keys) (:ordinal 6)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::gf-info-simple-accessor-type) (:ordinal 7)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::gf-precompute-dfun-and-emf-p) (:ordinal 8)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::gf-info-static-c-a-m-emf) (:ordinal 9)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::gf-info-c-a-m-emf-std-p) (:ordinal 10)
  (:initform common-lisp:t)))
(:mop-direct sb-pcl::arg-info :slot
 ((:name sb-pcl::gf-info-fast-mf-p) (:ordinal 11)))
(:mop-direct sb-pcl::arg-info :prototype
 #S(sb-pcl::arg-info
    :arg-info-lambda-list 0
    :arg-info-precedence 0
    :arg-info-metatypes 0
    :arg-info-number-optional 0
    :arg-info-key/rest-p 0
    :arg-info-keys 0
    :gf-info-simple-accessor-type 0
    :gf-precompute-dfun-and-emf-p 0
    :gf-info-static-c-a-m-emf 0
    :gf-info-c-a-m-emf-std-p 0
    :gf-info-fast-mf-p 0))
(:mop-direct sb-pcl::fast-instance-boundp :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::fast-instance-boundp :package-name "SB-PCL")
(:mop-direct sb-pcl::fast-instance-boundp :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::fast-instance-boundp :classof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-instance-boundp :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-instance-boundp :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::fast-instance-boundp :slot
 ((:name sb-int:index) (:ordinal 1) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-pcl::fast-instance-boundp :prototype
 #S(sb-pcl::fast-instance-boundp :index 0))
(:mop-direct sb-pcl::fast-method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::constant-fast-method-call :superclass
 sb-pcl::fast-method-call)
(:mop-direct sb-pcl::fast-method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::fast-method-call :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::fast-method-call :classof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-method-call :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fast-method-call :slot
 ((:name common-lisp:function) (:ordinal 1) (:initform #'common-lisp:identity)
  (:type common-lisp:function)))
(:mop-direct sb-pcl::fast-method-call :slot ((:name sb-pcl::pv) (:ordinal 2)))
(:mop-direct sb-pcl::fast-method-call :slot
 ((:name sb-pcl::next-method-call) (:ordinal 3)))
(:mop-direct sb-pcl::fast-method-call :slot
 ((:name sb-pcl::arg-info) (:ordinal 4)))
(:mop-direct sb-pcl::constant-fast-method-call :superclass
 sb-pcl::fast-method-call)
(:mop-direct sb-pcl::constant-fast-method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::constant-fast-method-call :precedance
 (sb-pcl::fast-method-call common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::constant-fast-method-call :classof
 common-lisp:structure-class)
(:mop-direct sb-pcl::constant-fast-method-call :typeof
 common-lisp:structure-class)
(:mop-direct sb-pcl::constant-fast-method-call :superclass
 sb-pcl::fast-method-call)
(:mop-direct sb-pcl::constant-fast-method-call :slot
 ((:name sb-pcl::value) (:ordinal 1)))
(:mop-direct sb-pcl::constant-fast-method-call :prototype
 #S(sb-pcl::constant-fast-method-call
    :function 0
    :pv 0
    :next-method-call 0
    :arg-info 0
    :value 0))
(:mop-direct sb-pcl::fast-method-call :prototype
 #S(sb-pcl::fast-method-call :function 0 :pv 0 :next-method-call 0 :arg-info 0))
(:mop-direct sb-pcl::method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::constant-method-call :superclass sb-pcl::method-call)
(:mop-direct sb-pcl::method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::method-call :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::method-call :classof common-lisp:structure-class)
(:mop-direct sb-pcl::method-call :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::method-call :slot
 ((:name common-lisp:function) (:ordinal 1) (:initform #'common-lisp:identity)
  (:type common-lisp:function)))
(:mop-direct sb-pcl::method-call :slot
 ((:name sb-pcl::call-method-args) (:ordinal 2)))
(:mop-direct sb-pcl::constant-method-call :superclass sb-pcl::method-call)
(:mop-direct sb-pcl::constant-method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::constant-method-call :precedance
 (sb-pcl::method-call common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::constant-method-call :classof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-method-call :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-method-call :superclass sb-pcl::method-call)
(:mop-direct sb-pcl::constant-method-call :slot
 ((:name sb-pcl::value) (:ordinal 1)))
(:mop-direct sb-pcl::constant-method-call :prototype
 #S(sb-pcl::constant-method-call :function 0 :call-method-args 0 :value 0))
(:mop-direct sb-pcl::method-call :prototype
 #S(sb-pcl::method-call :function 0 :call-method-args 0))
(:mop-direct sb-pcl::cache :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::cache :package-name "SB-PCL")
(:mop-direct sb-pcl::cache :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::cache :classof common-lisp:structure-class)
(:mop-direct sb-pcl::cache :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::cache :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::cache :slot
 ((:name sb-pcl::key-count) (:ordinal 1) (:initform 1)
  (:type (common-lisp:integer 1 (4611686018427387903)))))
(:mop-direct sb-pcl::cache :slot ((:name sb-pcl::value) (:ordinal 2)))
(:mop-direct sb-pcl::cache :slot
 ((:name sb-pcl::line-size) (:ordinal 3) (:initform 1)
  (:type (common-lisp:integer 1 4611686018427387903))))
(:mop-direct sb-pcl::cache :slot
 ((:name common-lisp:vector) (:ordinal 4) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-pcl::cache :slot
 ((:name sb-pcl::mask) (:ordinal 5) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-pcl::cache :slot
 ((:name sb-pcl::depth) (:ordinal 6) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-pcl::cache :slot
 ((:name sb-pcl::limit) (:ordinal 7) (:initform 0) (:type sb-int:index)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x1001280fc8, sp=0x7ffff2b9e4c0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-pcl::fgen :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fgen :package-name "SB-PCL")
(:mop-direct sb-pcl::fgen :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::fgen :classof common-lisp:structure-class)
(:mop-direct sb-pcl::fgen :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::fgen :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::gensyms) (:ordinal 1)))
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::generator) (:ordinal 2)))
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::generator-lambda) (:ordinal 3)))
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::system) (:ordinal 4)))
(:mop-direct sb-pcl::fgen :prototype
 #S(sb-pcl::fgen :gensyms 0 :generator 0 :generator-lambda 0 :system 0))
(:mop-direct sb-pcl::slot-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::slot-info :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::slot-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::slot-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::slot-info :slot
 ((:name sb-pcl::typecheck) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-pcl::slot-info :slot
 ((:name sb-pcl::reader) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-pcl::slot-info :slot
 ((:name sb-pcl::writer) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-pcl::slot-info :slot
 ((:name common-lisp:boundp) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-pcl::slot-info :prototype
 #S(sb-pcl::slot-info :typecheck 0 :reader 0 :writer 0 :boundp 0))
(:mop-direct sb-pcl::dead-beef-structure-object :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::dead-beef-structure-object :package-name "SB-PCL")
(:mop-direct sb-pcl::dead-beef-structure-object :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::dead-beef-structure-object :classof
 common-lisp:structure-class)
(:mop-direct sb-pcl::dead-beef-structure-object :typeof
 common-lisp:structure-class)
(:mop-direct sb-pcl::dead-beef-structure-object :superclass
 common-lisp:structure-object)
(:mop-direct sb-pcl::dead-beef-structure-object :prototype
 #S(sb-pcl::dead-beef-structure-object))
(:mop-direct sb-loop::loop-path :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-path :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-path :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-path :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-path :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-path :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-path :slot ((:name sb-loop::names) (:ordinal 1)))
(:mop-direct sb-loop::loop-path :slot
 ((:name sb-loop::preposition-groups) (:ordinal 2)))
(:mop-direct sb-loop::loop-path :slot
 ((:name sb-loop::inclusive-permitted) (:ordinal 3)))
(:mop-direct sb-loop::loop-path :slot
 ((:name common-lisp:function) (:ordinal 4)))
(:mop-direct sb-loop::loop-path :slot ((:name sb-loop::user-data) (:ordinal 5)))
(:mop-direct sb-loop::loop-path :prototype
 #S(sb-loop::loop-path
    :names 0
    :preposition-groups 0
    :inclusive-permitted 0
    :function 0
    :user-data 0))
(:mop-direct sb-loop::loop-collector :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-collector :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-collector :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-collector :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-collector :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-collector :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-collector :slot ((:name sb-loop::name) (:ordinal 1)))
(:mop-direct sb-loop::loop-collector :slot
 ((:name common-lisp:class) (:ordinal 2)))
(:mop-direct sb-loop::loop-collector :slot
 ((:name sb-loop::history) (:ordinal 3)))
(:mop-direct sb-loop::loop-collector :slot
 ((:name sb-loop::tempvars) (:ordinal 4)))
(:mop-direct sb-loop::loop-collector :slot
 ((:name sb-loop::specified-type) (:ordinal 5)))
(:mop-direct sb-loop::loop-collector :slot
 ((:name sb-loop::dtype) (:ordinal 6)))
(:mop-direct sb-loop::loop-collector :slot ((:name sb-loop::data) (:ordinal 7)))
(:mop-direct sb-loop::loop-collector :prototype
 #S(sb-loop::loop-collector
    :name 0
    :class 0
    :history 0
    :tempvars 0
    :specified-type 0
    :dtype 0
    :data 0))
(:mop-direct sb-loop::loop-universe :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-universe :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-universe :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-universe :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-universe :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-universe :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-universe :slot
 ((:name sb-loop::keywords) (:ordinal 1)))
(:mop-direct sb-loop::loop-universe :slot
 ((:name sb-loop::iteration-keywords) (:ordinal 2)))
(:mop-direct sb-loop::loop-universe :slot
 ((:name sb-loop::for-keywords) (:ordinal 3)))
(:mop-direct sb-loop::loop-universe :slot
 ((:name sb-loop::path-keywords) (:ordinal 4)))
(:mop-direct sb-loop::loop-universe :slot
 ((:name sb-loop::type-symbols) (:ordinal 5)))
(:mop-direct sb-loop::loop-universe :slot
 ((:name sb-loop::type-keywords) (:ordinal 6)))
(:mop-direct sb-loop::loop-universe :prototype
 #<sb-loop::loop-universe {10046F36F3}>)
(:mop-direct sb-loop::loop-minimax :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-minimax :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-minimax :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-minimax :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-minimax :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-minimax :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-minimax :slot
 ((:name sb-loop::answer-variable) (:ordinal 1)))
(:mop-direct sb-loop::loop-minimax :slot
 ((:name common-lisp:type) (:ordinal 2)))
(:mop-direct sb-loop::loop-minimax :slot
 ((:name sb-loop::temp-variable) (:ordinal 3)))
(:mop-direct sb-loop::loop-minimax :slot
 ((:name sb-loop::flag-variable) (:ordinal 4)))
(:mop-direct sb-loop::loop-minimax :slot
 ((:name sb-loop::operations) (:ordinal 5)))
(:mop-direct sb-loop::loop-minimax :slot
 ((:name sb-loop::infinity-data) (:ordinal 6)))
(:mop-direct sb-loop::loop-minimax :prototype
 #S(sb-loop::loop-minimax
    :answer-variable 0
    :type 0
    :temp-variable 0
    :flag-variable 0
    :operations 0
    :infinity-data 0))
(:mop-direct sb-eval::env :superclass common-lisp:structure-object)
(:mop-direct sb-eval::env :package-name "SB-EVAL")
(:mop-direct sb-eval::env :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::env :classof common-lisp:structure-class)
(:mop-direct sb-eval::env :typeof common-lisp:structure-class)
(:mop-direct sb-eval::env :superclass common-lisp:structure-object)
(:mop-direct sb-eval::env :slot ((:name sb-eval::parent) (:ordinal 1)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::vars) (:ordinal 2)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::funs) (:ordinal 3)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::expanders) (:ordinal 4)))
(:mop-direct sb-eval::env :slot
 ((:name sb-eval::symbol-expansions) (:ordinal 5)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::tags) (:ordinal 6)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::blocks) (:ordinal 7)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::declarations) (:ordinal 8)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::native-lexenv) (:ordinal 9)))
(:mop-direct sb-eval::env :prototype #<sb-eval::env {1004737113}>)
(:mop-direct sb-disassem::location-group :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::location-group :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::location-group :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::location-group :classof common-lisp:structure-class)
(:mop-direct sb-disassem::location-group :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::location-group :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::location-group :slot
 ((:name sb-disassem::locations) (:ordinal 1) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-disassem::location-group :prototype
 #S(sb-disassem::location-group :locations 0))
(:mop-direct sb-disassem::source-form-cache :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::source-form-cache :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::source-form-cache :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::source-form-cache :classof
 common-lisp:structure-class)
(:mop-direct sb-disassem::source-form-cache :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::source-form-cache :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::source-form-cache :slot
 ((:name sb-disassem::debug-source) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-c::debug-source))))
(:mop-direct sb-disassem::source-form-cache :slot
 ((:name sb-disassem::toplevel-form-index) (:ordinal 2) (:initform -1)
  (:type common-lisp:fixnum)))
(:mop-direct sb-disassem::source-form-cache :slot
 ((:name sb-disassem::last-location-retrieved) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null sb-di:code-location))))
(:mop-direct sb-disassem::source-form-cache :slot
 ((:name sb-disassem::last-form-retrieved) (:ordinal 4) (:initform -1)
  (:type common-lisp:fixnum)))
(:mop-direct sb-disassem::source-form-cache :prototype
 #S(sb-disassem::source-form-cache
    :debug-source 0
    :toplevel-form-index 0
    :last-location-retrieved 0
    :last-form-retrieved 0))
(:mop-direct sb-disassem::offs-hook :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::offs-hook :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::offs-hook :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::offs-hook :classof common-lisp:structure-class)
(:mop-direct sb-disassem::offs-hook :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::offs-hook :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::offs-hook :slot
 ((:name sb-disassem::offset) (:ordinal 1) (:initform 0)
  (:type sb-disassem::offset)))
(:mop-direct sb-disassem::offs-hook :slot
 ((:name sb-disassem::fun) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-disassem::offs-hook :slot
 ((:name sb-disassem::before-address) (:ordinal 3)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-disassem::offs-hook :prototype
 #S(sb-disassem::offs-hook :offset 0 :fun 0 :before-address 0))
(:mop-direct sb-di::fun-end-cookie :superclass common-lisp:structure-object)
(:mop-direct sb-di::fun-end-cookie :package-name "SB-DI")
(:mop-direct sb-di::fun-end-cookie :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::fun-end-cookie :classof common-lisp:structure-class)
(:mop-direct sb-di::fun-end-cookie :typeof common-lisp:structure-class)
(:mop-direct sb-di::fun-end-cookie :superclass common-lisp:structure-object)
(:mop-direct sb-di::fun-end-cookie :slot
 ((:name sb-di::bogus-lra) (:ordinal 1)))
(:mop-direct sb-di::fun-end-cookie :slot ((:name sb-di:debug-fun) (:ordinal 2)))
(:mop-direct sb-di::fun-end-cookie :prototype #<sb-di::fun-end-cookie >)
(:mop-direct sb-di:breakpoint :superclass common-lisp:structure-object)
(:mop-direct sb-di:breakpoint :package-name "SB-DI")
(:mop-direct sb-di:breakpoint :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:breakpoint :classof common-lisp:structure-class)
(:mop-direct sb-di:breakpoint :typeof common-lisp:structure-class)
(:mop-direct sb-di:breakpoint :superclass common-lisp:structure-object)
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::hook-fun) (:ordinal 1) (:initform (sb-di::required-arg))
  (:type common-lisp:function)))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::what) (:ordinal 2)
  (:type (common-lisp:or sb-di:code-location sb-di:debug-fun))))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::kind) (:ordinal 3)
  (:type
   (common-lisp:member :code-location :fun-start :fun-end
                       :unknown-return-partner))))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::status) (:ordinal 4) (:initform :inactive)
  (:type (common-lisp:member :active :inactive :deleted))))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::internal-data) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null sb-di::breakpoint-data))))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::unknown-return-partner) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null sb-di:breakpoint))))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::start-helper) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null sb-di:breakpoint))))
(:mop-direct sb-di:breakpoint :slot
 ((:name sb-di::cookie-fun) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-di:breakpoint :slot ((:name sb-di::%info) (:ordinal 9)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x5 (pc=0x1001d9eb50, sp=0x7ffff2b9e500)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-di::breakpoint-data :superclass common-lisp:structure-object)
(:mop-direct sb-di::breakpoint-data :package-name "SB-DI")
(:mop-direct sb-di::breakpoint-data :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::breakpoint-data :classof common-lisp:structure-class)
(:mop-direct sb-di::breakpoint-data :typeof common-lisp:structure-class)
(:mop-direct sb-di::breakpoint-data :superclass common-lisp:structure-object)
(:mop-direct sb-di::breakpoint-data :slot
 ((:name sb-di::component) (:ordinal 1)))
(:mop-direct sb-di::breakpoint-data :slot
 ((:name sb-di::offset) (:ordinal 2) (:type sb-int:index)))
(:mop-direct sb-di::breakpoint-data :slot
 ((:name sb-di::instruction) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null sb-ext:word))))
(:mop-direct sb-di::breakpoint-data :slot
 ((:name sb-di::breakpoints) (:ordinal 4) (:type common-lisp:list)))

(:mop-direct sb-di:frame :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-frame :superclass sb-di:frame)
(:mop-direct sb-di:frame :package-name "SB-DI")
(:mop-direct sb-di:frame :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:frame :classof common-lisp:structure-class)
(:mop-direct sb-di:frame :typeof common-lisp:structure-class)
(:mop-direct sb-di:frame :superclass common-lisp:structure-object)
(:mop-direct sb-di:frame :slot
 ((:name sb-di::up) (:ordinal 1)
  (:type (common-lisp:or sb-di:frame common-lisp:null))))
(:mop-direct sb-di:frame :slot
 ((:name sb-di::%down) (:ordinal 2) (:initform :unparsed)
  (:type
   (common-lisp:or sb-di:frame
                   (common-lisp:member common-lisp:nil :unparsed)))))
(:mop-direct sb-di:frame :slot
 ((:name sb-di:debug-fun) (:ordinal 3) (:type sb-di:debug-fun)))
(:mop-direct sb-di:frame :slot
 ((:name sb-di:code-location) (:ordinal 4) (:type sb-di:code-location)))
(:mop-direct sb-di:frame :slot
 ((:name sb-di::%catches) (:ordinal 5) (:initform :unparsed)
  (:type (common-lisp:or common-lisp:list (common-lisp:member :unparsed)))))
(:mop-direct sb-di:frame :slot ((:name sb-di::pointer) (:ordinal 6)))
(:mop-direct sb-di:frame :slot
 ((:name common-lisp:number) (:ordinal 7) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-di::compiled-frame :superclass sb-di:frame)
(:mop-direct sb-di::compiled-frame :package-name "SB-DI")
(:mop-direct sb-di::compiled-frame :precedance
 (sb-di:frame common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::compiled-frame :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-frame :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-frame :superclass sb-di:frame)
(:mop-direct sb-di::compiled-frame :slot ((:name sb-di::escaped) (:ordinal 1)))

(:mop-direct sb-di:frame :prototype
 #S(sb-di:frame
    :up 0
    :%down 0
    :debug-fun 0
    :code-location 0
    :%catches 0
    :pointer 0
    :number 0))
(:mop-direct sb-di:code-location :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-code-location :superclass sb-di:code-location)
(:mop-direct sb-di:code-location :package-name "SB-DI")
(:mop-direct sb-di:code-location :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:code-location :classof common-lisp:structure-class)
(:mop-direct sb-di:code-location :typeof common-lisp:structure-class)
(:mop-direct sb-di:code-location :superclass common-lisp:structure-object)
(:mop-direct sb-di:code-location :slot
 ((:name sb-di:debug-fun) (:ordinal 1) (:type sb-di:debug-fun)))
(:mop-direct sb-di:code-location :slot
 ((:name sb-di::%unknown-p) (:ordinal 2) (:initform :unsure)
  (:type (common-lisp:member common-lisp:t common-lisp:nil :unsure))))
(:mop-direct sb-di:code-location :slot
 ((:name sb-di::%debug-block) (:ordinal 3) (:initform :unparsed)
  (:type (common-lisp:or sb-di:debug-block (common-lisp:member :unparsed)))))
(:mop-direct sb-di:code-location :slot
 ((:name sb-di::%tlf-offset) (:ordinal 4) (:initform :unparsed)
  (:type (common-lisp:or sb-int:index (common-lisp:member :unparsed)))))
(:mop-direct sb-di:code-location :slot
 ((:name sb-di::%form-number) (:ordinal 5) (:initform :unparsed)
  (:type (common-lisp:or sb-int:index (common-lisp:member :unparsed)))))
(:mop-direct sb-di::compiled-code-location :superclass sb-di:code-location)
(:mop-direct sb-di::compiled-code-location :package-name "SB-DI")
(:mop-direct sb-di::compiled-code-location :precedance
 (sb-di:code-location common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-di::compiled-code-location :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-code-location :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-code-location :superclass sb-di:code-location)
(:mop-direct sb-di::compiled-code-location :slot
 ((:name sb-di::pc) (:ordinal 1) (:type sb-int:index)))
(:mop-direct sb-di::compiled-code-location :slot
 ((:name sb-di::%live-set) (:ordinal 2) (:initform :unparsed)
  (:type
   (common-lisp:or common-lisp:simple-bit-vector
                   (common-lisp:member :unparsed)))))
(:mop-direct sb-di::compiled-code-location :slot
 ((:name sb-di::kind) (:ordinal 3) (:initform :unparsed)
  (:type (common-lisp:or (common-lisp:member :unparsed) sb-c::location-kind))))
(:mop-direct sb-di::compiled-code-location :slot
 ((:name sb-di::step-info) (:ordinal 4) (:initform :unparsed)
  (:type
   (common-lisp:or (common-lisp:member :unparsed :foo)
                   common-lisp:simple-string))))
(:mop-direct sb-di::compiled-code-location :prototype


(:mop-direct sb-di:debug-block :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-debug-block :superclass sb-di:debug-block)
(:mop-direct sb-di:debug-block :package-name "SB-DI")
(:mop-direct sb-di:debug-block :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-block :classof common-lisp:structure-class)
(:mop-direct sb-di:debug-block :typeof common-lisp:structure-class)
(:mop-direct sb-di:debug-block :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-block :slot
 ((:name sb-di::elsewhere-p) (:ordinal 1) (:type common-lisp:boolean)))
(:mop-direct sb-di::compiled-debug-block :superclass sb-di:debug-block)
(:mop-direct sb-di::compiled-debug-block :package-name "SB-DI")
(:mop-direct sb-di::compiled-debug-block :precedance
 (sb-di:debug-block common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-di::compiled-debug-block :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-block :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-block :superclass sb-di:debug-block)
(:mop-direct sb-di::compiled-debug-block :slot
 ((:name sb-di::code-locations) (:ordinal 1) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-di::compiled-debug-block :prototype
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x10011d1629, sp=0x7ffff2b9e470)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.


(:mop-direct sb-di:debug-fun :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::bogus-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di:debug-fun :package-name "SB-DI")
(:mop-direct sb-di:debug-fun :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-di:debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-di:debug-fun :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-fun :slot
 ((:name sb-di::%lambda-list) (:ordinal 1) (:initform :unparsed)))
(:mop-direct sb-di:debug-fun :slot
 ((:name sb-di::%debug-vars) (:ordinal 2) (:initform :unparsed)
  (:type
   (common-lisp:or common-lisp:simple-vector common-lisp:null
                   (common-lisp:member :unparsed)))))
(:mop-direct sb-di:debug-fun :slot
 ((:name sb-di::blocks) (:ordinal 3) (:initform :unparsed)
  (:type
   (common-lisp:or common-lisp:simple-vector common-lisp:null
                   (common-lisp:member :unparsed)))))
(:mop-direct sb-di:debug-fun :slot
 ((:name sb-di::%function) (:ordinal 4) (:initform :unparsed)
  (:type
   (common-lisp:or common-lisp:null common-lisp:function
                   (common-lisp:member :unparsed)))))
(:mop-direct sb-di::compiled-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::compiled-debug-fun :package-name "SB-DI")
(:mop-direct sb-di::compiled-debug-fun :precedance
 (sb-di:debug-fun common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-di::compiled-debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::compiled-debug-fun :slot
 ((:name sb-di::compiler-debug-fun) (:ordinal 1)
  (:type sb-c::compiled-debug-fun)))
(:mop-direct sb-di::compiled-debug-fun :slot
 ((:name sb-di::component) (:ordinal 2)))
(:mop-direct sb-di::compiled-debug-fun :slot
 ((:name sb-di::end-starter) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null sb-di:breakpoint))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xd (pc=0x100015961e, sp=0x7ffff2b9e470)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-di::bogus-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::bogus-debug-fun :package-name "SB-DI")
(:mop-direct sb-di::bogus-debug-fun :precedance
 (sb-di:debug-fun common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-di::bogus-debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-di::bogus-debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-di::bogus-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::bogus-debug-fun :slot ((:name sb-di::%name) (:ordinal 1)))
(:mop-direct sb-di::bogus-debug-fun :prototype #<sb-di::bogus-debug-fun 0>)

(:mop-direct sb-di:debug-var :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-debug-var :superclass sb-di:debug-var)
(:mop-direct sb-di:debug-var :package-name "SB-DI")
(:mop-direct sb-di:debug-var :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-var :classof common-lisp:structure-class)
(:mop-direct sb-di:debug-var :typeof common-lisp:structure-class)
(:mop-direct sb-di:debug-var :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-var :slot
 ((:name common-lisp:symbol) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-di:debug-var :slot
 ((:name sb-di::id) (:ordinal 2) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-di:debug-var :slot
 ((:name sb-di::alive-p) (:ordinal 3) (:type common-lisp:boolean)))
(:mop-direct sb-di::compiled-debug-var :superclass sb-di:debug-var)
(:mop-direct sb-di::compiled-debug-var :package-name "SB-DI")
(:mop-direct sb-di::compiled-debug-var :precedance
 (sb-di:debug-var common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-di::compiled-debug-var :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-var :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-var :superclass sb-di:debug-var)
(:mop-direct sb-di::compiled-debug-var :slot
 ((:name sb-di::sc-offset) (:ordinal 1) (:type sb-c:sc-offset)))
(:mop-direct sb-di::compiled-debug-var :slot
 ((:name sb-di::save-sc-offset) (:ordinal 2)
  (:type (common-lisp:or sb-c:sc-offset common-lisp:null))))
(:mop-direct sb-di::compiled-debug-var :slot
 ((:name sb-di::indirect-sc-offset) (:ordinal 3)
  (:type (common-lisp:or sb-c:sc-offset common-lisp:null))))
(:mop-direct sb-di::compiled-debug-var :slot ((:name sb-int:info) (:ordinal 4)))
(:mop-direct sb-di::compiled-debug-var :prototype
 #<sb-di::compiled-debug-var 0 0 {10049598D3}>)
(:mop-direct sb-di:debug-var :prototype #<sb-di:debug-var 0 0 {100496FD73}>)
(:mop-direct sb-ext:timer :superclass common-lisp:structure-object)
(:mop-direct sb-ext:timer :package-name "SB-EXT")
(:mop-direct sb-ext:timer :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:timer :classof common-lisp:structure-class)
(:mop-direct sb-ext:timer :typeof common-lisp:structure-class)
(:mop-direct sb-ext:timer :superclass common-lisp:structure-object)
(:mop-direct sb-ext:timer :slot ((:name sb-impl::name) (:ordinal 1)))
(:mop-direct sb-ext:timer :slot ((:name common-lisp:function) (:ordinal 2)))
(:mop-direct sb-ext:timer :slot
 ((:name sb-impl::expire-time) (:ordinal 3) (:initform 1)
  (:type (common-lisp:or common-lisp:null common-lisp:real))))
(:mop-direct sb-ext:timer :slot
 ((:name sb-impl::repeat-interval) (:ordinal 4)
  (:type (common-lisp:or common-lisp:null (common-lisp:real 0)))))
(:mop-direct sb-ext:timer :slot
 ((:name sb-impl::catch-up) (:ordinal 5) (:type common-lisp:boolean)))
(:mop-direct sb-ext:timer :slot
 ((:name sb-impl::thread) (:ordinal 6)
  (:type (common-lisp:or sb-thread:thread common-lisp:boolean))))
(:mop-direct sb-ext:timer :slot
 ((:name sb-impl::interrupt-function) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-ext:timer :slot
 ((:name sb-impl::cancel-function) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-ext:timer :prototype #<sb-ext:timer 0 {1004993293}>)
(:mop-direct sb-impl::priority-queue :superclass common-lisp:structure-object)
(:mop-direct sb-impl::priority-queue :package-name "SB-IMPL")
(:mop-direct sb-impl::priority-queue :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::priority-queue :classof common-lisp:structure-class)
(:mop-direct sb-impl::priority-queue :typeof common-lisp:structure-class)
(:mop-direct sb-impl::priority-queue :superclass common-lisp:structure-object)
(:mop-direct sb-impl::priority-queue :slot
 ((:name sb-impl::contents) (:ordinal 1) (:type common-lisp:vector)))
(:mop-direct sb-impl::priority-queue :slot
 ((:name sb-impl::keyfun) (:ordinal 2) (:type common-lisp:function)))

(:mop-direct sb-thread::session :superclass common-lisp:structure-object)
(:mop-direct sb-thread::session :package-name "SB-THREAD")
(:mop-direct sb-thread::session :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread::session :classof common-lisp:structure-class)
(:mop-direct sb-thread::session :typeof common-lisp:structure-class)
(:mop-direct sb-thread::session :superclass common-lisp:structure-object)
(:mop-direct sb-thread::session :slot
 ((:name sb-thread::lock) (:ordinal 1)
  (:initform (sb-thread:make-mutex :name "session lock"))))
(:mop-direct sb-thread::session :slot ((:name sb-thread::threads) (:ordinal 2)))
(:mop-direct sb-thread::session :slot
 ((:name sb-thread::interactive-threads) (:ordinal 3)))
(:mop-direct sb-thread::session :slot
 ((:name sb-thread::interactive-threads-queue) (:ordinal 4)
  (:initform (sb-thread:make-waitqueue))))
(:mop-direct sb-thread::session :prototype
 #S(sb-thread::session
    :lock 0
    :threads 0
    :interactive-threads 0
    :interactive-threads-queue 0))
(:mop-direct sb-thread:semaphore-notification :superclass
 common-lisp:structure-object)
(:mop-direct sb-thread:semaphore-notification :package-name "SB-THREAD")
(:mop-direct sb-thread:semaphore-notification :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:semaphore-notification :classof
 common-lisp:structure-class)
(:mop-direct sb-thread:semaphore-notification :typeof
 common-lisp:structure-class)
(:mop-direct sb-thread:semaphore-notification :superclass
 common-lisp:structure-object)
(:mop-direct sb-thread:semaphore-notification :slot
 ((:name sb-thread::%status) (:ordinal 1) (:type common-lisp:boolean)))
(:mop-direct sb-thread:semaphore-notification :prototype
 #S(sb-thread:semaphore-notification :%status 0))
(:mop-direct sb-thread:semaphore :superclass common-lisp:structure-object)
(:mop-direct sb-thread:semaphore :package-name "SB-THREAD")
(:mop-direct sb-thread:semaphore :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:semaphore :classof common-lisp:structure-class)
(:mop-direct sb-thread:semaphore :typeof common-lisp:structure-class)
(:mop-direct sb-thread:semaphore :superclass common-lisp:structure-object)
(:mop-direct sb-thread:semaphore :slot
 ((:name sb-thread::name) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-thread:thread-name))))
(:mop-direct sb-thread:semaphore :slot
 ((:name sb-thread::%count) (:ordinal 2) (:initform 0)
  (:type (common-lisp:integer 0))))
(:mop-direct sb-thread:semaphore :slot
 ((:name sb-thread::waitcount) (:ordinal 3) (:initform 0) (:type sb-ext:word)))
(:mop-direct sb-thread:semaphore :slot
 ((:name sb-thread:mutex) (:ordinal 4) (:initform (sb-thread:make-mutex))))
(:mop-direct sb-thread:semaphore :slot
 ((:name sb-thread::queue) (:ordinal 5) (:initform (sb-thread:make-waitqueue))))
(:mop-direct sb-thread:semaphore :prototype
 #S(sb-thread:semaphore :name 0 :%count 0 :waitcount 0 :mutex 0 :queue 0))
(:mop-direct sb-thread:waitqueue :superclass common-lisp:structure-object)
(:mop-direct sb-thread:waitqueue :package-name "SB-THREAD")
(:mop-direct sb-thread:waitqueue :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:waitqueue :classof common-lisp:structure-class)
(:mop-direct sb-thread:waitqueue :typeof common-lisp:structure-class)
(:mop-direct sb-thread:waitqueue :superclass common-lisp:structure-object)
(:mop-direct sb-thread:waitqueue :slot
 ((:name sb-thread::name) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-thread:thread-name))))
(:mop-direct sb-thread:waitqueue :slot ((:name sb-thread::token) (:ordinal 2)))
(:mop-direct sb-thread:waitqueue :prototype
 #<sb-thread:waitqueue 0 {1004A33023}>)
(:mop-direct sb-impl::token-buf :superclass common-lisp:structure-object)
(:mop-direct sb-impl::token-buf :package-name "SB-IMPL")
(:mop-direct sb-impl::token-buf :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::token-buf :classof common-lisp:structure-class)
(:mop-direct sb-impl::token-buf :typeof common-lisp:structure-class)
(:mop-direct sb-impl::token-buf :superclass common-lisp:structure-object)
(:mop-direct sb-impl::token-buf :slot
 ((:name common-lisp:string) (:ordinal 1)
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::fill-ptr) (:ordinal 2) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::cursor) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::adjustable-string) (:ordinal 4)
  (:type
   (common-lisp:and (common-lisp:array common-lisp:character (common-lisp:*))
                    (common-lisp:not common-lisp:simple-array)))))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::initial-string) (:ordinal 5)
  (:type (common-lisp:simple-array common-lisp:character (128)))))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::escapes) (:ordinal 6)
  (:initform
   (common-lisp:make-array 10 :element-type 'common-lisp:fixnum :fill-pointer 0
                           :adjustable common-lisp:t))
  (:type
   (common-lisp:and (common-lisp:vector common-lisp:fixnum)
                    (common-lisp:not common-lisp:simple-array)))))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::next) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null sb-impl::token-buf))))
(:mop-direct sb-impl::token-buf :slot
 ((:name sb-impl::only-base-chars) (:ordinal 8) (:initform common-lisp:t)
  (:type common-lisp:boolean)))
(:mop-direct sb-impl::token-buf :prototype
 #<sb-impl::token-buf next=0 {1004A57603}>)
(:mop-direct sb-impl::unprintable-object :superclass
 common-lisp:structure-object)
(:mop-direct sb-impl::unprintable-object :package-name "SB-IMPL")
(:mop-direct sb-impl::unprintable-object :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::unprintable-object :classof common-lisp:structure-class)
(:mop-direct sb-impl::unprintable-object :typeof common-lisp:structure-class)
(:mop-direct sb-impl::unprintable-object :superclass
 common-lisp:structure-object)
(:mop-direct sb-impl::unprintable-object :slot
 ((:name common-lisp:string) (:ordinal 1)))

(:mop-direct sb-vm::result-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::result-state :package-name "SB-VM")
(:mop-direct sb-vm::result-state :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::result-state :classof common-lisp:structure-class)
(:mop-direct sb-vm::result-state :typeof common-lisp:structure-class)
(:mop-direct sb-vm::result-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::result-state :slot
 ((:name sb-vm::num-results) (:ordinal 1) (:initform 0)))
(:mop-direct sb-vm::result-state :prototype
 #S(sb-vm::result-state :num-results 0))
(:mop-direct sb-vm::arg-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::arg-state :package-name "SB-VM")
(:mop-direct sb-vm::arg-state :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::arg-state :classof common-lisp:structure-class)
(:mop-direct sb-vm::arg-state :typeof common-lisp:structure-class)
(:mop-direct sb-vm::arg-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::arg-state :slot
 ((:name sb-vm::register-args) (:ordinal 1) (:initform 0)))
(:mop-direct sb-vm::arg-state :slot
 ((:name sb-vm::xmm-args) (:ordinal 2) (:initform 0)))
(:mop-direct sb-vm::arg-state :slot
 ((:name sb-vm::stack-frame-size) (:ordinal 3) (:initform 0)))
(:mop-direct sb-vm::arg-state :prototype
 #S(sb-vm::arg-state :register-args 0 :xmm-args 0 :stack-frame-size 0))
(:mop-direct sb-vm::ea :superclass common-lisp:structure-object)
(:mop-direct sb-vm::ea :package-name "SB-VM")
(:mop-direct sb-vm::ea :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::ea :classof common-lisp:structure-class)
(:mop-direct sb-vm::ea :typeof common-lisp:structure-class)
(:mop-direct sb-vm::ea :superclass common-lisp:structure-object)
(:mop-direct sb-vm::ea :slot
 ((:name sb-vm::size) (:ordinal 1)
  (:type (common-lisp:member :byte :word :dword :qword))))
(:mop-direct sb-vm::ea :slot
 ((:name sb-vm::base) (:ordinal 2)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-vm::ea :slot
 ((:name sb-int:index) (:ordinal 3)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-vm::ea :slot
 ((:name sb-vm::scale) (:ordinal 4) (:initform 1)
  (:type (common-lisp:member 1 2 4 8))))
(:mop-direct sb-vm::ea :slot
 ((:name sb-vm::disp) (:ordinal 5) (:initform 0)
  (:type
   (common-lisp:or (common-lisp:unsigned-byte 32) (common-lisp:signed-byte 32)
                   sb-c:fixup))))
(:mop-direct sb-vm::ea :prototype #<sb-vm::ea 0 base=0 index=0 scale=0 disp=0>)
(:mop-direct sb-c::reg-spec :superclass common-lisp:structure-object)
(:mop-direct sb-c::reg-spec :package-name "SB-C")
(:mop-direct sb-c::reg-spec :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::reg-spec :classof common-lisp:structure-class)
(:mop-direct sb-c::reg-spec :typeof common-lisp:structure-class)
(:mop-direct sb-c::reg-spec :superclass common-lisp:structure-object)
(:mop-direct sb-c::reg-spec :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform :temp)
  (:type (common-lisp:member :arg :temp :res))))
(:mop-direct sb-c::reg-spec :slot
 ((:name sb-c::name) (:ordinal 2) (:type common-lisp:symbol)))
(:mop-direct sb-c::reg-spec :slot
 ((:name sb-c::temp) (:ordinal 3) (:type common-lisp:symbol)))
(:mop-direct sb-c::reg-spec :slot
 ((:name sb-c::scs) (:ordinal 4)
  (:type (common-lisp:or common-lisp:list common-lisp:symbol))))
(:mop-direct sb-c::reg-spec :slot ((:name sb-c::offset) (:ordinal 5)))
(:mop-direct sb-c::reg-spec :prototype
 #<sb-c::reg-spec :KIND 0 :NAME 0 :SCS 0 :OFFSET 0>)
(:mop-direct sb-c::location-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::location-info :package-name "SB-C")
(:mop-direct sb-c::location-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::location-info :classof common-lisp:structure-class)
(:mop-direct sb-c::location-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::location-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::location-info :slot
 ((:name sb-c::kind) (:ordinal 1) (:type sb-c::location-kind)))
(:mop-direct sb-c::location-info :slot
 ((:name sb-assem:label) (:ordinal 2)
  (:type (common-lisp:or sb-assem:label sb-int:index common-lisp:null))))
(:mop-direct sb-c::location-info :slot
 ((:name sb-c::vop) (:ordinal 3) (:type sb-c::vop)))
(:mop-direct sb-c::location-info :prototype
 #S(sb-c::location-info :kind 0 :label 0 :vop 0))
(:mop-direct sb-c::conset :superclass common-lisp:structure-object)
(:mop-direct sb-c::conset :package-name "SB-C")
(:mop-direct sb-c::conset :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::conset :classof common-lisp:structure-class)
(:mop-direct sb-c::conset :typeof common-lisp:structure-class)
(:mop-direct sb-c::conset :superclass common-lisp:structure-object)
(:mop-direct sb-c::conset :slot
 ((:name common-lisp:vector) (:ordinal 1)
  (:initform
   (common-lisp:make-array
    (common-lisp:ash 1
                     (common-lisp:integer-length
                      (common-lisp:1-
                       (common-lisp:length sb-c::*constraint-universe*))))
    :element-type 'common-lisp:bit :initial-element 0))
  (:type common-lisp:simple-bit-vector)))
(:mop-direct sb-c::conset :slot
 ((:name common-lisp:min) (:ordinal 2) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-c::conset :slot
 ((:name common-lisp:max) (:ordinal 3) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-c::conset :prototype #S(sb-c::conset :vector 0 :min 0 :max 0))
(:mop-direct sb-c::interval :superclass common-lisp:structure-object)
(:mop-direct sb-c::interval :package-name "SB-C")
(:mop-direct sb-c::interval :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::interval :classof common-lisp:structure-class)
(:mop-direct sb-c::interval :typeof common-lisp:structure-class)
(:mop-direct sb-c::interval :superclass common-lisp:structure-object)
(:mop-direct sb-c::interval :slot ((:name sb-c::low) (:ordinal 1)))
(:mop-direct sb-c::interval :slot ((:name sb-c::high) (:ordinal 2)))
(:mop-direct sb-c::interval :prototype #S(sb-c::interval :low 0 :high 0))
(:mop-direct sb-c::compiler-error-context :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::compiler-error-context :package-name "SB-C")
(:mop-direct sb-c::compiler-error-context :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::compiler-error-context :classof common-lisp:structure-class)
(:mop-direct sb-c::compiler-error-context :typeof common-lisp:structure-class)
(:mop-direct sb-c::compiler-error-context :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-c::enclosing-source) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-c::source) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-c::original-source) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-string)))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-c::context) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-int:file-name) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:or common-lisp:pathname (common-lisp:member :lisp :stream)))))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name common-lisp:file-position) (:ordinal 6)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-c::original-source-path) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
 ((:name sb-kernel:lexenv) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null sb-kernel:lexenv))))
(:mop-direct sb-c::compiler-error-context :prototype
 #<sb-c::compiler-error-context >)
(:mop-direct sb-fasl::circularity :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::circularity :package-name "SB-FASL")
(:mop-direct sb-fasl::circularity :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::circularity :classof common-lisp:structure-class)
(:mop-direct sb-fasl::circularity :typeof common-lisp:structure-class)
(:mop-direct sb-fasl::circularity :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::circularity :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :rplaca :rplacd :svset :struct-set))))
(:mop-direct sb-fasl::circularity :slot ((:name sb-fasl::object) (:ordinal 2)))
(:mop-direct sb-fasl::circularity :slot
 ((:name sb-int:index) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-fasl::circularity :slot ((:name sb-fasl::value) (:ordinal 4)))
(:mop-direct sb-fasl::circularity :slot
 ((:name sb-fasl::enclosing-object) (:ordinal 5)))
(:mop-direct sb-fasl::circularity :prototype
 #S(sb-fasl::circularity
    :type 0
    :object 0
    :index 0
    :value 0
    :enclosing-object 0))
(:mop-direct sb-fasl:fasl-output :superclass common-lisp:structure-object)
(:mop-direct sb-fasl:fasl-output :package-name "SB-FASL")
(:mop-direct sb-fasl:fasl-output :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl:fasl-output :classof common-lisp:structure-class)
(:mop-direct sb-fasl:fasl-output :typeof common-lisp:structure-class)
(:mop-direct sb-fasl:fasl-output :superclass common-lisp:structure-object)
(:mop-direct sb-fasl:fasl-output :slot
 ((:name common-lisp:stream) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::equal-table) (:ordinal 2)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
  (:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::eq-table) (:ordinal 3)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::string=-table) (:ordinal 4)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
  (:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::table-free) (:ordinal 5) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::packages) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::entry-table) (:ordinal 7)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::patch-table) (:ordinal 8)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::debug-info) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::circularity-table) (:ordinal 10)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
 ((:name sb-fasl::valid-structures) (:ordinal 11)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))

(:mop-direct sb-assem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-assem:segment :package-name "SB-ASSEM")
(:mop-direct sb-assem:segment :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem:segment :classof common-lisp:structure-class)
(:mop-direct sb-assem:segment :typeof common-lisp:structure-class)
(:mop-direct sb-assem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-assem:segment :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform :regular)
  (:type (common-lisp:member :regular :elsewhere))))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::buffer) (:ordinal 2)
  (:initform (common-lisp:make-array 0 :element-type 'sb-assem:assembly-unit))
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:simple-array sb-assem:assembly-unit)))))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::run-scheduler) (:ordinal 3)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::inst-hook) (:ordinal 4)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::current-posn) (:ordinal 5) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::%current-index) (:ordinal 6) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::annotations) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::last-annotation) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::alignment) (:ordinal 9) (:initform sb-assem::max-alignment)
  (:type sb-assem::alignment)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::sync-posn) (:ordinal 10) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::final-posn) (:ordinal 11) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::final-index) (:ordinal 12) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::postits) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::inst-number) (:ordinal 14) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::readers) (:ordinal 15)
  (:initform
   (common-lisp:make-array sb-assem:*assem-max-locations* :initial-element
                           common-lisp:nil))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::writers) (:ordinal 16)
  (:initform
   (common-lisp:make-array sb-assem:*assem-max-locations* :initial-element
                           common-lisp:nil))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::branch-countdown) (:ordinal 17)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:and common-lisp:fixnum
                                    common-lisp:unsigned-byte)))))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::emittable-insts-sset) (:ordinal 18)
  (:initform (sb-int:make-sset)) (:type sb-int:sset)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::queued-branches) (:ordinal 19) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::delayed) (:ordinal 20) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
 ((:name sb-assem::emittable-insts-queue) (:ordinal 21)
  (:type common-lisp:list)))
(:mop-direct sb-assem:segment :prototype #<sb-assem:segment :type 0>)
(:mop-direct sb-disassem:disassem-state :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem:disassem-state :package-name "SB-DISASSEM")
(:mop-direct sb-disassem:disassem-state :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem:disassem-state :classof common-lisp:structure-class)
(:mop-direct sb-disassem:disassem-state :typeof common-lisp:structure-class)
(:mop-direct sb-disassem:disassem-state :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::cur-offs) (:ordinal 1) (:initform 0)
  (:type sb-disassem::offset)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::next-offs) (:ordinal 2) (:initform 0)
  (:type sb-disassem::offset)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::segment-sap) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null sb-sys:system-area-pointer))))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem:segment) (:ordinal 4)
  (:type (common-lisp:or common-lisp:null sb-disassem:segment))))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::alignment) (:ordinal 5) (:initform sb-vm:n-word-bytes)
  (:type sb-disassem::alignment)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::byte-order) (:ordinal 6) (:initform :little-endian)
  (:type (common-lisp:member :big-endian :little-endian))))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::properties) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::inst-properties) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::filtered-values) (:ordinal 9)
  (:initform (common-lisp:make-array sb-disassem::max-filtered-value-index))
  (:type sb-disassem::filtered-value-vector)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::addr-print-len) (:ordinal 10)
  (:type (common-lisp:or common-lisp:null (common-lisp:integer 0 20)))))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::argument-column) (:ordinal 11) (:initform 0)
  (:type sb-disassem::column)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::output-state) (:ordinal 12) (:initform :beginning)
  (:type (common-lisp:member :beginning :block-boundary common-lisp:nil))))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name common-lisp:labels) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::label-hash) (:ordinal 14)
  (:initform (common-lisp:make-hash-table)) (:type common-lisp:hash-table)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::fun-hooks) (:ordinal 15) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::cur-labels) (:ordinal 16) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::cur-offs-hooks) (:ordinal 17) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::notes) (:ordinal 18) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
 ((:name sb-disassem::current-valid-locations) (:ordinal 19)
  (:type
   (common-lisp:or common-lisp:null (common-lisp:vector common-lisp:bit)))))
(:mop-direct sb-disassem:disassem-state :prototype
 #<sb-disassem:disassem-state +0 in 0>)
(:mop-direct sb-disassem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:segment :package-name "SB-DISASSEM")
(:mop-direct sb-disassem:segment :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem:segment :classof common-lisp:structure-class)
(:mop-direct sb-disassem:segment :typeof common-lisp:structure-class)
(:mop-direct sb-disassem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::sap-maker) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:function common-lisp:nil sb-sys:system-area-pointer))))
(:mop-direct sb-disassem:segment :slot
 ((:name common-lisp:length) (:ordinal 2) (:initform 0)
  (:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::opcodes-length) (:ordinal 3) (:initform 0)
  (:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::virtual-location) (:ordinal 4) (:initform 0)
  (:type sb-disassem::address)))
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::storage-info) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null sb-disassem::storage-info))))
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::code) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null sb-kernel:code-component))))
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::unboxed-data-range) (:ordinal 7)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:cons common-lisp:fixnum common-lisp:fixnum)))))
(:mop-direct sb-disassem:segment :slot
 ((:name sb-disassem::hooks) (:ordinal 8) (:type common-lisp:list)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffffd (pc=0x1001d98e63, sp=0x7ffff2b9e4f0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-disassem::storage-info :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::storage-info :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::storage-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::storage-info :classof common-lisp:structure-class)
(:mop-direct sb-disassem::storage-info :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::storage-info :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::storage-info :slot
 ((:name sb-disassem::groups) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-disassem::storage-info :slot
 ((:name sb-disassem::debug-vars) (:ordinal 2) (:initform #())
  (:type common-lisp:vector)))
(:mop-direct sb-disassem::storage-info :prototype
 #S(sb-disassem::storage-info :groups 0 :debug-vars 0))
(:mop-direct sb-disassem::cached-fun :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::cached-fun :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::cached-fun :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::cached-fun :classof common-lisp:structure-class)
(:mop-direct sb-disassem::cached-fun :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::cached-fun :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::cached-fun :slot
 ((:name sb-disassem::funstate) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-disassem::funstate))))
(:mop-direct sb-disassem::cached-fun :slot
 ((:name sb-disassem::constraint) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::cached-fun :slot
 ((:name sb-disassem::name) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:symbol))))
(:mop-direct sb-disassem::cached-fun :prototype
 #S(sb-disassem::cached-fun :funstate 0 :constraint 0 :name 0))
(:mop-direct sb-disassem::valsrc :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::valsrc :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::valsrc :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::valsrc :classof common-lisp:structure-class)
(:mop-direct sb-disassem::valsrc :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::valsrc :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::valsrc :slot
 ((:name sb-disassem::value) (:ordinal 1)))
(:mop-direct sb-disassem::valsrc :slot
 ((:name sb-disassem::source) (:ordinal 2)))
(:mop-direct sb-disassem::valsrc :prototype
 #S(sb-disassem::valsrc :value 0 :source 0))
(:mop-direct sb-disassem::funstate :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::funstate :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::funstate :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::funstate :classof common-lisp:structure-class)
(:mop-direct sb-disassem::funstate :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::funstate :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::funstate :slot
 ((:name sb-disassem::args) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-disassem::funstate :slot
 ((:name sb-disassem::arg-temps) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::funstate :prototype
 #S(sb-disassem::funstate :args 0 :arg-temps 0))
(:mop-direct sb-disassem::instruction-format :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::instruction-format :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::instruction-format :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::instruction-format :classof
 common-lisp:structure-class)
(:mop-direct sb-disassem::instruction-format :typeof
 common-lisp:structure-class)
(:mop-direct sb-disassem::instruction-format :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::instruction-format :slot
 ((:name sb-disassem::name) (:ordinal 1)))
(:mop-direct sb-disassem::instruction-format :slot
 ((:name sb-disassem::args) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::instruction-format :slot
 ((:name common-lisp:length) (:ordinal 3) (:initform 0)
  (:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem::instruction-format :slot
 ((:name sb-disassem::default-printer) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-disassem::instruction-format :prototype
 #S(sb-disassem::instruction-format
    :name 0
    :args 0
    :length 0
    :default-printer 0))
(:mop-direct sb-disassem::arg :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::arg :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::arg :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::arg :classof common-lisp:structure-class)
(:mop-direct sb-disassem::arg :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::arg :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::arg :slot
 ((:name sb-disassem::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-disassem::arg :slot
 ((:name sb-disassem::fields) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::arg :slot
 ((:name sb-disassem::value) (:ordinal 3)
  (:type (common-lisp:or common-lisp:list common-lisp:integer))))
(:mop-direct sb-disassem::arg :slot
 ((:name sb-disassem::sign-extend-p) (:ordinal 4)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-disassem::arg :slot
 ((:name common-lisp:position) (:ordinal 5) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-disassem::arg :slot ((:name sb-disassem::printer) (:ordinal 6)))
(:mop-direct sb-disassem::arg :slot
 ((:name sb-disassem::prefilter) (:ordinal 7)))
(:mop-direct sb-disassem::arg :slot
 ((:name sb-disassem::use-label) (:ordinal 8)))
(:mop-direct sb-disassem::arg :prototype
 #<sb-disassem::arg 0:0 +0=0 filt=0 lbl=0 prt=0>)
(:mop-direct sb-disassem::arg-form-kind :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::arg-form-kind :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::arg-form-kind :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::arg-form-kind :classof common-lisp:structure-class)
(:mop-direct sb-disassem::arg-form-kind :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::arg-form-kind :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::arg-form-kind :slot
 ((:name sb-disassem::names) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-disassem::arg-form-kind :slot
 ((:name sb-disassem::producer) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-disassem::arg-form-kind :slot
 ((:name sb-disassem::checker) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-disassem::arg-form-kind :prototype
 #S(sb-disassem::arg-form-kind :names 0 :producer 0 :checker 0))
(:mop-direct sb-disassem::inst-space-choice :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space-choice :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::inst-space-choice :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::inst-space-choice :classof
 common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space-choice :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space-choice :superclass
 common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space-choice :slot
 ((:name sb-disassem::common-id) (:ordinal 1)
  (:initform sb-disassem::dchunk-zero) (:type sb-disassem:dchunk)))
(:mop-direct sb-disassem::inst-space-choice :slot
 ((:name sb-disassem::subspace) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or sb-disassem::inst-space sb-disassem:instruction))))
(:mop-direct sb-disassem::inst-space-choice :prototype
 #S(sb-disassem::inst-space-choice :common-id 0 :subspace 0))
(:mop-direct sb-disassem::inst-space :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::inst-space :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::inst-space :classof common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space :slot
 ((:name sb-disassem::valid-mask) (:ordinal 1)
  (:initform sb-disassem::dchunk-zero) (:type sb-disassem:dchunk)))
(:mop-direct sb-disassem::inst-space :slot
 ((:name sb-disassem::choices) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::inst-space :prototype
 #<sb-disassem::inst-space {1004D54E03}>)
(:mop-direct sb-disassem:instruction :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:instruction :package-name "SB-DISASSEM")
(:mop-direct sb-disassem:instruction :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem:instruction :classof common-lisp:structure-class)
(:mop-direct sb-disassem:instruction :typeof common-lisp:structure-class)
(:mop-direct sb-disassem:instruction :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::name) (:ordinal 1)
  (:type (common-lisp:or common-lisp:symbol common-lisp:string))))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::format-name) (:ordinal 2)
  (:type (common-lisp:or common-lisp:symbol common-lisp:string))))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::mask) (:ordinal 3) (:initform sb-disassem::dchunk-zero)
  (:type sb-disassem:dchunk)))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::id) (:ordinal 4) (:initform sb-disassem::dchunk-zero)
  (:type sb-disassem:dchunk)))
(:mop-direct sb-disassem:instruction :slot
 ((:name common-lisp:length) (:ordinal 5) (:initform 0)
  (:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::print-name) (:ordinal 6) (:type common-lisp:symbol)))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::prefilter) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::labeller) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::printer) (:ordinal 9) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::control) (:ordinal 10)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
 ((:name sb-disassem::specializers) (:ordinal 11) (:type common-lisp:list)))
(:mop-direct sb-disassem:instruction :prototype
 #<sb-disassem:instruction 0(0) {1004D7BBE3}>)
(:mop-direct sb-disassem::fun-cache :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::fun-cache :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::fun-cache :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::fun-cache :classof common-lisp:structure-class)
(:mop-direct sb-disassem::fun-cache :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::fun-cache :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::fun-cache :slot
 ((:name sb-disassem::serial-number) (:ordinal 1) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-disassem::fun-cache :slot
 ((:name sb-disassem::printers) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::fun-cache :slot
 ((:name sb-disassem::labellers) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-disassem::fun-cache :slot
 ((:name sb-disassem::prefilters) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-disassem::fun-cache :prototype
 #<sb-disassem::fun-cache {1004D9ADB3}>)
(:mop-direct sb-c::approximate-key-info :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::approximate-key-info :package-name "SB-C")
(:mop-direct sb-c::approximate-key-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::approximate-key-info :classof common-lisp:structure-class)
(:mop-direct sb-c::approximate-key-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::approximate-key-info :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::approximate-key-info :slot
 ((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:keyword)))
(:mop-direct sb-c::approximate-key-info :slot
 ((:name common-lisp:position) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:integer 0 4611686018427387903))))
(:mop-direct sb-c::approximate-key-info :slot
 ((:name sb-c::types) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::approximate-key-info :slot
 ((:name sb-c::allowp) (:ordinal 4)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-c::approximate-key-info :prototype
 #S(sb-c::approximate-key-info :name 0 :position 0 :types 0 :allowp 0))
(:mop-direct sb-c::approximate-fun-type :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::approximate-fun-type :package-name "SB-C")
(:mop-direct sb-c::approximate-fun-type :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::approximate-fun-type :classof common-lisp:structure-class)
(:mop-direct sb-c::approximate-fun-type :typeof common-lisp:structure-class)
(:mop-direct sb-c::approximate-fun-type :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::approximate-fun-type :slot
 ((:name sb-c::min-args) (:ordinal 1)
  (:initform common-lisp:call-arguments-limit)
  (:type (common-lisp:integer 0 4611686018427387903))))
(:mop-direct sb-c::approximate-fun-type :slot
 ((:name sb-c::max-args) (:ordinal 2) (:initform 0)
  (:type (common-lisp:integer 0 4611686018427387903))))
(:mop-direct sb-c::approximate-fun-type :slot
 ((:name sb-c::types) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::approximate-fun-type :slot
 ((:name sb-c::keys) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::approximate-fun-type :prototype
 #S(sb-c::approximate-fun-type :min-args 0 :max-args 0 :types 0 :keys 0))
(:mop-direct sb-fasl::undefined-package :superclass
 common-lisp:structure-object)
(:mop-direct sb-fasl::undefined-package :package-name "SB-FASL")
(:mop-direct sb-fasl::undefined-package :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::undefined-package :classof common-lisp:structure-class)
(:mop-direct sb-fasl::undefined-package :typeof common-lisp:structure-class)
(:mop-direct sb-fasl::undefined-package :superclass
 common-lisp:structure-object)
(:mop-direct sb-fasl::undefined-package :slot
 ((:name common-lisp:error) (:ordinal 1)))
(:mop-direct sb-fasl::undefined-package :prototype
 #S(sb-fasl::undefined-package :error 0))
(:mop-direct sb-alien::shared-object :superclass common-lisp:structure-object)
(:mop-direct sb-alien::shared-object :package-name "SB-ALIEN")
(:mop-direct sb-alien::shared-object :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::shared-object :classof common-lisp:structure-class)
(:mop-direct sb-alien::shared-object :typeof common-lisp:structure-class)
(:mop-direct sb-alien::shared-object :superclass common-lisp:structure-object)
(:mop-direct sb-alien::shared-object :slot
 ((:name common-lisp:pathname) (:ordinal 1)))
(:mop-direct sb-alien::shared-object :slot
 ((:name common-lisp:namestring) (:ordinal 2)))
(:mop-direct sb-alien::shared-object :slot
 ((:name sb-alien::handle) (:ordinal 3)))
(:mop-direct sb-alien::shared-object :slot
 ((:name sb-alien::dont-save) (:ordinal 4)))
(:mop-direct sb-alien::shared-object :prototype
 #S(sb-alien::shared-object :pathname 0 :namestring 0 :handle 0 :dont-save 0))
(:mop-direct sb-c::core-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::core-object :package-name "SB-C")
(:mop-direct sb-c::core-object :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::core-object :classof common-lisp:structure-class)
(:mop-direct sb-c::core-object :typeof common-lisp:structure-class)
(:mop-direct sb-c::core-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::core-object :slot
 ((:name sb-c::entry-table) (:ordinal 1)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-c::core-object :slot
 ((:name sb-c::patch-table) (:ordinal 2)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-c::core-object :slot
 ((:name sb-c::debug-info) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::core-object :prototype #<sb-c::core-object >)
(:mop-direct sb-c::fixup-note :superclass common-lisp:structure-object)
(:mop-direct sb-c::fixup-note :package-name "SB-C")
(:mop-direct sb-c::fixup-note :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::fixup-note :classof common-lisp:structure-class)
(:mop-direct sb-c::fixup-note :typeof common-lisp:structure-class)
(:mop-direct sb-c::fixup-note :superclass common-lisp:structure-object)
(:mop-direct sb-c::fixup-note :slot ((:name sb-c::kind) (:ordinal 1)))
(:mop-direct sb-c::fixup-note :slot ((:name sb-c:fixup) (:ordinal 2)))
(:mop-direct sb-c::fixup-note :slot ((:name common-lisp:position) (:ordinal 3)))
(:mop-direct sb-c::fixup-note :prototype
 #S(sb-c::fixup-note :kind 0 :fixup 0 :position 0))
(:mop-direct sb-c:fixup :superclass common-lisp:structure-object)
(:mop-direct sb-c:fixup :package-name "SB-C")
(:mop-direct sb-c:fixup :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:fixup :classof common-lisp:structure-class)
(:mop-direct sb-c:fixup :typeof common-lisp:structure-class)
(:mop-direct sb-c:fixup :superclass common-lisp:structure-object)
(:mop-direct sb-c:fixup :slot ((:name sb-c::name) (:ordinal 1)))
(:mop-direct sb-c:fixup :slot ((:name sb-c::flavor) (:ordinal 2)))
(:mop-direct sb-c:fixup :slot ((:name sb-c::offset) (:ordinal 3)))
(:mop-direct sb-c:fixup :prototype #S(sb-c:fixup :name 0 :flavor 0 :offset 0))
(:mop-direct sb-pretty::pprint-dispatch-entry :superclass
 common-lisp:structure-object)
(:mop-direct sb-pretty::pprint-dispatch-entry :package-name "SB-PRETTY")
(:mop-direct sb-pretty::pprint-dispatch-entry :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::pprint-dispatch-entry :classof
 common-lisp:structure-class)
(:mop-direct sb-pretty::pprint-dispatch-entry :typeof
 common-lisp:structure-class)
(:mop-direct sb-pretty::pprint-dispatch-entry :superclass
 common-lisp:structure-object)
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
 ((:name common-lisp:type) (:ordinal 1)))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
 ((:name sb-pretty::test-fn) (:ordinal 2)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
 ((:name sb-pretty::priority) (:ordinal 3) (:initform 0)
  (:type common-lisp:real)))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
 ((:name sb-pretty::initial-p) (:ordinal 4)
  (:initform (common-lisp:null sb-pretty::*initial-pprint-dispatch-table*))
  (:type common-lisp:boolean)))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
 ((:name sb-pretty::fun) (:ordinal 5) (:type sb-kernel:callable)))
(:mop-direct sb-pretty::pprint-dispatch-entry :prototype
 #<sb-pretty::pprint-dispatch-entry type=0, priority=0 [initial]>)
(:mop-direct sb-pretty::logical-block :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::logical-block :package-name "SB-PRETTY")
(:mop-direct sb-pretty::logical-block :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::logical-block :classof common-lisp:structure-class)
(:mop-direct sb-pretty::logical-block :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::logical-block :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::logical-block :slot
 ((:name sb-pretty::start-column) (:ordinal 1) (:initform 0)
  (:type sb-pretty::column)))
(:mop-direct sb-pretty::logical-block :slot
 ((:name sb-pretty::section-column) (:ordinal 2) (:initform 0)
  (:type sb-pretty::column)))
(:mop-direct sb-pretty::logical-block :slot
 ((:name sb-pretty::per-line-prefix-end) (:ordinal 3) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :slot
 ((:name sb-pretty::prefix-length) (:ordinal 4) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :slot
 ((:name sb-pretty::suffix-length) (:ordinal 5) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :slot
 ((:name sb-pretty::section-start-line) (:ordinal 6) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :prototype
 #S(sb-pretty::logical-block
    :start-column 0
    :section-column 0
    :per-line-prefix-end 0
    :prefix-length 0
    :suffix-length 0
    :section-start-line 0))
(:mop-direct sb-pretty::queued-op :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::tab :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::indentation :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::section-start :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-end :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::queued-op :package-name "SB-PRETTY")
(:mop-direct sb-pretty::queued-op :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::queued-op :classof common-lisp:structure-class)
(:mop-direct sb-pretty::queued-op :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::queued-op :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::queued-op :slot
 ((:name sb-pretty::posn) (:ordinal 1) (:initform 0) (:type sb-pretty::posn)))
(:mop-direct sb-pretty::tab :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::tab :package-name "SB-PRETTY")
(:mop-direct sb-pretty::tab :precedance
 (sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pretty::tab :classof common-lisp:structure-class)
(:mop-direct sb-pretty::tab :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::tab :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::tab :slot
 ((:name sb-pretty::sectionp) (:ordinal 1)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-pretty::tab :slot
 ((:name sb-pretty::relativep) (:ordinal 2)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-pretty::tab :slot
 ((:name sb-pretty::colnum) (:ordinal 3) (:initform 0)
  (:type sb-pretty::column)))
(:mop-direct sb-pretty::tab :slot
 ((:name sb-pretty::colinc) (:ordinal 4) (:initform 0)
  (:type sb-pretty::column)))
(:mop-direct sb-pretty::tab :prototype
 #S(sb-pretty::tab :posn 0 :sectionp 0 :relativep 0 :colnum 0 :colinc 0))
(:mop-direct sb-pretty::indentation :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::indentation :package-name "SB-PRETTY")
(:mop-direct sb-pretty::indentation :precedance
 (sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pretty::indentation :classof common-lisp:structure-class)
(:mop-direct sb-pretty::indentation :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::indentation :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::indentation :slot
 ((:name sb-pretty::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :block :current))))
(:mop-direct sb-pretty::indentation :slot
 ((:name sb-pretty::amount) (:ordinal 2) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-pretty::indentation :prototype
 #S(sb-pretty::indentation :posn 0 :kind 0 :amount 0))
(:mop-direct sb-pretty::section-start :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-start :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::newline :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::section-start :package-name "SB-PRETTY")
(:mop-direct sb-pretty::section-start :precedance
 (sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pretty::section-start :classof common-lisp:structure-class)
(:mop-direct sb-pretty::section-start :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::section-start :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::section-start :slot
 ((:name sb-pretty::depth) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-pretty::section-start :slot
 ((:name sb-pretty::section-end) (:ordinal 2)
  (:type
   (common-lisp:or common-lisp:null sb-pretty::newline sb-pretty::block-end))))
(:mop-direct sb-pretty::block-start :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::block-start :package-name "SB-PRETTY")
(:mop-direct sb-pretty::block-start :precedance
 (sb-pretty::section-start sb-pretty::queued-op common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::block-start :classof common-lisp:structure-class)
(:mop-direct sb-pretty::block-start :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::block-start :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::block-start :slot
 ((:name sb-pretty::block-end) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-pretty::block-end))))
(:mop-direct sb-pretty::block-start :slot
 ((:name sb-pretty::prefix) (:ordinal 2)
  (:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-pretty::block-start :slot
 ((:name sb-pretty::suffix) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-pretty::block-start :prototype
 #S(sb-pretty::block-start
    :posn 0
    :depth 0
    :section-end 0
    :block-end 0
    :prefix 0
    :suffix 0))
(:mop-direct sb-pretty::newline :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::newline :package-name "SB-PRETTY")
(:mop-direct sb-pretty::newline :precedance
 (sb-pretty::section-start sb-pretty::queued-op common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::newline :classof common-lisp:structure-class)
(:mop-direct sb-pretty::newline :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::newline :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::newline :slot
 ((:name sb-pretty::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :linear :fill :miser :literal :mandatory))))
(:mop-direct sb-pretty::newline :prototype
 #S(sb-pretty::newline :posn 0 :depth 0 :section-end 0 :kind 0))
(:mop-direct sb-pretty::section-start :prototype
 #S(sb-pretty::section-start :posn 0 :depth 0 :section-end 0))
(:mop-direct sb-pretty::block-end :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-end :package-name "SB-PRETTY")
(:mop-direct sb-pretty::block-end :precedance
 (sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pretty::block-end :classof common-lisp:structure-class)
(:mop-direct sb-pretty::block-end :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::block-end :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-end :slot
 ((:name sb-pretty::suffix) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-pretty::block-end :prototype
 #S(sb-pretty::block-end :posn 0 :suffix 0))
(:mop-direct sb-pretty::queued-op :prototype #S(sb-pretty::queued-op :posn 0))
(:mop-direct sb-pretty:pprint-dispatch-table :superclass
 common-lisp:structure-object)
(:mop-direct sb-pretty:pprint-dispatch-table :package-name "SB-PRETTY")
(:mop-direct sb-pretty:pprint-dispatch-table :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty:pprint-dispatch-table :classof
 common-lisp:structure-class)
(:mop-direct sb-pretty:pprint-dispatch-table :typeof
 common-lisp:structure-class)
(:mop-direct sb-pretty:pprint-dispatch-table :superclass
 common-lisp:structure-object)
(:mop-direct sb-pretty:pprint-dispatch-table :slot
 ((:name sb-pretty::entries) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-pretty:pprint-dispatch-table :slot
 ((:name sb-pretty::cons-entries) (:ordinal 2)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eql))))
(:mop-direct sb-pretty:pprint-dispatch-table :prototype
 #<sb-pretty:pprint-dispatch-table {1004FAE0F3}>)
(:mop-direct common-lisp:pathname :superclass common-lisp:structure-object)
(:mop-direct common-lisp:logical-pathname :superclass common-lisp:pathname)
(:mop-direct common-lisp:pathname :package-name "COMMON-LISP")
(:mop-direct common-lisp:pathname :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:pathname :classof common-lisp:structure-class)
(:mop-direct common-lisp:pathname :typeof common-lisp:structure-class)
(:mop-direct common-lisp:pathname :superclass common-lisp:structure-object)
(:mop-direct common-lisp:pathname :slot
 ((:name sb-kernel:host) (:ordinal 1)
  (:type (common-lisp:or sb-kernel:host common-lisp:null))))
(:mop-direct common-lisp:pathname :slot
 ((:name sb-impl::device) (:ordinal 2)
  (:type
   (common-lisp:or common-lisp:simple-string
                   sb-impl::pathname-component-tokens))))
(:mop-direct common-lisp:pathname :slot
 ((:name common-lisp:directory) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct common-lisp:pathname :slot
 ((:name sb-impl::name) (:ordinal 4)
  (:type
   (common-lisp:or common-lisp:simple-string sb-impl::pattern
                   sb-impl::pathname-component-tokens))))
(:mop-direct common-lisp:pathname :slot
 ((:name common-lisp:type) (:ordinal 5)
  (:type
   (common-lisp:or common-lisp:simple-string sb-impl::pattern
                   sb-impl::pathname-component-tokens))))
(:mop-direct common-lisp:pathname :slot
 ((:name sb-impl::version) (:ordinal 6)
  (:type
   (common-lisp:or common-lisp:integer sb-impl::pathname-component-tokens
                   (common-lisp:member :newest)))))
(:mop-direct common-lisp:logical-pathname :superclass common-lisp:pathname)
(:mop-direct common-lisp:logical-pathname :package-name "COMMON-LISP")
(:mop-direct common-lisp:logical-pathname :precedance
 (common-lisp:pathname common-lisp:structure-object sb-pcl::slot-object
                       common-lisp:t))
(:mop-direct common-lisp:logical-pathname :classof common-lisp:structure-class)
(:mop-direct common-lisp:logical-pathname :typeof common-lisp:structure-class)
(:mop-direct common-lisp:logical-pathname :superclass common-lisp:pathname)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1000bf86d7, sp=0x7ffff2b9e6c8)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct common-lisp:logical-pathname :prototype
 #<common-lisp:logical-pathname
   (with no namestring)
   :HOST 0
   :DEVICE 0
   :DIRECTORY 0
   :NAME 0
   :TYPE 0
   :VERSION 0>)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1000bf86d7, sp=0x7ffff2b9e768)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct common-lisp:pathname :prototype
 #<common-lisp:pathname
   (with no namestring)
   :HOST 0
   :DEVICE 0
   :DIRECTORY 0
   :NAME 0
   :TYPE 0
   :VERSION 0>)
(:mop-direct sb-kernel:host :superclass common-lisp:structure-object)
(:mop-direct sb-impl::unix-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:logical-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:host :package-name "SB-KERNEL")
(:mop-direct sb-kernel:host :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:host :classof common-lisp:structure-class)
(:mop-direct sb-kernel:host :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:host :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::parse) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::parse-native) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse-native) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse-host) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse-directory) (:ordinal 6)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse-file) (:ordinal 7) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse-enough) (:ordinal 8) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::unparse-directory-separator) (:ordinal 9)
  (:initform (sb-int:missing-arg)) (:type common-lisp:simple-string)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-int:simplify-namestring) (:ordinal 10)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
 ((:name sb-impl::customary-case) (:ordinal 11)
  (:initform (sb-int:missing-arg)) (:type (common-lisp:member :upper :lower))))
(:mop-direct sb-impl::unix-host :superclass sb-kernel:host)
(:mop-direct sb-impl::unix-host :package-name "SB-IMPL")
(:mop-direct sb-impl::unix-host :precedance
 (sb-kernel:host common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-impl::unix-host :classof common-lisp:structure-class)
(:mop-direct sb-impl::unix-host :typeof common-lisp:structure-class)
(:mop-direct sb-impl::unix-host :superclass sb-kernel:host)
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::parse) (:ordinal 1)
  (:initform #'sb-impl::parse-unix-namestring) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::parse-native) (:ordinal 2)
  (:initform #'sb-impl::parse-native-unix-namestring)
  (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse) (:ordinal 3)
  (:initform #'sb-impl::unparse-unix-namestring) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse-native) (:ordinal 4)
  (:initform #'sb-impl::unparse-native-unix-namestring)
  (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse-host) (:ordinal 5)
  (:initform #'sb-impl::unparse-unix-host) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse-directory) (:ordinal 6)
  (:initform #'sb-impl::unparse-unix-directory) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse-file) (:ordinal 7)
  (:initform #'sb-impl::unparse-unix-file) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse-enough) (:ordinal 8)
  (:initform #'sb-impl::unparse-unix-enough) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::unparse-directory-separator) (:ordinal 9) (:initform "/")
  (:type common-lisp:simple-string)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-int:simplify-namestring) (:ordinal 10)
  (:initform #'sb-impl::simplify-unix-namestring) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
 ((:name sb-impl::customary-case) (:ordinal 11) (:initform :lower)
  (:type (common-lisp:member :upper :lower))))
(:mop-direct sb-impl::unix-host :prototype #<sb-impl::unix-host {1005025C93}>)
(:mop-direct sb-kernel:logical-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:logical-host :package-name "SB-KERNEL")
(:mop-direct sb-kernel:logical-host :precedance
 (sb-kernel:host common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:logical-host :classof common-lisp:structure-class)
(:mop-direct sb-kernel:logical-host :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:logical-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::parse) (:ordinal 1)
  (:initform #'sb-impl::parse-logical-namestring) (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::parse-native) (:ordinal 2)
  (:initform
   (common-lisp:lambda (common-lisp:&rest sb-impl::x)
     (common-lisp:error "called PARSE-NATIVE-NAMESTRING using a ~
                                  logical host: ~S"
                        (common-lisp:first sb-impl::x))))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse) (:ordinal 3)
  (:initform #'sb-impl::unparse-logical-namestring)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse-native) (:ordinal 4)
  (:initform
   (common-lisp:lambda (common-lisp:&rest sb-impl::x)
     (common-lisp:error "called NATIVE-NAMESTRING using a ~
                                  logical host: ~S"
                        (common-lisp:first sb-impl::x))))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse-host) (:ordinal 5)
  (:initform
   (common-lisp:lambda (sb-impl::x)
     (sb-impl::logical-host-name (sb-impl::%pathname-host sb-impl::x))))
  (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse-directory) (:ordinal 6)
  (:initform #'sb-impl::unparse-logical-directory)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse-file) (:ordinal 7)
  (:initform #'sb-impl::unparse-logical-file) (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse-enough) (:ordinal 8)
  (:initform #'sb-impl::unparse-enough-namestring)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::unparse-directory-separator) (:ordinal 9) (:initform ";")
  (:type common-lisp:simple-string)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-int:simplify-namestring) (:ordinal 10)
  (:initform #'common-lisp:identity) (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::customary-case) (:ordinal 11) (:initform :upper)
  (:type (common-lisp:member :upper :lower))))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::name) (:ordinal 12) (:initform "")
  (:type common-lisp:simple-string)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::translations) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-kernel:logical-host :slot
 ((:name sb-impl::canon-transls) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-kernel:logical-host :prototype #<sb-kernel:logical-host 0>)
(:mop-direct sb-kernel:host :prototype #<sb-kernel:host {10050677E3}>)
(:mop-direct common-lisp:readtable :superclass common-lisp:structure-object)
(:mop-direct common-lisp:readtable :package-name "COMMON-LISP")
(:mop-direct common-lisp:readtable :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:readtable :classof common-lisp:structure-class)
(:mop-direct common-lisp:readtable :typeof common-lisp:structure-class)
(:mop-direct common-lisp:readtable :superclass common-lisp:structure-object)
(:mop-direct common-lisp:readtable :slot
 ((:name sb-impl::character-attribute-array) (:ordinal 1)
  (:initform
   (common-lisp:make-array sb-int:base-char-code-limit :element-type
                           '(common-lisp:unsigned-byte 8) :initial-element
                           sb-impl::+char-attr-constituent+))
  (:type sb-impl::attribute-table)))
(:mop-direct common-lisp:readtable :slot
 ((:name sb-impl::character-attribute-hash-table) (:ordinal 2)
  (:initform (common-lisp:make-hash-table)) (:type common-lisp:hash-table)))
(:mop-direct common-lisp:readtable :slot
 ((:name sb-impl::character-macro-array) (:ordinal 3)
  (:initform
   (common-lisp:make-array sb-int:base-char-code-limit :initial-element
                           common-lisp:nil))
  (:type (common-lisp:simple-vector 128))))
(:mop-direct common-lisp:readtable :slot
 ((:name sb-impl::character-macro-hash-table) (:ordinal 4)
  (:initform (common-lisp:make-hash-table)) (:type common-lisp:hash-table)))
(:mop-direct common-lisp:readtable :slot
 ((:name sb-impl::%readtable-case) (:ordinal 5) (:initform :upcase)
  (:type (common-lisp:member :upcase :downcase :preserve :invert))))
(:mop-direct common-lisp:readtable :slot
 ((:name sb-impl::%readtable-normalization) (:ordinal 6)
  (:initform common-lisp:t) (:type common-lisp:boolean)))
(:mop-direct common-lisp:readtable :prototype
 #<common-lisp:readtable {1005089A03}>)
(:mop-direct common-lisp:hash-table :superclass common-lisp:structure-object)
(:mop-direct common-lisp:hash-table :package-name "COMMON-LISP")
(:mop-direct common-lisp:hash-table :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:hash-table :classof common-lisp:structure-class)
(:mop-direct common-lisp:hash-table :typeof common-lisp:structure-class)
(:mop-direct common-lisp:hash-table :superclass common-lisp:structure-object)
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::test) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::test-fun) (:ordinal 2) (:type common-lisp:function)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::hash-fun) (:ordinal 3) (:type common-lisp:function)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::rehash-size) (:ordinal 4)
  (:type (common-lisp:or sb-int:index (common-lisp:single-float (1.0))))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::rehash-threshold) (:ordinal 5)
  (:type (common-lisp:single-float (0.0) 1.0))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::rehash-trigger) (:ordinal 6) (:type sb-int:index)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::number-entries) (:ordinal 7) (:initform 0)
  (:type sb-int:index)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::table) (:ordinal 8) (:type common-lisp:simple-vector)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::next-weak-hash-table) (:ordinal 9) (:type common-lisp:null)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::weakness) (:ordinal 10)
  (:type
   (common-lisp:member common-lisp:nil :key :value :key-or-value
                       :key-and-value))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::next-free-kv) (:ordinal 11) (:initform 0)
  (:type sb-int:index)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::cache) (:ordinal 12)
  (:type (common-lisp:or common-lisp:null sb-int:index))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::index-vector) (:ordinal 13)
  (:type (common-lisp:simple-array sb-ext:word (common-lisp:*)))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::next-vector) (:ordinal 14)
  (:type (common-lisp:simple-array sb-ext:word (common-lisp:*)))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::hash-vector) (:ordinal 15)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:simple-array sb-ext:word (common-lisp:*))))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::lock) (:ordinal 16)
  (:initform (sb-thread:make-mutex :name "hash-table lock"))
  (:type sb-thread:mutex)))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::needs-rehash-p) (:ordinal 17)
  (:type (common-lisp:member common-lisp:nil common-lisp:t))))
(:mop-direct common-lisp:hash-table :slot
 ((:name sb-impl::synchronized-p) (:ordinal 18)
  (:type (common-lisp:member common-lisp:nil common-lisp:t))))
(:mop-direct common-lisp:hash-table :prototype
 #<common-lisp:hash-table :TEST 0 :COUNT 0 :WEAKNESS 0 {10050B8693}>)
(:mop-direct common-lisp:random-state :superclass common-lisp:structure-object)
(:mop-direct common-lisp:random-state :package-name "COMMON-LISP")
(:mop-direct common-lisp:random-state :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:random-state :classof common-lisp:structure-class)
(:mop-direct common-lisp:random-state :typeof common-lisp:structure-class)
(:mop-direct common-lisp:random-state :superclass common-lisp:structure-object)
(:mop-direct common-lisp:random-state :slot
 ((:name sb-kernel::state) (:ordinal 1)
  (:initform (sb-kernel::init-random-state))
  (:type (common-lisp:simple-array (common-lisp:unsigned-byte 32) (627)))))

(:mop-direct common-lisp:package :superclass common-lisp:structure-object)
(:mop-direct common-lisp:package :package-name "COMMON-LISP")
(:mop-direct common-lisp:package :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:package :classof common-lisp:structure-class)
(:mop-direct common-lisp:package :typeof common-lisp:structure-class)
(:mop-direct common-lisp:package :superclass common-lisp:structure-object)
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%name) (:ordinal 1)
  (:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%nicknames) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%use-list) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::tables) (:ordinal 4) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::mru-table-index) (:ordinal 5) (:initform 0)
  (:type sb-int:index)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%used-by-list) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::internal-symbols) (:ordinal 7)
  (:type sb-int:package-hashtable)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::external-symbols) (:ordinal 8)
  (:type sb-int:package-hashtable)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%shadowing-symbols) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::doc-string) (:ordinal 10)
  (:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::lock) (:ordinal 11) (:type common-lisp:boolean)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%implementation-packages) (:ordinal 12)
  (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::source-location) (:ordinal 13)
  (:type (common-lisp:or common-lisp:null sb-c:definition-source-location))))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%local-nicknames) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
 ((:name sb-impl::%locally-nicknamed-by) (:ordinal 15)
  (:type common-lisp:list)))
(:mop-direct common-lisp:package :prototype #<common-lisp:package 0>)
(:mop-direct sb-int:package-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-int:package-hashtable :package-name "SB-INT")
(:mop-direct sb-int:package-hashtable :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-hashtable :classof common-lisp:structure-class)
(:mop-direct sb-int:package-hashtable :typeof common-lisp:structure-class)
(:mop-direct sb-int:package-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-int:package-hashtable :slot
 ((:name sb-impl::cells) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-int:package-hashtable :slot
 ((:name sb-impl::size) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-int:package-hashtable :slot
 ((:name sb-impl::free) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-int:package-hashtable :slot
 ((:name sb-impl::deleted) (:ordinal 4) (:initform 0) (:type sb-int:index)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x1001da86a2, sp=0x7ffff2b9e508)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::transform :superclass common-lisp:structure-object)
(:mop-direct sb-c::transform :package-name "SB-C")
(:mop-direct sb-c::transform :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::transform :classof common-lisp:structure-class)
(:mop-direct sb-c::transform :typeof common-lisp:structure-class)
(:mop-direct sb-c::transform :superclass common-lisp:structure-object)
(:mop-direct sb-c::transform :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::transform :slot
 ((:name common-lisp:function) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-c::transform :slot
 ((:name sb-c::note) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:string)))
(:mop-direct sb-c::transform :slot
 ((:name sb-c::important) (:ordinal 4)
  (:type (common-lisp:member common-lisp:nil :slightly common-lisp:t))))
(:mop-direct sb-c::transform :prototype
 #<sb-c::transform :type 0 :note 0 :important 0>)
(:mop-direct sb-alien::alien-type-class :superclass
 common-lisp:structure-object)
(:mop-direct sb-alien::alien-type-class :package-name "SB-ALIEN")
(:mop-direct sb-alien::alien-type-class :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::alien-type-class :classof common-lisp:structure-class)
(:mop-direct sb-alien::alien-type-class :typeof common-lisp:structure-class)
(:mop-direct sb-alien::alien-type-class :superclass
 common-lisp:structure-object)
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::defstruct-name) (:ordinal 2) (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::include) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null sb-alien::alien-type-class))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::unparse) (:ordinal 4)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::type=) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::lisp-rep) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::alien-rep) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::extract-gen) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::deposit-gen) (:ordinal 9)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::naturalize-gen) (:ordinal 10)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::deport-gen) (:ordinal 11)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::deport-alloc-gen) (:ordinal 12)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::deport-pin-p) (:ordinal 13)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::arg-tn) (:ordinal 14)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name sb-alien::result-tn) (:ordinal 15)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
 ((:name common-lisp:subtypep) (:ordinal 16)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :prototype
 #<sb-alien::alien-type-class 0>)
(:mop-direct sb-format::format-directive :superclass
 common-lisp:structure-object)
(:mop-direct sb-format::format-directive :package-name "SB-FORMAT")
(:mop-direct sb-format::format-directive :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-format::format-directive :classof common-lisp:structure-class)
(:mop-direct sb-format::format-directive :typeof common-lisp:structure-class)
(:mop-direct sb-format::format-directive :superclass
 common-lisp:structure-object)
(:mop-direct sb-format::format-directive :slot
 ((:name common-lisp:string) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-string)))
(:mop-direct sb-format::format-directive :slot
 ((:name sb-format::start) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:and common-lisp:unsigned-byte common-lisp:fixnum))))
(:mop-direct sb-format::format-directive :slot
 ((:name sb-format::end) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type (common-lisp:and common-lisp:unsigned-byte common-lisp:fixnum))))
(:mop-direct sb-format::format-directive :slot
 ((:name common-lisp:character) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type common-lisp:character)))
(:mop-direct sb-format::format-directive :slot
 ((:name sb-format::colonp) (:ordinal 5)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-format::format-directive :slot
 ((:name sb-format::atsignp) (:ordinal 6)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-format::format-directive :slot
 ((:name sb-format::params) (:ordinal 7) (:type common-lisp:list)))

(:mop-direct sb-kernel::condition-slot :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::condition-slot :package-name "SB-KERNEL")
(:mop-direct sb-kernel::condition-slot :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::condition-slot :classof common-lisp:structure-class)
(:mop-direct sb-kernel::condition-slot :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::condition-slot :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::initargs) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::readers) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::writers) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::initform-p) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::initform) (:ordinal 6)))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::initfunction) (:ordinal 7)
  (:initform (sb-int:missing-arg))))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::allocation) (:ordinal 8)
  (:type (common-lisp:member :instance :class common-lisp:nil))))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name sb-kernel::cell) (:ordinal 9)
  (:type (common-lisp:or common-lisp:cons common-lisp:null))))
(:mop-direct sb-kernel::condition-slot :slot
 ((:name common-lisp:documentation) (:ordinal 10)
  (:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-kernel::condition-slot :prototype
 #S(sb-kernel::condition-slot
    :name 0
    :initargs 0
    :readers 0
    :writers 0
    :initform-p 0
    :initform 0
    :initfunction 0
    :allocation 0
    :cell 0
    :documentation 0))
(:mop-direct sb-c::source-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::source-info :package-name "SB-C")
(:mop-direct sb-c::source-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::source-info :classof common-lisp:structure-class)
(:mop-direct sb-c::source-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::source-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::source-info :slot
 ((:name sb-c::start-time) (:ordinal 1)
  (:initform (common-lisp:get-universal-time))
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::source-info :slot
 ((:name sb-c::start-real-time) (:ordinal 2)
  (:initform (common-lisp:get-internal-real-time))
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::source-info :slot
 ((:name sb-c::file-info) (:ordinal 3)
  (:type (common-lisp:or sb-c::file-info common-lisp:null))))
(:mop-direct sb-c::source-info :slot
 ((:name common-lisp:stream) (:ordinal 4)
  (:type (common-lisp:or common-lisp:stream common-lisp:null))))
(:mop-direct sb-c::source-info :slot
 ((:name sb-c::last-defn-source-loc) (:ordinal 5)))
(:mop-direct sb-c::source-info :slot
 ((:name sb-c::parent) (:ordinal 6)
  (:type (common-lisp:or sb-c::source-info common-lisp:null))))
(:mop-direct sb-c::source-info :prototype #<sb-c::source-info {10051E1713}>)
(:mop-direct sb-c::file-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::file-info :package-name "SB-C")
(:mop-direct sb-c::file-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::file-info :classof common-lisp:structure-class)
(:mop-direct sb-c::file-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::file-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:pathname (common-lisp:eql :lisp)))))
(:mop-direct sb-c::file-info :slot ((:name sb-c::external-format) (:ordinal 2)))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::untruename) (:ordinal 3)
  (:type (common-lisp:or common-lisp:pathname common-lisp:null))))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::write-date) (:ordinal 4)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::source-root) (:ordinal 5) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::forms) (:ordinal 6)
  (:initform
   (common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))
  (:type (common-lisp:vector common-lisp:t))))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::positions) (:ordinal 7)
  (:initform
   (common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))
  (:type (common-lisp:vector common-lisp:t))))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::subforms) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null (common-lisp:vector common-lisp:t)))))
(:mop-direct sb-c::file-info :slot
 ((:name sb-c::style-warning-tracker) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-c::file-info :prototype #<sb-c::file-info 0>)
(:mop-direct sb-c::ir2-nlx-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-nlx-info :package-name "SB-C")
(:mop-direct sb-c::ir2-nlx-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::ir2-nlx-info :classof common-lisp:structure-class)
(:mop-direct sb-c::ir2-nlx-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::ir2-nlx-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-nlx-info :slot
 ((:name sb-c::home) (:ordinal 1)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-nlx-info :slot
 ((:name sb-c::save-sp) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c:tn)))
(:mop-direct sb-c::ir2-nlx-info :slot
 ((:name sb-c::dynamic-state) (:ordinal 3)
  (:initform
   (common-lisp:list* (sb-c:make-stack-pointer-tn)
                      (sb-c:make-dynamic-state-tns)))
  (:type common-lisp:list)))
(:mop-direct sb-c::ir2-nlx-info :slot
 ((:name sb-c::target) (:ordinal 4) (:initform (sb-assem:gen-label))
  (:type sb-assem:label)))
(:mop-direct sb-c::ir2-nlx-info :prototype
 #<sb-c::ir2-nlx-info :home 0 :save-sp 0 :dynamic-state 0>)
(:mop-direct sb-c::return-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::return-info :package-name "SB-C")
(:mop-direct sb-c::return-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::return-info :classof common-lisp:structure-class)
(:mop-direct sb-c::return-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::return-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::return-info :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :fixed :unknown))))
(:mop-direct sb-c::return-info :slot
 ((:name common-lisp:count) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or sb-int:index (common-lisp:member :unknown)))))
(:mop-direct sb-c::return-info :slot
 ((:name sb-c::types) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::return-info :slot
 ((:name sb-c::locations) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::return-info :prototype
 #<sb-c::return-info :kind 0 :count 0 :types 0 :locations 0>)
(:mop-direct sb-c::ir2-physenv :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-physenv :package-name "SB-C")
(:mop-direct sb-c::ir2-physenv :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::ir2-physenv :classof common-lisp:structure-class)
(:mop-direct sb-c::ir2-physenv :typeof common-lisp:structure-class)
(:mop-direct sb-c::ir2-physenv :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-kernel:closure) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::old-fp) (:ordinal 2)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::return-pc) (:ordinal 3)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::return-pc-pass) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-c:tn)))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::number-stack-p) (:ordinal 5) (:type common-lisp:boolean)))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::live-tns) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::debug-live-tns) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::elsewhere-start) (:ordinal 8)
  (:type (common-lisp:or sb-assem:label common-lisp:null))))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::environment-start) (:ordinal 9)
  (:type (common-lisp:or sb-assem:label common-lisp:null))))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::closure-save-tn) (:ordinal 10)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-physenv :slot
 ((:name sb-c::bsp-save-tn) (:ordinal 11)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-physenv :prototype
 #<sb-c::ir2-physenv
   :closure 0
   :old-fp 0
   :return-pc 0
   :return-pc-pass 0
   :closure-save-tn 0>)
(:mop-direct sb-c::entry-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::entry-info :package-name "SB-C")
(:mop-direct sb-c::entry-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::entry-info :classof common-lisp:structure-class)
(:mop-direct sb-c::entry-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::entry-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::entry-info :slot
 ((:name sb-c::closure-tn) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-c:tn))))
(:mop-direct sb-c::entry-info :slot
 ((:name sb-c::offset) (:ordinal 2)
  (:type (common-lisp:or sb-assem:label common-lisp:null))))
(:mop-direct sb-c::entry-info :slot
 ((:name sb-c::name) (:ordinal 3) (:initform "<not computed>")
  (:type
   (common-lisp:or common-lisp:simple-string common-lisp:list
                   common-lisp:symbol))))
(:mop-direct sb-c::entry-info :slot
 ((:name sb-c::arguments) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::entry-info :slot
 ((:name common-lisp:type) (:ordinal 5) (:initform 'common-lisp:function)
  (:type
   (common-lisp:or common-lisp:list
                   (common-lisp:member common-lisp:function)))))
(:mop-direct sb-c::entry-info :slot
 ((:name sb-int:info) (:ordinal 6)
  (:type
   (common-lisp:or common-lisp:null common-lisp:simple-vector
                   common-lisp:string
                   (common-lisp:cons common-lisp:string
                                     common-lisp:simple-vector)))))
(:mop-direct sb-c::entry-info :prototype
 #S(sb-c::entry-info
    :closure-tn 0
    :offset 0
    :name 0
    :arguments 0
    :type 0
    :info 0))
(:mop-direct sb-c::ir2-lvar :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-lvar :package-name "SB-C")
(:mop-direct sb-c::ir2-lvar :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::ir2-lvar :classof common-lisp:structure-class)
(:mop-direct sb-c::ir2-lvar :typeof common-lisp:structure-class)
(:mop-direct sb-c::ir2-lvar :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-lvar :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform :fixed)
  (:type (common-lisp:member :delayed :fixed :unknown :unused))))
(:mop-direct sb-c::ir2-lvar :slot
 ((:name sb-c:primitive-type) (:ordinal 2)
  (:type (common-lisp:or sb-c:primitive-type common-lisp:null))))
(:mop-direct sb-c::ir2-lvar :slot
 ((:name sb-c::locs) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-lvar :slot
 ((:name sb-c::stack-pointer) (:ordinal 4)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-lvar :prototype
 #<sb-c::ir2-lvar :kind 0 :primitive-type 0 :locs 0>)
(:mop-direct sb-c:primitive-type :superclass common-lisp:structure-object)
(:mop-direct sb-c:primitive-type :package-name "SB-C")
(:mop-direct sb-c:primitive-type :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:primitive-type :classof common-lisp:structure-class)
(:mop-direct sb-c:primitive-type :typeof common-lisp:structure-class)
(:mop-direct sb-c:primitive-type :superclass common-lisp:structure-object)
(:mop-direct sb-c:primitive-type :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c:primitive-type :slot
 ((:name sb-c::scs) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c:primitive-type :slot
 ((:name sb-c::specifier) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:symbol common-lisp:list))))
(:mop-direct sb-c:primitive-type :slot
 ((:name sb-c::check) (:ordinal 4)
  (:type (common-lisp:or sb-c::template common-lisp:null))))
(:mop-direct sb-c:primitive-type :prototype #<sb-c:primitive-type :name 0>)
(:mop-direct sb-kernel:key-info :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:key-info :package-name "SB-KERNEL")
(:mop-direct sb-kernel:key-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:key-info :classof common-lisp:structure-class)
(:mop-direct sb-kernel:key-info :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:key-info :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:key-info :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-kernel:key-info :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-kernel:key-info :prototype
 #S(sb-kernel:key-info :name 0 :type 0))
(:mop-direct sb-int:xset :superclass common-lisp:structure-object)
(:mop-direct sb-int:xset :package-name "SB-INT")
(:mop-direct sb-int:xset :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:xset :classof common-lisp:structure-class)
(:mop-direct sb-int:xset :typeof common-lisp:structure-class)
(:mop-direct sb-int:xset :superclass common-lisp:structure-object)
(:mop-direct sb-int:xset :slot
 ((:name sb-kernel::list-size) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-int:xset :slot
 ((:name sb-kernel::data) (:ordinal 2)
  (:type (common-lisp:or common-lisp:list common-lisp:hash-table))))
(:mop-direct sb-int:xset :prototype #S(sb-int:xset :list-size 0 :data 0))
(:mop-direct sb-int:sset :superclass common-lisp:structure-object)
(:mop-direct sb-regalloc::ordered-set :superclass sb-int:sset)
(:mop-direct sb-int:sset :package-name "SB-INT")
(:mop-direct sb-int:sset :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:sset :classof common-lisp:structure-class)
(:mop-direct sb-int:sset :typeof common-lisp:structure-class)
(:mop-direct sb-int:sset :superclass common-lisp:structure-object)
(:mop-direct sb-int:sset :slot
 ((:name common-lisp:vector) (:ordinal 1) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-int:sset :slot
 ((:name sb-c::free) (:ordinal 2) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-int:sset :slot
 ((:name common-lisp:count) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-regalloc::ordered-set :superclass sb-int:sset)
(:mop-direct sb-regalloc::ordered-set :package-name "SB-REGALLOC")
(:mop-direct sb-regalloc::ordered-set :precedance
 (sb-int:sset common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-regalloc::ordered-set :classof common-lisp:structure-class)
(:mop-direct sb-regalloc::ordered-set :typeof common-lisp:structure-class)
(:mop-direct sb-regalloc::ordered-set :superclass sb-int:sset)
(:mop-direct sb-regalloc::ordered-set :slot
 ((:name sb-regalloc::members) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-regalloc::ordered-set :prototype
 #<sb-regalloc::ordered-set :vector 0>)
(:mop-direct sb-int:sset :prototype #<sb-int:sset :vector 0>)
(:mop-direct sb-c::modular-fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-fun-info :package-name "SB-C")
(:mop-direct sb-c::modular-fun-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::modular-fun-info :classof common-lisp:structure-class)
(:mop-direct sb-c::modular-fun-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::modular-fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-fun-info :slot
 ((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-c::modular-fun-info :slot
 ((:name sb-c::width) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:integer 0))))
(:mop-direct sb-c::modular-fun-info :slot
 ((:name sb-c::signedp) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:boolean)))
(:mop-direct sb-c::modular-fun-info :slot
 ((:name sb-c::lambda-list) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-c::modular-fun-info :slot
 ((:name sb-c::prototype) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-c::modular-fun-info :prototype
 #S(sb-c::modular-fun-info
    :name 0
    :width 0
    :signedp 0
    :lambda-list 0
    :prototype 0))
(:mop-direct sb-c::modular-class :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-class :package-name "SB-C")
(:mop-direct sb-c::modular-class :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::modular-class :classof common-lisp:structure-class)
(:mop-direct sb-c::modular-class :typeof common-lisp:structure-class)
(:mop-direct sb-c::modular-class :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-class :slot
 ((:name sb-c::funs) (:ordinal 1)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))))
(:mop-direct sb-c::modular-class :slot
 ((:name sb-c::versions) (:ordinal 2)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))))
(:mop-direct sb-c::modular-class :slot ((:name sb-c::widths) (:ordinal 3)))
(:mop-direct sb-c::modular-class :prototype
 #S(sb-c::modular-class :funs 0 :versions 0 :widths 0))
(:mop-direct sb-c::fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::fun-info :package-name "SB-C")
(:mop-direct sb-c::fun-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::fun-info :classof common-lisp:structure-class)
(:mop-direct sb-c::fun-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c:attributes) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c:attributes)))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::transforms) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c:derive-type) (:ordinal 3)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c:optimizer) (:ordinal 4)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::destroyed-constant-args) (:ordinal 5)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c:ltn-annotate) (:ordinal 6)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c:ir2-convert) (:ordinal 7)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::stack-allocate-result) (:ordinal 8)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::constraint-propagate) (:ordinal 9)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::constraint-propagate-if) (:ordinal 10)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::templates) (:ordinal 11) (:type common-lisp:list)))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::predicate-type) (:ordinal 12)
  (:type (common-lisp:or sb-kernel:ctype common-lisp:null))))
(:mop-direct sb-c::fun-info :slot
 ((:name sb-c::result-arg) (:ordinal 13)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::fun-info :prototype
 #<sb-c::fun-info
   :transforms 0
   :derive-type 0
   :optimizer 0
   :ltn-annotate 0
   :ir2-convert 0
   :templates 0
   :predicate-type 0>)
(:mop-direct sb-c::event-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::event-info :package-name "SB-C")
(:mop-direct sb-c::event-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::event-info :classof common-lisp:structure-class)
(:mop-direct sb-c::event-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::event-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::event-info :slot
 ((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-c::event-info :slot
 ((:name sb-c::description) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:string)))
(:mop-direct sb-c::event-info :slot
 ((:name sb-c::var) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-c::event-info :slot
 ((:name common-lisp:count) (:ordinal 4) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-c::event-info :slot
 ((:name sb-c::level) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::event-info :slot
 ((:name sb-c::action) (:ordinal 6)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::event-info :prototype
 #S(sb-c::event-info :name 0 :description 0 :var 0 :count 0 :level 0 :action 0))
(:mop-direct sb-impl::external-format :superclass common-lisp:structure-object)
(:mop-direct sb-impl::external-format :package-name "SB-IMPL")
(:mop-direct sb-impl::external-format :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::external-format :classof common-lisp:structure-class)
(:mop-direct sb-impl::external-format :typeof common-lisp:structure-class)
(:mop-direct sb-impl::external-format :superclass common-lisp:structure-object)
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::names) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::default-replacement-character) (:ordinal 2)
  (:initform (sb-int:missing-arg)) (:type common-lisp:character)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::read-n-chars-fun) (:ordinal 3)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::read-char-fun) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::write-n-bytes-fun) (:ordinal 5)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::write-char-none-buffered-fun) (:ordinal 6)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::write-char-line-buffered-fun) (:ordinal 7)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::write-char-full-buffered-fun) (:ordinal 8)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::resync-fun) (:ordinal 9)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::bytes-for-char-fun) (:ordinal 10)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::read-c-string-fun) (:ordinal 11)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::write-c-string-fun) (:ordinal 12)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::octets-to-string-fun) (:ordinal 13)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :slot
 ((:name sb-impl::string-to-octets-fun) (:ordinal 14)
  (:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-impl::external-format :prototype
 #S(sb-impl::external-format
    :names 0
    :default-replacement-character 0
    :read-n-chars-fun 0
    :read-char-fun 0
    :write-n-bytes-fun 0
    :write-char-none-buffered-fun 0
    :write-char-line-buffered-fun 0
    :write-char-full-buffered-fun 0
    :resync-fun 0
    :bytes-for-char-fun 0
    :read-c-string-fun 0
    :write-c-string-fun 0
    :octets-to-string-fun 0
    :string-to-octets-fun 0))
(:mop-direct sb-impl::buffer :superclass common-lisp:structure-object)
(:mop-direct sb-impl::buffer :package-name "SB-IMPL")
(:mop-direct sb-impl::buffer :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::buffer :classof common-lisp:structure-class)
(:mop-direct sb-impl::buffer :typeof common-lisp:structure-class)
(:mop-direct sb-impl::buffer :superclass common-lisp:structure-object)
(:mop-direct sb-impl::buffer :slot
 ((:name sb-impl::sap) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-sys:system-area-pointer)))
(:mop-direct sb-impl::buffer :slot
 ((:name common-lisp:length) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::buffer :slot
 ((:name sb-impl::head) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::buffer :slot
 ((:name sb-impl::tail) (:ordinal 4) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::buffer :prototype
 #S(sb-impl::buffer :sap 0 :length 0 :head 0 :tail 0))
(:mop-direct sb-impl::pollfds :superclass common-lisp:structure-object)
(:mop-direct sb-impl::pollfds :package-name "SB-IMPL")
(:mop-direct sb-impl::pollfds :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::pollfds :classof common-lisp:structure-class)
(:mop-direct sb-impl::pollfds :typeof common-lisp:structure-class)
(:mop-direct sb-impl::pollfds :superclass common-lisp:structure-object)
(:mop-direct sb-impl::pollfds :slot ((:name common-lisp:list) (:ordinal 1)))
(:mop-direct sb-impl::pollfds :slot ((:name sb-impl::fds) (:ordinal 2)))
(:mop-direct sb-impl::pollfds :slot ((:name sb-impl::n-fds) (:ordinal 3)))
(:mop-direct sb-impl::pollfds :slot ((:name common-lisp:map) (:ordinal 4)))
(:mop-direct sb-impl::pollfds :prototype
 #S(sb-impl::pollfds :list 0 :fds 0 :n-fds 0 :map 0))
(:mop-direct sb-impl::handler :superclass common-lisp:structure-object)
(:mop-direct sb-impl::handler :package-name "SB-IMPL")
(:mop-direct sb-impl::handler :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::handler :classof common-lisp:structure-class)
(:mop-direct sb-impl::handler :typeof common-lisp:structure-class)
(:mop-direct sb-impl::handler :superclass common-lisp:structure-object)
(:mop-direct sb-impl::handler :slot
 ((:name sb-impl::direction) (:ordinal 1)
  (:type (common-lisp:member :input :output))))
(:mop-direct sb-impl::handler :slot
 ((:name sb-impl::descriptor) (:ordinal 2) (:initform 0)
  (:type (common-lisp:and common-lisp:fixnum common-lisp:unsigned-byte))))
(:mop-direct sb-impl::handler :slot ((:name sb-impl::active) (:ordinal 3)))
(:mop-direct sb-impl::handler :slot
 ((:name common-lisp:function) (:ordinal 4) (:type common-lisp:function)))
(:mop-direct sb-impl::handler :slot ((:name sb-impl::bogus) (:ordinal 5)))
(:mop-direct sb-impl::handler :prototype
 #<sb-impl::handler 0 on BOGUS descriptor 0: 0>)
(:mop-direct sb-impl::huffman-node :superclass common-lisp:structure-object)
(:mop-direct sb-impl::huffman-pair :superclass sb-impl::huffman-node)
(:mop-direct sb-impl::huffman-node :package-name "SB-IMPL")
(:mop-direct sb-impl::huffman-node :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::huffman-node :classof common-lisp:structure-class)
(:mop-direct sb-impl::huffman-node :typeof common-lisp:structure-class)
(:mop-direct sb-impl::huffman-node :superclass common-lisp:structure-object)
(:mop-direct sb-impl::huffman-node :slot ((:name sb-impl::key) (:ordinal 1)))
(:mop-direct sb-impl::huffman-node :slot ((:name sb-impl::weight) (:ordinal 2)))
(:mop-direct sb-impl::huffman-pair :superclass sb-impl::huffman-node)
(:mop-direct sb-impl::huffman-pair :package-name "SB-IMPL")
(:mop-direct sb-impl::huffman-pair :precedance
 (sb-impl::huffman-node common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-impl::huffman-pair :classof common-lisp:structure-class)
(:mop-direct sb-impl::huffman-pair :typeof common-lisp:structure-class)
(:mop-direct sb-impl::huffman-pair :superclass sb-impl::huffman-node)
(:mop-direct sb-impl::huffman-pair :slot ((:name sb-impl::left) (:ordinal 1)))
(:mop-direct sb-impl::huffman-pair :slot ((:name sb-impl::right) (:ordinal 2)))
(:mop-direct sb-impl::huffman-pair :prototype
 #S(sb-impl::huffman-pair :key 0 :weight 0 :left 0 :right 0))
(:mop-direct sb-impl::huffman-node :prototype
 #S(sb-impl::huffman-node :key 0 :weight 0))
(:mop-direct sb-vm::specialized-array-element-type-properties :superclass
 common-lisp:structure-object)
(:mop-direct sb-vm::specialized-array-element-type-properties :package-name
 "SB-VM")
(:mop-direct sb-vm::specialized-array-element-type-properties :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::specialized-array-element-type-properties :classof
 common-lisp:structure-class)
(:mop-direct sb-vm::specialized-array-element-type-properties :typeof
 common-lisp:structure-class)
(:mop-direct sb-vm::specialized-array-element-type-properties :superclass
 common-lisp:structure-object)
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::specifier) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:symbol common-lisp:list))))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-kernel:ctype) (:ordinal 2)
  (:type (common-lisp:or sb-kernel:ctype common-lisp:null))))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::fixnum-p) (:ordinal 3) (:type common-lisp:boolean)))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::initial-element-default) (:ordinal 4)
  (:initform (sb-int:missing-arg))))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::n-bits) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::typecode) (:ordinal 6) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::complex-typecode) (:ordinal 7)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-c:primitive-type-name) (:ordinal 8)
  (:initform (sb-int:missing-arg)) (:type common-lisp:symbol)))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::n-pad-elements) (:ordinal 9) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-vm::specialized-array-element-type-properties :slot
 ((:name sb-vm::importance) (:ordinal 10) (:initform (sb-int:missing-arg))
  (:type common-lisp:fixnum)))
(:mop-direct sb-vm::specialized-array-element-type-properties :prototype
 #S(sb-vm::specialized-array-element-type-properties
    :specifier 0
    :ctype 0
    :fixnum-p 0
    :initial-element-default 0
    :n-bits 0
    :typecode 0
    :complex-typecode 0
    :primitive-type-name 0
    :n-pad-elements 0
    :importance 0))
(:mop-direct sb-alien::callback-info :superclass common-lisp:structure-object)
(:mop-direct sb-alien::callback-info :package-name "SB-ALIEN")
(:mop-direct sb-alien::callback-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::callback-info :classof common-lisp:structure-class)
(:mop-direct sb-alien::callback-info :typeof common-lisp:structure-class)
(:mop-direct sb-alien::callback-info :superclass common-lisp:structure-object)
(:mop-direct sb-alien::callback-info :slot
 ((:name sb-alien::specifier) (:ordinal 1)))
(:mop-direct sb-alien::callback-info :slot
 ((:name common-lisp:function) (:ordinal 2)))
(:mop-direct sb-alien::callback-info :slot
 ((:name sb-alien::wrapper) (:ordinal 3)))
(:mop-direct sb-alien::callback-info :slot ((:name sb-int:index) (:ordinal 4)))
(:mop-direct sb-alien::callback-info :prototype
 #S(sb-alien::callback-info :specifier 0 :function 0 :wrapper 0 :index 0))
(:mop-direct sb-impl::encapsulation-info :superclass
 common-lisp:structure-object)
(:mop-direct sb-impl::encapsulation-info :package-name "SB-IMPL")
(:mop-direct sb-impl::encapsulation-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::encapsulation-info :classof common-lisp:structure-class)
(:mop-direct sb-impl::encapsulation-info :typeof common-lisp:structure-class)
(:mop-direct sb-impl::encapsulation-info :superclass
 common-lisp:structure-object)
(:mop-direct sb-impl::encapsulation-info :slot
 ((:name common-lisp:type) (:ordinal 1)))
(:mop-direct sb-impl::encapsulation-info :slot
 ((:name sb-impl::definition) (:ordinal 2) (:type common-lisp:function)))
(:mop-direct sb-impl::encapsulation-info :prototype
 #S(sb-impl::encapsulation-info :type 0 :definition 0))
(:mop-direct sb-c::info-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-c::info-hashtable :package-name "SB-C")
(:mop-direct sb-c::info-hashtable :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::info-hashtable :classof common-lisp:structure-class)
(:mop-direct sb-c::info-hashtable :typeof common-lisp:structure-class)
(:mop-direct sb-c::info-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-c::info-hashtable :slot
 ((:name sb-c::storage) (:ordinal 1) (:initform (sb-c::make-info-storage 30))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-c::info-hashtable :slot
 ((:name sb-c::comparator) (:ordinal 2) (:initform #'common-lisp:equal)
  (:type common-lisp:function)))
(:mop-direct sb-c::info-hashtable :slot
 ((:name sb-c::hash-function) (:ordinal 3)
  (:initform #'sb-c::globaldb-sxhashoid) (:type common-lisp:function)))
(:mop-direct sb-c::info-hashtable :slot
 ((:name sb-c::mutex) (:ordinal 4) (:initform (sb-thread:make-mutex))))
(:mop-direct sb-c::info-hashtable :slot
 ((:name common-lisp:count) (:ordinal 5) (:initform 0) (:type sb-ext:word)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x1001de982c, sp=0x7ffff2b9e528)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel::raw-slot-data :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::raw-slot-data :package-name "SB-KERNEL")
(:mop-direct sb-kernel::raw-slot-data :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::raw-slot-data :classof common-lisp:structure-class)
(:mop-direct sb-kernel::raw-slot-data :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::raw-slot-data :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::raw-slot-data :slot
 ((:name sb-kernel::raw-type) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:symbol common-lisp:cons))))
(:mop-direct sb-kernel::raw-slot-data :slot
 ((:name sb-kernel::accessor-name) (:ordinal 2)
  (:initform (sb-int:missing-arg)) (:type common-lisp:symbol)))
(:mop-direct sb-kernel::raw-slot-data :slot
 ((:name sb-kernel::init-vop) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-kernel::raw-slot-data :slot
 ((:name sb-kernel::n-words) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type (common-lisp:and sb-int:index (common-lisp:integer 1)))))
(:mop-direct sb-kernel::raw-slot-data :slot
 ((:name sb-kernel::alignment) (:ordinal 5) (:initform 1)
  (:type (common-lisp:integer 1 2))))
(:mop-direct sb-kernel::raw-slot-data :slot
 ((:name sb-kernel::comparer) (:ordinal 6) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct sb-kernel::raw-slot-data :prototype
 #S(sb-kernel::raw-slot-data
    :raw-type 0
    :accessor-name 0
    :init-vop 0
    :n-words 0
    :alignment 0
    :comparer 0))
(:mop-direct sb-alien-internals:alien-value :superclass
 common-lisp:structure-object)
(:mop-direct sb-alien-internals:alien-value :package-name "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-value :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien-internals:alien-value :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-value :typeof common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-value :superclass
 common-lisp:structure-object)
(:mop-direct sb-alien-internals:alien-value :slot
 ((:name sb-kernel::sap) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-sys:system-area-pointer)))
(:mop-direct sb-alien-internals:alien-value :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-alien-internals:alien-type)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x1001dc7508, sp=0x7ffff2b9e4b0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-thread:thread :superclass common-lisp:structure-object)
(:mop-direct sb-thread:foreign-thread :superclass sb-thread:thread)
(:mop-direct sb-thread:thread :package-name "SB-THREAD")
(:mop-direct sb-thread:thread :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:thread :classof common-lisp:structure-class)
(:mop-direct sb-thread:thread :typeof common-lisp:structure-class)
(:mop-direct sb-thread:thread :superclass common-lisp:structure-object)
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::name) (:ordinal 1)
  (:type (common-lisp:or sb-thread:thread-name common-lisp:null))))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::%alive-p) (:ordinal 2) (:type common-lisp:boolean)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::%ephemeral-p) (:ordinal 3) (:type common-lisp:boolean)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::os-thread) (:ordinal 4) (:initform 0) (:type sb-ext:word)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::interruptions) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::result) (:ordinal 6) (:initform 0)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::interruptions-lock) (:ordinal 7)
  (:initform (sb-thread:make-mutex :name "thread interruptions lock"))
  (:type sb-thread:mutex)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::result-lock) (:ordinal 8)
  (:initform (sb-thread:make-mutex :name "thread result lock"))
  (:type sb-thread:mutex)))
(:mop-direct sb-thread:thread :slot
 ((:name sb-thread::waiting-for) (:ordinal 9)))
(:mop-direct sb-thread:foreign-thread :superclass sb-thread:thread)
(:mop-direct sb-thread:foreign-thread :package-name "SB-THREAD")
(:mop-direct sb-thread:foreign-thread :precedance
 (sb-thread:thread common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-thread:foreign-thread :classof common-lisp:structure-class)
(:mop-direct sb-thread:foreign-thread :typeof common-lisp:structure-class)
(:mop-direct sb-thread:foreign-thread :superclass sb-thread:thread)
(:mop-direct sb-thread:foreign-thread :prototype
 #<sb-thread:foreign-thread 0 waiting on: 0 {1005584E43}>)
(:mop-direct sb-thread:thread :prototype
 #<sb-thread:thread 0 waiting on: 0 {100559B6F3}>)
(:mop-direct sb-sys:structure!object :superclass common-lisp:structure-object)
(:mop-direct sb-debug::trace-info :superclass sb-sys:structure!object)
(:mop-direct sb-regalloc::interference-graph :superclass
 sb-sys:structure!object)
(:mop-direct sb-impl::pattern :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:defstruct-slot-description :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:local-alien-info :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:alien-record-field :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:heap-alien-info :superclass
 sb-sys:structure!object)
(:mop-direct sb-c:definition-source-location :superclass
 sb-sys:structure!object)
(:mop-direct sb-c::debug-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-source :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-fun :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop-parse :superclass sb-sys:structure!object)
(:mop-direct sb-c::operand-parse :superclass sb-sys:structure!object)
(:mop-direct sb-c::global-conflicts :superclass sb-sys:structure!object)
(:mop-direct sb-c:sc :superclass sb-sys:structure!object)
(:mop-direct sb-c:sb :superclass sb-sys:structure!object)
(:mop-direct sb-c::template :superclass sb-sys:structure!object)
(:mop-direct sb-c:tn-ref :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop :superclass sb-sys:structure!object)
(:mop-direct sb-c::ir2-component :superclass sb-sys:structure!object)
(:mop-direct sb-assem::annotation :superclass sb-sys:structure!object)
(:mop-direct sb-c::arg-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::nlx-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::tail-set :superclass sb-sys:structure!object)
(:mop-direct sb-c::physenv :superclass sb-sys:structure!object)
(:mop-direct sb-c::cleanup :superclass sb-sys:structure!object)
(:mop-direct sb-c:component :superclass sb-sys:structure!object)
(:mop-direct sb-c::block-annotation :superclass sb-sys:structure!object)
(:mop-direct sb-c::cloop :superclass sb-sys:structure!object)
(:mop-direct sb-c::lvar :superclass sb-sys:structure!object)
(:mop-direct sb-c::ctran :superclass sb-sys:structure!object)
(:mop-direct sb-int:sset-element :superclass sb-sys:structure!object)
(:mop-direct sb-vm:primitive-object :superclass sb-sys:structure!object)
(:mop-direct sb-vm::prim-object-slot :superclass sb-sys:structure!object)
(:mop-direct sb-kernel::classoid-cell :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:layout :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:defstruct-description :superclass
 sb-sys:structure!object)
(:mop-direct sb-c::debug-name-marker :superclass sb-sys:structure!object)
(:mop-direct sb-c::undefined-warning :superclass sb-sys:structure!object)
(:mop-direct sb-vm::room-info :superclass sb-sys:structure!object)
(:mop-direct sb-alien-internals:alien-type :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:ctype :superclass sb-sys:structure!object)
(:mop-direct sb-kernel::type-class :superclass sb-sys:structure!object)
(:mop-direct sb-thread:mutex :superclass sb-sys:structure!object)
(:mop-direct sb-sys:structure!object :package-name "SB-SYS")
(:mop-direct sb-sys:structure!object :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:structure!object :classof common-lisp:structure-class)
(:mop-direct sb-sys:structure!object :typeof common-lisp:structure-class)
(:mop-direct sb-sys:structure!object :superclass common-lisp:structure-object)
(:mop-direct sb-debug::trace-info :superclass sb-sys:structure!object)
(:mop-direct sb-debug::trace-info :package-name "SB-DEBUG")
(:mop-direct sb-debug::trace-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-debug::trace-info :classof common-lisp:structure-class)
(:mop-direct sb-debug::trace-info :typeof common-lisp:structure-class)
(:mop-direct sb-debug::trace-info :superclass sb-sys:structure!object)
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::what) (:ordinal 1)
  (:type
   (common-lisp:or common-lisp:function common-lisp:cons common-lisp:symbol))))
(:mop-direct sb-debug::trace-info :slot ((:name sb-debug::named) (:ordinal 2)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::encapsulated) (:ordinal 3)
  (:initform sb-debug:*trace-encapsulate-default*)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::untraced) (:ordinal 4)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::start-breakpoint) (:ordinal 5)
  (:type (common-lisp:or sb-di:breakpoint common-lisp:null))))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::end-breakpoint) (:ordinal 6)
  (:type (common-lisp:or sb-di:breakpoint common-lisp:null))))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::wherein) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::methods) (:ordinal 8)))
(:mop-direct sb-debug::trace-info :slot
 ((:name common-lisp:condition) (:ordinal 9)))
(:mop-direct sb-debug::trace-info :slot
 ((:name common-lisp:break) (:ordinal 10)))
(:mop-direct sb-debug::trace-info :slot
 ((:name common-lisp:print) (:ordinal 11) (:type common-lisp:list)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::condition-after) (:ordinal 12)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::break-after) (:ordinal 13)))
(:mop-direct sb-debug::trace-info :slot
 ((:name sb-debug::print-after) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-debug::trace-info :prototype #<sb-debug::trace-info 0>)
(:mop-direct sb-regalloc::interference-graph :superclass
 sb-sys:structure!object)
(:mop-direct sb-regalloc::interference-graph :package-name "SB-REGALLOC")
(:mop-direct sb-regalloc::interference-graph :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-regalloc::interference-graph :classof
 common-lisp:structure-class)
(:mop-direct sb-regalloc::interference-graph :typeof
 common-lisp:structure-class)
(:mop-direct sb-regalloc::interference-graph :superclass
 sb-sys:structure!object)
(:mop-direct sb-regalloc::interference-graph :slot
 ((:name sb-regalloc::vertices) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-regalloc::interference-graph :slot
 ((:name sb-regalloc::precolored-vertices) (:ordinal 2)
  (:type common-lisp:list)))
(:mop-direct sb-regalloc::interference-graph :slot
 ((:name sb-regalloc::tn-vertex) (:ordinal 3)
  (:initform (sb-int:bug "missing arg")) (:type common-lisp:hash-table)))
(:mop-direct sb-regalloc::interference-graph :slot
 ((:name sb-regalloc::tn-vertex-mapping) (:ordinal 4)
  (:initform (sb-int:bug "missing arg")) (:type common-lisp:function)))
(:mop-direct sb-regalloc::interference-graph :prototype
 #S(sb-regalloc::interference-graph
    :vertices 0
    :precolored-vertices 0
    :tn-vertex 0
    :tn-vertex-mapping 0))
(:mop-direct sb-impl::pattern :superclass sb-sys:structure!object)
(:mop-direct sb-impl::pattern :package-name "SB-IMPL")
(:mop-direct sb-impl::pattern :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-impl::pattern :classof common-lisp:structure-class)
(:mop-direct sb-impl::pattern :typeof common-lisp:structure-class)
(:mop-direct sb-impl::pattern :superclass sb-sys:structure!object)
(:mop-direct sb-impl::pattern :slot
 ((:name sb-impl::pieces) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-impl::pattern :prototype #<sb-impl::pattern 0>)
(:mop-direct sb-kernel:defstruct-slot-description :superclass
 sb-sys:structure!object)
(:mop-direct sb-kernel:defstruct-slot-description :package-name "SB-KERNEL")
(:mop-direct sb-kernel:defstruct-slot-description :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:defstruct-slot-description :classof
 common-lisp:structure-class)
(:mop-direct sb-kernel:defstruct-slot-description :typeof
 common-lisp:structure-class)
(:mop-direct sb-kernel:defstruct-slot-description :superclass
 sb-sys:structure!object)
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-kernel::name) (:ordinal 1)))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-int:index) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:fixnum)))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-kernel::accessor-name) (:ordinal 3) (:type common-lisp:symbol)))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-kernel::default) (:ordinal 4)))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name common-lisp:type) (:ordinal 5) (:initform common-lisp:t)))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-kernel::safe-p) (:ordinal 6) (:initform common-lisp:t)
  (:type common-lisp:boolean)))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-kernel::raw-type) (:ordinal 7) (:initform common-lisp:t)
  (:type
   (common-lisp:member common-lisp:t common-lisp:single-float
                       common-lisp:double-float sb-kernel:complex-single-float
                       sb-kernel:complex-double-float sb-ext:word))))
(:mop-direct sb-kernel:defstruct-slot-description :slot
 ((:name sb-kernel::read-only) (:ordinal 8)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-kernel:defstruct-slot-description :prototype
 #<sb-kernel:defstruct-slot-description 0>)
(:mop-direct sb-alien-internals:local-alien-info :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:local-alien-info :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:local-alien-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:local-alien-info :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:local-alien-info :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:local-alien-info :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:local-alien-info :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-alien-internals:alien-type)))
(:mop-direct sb-alien-internals:local-alien-info :slot
 ((:name sb-alien::force-to-memory-p) (:ordinal 2)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-alien-internals:local-alien-info :prototype

(:mop-direct sb-alien-internals:alien-record-field :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:alien-record-field :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-record-field :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-record-field :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-record-field :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-record-field :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:alien-record-field :slot
 ((:name sb-alien::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-record-field :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-alien-internals:alien-type)))
(:mop-direct sb-alien-internals:alien-record-field :slot
 ((:name sb-alien::bits) (:ordinal 3)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-alien-internals:alien-record-field :slot
 ((:name sb-alien::offset) (:ordinal 4) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-alien-internals:alien-record-field :prototype
 #<sb-alien-internals:alien-record-field 0 0:0>)
(:mop-direct sb-alien-internals:heap-alien-info :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:heap-alien-info :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:heap-alien-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:heap-alien-info :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:heap-alien-info :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:heap-alien-info :superclass
 sb-sys:structure!object)
(:mop-direct sb-alien-internals:heap-alien-info :slot
 ((:name common-lisp:type) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-alien-internals:alien-type)))
(:mop-direct sb-alien-internals:heap-alien-info :slot
 ((:name sb-alien::alien-name) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-string)))
(:mop-direct sb-alien-internals:heap-alien-info :slot
 ((:name sb-alien::datap) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:boolean)))
(:mop-direct sb-alien-internals:heap-alien-info :prototype

(:mop-direct sb-c:definition-source-location :superclass
 sb-sys:structure!object)
(:mop-direct sb-c:definition-source-location :package-name "SB-C")
(:mop-direct sb-c:definition-source-location :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c:definition-source-location :classof
 common-lisp:structure-class)
(:mop-direct sb-c:definition-source-location :typeof
 common-lisp:structure-class)
(:mop-direct sb-c:definition-source-location :superclass
 sb-sys:structure!object)
(:mop-direct sb-c:definition-source-location :slot
 ((:name common-lisp:namestring) (:ordinal 1)
  (:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-c:definition-source-location :slot
 ((:name sb-c::toplevel-form-number) (:ordinal 2)
  (:type (common-lisp:or common-lisp:fixnum common-lisp:null))))
(:mop-direct sb-c:definition-source-location :slot
 ((:name sb-c::form-number) (:ordinal 3)
  (:type (common-lisp:or common-lisp:fixnum common-lisp:null))))
(:mop-direct sb-c:definition-source-location :slot
 ((:name sb-c::plist) (:ordinal 4) (:initform sb-c::*source-plist*)))
(:mop-direct sb-c:definition-source-location :prototype
 #S(sb-c:definition-source-location
    :namestring 0
    :toplevel-form-number 0
    :form-number 0
    :plist 0))
(:mop-direct sb-c::debug-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::compiled-debug-info :superclass sb-c::debug-info)
(:mop-direct sb-c::debug-info :package-name "SB-C")
(:mop-direct sb-c::debug-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::debug-info :classof common-lisp:structure-class)
(:mop-direct sb-c::debug-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::debug-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-info :slot
 ((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))))
(:mop-direct sb-c::debug-info :slot ((:name sb-c::source) (:ordinal 2)))
(:mop-direct sb-c::compiled-debug-info :superclass sb-c::debug-info)
(:mop-direct sb-c::compiled-debug-info :package-name "SB-C")
(:mop-direct sb-c::compiled-debug-info :precedance
 (sb-c::debug-info sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::compiled-debug-info :classof common-lisp:structure-class)
(:mop-direct sb-c::compiled-debug-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::compiled-debug-info :superclass sb-c::debug-info)
(:mop-direct sb-c::compiled-debug-info :slot
 ((:name sb-c::fun-map) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-c::compiled-debug-info :prototype
 #S(sb-c::compiled-debug-info :name 0 :source 0 :fun-map 0))
(:mop-direct sb-c::debug-info :prototype #S(sb-c::debug-info :name 0 :source 0))
(:mop-direct sb-c::debug-source :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-source :package-name "SB-C")
(:mop-direct sb-c::debug-source :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::debug-source :classof common-lisp:structure-class)
(:mop-direct sb-c::debug-source :typeof common-lisp:structure-class)
(:mop-direct sb-c::debug-source :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-source :slot
 ((:name common-lisp:namestring) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null common-lisp:string))))
(:mop-direct sb-c::debug-source :slot
 ((:name sb-c::created) (:ordinal 2)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-c::debug-source :slot
 ((:name sb-c::source-root) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c::debug-source :slot
 ((:name sb-c::start-positions) (:ordinal 4)
  (:type
   (common-lisp:or (common-lisp:simple-array common-lisp:* (common-lisp:*))
                   common-lisp:null))))
(:mop-direct sb-c::debug-source :slot
 ((:name sb-kernel:form) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c::debug-source :slot
 ((:name common-lisp:function) (:ordinal 6)))
(:mop-direct sb-c::debug-source :slot
 ((:name sb-c::compiled) (:ordinal 7) (:initform (sb-int:missing-arg))
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::debug-source :slot
 ((:name sb-c::plist) (:ordinal 8) (:initform sb-c::*source-plist*)))
(:mop-direct sb-c::debug-source :prototype
 #S(sb-c::debug-source
    :namestring 0
    :created 0
    :source-root 0
    :start-positions 0
    :form 0
    :function 0
    :compiled 0
    :plist 0))
(:mop-direct sb-c::debug-fun :superclass sb-sys:structure!object)
(:mop-direct sb-c::compiled-debug-fun :superclass sb-c::debug-fun)
(:mop-direct sb-c::debug-fun :package-name "SB-C")
(:mop-direct sb-c::debug-fun :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-c::debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-c::debug-fun :superclass sb-sys:structure!object)
(:mop-direct sb-c::compiled-debug-fun :superclass sb-c::debug-fun)
(:mop-direct sb-c::compiled-debug-fun :package-name "SB-C")
(:mop-direct sb-c::compiled-debug-fun :precedance
 (sb-c::debug-fun sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::compiled-debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-c::compiled-debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-c::compiled-debug-fun :superclass sb-c::debug-fun)
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:or common-lisp:simple-string common-lisp:cons
                   common-lisp:symbol))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::kind) (:ordinal 2)
  (:type
   (common-lisp:member common-lisp:nil :optional :external :toplevel
                       :cleanup))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::vars) (:ordinal 3)
  (:type (common-lisp:or common-lisp:simple-vector common-lisp:null))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::blocks) (:ordinal 4)
  (:type
   (common-lisp:or
    (common-lisp:simple-array (common-lisp:unsigned-byte 8) (common-lisp:*))
    common-lisp:null))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::tlf-number) (:ordinal 5)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::form-number) (:ordinal 6)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::arguments) (:ordinal 7)
  (:type
   (common-lisp:or (common-lisp:simple-array common-lisp:* (common-lisp:*))
                   (common-lisp:member :minimal common-lisp:nil)))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::returns) (:ordinal 8) (:initform :fixed)
  (:type
   (common-lisp:or (common-lisp:simple-array common-lisp:* (common-lisp:*))
                   (common-lisp:member :standard :fixed)))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::start-pc) (:ordinal 9) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::elsewhere-pc) (:ordinal 10) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::closure-save) (:ordinal 11)
  (:type (common-lisp:or sb-c:sc-offset common-lisp:null))))
(:mop-direct sb-c::compiled-debug-fun :slot
 ((:name sb-c::bsp-save) (:ordinal 12)
  (:type (common-lisp:or sb-c:sc-offset common-lisp:null))))
(:mop-direct sb-c::compiled-debug-fun :prototype
 #S(sb-c::compiled-debug-fun
    :name 0
    :kind 0
    :vars 0
    :blocks 0
    :tlf-number 0
    :form-number 0
    :arguments 0
    :returns 0
    :start-pc 0
    :elsewhere-pc 0
    :closure-save 0
    :bsp-save 0))
(:mop-direct sb-c::debug-fun :prototype #S(sb-c::debug-fun))
(:mop-direct sb-c::vop-parse :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop-parse :package-name "SB-C")
(:mop-direct sb-c::vop-parse :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::vop-parse :classof common-lisp:structure-class)
(:mop-direct sb-c::vop-parse :typeof common-lisp:structure-class)
(:mop-direct sb-c::vop-parse :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::inherits) (:ordinal 2)
  (:type (common-lisp:or common-lisp:symbol common-lisp:null))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::args) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::results) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::temps) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::more-args) (:ordinal 6)
  (:type (common-lisp:or sb-c::operand-parse common-lisp:null))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::more-results) (:ordinal 7)
  (:type (common-lisp:or sb-c::operand-parse common-lisp:null))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::operands) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::ignores) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot ((:name sb-c::conditional-p) (:ordinal 10)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::arg-types) (:ordinal 11) (:initform :unspecified)
  (:type (common-lisp:or (common-lisp:member :unspecified) common-lisp:list))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::result-types) (:ordinal 12) (:initform :unspecified)
  (:type (common-lisp:or (common-lisp:member :unspecified) common-lisp:list))))
(:mop-direct sb-c::vop-parse :slot ((:name sb-c::guard) (:ordinal 13)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::cost) (:ordinal 14) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::body) (:ordinal 15) (:initform :unspecified)
  (:type (common-lisp:or (common-lisp:member :unspecified) common-lisp:list))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::variant) (:ordinal 16) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::variant-vars) (:ordinal 17) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::vop-var) (:ordinal 18) (:initform 'sb-c::.vop.)
  (:type common-lisp:symbol)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::node-var) (:ordinal 19)
  (:type (common-lisp:or common-lisp:symbol common-lisp:null))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::info-args) (:ordinal 20) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::note) (:ordinal 21)
  (:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::effects) (:ordinal 22) (:initform '(sb-c:any))
  (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::affected) (:ordinal 23) (:initform '(sb-c:any))
  (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::translate) (:ordinal 24) (:type common-lisp:list)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::ltn-policy) (:ordinal 25) (:initform :fast)
  (:type sb-c::ltn-policy)))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::save-p) (:ordinal 26)
  (:type
   (common-lisp:member common-lisp:t common-lisp:nil :compute-only
                       :force-to-stack))))
(:mop-direct sb-c::vop-parse :slot
 ((:name sb-c::move-args) (:ordinal 27)
  (:type
   (common-lisp:member common-lisp:nil :local-call :full-call :known-return))))
(:mop-direct sb-c::vop-parse :prototype
 #<sb-c::vop-parse
   :name 0
   :inherits 0
   :args 0
   :results 0
   :temps 0
   :more-args 0
   :more-results 0
   :conditional-p 0
   :ignores 0
   :arg-types 0
   :result-types 0
   :cost 0
   :body 0
   :variant 0
   :variant-vars 0
   :info-args 0
   :note 0
   :effects 0
   :affected 0
   :translate 0
   :ltn-policy 0
   :save-p 0
   :move-args 0>)
(:mop-direct sb-c::operand-parse :superclass sb-sys:structure!object)
(:mop-direct sb-c::operand-parse :package-name "SB-C")
(:mop-direct sb-c::operand-parse :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::operand-parse :classof common-lisp:structure-class)
(:mop-direct sb-c::operand-parse :typeof common-lisp:structure-class)
(:mop-direct sb-c::operand-parse :superclass sb-sys:structure!object)
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::kind) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:member :argument :result :temporary :more-argument
                       :more-result))))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::target) (:ordinal 3)
  (:type (common-lisp:or common-lisp:symbol common-lisp:null))))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::temp) (:ordinal 4) (:initform (sb-c::make-operand-parse-temp))
  (:type common-lisp:symbol)))
(:mop-direct sb-c::operand-parse :slot ((:name sb-c::born) (:ordinal 5)))
(:mop-direct sb-c::operand-parse :slot ((:name sb-c::dies) (:ordinal 6)))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::scs) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::load-tn) (:ordinal 8)
  (:initform (sb-c::make-operand-parse-load-tn)) (:type common-lisp:symbol)))
(:mop-direct sb-c::operand-parse :slot
 ((:name common-lisp:load) (:ordinal 9) (:initform common-lisp:t)))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c:sc) (:ordinal 10)
  (:type (common-lisp:or common-lisp:symbol common-lisp:null))))
(:mop-direct sb-c::operand-parse :slot
 ((:name sb-c::offset) (:ordinal 11)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-c::operand-parse :prototype
 #<sb-c::operand-parse
   :name 0
   :kind 0
   :target 0
   :born 0
   :dies 0
   :scs 0
   :load 0
   :sc 0
   :offset 0>)
(:mop-direct sb-c::global-conflicts :superclass sb-sys:structure!object)
(:mop-direct sb-c::global-conflicts :package-name "SB-C")
(:mop-direct sb-c::global-conflicts :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::global-conflicts :classof common-lisp:structure-class)
(:mop-direct sb-c::global-conflicts :typeof common-lisp:structure-class)
(:mop-direct sb-c::global-conflicts :superclass sb-sys:structure!object)
(:mop-direct sb-c::global-conflicts :slot
 ((:name common-lisp:block) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c::ir2-block)))
(:mop-direct sb-c::global-conflicts :slot
 ((:name sb-c::next-blockwise) (:ordinal 2)
  (:type (common-lisp:or sb-c::global-conflicts common-lisp:null))))
(:mop-direct sb-c::global-conflicts :slot
 ((:name sb-c::kind) (:ordinal 3) (:initform :read-only)
  (:type (common-lisp:member :read :write :read-only :live))))
(:mop-direct sb-c::global-conflicts :slot
 ((:name sb-c::conflicts) (:ordinal 4)
  (:initform
   (common-lisp:make-array sb-c::local-tn-limit :element-type 'common-lisp:bit
                           :initial-element 0))
  (:type sb-c::local-tn-bit-vector)))
(:mop-direct sb-c::global-conflicts :slot
 ((:name sb-c:tn) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type sb-c:tn)))
(:mop-direct sb-c::global-conflicts :slot
 ((:name sb-c::next-tnwise) (:ordinal 6)
  (:type (common-lisp:or sb-c::global-conflicts common-lisp:null))))
(:mop-direct sb-c::global-conflicts :slot
 ((:name common-lisp:number) (:ordinal 7)
  (:type (common-lisp:or sb-c::local-tn-number common-lisp:null))))
(:mop-direct sb-c::global-conflicts :prototype
 #<sb-c::global-conflicts :tn 0 :block 0 :kind 0 :number 0>)
(:mop-direct sb-c:sc :superclass sb-sys:structure!object)
(:mop-direct sb-c:sc :package-name "SB-C")
(:mop-direct sb-c:sc :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c:sc :classof common-lisp:structure-class)
(:mop-direct sb-c:sc :typeof common-lisp:structure-class)
(:mop-direct sb-c:sc :superclass sb-sys:structure!object)
(:mop-direct sb-c:sc :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c:sc :slot
 ((:name common-lisp:number) (:ordinal 2) (:initform 0) (:type sb-c:sc-number)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c:sb) (:ordinal 3)
  (:type (common-lisp:or sb-c:sb common-lisp:null))))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::element-size) (:ordinal 4) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::locations) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::alternate-scs) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::constant-scs) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::save-p) (:ordinal 8) (:type common-lisp:boolean)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::move-funs) (:ordinal 9)
  (:initform
   (common-lisp:make-array sb-c::sc-number-limit :initial-element
                           common-lisp:nil))
  (:type sb-c::sc-vector)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::load-costs) (:ordinal 10)
  (:initform
   (common-lisp:make-array sb-c::sc-number-limit :initial-element
                           common-lisp:nil))
  (:type sb-c::sc-vector)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::move-vops) (:ordinal 11)
  (:initform
   (common-lisp:make-array sb-c::sc-number-limit :initial-element
                           common-lisp:nil))
  (:type sb-c::sc-vector)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::move-costs) (:ordinal 12)
  (:initform
   (common-lisp:make-array sb-c::sc-number-limit :initial-element
                           common-lisp:nil))
  (:type sb-c::sc-vector)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::move-arg-vops) (:ordinal 13)
  (:initform
   (common-lisp:make-array sb-c::sc-number-limit :initial-element
                           common-lisp:nil))
  (:type sb-c::sc-vector)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::number-stack-p) (:ordinal 14) (:type common-lisp:boolean)))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::alignment) (:ordinal 15) (:initform 1)
  (:type (common-lisp:and sb-int:index (common-lisp:integer 1)))))
(:mop-direct sb-c:sc :slot
 ((:name sb-c::reserve-locations) (:ordinal 16) (:type common-lisp:list)))
(:mop-direct sb-c:sc :prototype #<sb-c:sc :name 0>)
(:mop-direct sb-c:sb :superclass sb-sys:structure!object)
(:mop-direct sb-c::finite-sb :superclass sb-c:sb)
(:mop-direct sb-c:sb :package-name "SB-C")
(:mop-direct sb-c:sb :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c:sb :classof common-lisp:structure-class)
(:mop-direct sb-c:sb :typeof common-lisp:structure-class)
(:mop-direct sb-c:sb :superclass sb-sys:structure!object)
(:mop-direct sb-c:sb :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c:sb :slot
 ((:name sb-c::kind) (:ordinal 2) (:initform :non-packed)
  (:type (common-lisp:member :finite :unbounded :non-packed))))
(:mop-direct sb-c:sb :slot
 ((:name sb-c::size) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c::finite-sb :superclass sb-c:sb)
(:mop-direct sb-c::finite-sb :package-name "SB-C")
(:mop-direct sb-c::finite-sb :precedance
 (sb-c:sb sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::finite-sb :classof common-lisp:structure-class)
(:mop-direct sb-c::finite-sb :typeof common-lisp:structure-class)
(:mop-direct sb-c::finite-sb :superclass sb-c:sb)
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::size-increment) (:ordinal 1) (:initform 1) (:type sb-int:index)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::size-alignment) (:ordinal 2) (:initform 1) (:type sb-int:index)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::current-size) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::last-offset) (:ordinal 4) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::conflicts) (:ordinal 5) (:initform '#())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::always-live) (:ordinal 6) (:initform '#())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::always-live-count) (:ordinal 7) (:initform '#())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::live-tns) (:ordinal 8) (:initform '#())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-c::finite-sb :slot
 ((:name sb-c::last-block-count) (:ordinal 9) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-c::finite-sb :prototype #<sb-c::finite-sb :name 0>)
(:mop-direct sb-c:sb :prototype #<sb-c:sb :name 0>)
(:mop-direct sb-c::template :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop-info :superclass sb-c::template)
(:mop-direct sb-c::template :package-name "SB-C")
(:mop-direct sb-c::template :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::template :classof common-lisp:structure-class)
(:mop-direct sb-c::template :typeof common-lisp:structure-class)
(:mop-direct sb-c::template :superclass sb-sys:structure!object)
(:mop-direct sb-c::template :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c::template :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::template :slot
 ((:name sb-c::arg-types) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::template :slot
 ((:name sb-c::result-types) (:ordinal 4)
  (:type
   (common-lisp:or common-lisp:list (common-lisp:member :conditional)
                   (common-lisp:cons (common-lisp:eql :conditional))))))
(:mop-direct sb-c::template :slot
 ((:name sb-c::more-args-type) (:ordinal 5)
  (:type
   (common-lisp:or (common-lisp:member common-lisp:nil common-lisp:*)
                   common-lisp:cons))))
(:mop-direct sb-c::template :slot
 ((:name sb-c::more-results-type) (:ordinal 6)
  (:type
   (common-lisp:or (common-lisp:member common-lisp:nil common-lisp:*)
                   common-lisp:cons))))
(:mop-direct sb-c::template :slot
 ((:name sb-c::guard) (:ordinal 7)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::template :slot
 ((:name sb-c::ltn-policy) (:ordinal 8) (:initform (sb-int:missing-arg))
  (:type sb-c::ltn-policy)))
(:mop-direct sb-c::template :slot
 ((:name sb-c::cost) (:ordinal 9) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-c::template :slot
 ((:name sb-c::note) (:ordinal 10)
  (:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-c::template :slot
 ((:name sb-c::info-arg-count) (:ordinal 11) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-c::vop-info :superclass sb-c::template)
(:mop-direct sb-c::vop-info :package-name "SB-C")
(:mop-direct sb-c::vop-info :precedance
 (sb-c::template sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::vop-info :classof common-lisp:structure-class)
(:mop-direct sb-c::vop-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::vop-info :superclass sb-c::template)
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::effects) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c:attributes)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::affected) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c:attributes)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::save-p) (:ordinal 3)
  (:type
   (common-lisp:member common-lisp:t common-lisp:nil :force-to-stack
                       :compute-only))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::move-args) (:ordinal 4)
  (:type
   (common-lisp:member common-lisp:nil :full-call :local-call :known-return))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::arg-costs) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::result-costs) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::more-arg-costs) (:ordinal 7)
  (:type (common-lisp:or sb-c::sc-vector common-lisp:null))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::more-result-costs) (:ordinal 8)
  (:type (common-lisp:or sb-c::sc-vector common-lisp:null))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::arg-load-scs) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::result-load-scs) (:ordinal 10) (:type common-lisp:list)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::generator-function) (:ordinal 11)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::variant) (:ordinal 12) (:type common-lisp:list)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::num-args) (:ordinal 13) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::num-results) (:ordinal 14) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::temps) (:ordinal 15)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:simple-array (common-lisp:unsigned-byte 16)
                    1)))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::ref-ordering) (:ordinal 16)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:simple-array (common-lisp:unsigned-byte 8)
                    1)))))
(:mop-direct sb-c::vop-info :slot
 ((:name sb-c::targets) (:ordinal 17)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:simple-array (common-lisp:unsigned-byte 16)
                    1)))))
(:mop-direct sb-c::vop-info :prototype
 #<sb-c::vop-info
   :name 0
   :arg-types 0
   :result-types 0
   :more-args-type 0
   :more-results-type 0
   :ltn-policy 0
   :cost 0
   :note 0>)
(:mop-direct sb-c::template :prototype
 #<sb-c::template
   :name 0
   :arg-types 0
   :result-types 0
   :more-args-type 0
   :more-results-type 0
   :ltn-policy 0
   :cost 0
   :note 0>)
(:mop-direct sb-c:tn-ref :superclass sb-sys:structure!object)
(:mop-direct sb-c:tn-ref :package-name "SB-C")
(:mop-direct sb-c:tn-ref :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c:tn-ref :classof common-lisp:structure-class)
(:mop-direct sb-c:tn-ref :typeof common-lisp:structure-class)
(:mop-direct sb-c:tn-ref :superclass sb-sys:structure!object)
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c:tn) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c:tn)))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::write-p) (:ordinal 2) (:type common-lisp:boolean)))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::next) (:ordinal 3)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::vop) (:ordinal 4)
  (:type (common-lisp:or sb-c::vop common-lisp:null))))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::next-ref) (:ordinal 5)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::across) (:ordinal 6)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::target) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null sb-c:tn-ref))))
(:mop-direct sb-c:tn-ref :slot
 ((:name sb-c::load-tn) (:ordinal 8)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xd (pc=0x1001dcea1a, sp=0x7ffff2b9e298)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::vop :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop :package-name "SB-C")
(:mop-direct sb-c::vop :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::vop :classof common-lisp:structure-class)
(:mop-direct sb-c::vop :typeof common-lisp:structure-class)
(:mop-direct sb-c::vop :superclass sb-sys:structure!object)
(:mop-direct sb-c::vop :slot
 ((:name sb-int:info) (:ordinal 1)
  (:type (common-lisp:or sb-c::vop-info common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name common-lisp:block) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c::ir2-block)))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::next) (:ordinal 3)
  (:type (common-lisp:or sb-c::vop common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::prev) (:ordinal 4)
  (:type (common-lisp:or sb-c::vop common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::args) (:ordinal 5)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::results) (:ordinal 6)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::temps) (:ordinal 7)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::refs) (:ordinal 8)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c::vop :slot ((:name sb-c::codegen-info) (:ordinal 9)))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::node) (:ordinal 10)
  (:type (common-lisp:or sb-c::node common-lisp:null))))
(:mop-direct sb-c::vop :slot
 ((:name sb-c::save-set) (:ordinal 11)
  (:type (common-lisp:or sb-c::local-tn-bit-vector common-lisp:null))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xd (pc=0x1001ddfd30, sp=0x7ffff2b9e298)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::ir2-component :superclass sb-sys:structure!object)
(:mop-direct sb-c::ir2-component :package-name "SB-C")
(:mop-direct sb-c::ir2-component :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::ir2-component :classof common-lisp:structure-class)
(:mop-direct sb-c::ir2-component :typeof common-lisp:structure-class)
(:mop-direct sb-c::ir2-component :superclass sb-sys:structure!object)
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::global-tn-counter) (:ordinal 1) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::normal-tns) (:ordinal 2)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::restricted-tns) (:ordinal 3)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::wired-tns) (:ordinal 4)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::constant-tns) (:ordinal 5)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::component-tns) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::nfp) (:ordinal 7)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::specified-save-tns) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::values-receivers) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::constants) (:ordinal 10)
  (:initform
   (common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))
  (:type common-lisp:vector)))
(:mop-direct sb-c::ir2-component :slot
 ((:name common-lisp:format) (:ordinal 11)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::entries) (:ordinal 12) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::alias-tns) (:ordinal 13)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::spilled-vops) (:ordinal 14)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-c::ir2-component :slot
 ((:name sb-c::spilled-tns) (:ordinal 15)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-c::ir2-component :prototype
 #S(sb-c::ir2-component
    :global-tn-counter 0
    :normal-tns 0
    :restricted-tns 0
    :wired-tns 0
    :constant-tns 0
    :component-tns 0
    :nfp 0
    :specified-save-tns 0
    :values-receivers 0
    :constants 0
    :format 0
    :entries 0
    :alias-tns 0
    :spilled-vops 0
    :spilled-tns 0))
(:mop-direct sb-assem::annotation :superclass sb-sys:structure!object)
(:mop-direct sb-assem::filler :superclass sb-assem::annotation)
(:mop-direct sb-assem::chooser :superclass sb-assem::annotation)
(:mop-direct sb-assem::back-patch :superclass sb-assem::annotation)
(:mop-direct sb-assem::alignment-note :superclass sb-assem::annotation)
(:mop-direct sb-assem:label :superclass sb-assem::annotation)
(:mop-direct sb-assem::annotation :package-name "SB-ASSEM")
(:mop-direct sb-assem::annotation :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-assem::annotation :classof common-lisp:structure-class)
(:mop-direct sb-assem::annotation :typeof common-lisp:structure-class)
(:mop-direct sb-assem::annotation :superclass sb-sys:structure!object)
(:mop-direct sb-assem::annotation :slot
 ((:name sb-int:index) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-assem::annotation :slot
 ((:name sb-assem::posn) (:ordinal 2)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-assem::filler :superclass sb-assem::annotation)
(:mop-direct sb-assem::filler :package-name "SB-ASSEM")
(:mop-direct sb-assem::filler :precedance
 (sb-assem::annotation sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem::filler :classof common-lisp:structure-class)
(:mop-direct sb-assem::filler :typeof common-lisp:structure-class)
(:mop-direct sb-assem::filler :superclass sb-assem::annotation)
(:mop-direct sb-assem::filler :slot
 ((:name sb-assem::bytes) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-assem::filler :prototype
 #S(sb-assem::filler :index 0 :posn 0 :bytes 0))
(:mop-direct sb-assem::chooser :superclass sb-assem::annotation)
(:mop-direct sb-assem::chooser :package-name "SB-ASSEM")
(:mop-direct sb-assem::chooser :precedance
 (sb-assem::annotation sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem::chooser :classof common-lisp:structure-class)
(:mop-direct sb-assem::chooser :typeof common-lisp:structure-class)
(:mop-direct sb-assem::chooser :superclass sb-assem::annotation)
(:mop-direct sb-assem::chooser :slot
 ((:name sb-assem::size) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-assem::chooser :slot
 ((:name sb-assem::alignment) (:ordinal 2) (:initform 0)
  (:type sb-assem::alignment)))
(:mop-direct sb-assem::chooser :slot
 ((:name sb-assem::maybe-shrink) (:ordinal 3) (:type common-lisp:function)))
(:mop-direct sb-assem::chooser :slot
 ((:name sb-assem::worst-case-fun) (:ordinal 4) (:type common-lisp:function)))
(:mop-direct sb-assem::chooser :prototype
 #S(sb-assem::chooser
    :index 0
    :posn 0
    :size 0
    :alignment 0
    :maybe-shrink 0
    :worst-case-fun 0))
(:mop-direct sb-assem::back-patch :superclass sb-assem::annotation)
(:mop-direct sb-assem::back-patch :package-name "SB-ASSEM")
(:mop-direct sb-assem::back-patch :precedance
 (sb-assem::annotation sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem::back-patch :classof common-lisp:structure-class)
(:mop-direct sb-assem::back-patch :typeof common-lisp:structure-class)
(:mop-direct sb-assem::back-patch :superclass sb-assem::annotation)
(:mop-direct sb-assem::back-patch :slot
 ((:name sb-assem::size) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-assem::back-patch :slot
 ((:name sb-assem::fun) (:ordinal 2) (:type common-lisp:function)))
(:mop-direct sb-assem::back-patch :prototype
 #S(sb-assem::back-patch :index 0 :posn 0 :size 0 :fun 0))
(:mop-direct sb-assem::alignment-note :superclass sb-assem::annotation)
(:mop-direct sb-assem::alignment-note :package-name "SB-ASSEM")
(:mop-direct sb-assem::alignment-note :precedance
 (sb-assem::annotation sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem::alignment-note :classof common-lisp:structure-class)
(:mop-direct sb-assem::alignment-note :typeof common-lisp:structure-class)
(:mop-direct sb-assem::alignment-note :superclass sb-assem::annotation)
(:mop-direct sb-assem::alignment-note :slot
 ((:name sb-assem::bits) (:ordinal 1) (:initform 0)
  (:type sb-assem::alignment)))
(:mop-direct sb-assem::alignment-note :slot
 ((:name sb-assem::size) (:ordinal 2) (:initform 0)
  (:type (common-lisp:integer 0 15))))
(:mop-direct sb-assem::alignment-note :slot
 ((:name sb-assem::pattern) (:ordinal 3) (:initform 0)
  (:type
   (common-lisp:or sb-assem::possibly-signed-assembly-unit
                   (common-lisp:member :long-nop)))))
(:mop-direct sb-assem::alignment-note :prototype
 #S(sb-assem::alignment-note :index 0 :posn 0 :bits 0 :size 0 :pattern 0))
(:mop-direct sb-assem:label :superclass sb-assem::annotation)
(:mop-direct sb-assem:label :package-name "SB-ASSEM")
(:mop-direct sb-assem:label :precedance
 (sb-assem::annotation sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem:label :classof common-lisp:structure-class)
(:mop-direct sb-assem:label :typeof common-lisp:structure-class)
(:mop-direct sb-assem:label :superclass sb-assem::annotation)

(:mop-direct sb-assem::annotation :prototype
 #S(sb-assem::annotation :index 0 :posn 0))
(:mop-direct sb-c::arg-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::arg-info :package-name "SB-C")
(:mop-direct sb-c::arg-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::arg-info :classof common-lisp:structure-class)
(:mop-direct sb-c::arg-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::arg-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::arg-info :slot
 ((:name sb-c::specialp) (:ordinal 1) (:type common-lisp:boolean)))
(:mop-direct sb-c::arg-info :slot
 ((:name sb-c::kind) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:member :required :optional :keyword :rest :more-context
                       :more-count))))
(:mop-direct sb-c::arg-info :slot
 ((:name sb-c::supplied-p) (:ordinal 3)
  (:type (common-lisp:or sb-c::lambda-var common-lisp:null))))
(:mop-direct sb-c::arg-info :slot
 ((:name sb-c::supplied-used-p) (:ordinal 4) (:initform common-lisp:t)
  (:type common-lisp:boolean)))
(:mop-direct sb-c::arg-info :slot ((:name sb-c::default) (:ordinal 5)))
(:mop-direct sb-c::arg-info :slot
 ((:name sb-c::key) (:ordinal 6) (:type common-lisp:symbol)))
(:mop-direct sb-c::arg-info :prototype
 #<sb-c::arg-info
   :specialp common-lisp:t
   :kind 0
   :supplied-p 0
   :default 0
   :key 0 {1005A404B3}>)
(:mop-direct sb-c::nlx-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::nlx-info :package-name "SB-C")
(:mop-direct sb-c::nlx-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::nlx-info :classof common-lisp:structure-class)
(:mop-direct sb-c::nlx-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::nlx-info :superclass sb-sys:structure!object)
(:mop-direct sb-c::nlx-info :slot
 ((:name sb-c::cleanup) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c::cleanup)))
(:mop-direct sb-c::nlx-info :slot
 ((:name common-lisp:block) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c::nlx-info :slot
 ((:name sb-c::target) (:ordinal 3)
  (:type (common-lisp:or sb-c::cblock common-lisp:null))))
(:mop-direct sb-c::nlx-info :slot
 ((:name sb-c::safe-p) (:ordinal 4) (:type common-lisp:boolean)))
(:mop-direct sb-c::nlx-info :slot ((:name sb-int:info) (:ordinal 5)))

(:mop-direct sb-c::tail-set :superclass sb-sys:structure!object)
(:mop-direct sb-c::tail-set :package-name "SB-C")
(:mop-direct sb-c::tail-set :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::tail-set :classof common-lisp:structure-class)
(:mop-direct sb-c::tail-set :typeof common-lisp:structure-class)
(:mop-direct sb-c::tail-set :superclass sb-sys:structure!object)
(:mop-direct sb-c::tail-set :slot
 ((:name sb-c::funs) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::tail-set :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform sb-kernel:*wild-type*)
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::tail-set :slot ((:name sb-int:info) (:ordinal 3)))
(:mop-direct sb-c::tail-set :prototype
 #<sb-c::tail-set :funs 0 :type 0 :info 0 {1005A818E3}>)
(:mop-direct sb-c::physenv :superclass sb-sys:structure!object)
(:mop-direct sb-c::physenv :package-name "SB-C")
(:mop-direct sb-c::physenv :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::physenv :classof common-lisp:structure-class)
(:mop-direct sb-c::physenv :typeof common-lisp:structure-class)
(:mop-direct sb-c::physenv :superclass sb-sys:structure!object)
(:mop-direct sb-c::physenv :slot
 ((:name common-lisp:lambda) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c::clambda)))
(:mop-direct sb-c::physenv :slot
 ((:name sb-kernel:closure) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::physenv :slot
 ((:name sb-c::nlx-info) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::physenv :slot ((:name sb-int:info) (:ordinal 4)))
(:mop-direct sb-c::physenv :prototype
 #<sb-c::physenv :lambda 0 :closure 0 :nlx-info 0 {1005AA0B73}>)
(:mop-direct sb-c::cleanup :superclass sb-sys:structure!object)
(:mop-direct sb-c::cleanup :package-name "SB-C")
(:mop-direct sb-c::cleanup :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::cleanup :classof common-lisp:structure-class)
(:mop-direct sb-c::cleanup :typeof common-lisp:structure-class)
(:mop-direct sb-c::cleanup :superclass sb-sys:structure!object)
(:mop-direct sb-c::cleanup :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:member :special-bind :catch :unwind-protect :block :tagbody
                       :dynamic-extent))))
(:mop-direct sb-c::cleanup :slot
 ((:name sb-c::mess-up) (:ordinal 2)
  (:type (common-lisp:or sb-c::node common-lisp:null))))
(:mop-direct sb-c::cleanup :slot
 ((:name sb-int:info) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::cleanup :prototype
 #<sb-c::cleanup :kind 0 :mess-up 0 :info 0 {1005AC7D53}>)
(:mop-direct sb-c:component :superclass sb-sys:structure!object)
(:mop-direct sb-c:component :package-name "SB-C")
(:mop-direct sb-c:component :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c:component :classof common-lisp:structure-class)
(:mop-direct sb-c:component :typeof common-lisp:structure-class)
(:mop-direct sb-c:component :superclass sb-sys:structure!object)
(:mop-direct sb-c:component :slot
 ((:name sb-c::kind) (:ordinal 1)
  (:type
   (common-lisp:member common-lisp:nil :toplevel :complex-toplevel :initial
                       :deleted))))
(:mop-direct sb-c:component :slot
 ((:name sb-c::head) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::tail) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::last-block) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::lambdas) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::new-functionals) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::reoptimize) (:ordinal 7) (:initform common-lisp:t)
  (:type (common-lisp:member common-lisp:nil :maybe common-lisp:t))))
(:mop-direct sb-c:component :slot
 ((:name sb-c::reanalyze) (:ordinal 8) (:type common-lisp:boolean)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::name) (:ordinal 9) (:initform "<unknown>")))
(:mop-direct sb-c:component :slot
 ((:name sb-int:info) (:ordinal 10) (:initform :no-ir2-yet)
  (:type
   (common-lisp:or sb-c::ir2-component
                   (common-lisp:member :no-ir2-yet :dead)))))
(:mop-direct sb-c:component :slot
 ((:name sb-c::inline-expansions) (:ordinal 11) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::failed-optimizations) (:ordinal 12)
  (:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
  (:type common-lisp:hash-table)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::reanalyze-functionals) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::delete-blocks) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::nlx-info-generated-p) (:ordinal 15) (:type common-lisp:boolean)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::dx-lvars) (:ordinal 16) (:type common-lisp:list)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::outer-loop) (:ordinal 17) (:initform (sb-int:missing-arg))
  (:type sb-c::cloop)))
(:mop-direct sb-c:component :slot
 ((:name sb-c::sset-number) (:ordinal 18) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-c:component :prototype
 #<sb-c:component :name 0 :reanalyze common-lisp:t {1005AF6A93}>)
(:mop-direct sb-c::block-annotation :superclass sb-sys:structure!object)
(:mop-direct sb-c::ir2-block :superclass sb-c::block-annotation)
(:mop-direct sb-c::block-annotation :package-name "SB-C")
(:mop-direct sb-c::block-annotation :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::block-annotation :classof common-lisp:structure-class)
(:mop-direct sb-c::block-annotation :typeof common-lisp:structure-class)
(:mop-direct sb-c::block-annotation :superclass sb-sys:structure!object)
(:mop-direct sb-c::block-annotation :slot
 ((:name common-lisp:block) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c::block-annotation :slot
 ((:name sb-c::next) (:ordinal 2)
  (:type (common-lisp:or sb-c::block-annotation common-lisp:null))))
(:mop-direct sb-c::block-annotation :slot
 ((:name sb-c::prev) (:ordinal 3)
  (:type (common-lisp:or sb-c::block-annotation common-lisp:null))))
(:mop-direct sb-c::ir2-block :superclass sb-c::block-annotation)
(:mop-direct sb-c::ir2-block :package-name "SB-C")
(:mop-direct sb-c::ir2-block :precedance
 (sb-c::block-annotation sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::ir2-block :classof common-lisp:structure-class)
(:mop-direct sb-c::ir2-block :typeof common-lisp:structure-class)
(:mop-direct sb-c::ir2-block :superclass sb-c::block-annotation)
(:mop-direct sb-c::ir2-block :slot
 ((:name common-lisp:number) (:ordinal 1)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::pushed) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::popped) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::start-stack) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::end-stack) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::start-vop) (:ordinal 6)
  (:type (common-lisp:or sb-c::vop common-lisp:null))))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::last-vop) (:ordinal 7)
  (:type (common-lisp:or sb-c::vop common-lisp:null))))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::local-tn-count) (:ordinal 8) (:initform 0)
  (:type sb-c::local-tn-count)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::local-tns) (:ordinal 9)
  (:initform (common-lisp:make-array sb-c::local-tn-limit))
  (:type sb-c::local-tn-vector)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::written) (:ordinal 10)
  (:initform
   (common-lisp:make-array sb-c::local-tn-limit :element-type 'common-lisp:bit
                           :initial-element 0))
  (:type sb-c::local-tn-bit-vector)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::live-out) (:ordinal 11)
  (:initform
   (common-lisp:make-array sb-c::local-tn-limit :element-type
                           'common-lisp:bit))
  (:type sb-c::local-tn-bit-vector)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::live-in) (:ordinal 12)
  (:initform
   (common-lisp:make-array sb-c::local-tn-limit :element-type 'common-lisp:bit
                           :initial-element 0))
  (:type sb-c::local-tn-bit-vector)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::global-tns) (:ordinal 13)
  (:type (common-lisp:or sb-c::global-conflicts common-lisp:null))))
(:mop-direct sb-c::ir2-block :slot ((:name sb-c::%label) (:ordinal 14)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::%trampoline-label) (:ordinal 15)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::dropped-thru-to) (:ordinal 16)))
(:mop-direct sb-c::ir2-block :slot
 ((:name sb-c::locations) (:ordinal 17) (:type common-lisp:list)))
(:mop-direct sb-c::ir2-block :prototype
 #<sb-c::ir2-block :pushed 0 :popped 0 :start-vop 0 :last-vop 0 :%label 0>)
(:mop-direct sb-c::block-annotation :prototype
 #S(sb-c::block-annotation :block 0 :next 0 :prev 0))
(:mop-direct sb-c::cloop :superclass sb-sys:structure!object)
(:mop-direct sb-c::cloop :package-name "SB-C")
(:mop-direct sb-c::cloop :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::cloop :classof common-lisp:structure-class)
(:mop-direct sb-c::cloop :typeof common-lisp:structure-class)
(:mop-direct sb-c::cloop :superclass sb-sys:structure!object)
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :outer :natural :strange))))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::head) (:ordinal 2)
  (:type (common-lisp:or sb-c::cblock common-lisp:null))))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::tail) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::exits) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::superior) (:ordinal 5)
  (:type (common-lisp:or sb-c::cloop common-lisp:null))))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::inferiors) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::depth) (:ordinal 7) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-c::cloop :slot
 ((:name sb-c::blocks) (:ordinal 8)
  (:type (common-lisp:or common-lisp:null sb-c::cblock))))
(:mop-direct sb-c::cloop :slot ((:name sb-int:info) (:ordinal 9)))
(:mop-direct sb-c::cloop :prototype
 #<sb-c::cloop :kind 0 :head 0 :tail 0 :exits 0 :depth 0>)
(:mop-direct sb-c::lvar :superclass sb-sys:structure!object)
(:mop-direct sb-c::lvar :package-name "SB-C")
(:mop-direct sb-c::lvar :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::lvar :classof common-lisp:structure-class)
(:mop-direct sb-c::lvar :typeof common-lisp:structure-class)
(:mop-direct sb-c::lvar :superclass sb-sys:structure!object)
(:mop-direct sb-c::lvar :slot
 ((:name sb-c::dest) (:ordinal 1)
  (:type (common-lisp:or sb-c::node common-lisp:null))))
(:mop-direct sb-c::lvar :slot
 ((:name sb-c::%derived-type) (:ordinal 2)
  (:type (common-lisp:or sb-kernel:ctype common-lisp:null))))
(:mop-direct sb-c::lvar :slot
 ((:name sb-c::uses) (:ordinal 3)
  (:type (common-lisp:or sb-c::node common-lisp:list))))
(:mop-direct sb-c::lvar :slot
 ((:name sb-c::reoptimize) (:ordinal 4) (:initform common-lisp:t)
  (:type common-lisp:boolean)))
(:mop-direct sb-c::lvar :slot
 ((:name sb-c::%externally-checkable-type) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null sb-kernel:ctype))))
(:mop-direct sb-c::lvar :slot
 ((:name common-lisp:dynamic-extent) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null sb-c::cleanup))))
(:mop-direct sb-c::lvar :slot ((:name sb-int:info) (:ordinal 7)))

(:mop-direct sb-c::ctran :superclass sb-sys:structure!object)
(:mop-direct sb-c::ctran :package-name "SB-C")
(:mop-direct sb-c::ctran :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::ctran :classof common-lisp:structure-class)
(:mop-direct sb-c::ctran :typeof common-lisp:structure-class)
(:mop-direct sb-c::ctran :superclass sb-sys:structure!object)
(:mop-direct sb-c::ctran :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform :unused)
  (:type (common-lisp:member :unused :inside-block :block-start))))
(:mop-direct sb-c::ctran :slot
 ((:name sb-c::next) (:ordinal 2)
  (:type (common-lisp:or sb-c::node common-lisp:null))))
(:mop-direct sb-c::ctran :slot
 ((:name sb-c::use) (:ordinal 3)
  (:type (common-lisp:or sb-c::node common-lisp:null))))
(:mop-direct sb-c::ctran :slot
 ((:name common-lisp:block) (:ordinal 4)
  (:type (common-lisp:or sb-c::cblock common-lisp:null))))

(:mop-direct sb-int:sset-element :superclass sb-sys:structure!object)
(:mop-direct sb-regalloc::vertex :superclass sb-int:sset-element)
(:mop-direct sb-c::constraint :superclass sb-int:sset-element)
(:mop-direct sb-assem::instruction :superclass sb-int:sset-element)
(:mop-direct sb-c:tn :superclass sb-int:sset-element)
(:mop-direct sb-c::leaf :superclass sb-int:sset-element)
(:mop-direct sb-c::cblock :superclass sb-int:sset-element)
(:mop-direct sb-c::node :superclass sb-int:sset-element)
(:mop-direct sb-int:sset-element :package-name "SB-INT")
(:mop-direct sb-int:sset-element :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:sset-element :classof common-lisp:structure-class)
(:mop-direct sb-int:sset-element :typeof common-lisp:structure-class)
(:mop-direct sb-int:sset-element :superclass sb-sys:structure!object)
(:mop-direct sb-int:sset-element :slot
 ((:name common-lisp:number) (:ordinal 1)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-regalloc::vertex :superclass sb-int:sset-element)
(:mop-direct sb-regalloc::vertex :package-name "SB-REGALLOC")
(:mop-direct sb-regalloc::vertex :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-regalloc::vertex :classof common-lisp:structure-class)
(:mop-direct sb-regalloc::vertex :typeof common-lisp:structure-class)
(:mop-direct sb-regalloc::vertex :superclass sb-int:sset-element)
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::incidence) (:ordinal 1)
  (:initform (sb-regalloc::make-ordered-set)) (:type sb-regalloc::ordered-set)))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::initial-domain) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::initial-domain-size) (:ordinal 3) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-c:tn) (:ordinal 4) (:type sb-c:tn)))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::pack-type) (:ordinal 5)
  (:type (common-lisp:member :normal :wired :restricted))))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::color) (:ordinal 6)
  (:type (common-lisp:or common-lisp:fixnum common-lisp:null))))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::invisible) (:ordinal 7)))
(:mop-direct sb-regalloc::vertex :slot
 ((:name sb-regalloc::spill-cost) (:ordinal 8) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-regalloc::vertex :prototype
 #S(sb-regalloc::vertex
    :number 0
    :incidence 0
    :initial-domain 0
    :initial-domain-size 0
    :tn 0
    :pack-type 0
    :color 0
    :invisible 0
    :spill-cost 0))
(:mop-direct sb-c::constraint :superclass sb-int:sset-element)
(:mop-direct sb-c::constraint :package-name "SB-C")
(:mop-direct sb-c::constraint :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::constraint :classof common-lisp:structure-class)
(:mop-direct sb-c::constraint :typeof common-lisp:structure-class)
(:mop-direct sb-c::constraint :superclass sb-int:sset-element)
(:mop-direct sb-c::constraint :slot
 ((:name sb-c::kind) (:ordinal 1)
  (:type
   (common-lisp:member common-lisp:typep common-lisp:< common-lisp:>
                       common-lisp:eql))))
(:mop-direct sb-c::constraint :slot
 ((:name sb-c::x) (:ordinal 2) (:type sb-c::lambda-var)))
(:mop-direct sb-c::constraint :slot
 ((:name sb-c::y) (:ordinal 3) (:type sb-c::constraint-y)))
(:mop-direct sb-c::constraint :slot
 ((:name sb-c::not-p) (:ordinal 4) (:type common-lisp:boolean)))
(:mop-direct sb-c::constraint :prototype
 #S(sb-c::constraint :number 0 :kind 0 :x 0 :y 0 :not-p 0))
(:mop-direct sb-assem::instruction :superclass sb-int:sset-element)
(:mop-direct sb-assem::instruction :package-name "SB-ASSEM")
(:mop-direct sb-assem::instruction :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem::instruction :classof common-lisp:structure-class)
(:mop-direct sb-assem::instruction :typeof common-lisp:structure-class)
(:mop-direct sb-assem::instruction :superclass sb-int:sset-element)
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::emitter) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::attributes) (:ordinal 2)
  (:initform (sb-assem::instruction-attributes)) (:type sb-c:attributes)))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-int:delay) (:ordinal 3) (:initform 0)
  (:type (common-lisp:and common-lisp:fixnum common-lisp:unsigned-byte))))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::depth) (:ordinal 4)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:and common-lisp:fixnum
                                    common-lisp:unsigned-byte)))))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::read-dependencies) (:ordinal 5)
  (:initform (sb-int:make-sset)) (:type sb-int:sset)))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::write-dependencies) (:ordinal 6)
  (:initform (sb-int:make-sset)) (:type sb-int:sset)))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::write-dependents) (:ordinal 7)
  (:initform (sb-int:make-sset)) (:type sb-int:sset)))
(:mop-direct sb-assem::instruction :slot
 ((:name sb-assem::read-dependents) (:ordinal 8) (:initform (sb-int:make-sset))
  (:type sb-int:sset)))

(:mop-direct sb-c:tn :superclass sb-int:sset-element)
(:mop-direct sb-c:tn :package-name "SB-C")
(:mop-direct sb-c:tn :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:tn :classof common-lisp:structure-class)
(:mop-direct sb-c:tn :typeof common-lisp:structure-class)
(:mop-direct sb-c:tn :superclass sb-int:sset-element)
(:mop-direct sb-c:tn :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:member :normal :environment :debug-environment :save :save-once
                       :specified-save :load :constant :component :alias))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c:primitive-type) (:ordinal 2)
  (:type (common-lisp:or sb-c:primitive-type common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::leaf) (:ordinal 3)
  (:type (common-lisp:or sb-c::leaf common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::next) (:ordinal 4)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-assem:reads) (:ordinal 5)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-assem:writes) (:ordinal 6)
  (:type (common-lisp:or sb-c:tn-ref common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::next*) (:ordinal 7)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::local) (:ordinal 8)
  (:type (common-lisp:or sb-c::ir2-block common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::local-number) (:ordinal 9)
  (:type (common-lisp:or sb-c::local-tn-number common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::local-conflicts) (:ordinal 10)
  (:initform
   (common-lisp:make-array sb-c::local-tn-limit :element-type 'common-lisp:bit
                           :initial-element 0))
  (:type sb-c::local-tn-bit-vector)))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::global-conflicts) (:ordinal 11)
  (:type (common-lisp:or common-lisp:null sb-c::global-conflicts))))
(:mop-direct sb-c:tn :slot ((:name sb-c::current-conflict) (:ordinal 12)))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::save-tn) (:ordinal 13)
  (:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c:sc) (:ordinal 14)
  (:type (common-lisp:or sb-c:sc common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::offset) (:ordinal 15)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::cost) (:ordinal 16) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::physenv) (:ordinal 17)
  (:type (common-lisp:or sb-c::physenv common-lisp:null))))
(:mop-direct sb-c:tn :slot
 ((:name sb-c::loop-depth) (:ordinal 18) (:initform 0)
  (:type common-lisp:fixnum)))

(:mop-direct sb-c::leaf :superclass sb-int:sset-element)
(:mop-direct sb-kernel:constant :superclass sb-c::leaf)
(:mop-direct sb-c::functional :superclass sb-c::leaf)
(:mop-direct sb-c::basic-var :superclass sb-c::leaf)
(:mop-direct sb-c::leaf :package-name "SB-C")
(:mop-direct sb-c::leaf :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::leaf :classof common-lisp:structure-class)
(:mop-direct sb-c::leaf :typeof common-lisp:structure-class)
(:mop-direct sb-c::leaf :superclass sb-int:sset-element)
(:mop-direct sb-c::leaf :slot
 ((:name common-lisp:number) (:ordinal 1)
  (:initform (common-lisp:incf sb-c::*compiler-sset-counter*))
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::leaf :slot
 ((:name sb-c::%source-name) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:or common-lisp:symbol
                   (common-lisp:and common-lisp:cons
                                    (common-lisp:satisfies
                                     sb-int:legal-fun-name-p))))))
(:mop-direct sb-c::leaf :slot
 ((:name common-lisp:type) (:ordinal 3) (:initform sb-kernel:*universal-type*)
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::leaf :slot
 ((:name sb-c::defined-type) (:ordinal 4)
  (:initform sb-kernel:*universal-type*) (:type sb-kernel:ctype)))
(:mop-direct sb-c::leaf :slot
 ((:name sb-c::where-from) (:ordinal 5) (:initform :assumed)
  (:type
   (common-lisp:member :declared :assumed :defined-here :defined
                       :defined-method))))
(:mop-direct sb-c::leaf :slot
 ((:name sb-c::refs) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::leaf :slot
 ((:name sb-c::ever-used) (:ordinal 7) (:type common-lisp:boolean)))
(:mop-direct sb-c::leaf :slot
 ((:name sb-c::extent) (:ordinal 8)
  (:type
   (common-lisp:member common-lisp:nil :maybe-dynamic :always-dynamic
                       :indefinite))))
(:mop-direct sb-c::leaf :slot ((:name sb-int:info) (:ordinal 9)))
(:mop-direct sb-kernel:constant :superclass sb-c::leaf)
(:mop-direct sb-kernel:constant :package-name "SB-KERNEL")
(:mop-direct sb-kernel:constant :precedance
 (sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:constant :classof common-lisp:structure-class)
(:mop-direct sb-kernel:constant :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:constant :superclass sb-c::leaf)
(:mop-direct sb-kernel:constant :slot
 ((:name sb-c::value) (:ordinal 1) (:initform (sb-int:missing-arg))))
(:mop-direct sb-kernel:constant :slot
 ((:name sb-c::boxed-tn) (:ordinal 2)
  (:type (common-lisp:or common-lisp:null sb-c:tn))))
(:mop-direct sb-kernel:constant :prototype
 #<sb-kernel:constant :value 0 {1005C8C6A3}>)
(:mop-direct sb-c::functional :superclass sb-c::leaf)
(:mop-direct sb-c::optional-dispatch :superclass sb-c::functional)
(:mop-direct sb-c::clambda :superclass sb-c::functional)
(:mop-direct sb-c::functional :package-name "SB-C")
(:mop-direct sb-c::functional :precedance
 (sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::functional :classof common-lisp:structure-class)
(:mop-direct sb-c::functional :typeof common-lisp:structure-class)
(:mop-direct sb-c::functional :superclass sb-c::leaf)
(:mop-direct sb-c::functional :slot
 ((:name sb-c::%source-name) (:ordinal 1) (:initform 'sb-c::.anonymous.)
  (:type
   (common-lisp:or common-lisp:symbol
                   (common-lisp:and common-lisp:cons
                                    (common-lisp:satisfies
                                     sb-int:legal-fun-name-p))))))
(:mop-direct sb-c::functional :slot
 ((:name common-lisp:type) (:ordinal 2)
  (:initform (sb-kernel:specifier-type 'common-lisp:function))
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::where-from) (:ordinal 3) (:initform :defined)
  (:type
   (common-lisp:member :declared :assumed :defined-here :defined
                       :defined-method))))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::%debug-name) (:ordinal 4)
  (:type
   (common-lisp:or common-lisp:null
                   (common-lisp:not
                    (common-lisp:satisfies sb-int:legal-fun-name-p))))))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::kind) (:ordinal 5)
  (:type
   (common-lisp:member common-lisp:nil :optional :deleted :external :toplevel
                       :escape :cleanup :let :mv-let :assignment :zombie
                       :toplevel-xep))))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::has-external-references-p) (:ordinal 6)))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::entry-fun) (:ordinal 7)
  (:type (common-lisp:or sb-c::functional common-lisp:null))))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::inlinep) (:ordinal 8) (:type sb-c::inlinep)))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::inline-expansion) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-c::functional :slot
 ((:name sb-kernel:lexenv) (:ordinal 10) (:initform sb-c:*lexenv*)
  (:type sb-kernel:lexenv)))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::arg-documentation) (:ordinal 11)
  (:type (common-lisp:or common-lisp:list (common-lisp:member :unspecified)))))
(:mop-direct sb-c::functional :slot
 ((:name common-lisp:documentation) (:ordinal 12)
  (:type (common-lisp:or common-lisp:null common-lisp:string))))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::allocator) (:ordinal 13)
  (:type (common-lisp:or common-lisp:null sb-c::combination))))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::plist) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::xref) (:ordinal 15) (:type common-lisp:list)))
(:mop-direct sb-c::functional :slot
 ((:name sb-c::inline-expanded) (:ordinal 16)))
(:mop-direct sb-c::optional-dispatch :superclass sb-c::functional)
(:mop-direct sb-c::optional-dispatch :package-name "SB-C")
(:mop-direct sb-c::optional-dispatch :precedance
 (sb-c::functional sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::optional-dispatch :classof common-lisp:structure-class)
(:mop-direct sb-c::optional-dispatch :typeof common-lisp:structure-class)
(:mop-direct sb-c::optional-dispatch :superclass sb-c::functional)
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::arglist) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::allowp) (:ordinal 2) (:type common-lisp:boolean)))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::keyp) (:ordinal 3) (:type common-lisp:boolean)))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::min-args) (:ordinal 4) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::max-args) (:ordinal 5) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::entry-points) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::more-entry) (:ordinal 7)
  (:type (common-lisp:or sb-c::clambda common-lisp:null))))
(:mop-direct sb-c::optional-dispatch :slot
 ((:name sb-c::main-entry) (:ordinal 8)
  (:type (common-lisp:or sb-c::clambda common-lisp:null))))
(:mop-direct sb-c::optional-dispatch :prototype
 #<sb-c::optional-dispatch
   :%source-name 0
   :%debug-name 0
   :type 0
   :where-from 0
   :arglist 0
   :allowp 0
   :keyp 0
   :min-args 0
   :max-args 0
   :entry-points 0
   :more-entry 0
   :main-entry 0 {1005CC7EE3}>)
(:mop-direct sb-c::clambda :superclass sb-c::functional)
(:mop-direct sb-c::clambda :package-name "SB-C")
(:mop-direct sb-c::clambda :precedance
 (sb-c::functional sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::clambda :classof common-lisp:structure-class)
(:mop-direct sb-c::clambda :typeof common-lisp:structure-class)
(:mop-direct sb-c::clambda :superclass sb-c::functional)
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::vars) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::optional-dispatch) (:ordinal 2)
  (:type (common-lisp:or sb-c::optional-dispatch common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c:bind) (:ordinal 3)
  (:type (common-lisp:or sb-c:bind common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name common-lisp:return) (:ordinal 4)
  (:type (common-lisp:or sb-c::creturn common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::home) (:ordinal 5)
  (:type (common-lisp:or sb-c::clambda common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::lets) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::entries) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::calls-or-closes) (:ordinal 8) (:initform (sb-int:make-sset))
  (:type (common-lisp:or common-lisp:null sb-int:sset))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::tail-set) (:ordinal 9)
  (:type (common-lisp:or sb-c::tail-set common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::physenv) (:ordinal 10)
  (:type (common-lisp:or sb-c::physenv common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::call-lexenv) (:ordinal 11)
  (:type (common-lisp:or sb-kernel:lexenv common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::children) (:ordinal 12) (:type common-lisp:list)))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::parent) (:ordinal 13)
  (:type (common-lisp:or sb-c::clambda common-lisp:null))))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::allow-instrumenting) (:ordinal 14)
  (:initform sb-c::*allow-instrumenting*) (:type common-lisp:boolean)))
(:mop-direct sb-c::clambda :slot
 ((:name sb-c::system-lambda-p) (:ordinal 15) (:type common-lisp:boolean)))
(:mop-direct sb-c::clambda :prototype

(:mop-direct sb-c::functional :prototype
 #<sb-c::functional :%source-name 0 :%debug-name 0 {1005D0D3A3}>)
(:mop-direct sb-c::basic-var :superclass sb-c::leaf)
(:mop-direct sb-c::lambda-var :superclass sb-c::basic-var)
(:mop-direct sb-c::global-var :superclass sb-c::basic-var)
(:mop-direct sb-c::basic-var :package-name "SB-C")
(:mop-direct sb-c::basic-var :precedance
 (sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::basic-var :classof common-lisp:structure-class)
(:mop-direct sb-c::basic-var :typeof common-lisp:structure-class)
(:mop-direct sb-c::basic-var :superclass sb-c::leaf)
(:mop-direct sb-c::basic-var :slot
 ((:name sb-c::sets) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::lambda-var :superclass sb-c::basic-var)
(:mop-direct sb-c::lambda-var :package-name "SB-C")
(:mop-direct sb-c::lambda-var :precedance
 (sb-c::basic-var sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::lambda-var :classof common-lisp:structure-class)
(:mop-direct sb-c::lambda-var :typeof common-lisp:structure-class)
(:mop-direct sb-c::lambda-var :superclass sb-c::basic-var)
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::flags) (:ordinal 1) (:initform (sb-c::lambda-var-attributes))
  (:type sb-c:attributes)))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::home) (:ordinal 2)
  (:type (common-lisp:or common-lisp:null sb-c::clambda))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::arg-info) (:ordinal 3)
  (:type (common-lisp:or sb-c::arg-info common-lisp:null))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::specvar) (:ordinal 4)
  (:type (common-lisp:or sb-c::global-var common-lisp:null))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::constraints) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null common-lisp:t))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::ctype-constraints) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null common-lisp:hash-table))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::eq-constraints) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null common-lisp:hash-table))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::eql-var-constraints) (:ordinal 8)
  (:type
   (common-lisp:or common-lisp:null (common-lisp:array common-lisp:t 1)))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::inheritable-constraints) (:ordinal 9)
  (:type
   (common-lisp:or common-lisp:null (common-lisp:array common-lisp:t 1)))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::private-constraints) (:ordinal 10)
  (:type
   (common-lisp:or common-lisp:null (common-lisp:array common-lisp:t 1)))))
(:mop-direct sb-c::lambda-var :slot
 ((:name sb-c::last-initial-type) (:ordinal 11)
  (:initform sb-kernel:*universal-type*) (:type sb-kernel:ctype)))
(:mop-direct sb-c::lambda-var :slot ((:name sb-c::fop-value) (:ordinal 12)))
(:mop-direct sb-c::lambda-var :prototype
 #<sb-c::lambda-var
   :%source-name 0
   :type 0
   :where-from 0
   :arg-info 0
   :specvar 0 {1005D3CEE3}>)
(:mop-direct sb-c::global-var :superclass sb-c::basic-var)
(:mop-direct sb-c::defined-fun :superclass sb-c::global-var)
(:mop-direct sb-c::global-var :package-name "SB-C")
(:mop-direct sb-c::global-var :precedance
 (sb-c::basic-var sb-c::leaf sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::global-var :classof common-lisp:structure-class)
(:mop-direct sb-c::global-var :typeof common-lisp:structure-class)
(:mop-direct sb-c::global-var :superclass sb-c::basic-var)
(:mop-direct sb-c::global-var :slot
 ((:name sb-c::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :special :global-function :global :unknown))))
(:mop-direct sb-c::defined-fun :superclass sb-c::global-var)
(:mop-direct sb-c::defined-fun :package-name "SB-C")
(:mop-direct sb-c::defined-fun :precedance
 (sb-c::global-var sb-c::basic-var sb-c::leaf sb-int:sset-element
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::defined-fun :classof common-lisp:structure-class)
(:mop-direct sb-c::defined-fun :typeof common-lisp:structure-class)
(:mop-direct sb-c::defined-fun :superclass sb-c::global-var)
(:mop-direct sb-c::defined-fun :slot
 ((:name sb-c::where-from) (:ordinal 1) (:initform :defined)
  (:type
   (common-lisp:member :declared :assumed :defined-here :defined
                       :defined-method))))
(:mop-direct sb-c::defined-fun :slot
 ((:name sb-c::kind) (:ordinal 2) (:initform :global-function)
  (:type (common-lisp:member :special :global-function :global :unknown))))
(:mop-direct sb-c::defined-fun :slot
 ((:name sb-c::inlinep) (:ordinal 3) (:type sb-c::inlinep)))
(:mop-direct sb-c::defined-fun :slot
 ((:name sb-c::inline-expansion) (:ordinal 4)
  (:type (common-lisp:or common-lisp:cons common-lisp:null))))
(:mop-direct sb-c::defined-fun :slot
 ((:name sb-c::functionals) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-c::defined-fun :prototype
 #<sb-c::defined-fun :%source-name 0 :inlinep 0 :functionals 0 {1005D64BA3}>)
(:mop-direct sb-c::global-var :prototype
 #<sb-c::global-var
   :%source-name 0
   :type 0
   :defined-type 0
   :where-from 0
   :kind 0 {1005D7B503}>)
(:mop-direct sb-c::basic-var :prototype
 #S(sb-c::basic-var
    :number 0
    :%source-name 0
    :type 0
    :defined-type 0
    :where-from 0
    :refs 0
    :ever-used 0
    :extent 0
    :info 0
    :sets 0))
(:mop-direct sb-c::leaf :prototype
 #S(sb-c::leaf
    :number 0
    :%source-name 0
    :type 0
    :defined-type 0
    :where-from 0
    :refs 0
    :ever-used 0
    :extent 0
    :info 0))
(:mop-direct sb-c::cblock :superclass sb-int:sset-element)
(:mop-direct sb-c::cblock :package-name "SB-C")
(:mop-direct sb-c::cblock :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::cblock :classof common-lisp:structure-class)
(:mop-direct sb-c::cblock :typeof common-lisp:structure-class)
(:mop-direct sb-c::cblock :superclass sb-int:sset-element)
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::pred) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::succ) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::start) (:ordinal 3)
  (:type (common-lisp:or sb-c::ctran common-lisp:null))))
(:mop-direct sb-c::cblock :slot
 ((:name common-lisp:last) (:ordinal 4)
  (:type (common-lisp:or sb-c::node common-lisp:null))))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::next) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null sb-c::cblock))))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::prev) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null sb-c::cblock))))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::flags) (:ordinal 7)
  (:initform
   (sb-c::block-attributes sb-c::reoptimize sb-c::flush-p sb-c::type-check
                           sb-c::type-asserted sb-c::test-modified))
  (:type sb-c:attributes)))
(:mop-direct sb-c::cblock :slot ((:name sb-c::kill) (:ordinal 8)))
(:mop-direct sb-c::cblock :slot ((:name sb-c::gen) (:ordinal 9)))
(:mop-direct sb-c::cblock :slot ((:name sb-c::in) (:ordinal 10)))
(:mop-direct sb-c::cblock :slot ((:name sb-c::out) (:ordinal 11)))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::dominators) (:ordinal 12)
  (:type (common-lisp:or common-lisp:null sb-int:sset))))
(:mop-direct sb-c::cblock :slot
 ((:name common-lisp:loop) (:ordinal 13)
  (:type (common-lisp:or common-lisp:null sb-c::cloop))))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::loop-next) (:ordinal 14)
  (:type (common-lisp:or common-lisp:null sb-c::cblock))))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c:component) (:ordinal 15)
  (:initform
   (common-lisp:progn
    (sb-c::aver-live-component sb-c::*current-component*)
    sb-c::*current-component*))
  (:type (common-lisp:or sb-c:component common-lisp:null))))
(:mop-direct sb-c::cblock :slot ((:name sb-c::flag) (:ordinal 16)))
(:mop-direct sb-c::cblock :slot ((:name sb-int:info) (:ordinal 17)))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::xrefs) (:ordinal 18) (:type common-lisp:list)))
(:mop-direct sb-c::cblock :slot
 ((:name sb-c::physenv-cache) (:ordinal 19) (:initform :none)
  (:type
   (common-lisp:or common-lisp:null sb-c::physenv (common-lisp:member :none)))))

(:mop-direct sb-c::node :superclass sb-int:sset-element)
(:mop-direct sb-c::entry :superclass sb-c::node)
(:mop-direct sb-c::creturn :superclass sb-c::node)
(:mop-direct sb-c:bind :superclass sb-c::node)
(:mop-direct sb-c::cif :superclass sb-c::node)
(:mop-direct sb-c::valued-node :superclass sb-c::node)
(:mop-direct sb-c::node :package-name "SB-C")
(:mop-direct sb-c::node :precedance
 (sb-int:sset-element sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::node :classof common-lisp:structure-class)
(:mop-direct sb-c::node :typeof common-lisp:structure-class)
(:mop-direct sb-c::node :superclass sb-int:sset-element)
(:mop-direct sb-c::node :slot
 ((:name common-lisp:number) (:ordinal 1)
  (:initform (common-lisp:incf sb-c::*compiler-sset-counter*))
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::node :slot
 ((:name sb-c::reoptimize) (:ordinal 2) (:initform common-lisp:t)
  (:type common-lisp:boolean)))
(:mop-direct sb-c::node :slot
 ((:name sb-c::next) (:ordinal 3)
  (:type (common-lisp:or sb-c::ctran common-lisp:null))))
(:mop-direct sb-c::node :slot
 ((:name sb-c::prev) (:ordinal 4)
  (:type (common-lisp:or sb-c::ctran common-lisp:null))))
(:mop-direct sb-c::node :slot
 ((:name sb-kernel:lexenv) (:ordinal 5) (:initform sb-c:*lexenv*)
  (:type sb-kernel:lexenv)))
(:mop-direct sb-c::node :slot
 ((:name sb-c::source-path) (:ordinal 6) (:initform sb-c::*current-path*)
  (:type common-lisp:list)))
(:mop-direct sb-c::node :slot
 ((:name sb-c::tail-p) (:ordinal 7) (:type common-lisp:boolean)))
(:mop-direct sb-c::entry :superclass sb-c::node)
(:mop-direct sb-c::entry :package-name "SB-C")
(:mop-direct sb-c::entry :precedance
 (sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::entry :classof common-lisp:structure-class)
(:mop-direct sb-c::entry :typeof common-lisp:structure-class)
(:mop-direct sb-c::entry :superclass sb-c::node)
(:mop-direct sb-c::entry :slot
 ((:name sb-c::exits) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::entry :slot
 ((:name sb-c::cleanup) (:ordinal 2)
  (:type (common-lisp:or sb-c::cleanup common-lisp:null))))
(:mop-direct sb-c::entry :prototype #<sb-c::entry {1005E07AF3}>)
(:mop-direct sb-c::creturn :superclass sb-c::node)
(:mop-direct sb-c::creturn :package-name "SB-C")
(:mop-direct sb-c::creturn :precedance
 (sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::creturn :classof common-lisp:structure-class)
(:mop-direct sb-c::creturn :typeof common-lisp:structure-class)
(:mop-direct sb-c::creturn :superclass sb-c::node)
(:mop-direct sb-c::creturn :slot
 ((:name common-lisp:lambda) (:ordinal 1)
  (:type (common-lisp:or sb-c::clambda common-lisp:null))))
(:mop-direct sb-c::creturn :slot
 ((:name sb-c::result) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c::lvar)))
(:mop-direct sb-c::creturn :slot
 ((:name sb-c::result-type) (:ordinal 3) (:initform sb-kernel:*wild-type*)
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::creturn :prototype
 #<sb-c::creturn :lambda 0 :result-type 0 {1005E262E3}>)
(:mop-direct sb-c:bind :superclass sb-c::node)
(:mop-direct sb-c:bind :package-name "SB-C")
(:mop-direct sb-c:bind :precedance
 (sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:bind :classof common-lisp:structure-class)
(:mop-direct sb-c:bind :typeof common-lisp:structure-class)
(:mop-direct sb-c:bind :superclass sb-c::node)
(:mop-direct sb-c:bind :slot
 ((:name common-lisp:lambda) (:ordinal 1)
  (:type (common-lisp:or sb-c::clambda common-lisp:null))))
(:mop-direct sb-c:bind :prototype #<sb-c:bind :lambda 0>)
(:mop-direct sb-c::cif :superclass sb-c::node)
(:mop-direct sb-c::cif :package-name "SB-C")
(:mop-direct sb-c::cif :precedance
 (sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::cif :classof common-lisp:structure-class)
(:mop-direct sb-c::cif :typeof common-lisp:structure-class)
(:mop-direct sb-c::cif :superclass sb-c::node)
(:mop-direct sb-c::cif :slot
 ((:name sb-c::test) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c::lvar)))
(:mop-direct sb-c::cif :slot
 ((:name sb-c::consequent) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c::cif :slot
 ((:name sb-c::consequent-constraints) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:t))))
(:mop-direct sb-c::cif :slot
 ((:name sb-c::alternative) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-c::cblock)))
(:mop-direct sb-c::cif :slot
 ((:name sb-c::alternative-constraints) (:ordinal 5)
  (:type (common-lisp:or common-lisp:null common-lisp:t))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1001ded393, sp=0x7ffff2b9e158)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::valued-node :superclass sb-c::node)
(:mop-direct sb-ext:exit :superclass sb-c::valued-node)
(:mop-direct sb-alien:cast :superclass sb-c::valued-node)
(:mop-direct sb-c::basic-combination :superclass sb-c::valued-node)
(:mop-direct sb-c::cset :superclass sb-c::valued-node)
(:mop-direct sb-c::ref :superclass sb-c::valued-node)
(:mop-direct sb-c::valued-node :package-name "SB-C")
(:mop-direct sb-c::valued-node :precedance
 (sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::valued-node :classof common-lisp:structure-class)
(:mop-direct sb-c::valued-node :typeof common-lisp:structure-class)
(:mop-direct sb-c::valued-node :superclass sb-c::node)
(:mop-direct sb-c::valued-node :slot
 ((:name sb-c::derived-type) (:ordinal 1) (:initform sb-kernel:*wild-type*)
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::valued-node :slot
 ((:name sb-c::lvar) (:ordinal 2)
  (:type (common-lisp:or sb-c::lvar common-lisp:null))))
(:mop-direct sb-ext:exit :superclass sb-c::valued-node)
(:mop-direct sb-ext:exit :package-name "SB-EXT")
(:mop-direct sb-ext:exit :precedance
 (sb-c::valued-node sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:exit :classof common-lisp:structure-class)
(:mop-direct sb-ext:exit :typeof common-lisp:structure-class)
(:mop-direct sb-ext:exit :superclass sb-c::valued-node)
(:mop-direct sb-ext:exit :slot
 ((:name sb-c::entry) (:ordinal 1)
  (:type (common-lisp:or sb-c::entry common-lisp:null))))
(:mop-direct sb-ext:exit :slot
 ((:name sb-c::value) (:ordinal 2)
  (:type (common-lisp:or sb-c::lvar common-lisp:null))))
(:mop-direct sb-ext:exit :slot
 ((:name sb-c::nlx-info) (:ordinal 3)
  (:type (common-lisp:or sb-c::nlx-info common-lisp:null))))
(:mop-direct sb-ext:exit :prototype
 #<sb-ext:exit :entry 0 :value 0 {1005E8C6A3}>)
(:mop-direct sb-alien:cast :superclass sb-c::valued-node)
(:mop-direct sb-alien:cast :package-name "SB-ALIEN")
(:mop-direct sb-alien:cast :precedance
 (sb-c::valued-node sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien:cast :classof common-lisp:structure-class)
(:mop-direct sb-alien:cast :typeof common-lisp:structure-class)
(:mop-direct sb-alien:cast :superclass sb-c::valued-node)
(:mop-direct sb-alien:cast :slot
 ((:name sb-c::asserted-type) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-alien:cast :slot
 ((:name sb-c::type-to-check) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-alien:cast :slot
 ((:name sb-c::%type-check) (:ordinal 3) (:initform common-lisp:t)
  (:type (common-lisp:member common-lisp:t :external common-lisp:nil))))
(:mop-direct sb-alien:cast :slot
 ((:name sb-c::vestigial-exit-lexenv) (:ordinal 4)
  (:type (common-lisp:or sb-kernel:lexenv common-lisp:null))))
(:mop-direct sb-alien:cast :slot
 ((:name sb-c::vestigial-exit-entry-lexenv) (:ordinal 5)
  (:type (common-lisp:or sb-kernel:lexenv common-lisp:null))))
(:mop-direct sb-alien:cast :slot
 ((:name sb-c::value) (:ordinal 6) (:initform (sb-int:missing-arg))
  (:type sb-c::lvar)))
(:mop-direct sb-alien:cast :prototype
 #<sb-alien:cast
   :%type-check 0
   :value 0
   :asserted-type 0
   :type-to-check 0
   :vestigial-exit-lexenv 0
   :vestigial-exit-entry-lexenv 0 {1005EAE5B3}>)
(:mop-direct sb-c::basic-combination :superclass sb-c::valued-node)
(:mop-direct sb-c::mv-combination :superclass sb-c::basic-combination)
(:mop-direct sb-c::combination :superclass sb-c::basic-combination)
(:mop-direct sb-c::basic-combination :package-name "SB-C")
(:mop-direct sb-c::basic-combination :precedance
 (sb-c::valued-node sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::basic-combination :classof common-lisp:structure-class)
(:mop-direct sb-c::basic-combination :typeof common-lisp:structure-class)
(:mop-direct sb-c::basic-combination :superclass sb-c::valued-node)
(:mop-direct sb-c::basic-combination :slot
 ((:name sb-c::fun) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-c::lvar)))
(:mop-direct sb-c::basic-combination :slot
 ((:name sb-c::args) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::basic-combination :slot
 ((:name sb-c::kind) (:ordinal 3) (:initform :full)
  (:type (common-lisp:member :local :full :error :known))))
(:mop-direct sb-c::basic-combination :slot
 ((:name sb-c::fun-info) (:ordinal 4)
  (:type (common-lisp:or sb-c::fun-info common-lisp:null))))
(:mop-direct sb-c::basic-combination :slot
 ((:name sb-c::type-validated-for-leaf) (:ordinal 5)))
(:mop-direct sb-c::basic-combination :slot ((:name sb-int:info) (:ordinal 6)))
(:mop-direct sb-c::basic-combination :slot
 ((:name sb-c::step-info) (:ordinal 7)))
(:mop-direct sb-c::mv-combination :superclass sb-c::basic-combination)
(:mop-direct sb-c::mv-combination :package-name "SB-C")
(:mop-direct sb-c::mv-combination :precedance
 (sb-c::basic-combination sb-c::valued-node sb-c::node sb-int:sset-element
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::mv-combination :classof common-lisp:structure-class)
(:mop-direct sb-c::mv-combination :typeof common-lisp:structure-class)
(:mop-direct sb-c::mv-combination :superclass sb-c::basic-combination)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1001de4065, sp=0x7ffff2b9e018)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::combination :superclass sb-c::basic-combination)
(:mop-direct sb-c::combination :package-name "SB-C")
(:mop-direct sb-c::combination :precedance
 (sb-c::basic-combination sb-c::valued-node sb-c::node sb-int:sset-element
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::combination :classof common-lisp:structure-class)
(:mop-direct sb-c::combination :typeof common-lisp:structure-class)
(:mop-direct sb-c::combination :superclass sb-c::basic-combination)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1001da9222, sp=0x7ffff2b9e018)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::basic-combination :prototype
 #S(sb-c::basic-combination
    :number 0
    :reoptimize 0
    :next 0
    :prev 0
    :lexenv 0
    :source-path 0
    :tail-p 0
    :derived-type 0
    :lvar 0
    :fun 0
    :args 0
    :kind 0
    :fun-info 0
    :type-validated-for-leaf 0
    :info 0
    :step-info 0))
(:mop-direct sb-c::cset :superclass sb-c::valued-node)
(:mop-direct sb-c::cset :package-name "SB-C")
(:mop-direct sb-c::cset :precedance
 (sb-c::valued-node sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::cset :classof common-lisp:structure-class)
(:mop-direct sb-c::cset :typeof common-lisp:structure-class)
(:mop-direct sb-c::cset :superclass sb-c::valued-node)
(:mop-direct sb-c::cset :slot
 ((:name sb-c::derived-type) (:ordinal 1)
  (:initform (sb-kernel:make-single-value-type sb-kernel:*universal-type*))
  (:type sb-kernel:ctype)))
(:mop-direct sb-c::cset :slot
 ((:name sb-c::var) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-c::basic-var)))
(:mop-direct sb-c::cset :slot
 ((:name sb-c::value) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type sb-c::lvar)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1001dbd225, sp=0x7ffff2b9e0b8)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-c::ref :superclass sb-c::valued-node)
(:mop-direct sb-c::ref :package-name "SB-C")
(:mop-direct sb-c::ref :precedance
 (sb-c::valued-node sb-c::node sb-int:sset-element sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::ref :classof common-lisp:structure-class)
(:mop-direct sb-c::ref :typeof common-lisp:structure-class)
(:mop-direct sb-c::ref :superclass sb-c::valued-node)
(:mop-direct sb-c::ref :slot
 ((:name sb-c::reoptimize) (:ordinal 1) (:type common-lisp:boolean)))
(:mop-direct sb-c::ref :slot
 ((:name sb-c::leaf) (:ordinal 2) (:type sb-c::leaf)))
(:mop-direct sb-c::ref :slot
 ((:name sb-c::%source-name) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-c::ref :prototype
 #<sb-c::ref :%source-name 0 :leaf 0 {1005F45E23}>)
(:mop-direct sb-c::valued-node :prototype
 #S(sb-c::valued-node
    :number 0
    :reoptimize 0
    :next 0
    :prev 0
    :lexenv 0
    :source-path 0
    :tail-p 0
    :derived-type 0
    :lvar 0))
(:mop-direct sb-c::node :prototype
 #S(sb-c::node
    :number 0
    :reoptimize 0
    :next 0
    :prev 0
    :lexenv 0
    :source-path 0
    :tail-p 0))
(:mop-direct sb-int:sset-element :prototype #S(sb-int:sset-element :number 0))
(:mop-direct sb-vm:primitive-object :superclass sb-sys:structure!object)
(:mop-direct sb-vm:primitive-object :package-name "SB-VM")
(:mop-direct sb-vm:primitive-object :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-vm:primitive-object :classof common-lisp:structure-class)
(:mop-direct sb-vm:primitive-object :typeof common-lisp:structure-class)
(:mop-direct sb-vm:primitive-object :superclass sb-sys:structure!object)
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::widetag) (:ordinal 2) (:type common-lisp:symbol)))
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::lowtag) (:ordinal 3) (:type common-lisp:symbol)))
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::options) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::slots) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::size) (:ordinal 6) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-vm:primitive-object :slot
 ((:name sb-vm::variable-length-p) (:ordinal 7)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-vm:primitive-object :prototype
 #S(sb-vm:primitive-object
    :name 0
    :widetag 0
    :lowtag 0
    :options 0
    :slots 0
    :size 0
    :variable-length-p 0))
(:mop-direct sb-vm::prim-object-slot :superclass sb-sys:structure!object)
(:mop-direct sb-vm::prim-object-slot :package-name "SB-VM")
(:mop-direct sb-vm::prim-object-slot :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-vm::prim-object-slot :classof common-lisp:structure-class)
(:mop-direct sb-vm::prim-object-slot :typeof common-lisp:structure-class)
(:mop-direct sb-vm::prim-object-slot :superclass sb-sys:structure!object)
(:mop-direct sb-vm::prim-object-slot :slot
 ((:name sb-vm::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-vm::prim-object-slot :slot
 ((:name sb-vm::docs) (:ordinal 2)
  (:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-vm::prim-object-slot :slot
 ((:name sb-vm::rest-p) (:ordinal 3)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-vm::prim-object-slot :slot
 ((:name sb-vm::offset) (:ordinal 4) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-vm::prim-object-slot :slot
 ((:name sb-vm::options) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-vm::prim-object-slot :slot
 ((:name common-lisp:special) (:ordinal 6) (:type common-lisp:symbol)))
(:mop-direct sb-vm::prim-object-slot :prototype
 #S(sb-vm::prim-object-slot
    :name 0
    :docs 0
    :rest-p 0
    :offset 0
    :options 0
    :special 0))
(:mop-direct sb-kernel::classoid-cell :superclass sb-sys:structure!object)
(:mop-direct sb-kernel::classoid-cell :package-name "SB-KERNEL")
(:mop-direct sb-kernel::classoid-cell :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::classoid-cell :classof common-lisp:structure-class)
(:mop-direct sb-kernel::classoid-cell :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::classoid-cell :superclass sb-sys:structure!object)
(:mop-direct sb-kernel::classoid-cell :slot
 ((:name sb-kernel::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-kernel::classoid-cell :slot
 ((:name sb-kernel:classoid) (:ordinal 2)
  (:type (common-lisp:or sb-kernel:classoid common-lisp:null))))
(:mop-direct sb-kernel::classoid-cell :slot
 ((:name sb-kernel::pcl-class) (:ordinal 3)))
(:mop-direct sb-kernel::classoid-cell :prototype #<sb-kernel::classoid-cell 0>)
(:mop-direct sb-kernel:layout :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:layout :package-name "SB-KERNEL")
(:mop-direct sb-kernel:layout :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:layout :classof common-lisp:structure-class)
(:mop-direct sb-kernel:layout :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:layout :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::clos-hash) (:ordinal 1)
  (:initform (sb-kernel:random-layout-clos-hash))
  (:type sb-kernel:layout-clos-hash)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel:classoid) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:classoid)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::invalid) (:ordinal 3) (:initform :uninitialized)
  (:type
   (common-lisp:or common-lisp:cons
                   (common-lisp:member common-lisp:nil common-lisp:t
                                       :uninitialized)))))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::inherits) (:ordinal 4) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::depthoid) (:ordinal 5) (:initform -1)
  (:type sb-kernel:layout-depthoid)))
(:mop-direct sb-kernel:layout :slot
 ((:name common-lisp:length) (:ordinal 6) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-int:info) (:ordinal 7)
  (:type (common-lisp:or common-lisp:null sb-kernel:defstruct-description))))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::pure) (:ordinal 8)
  (:type (common-lisp:member common-lisp:t common-lisp:nil 0))))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::untagged-bitmap) (:ordinal 9) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::equalp-tests) (:ordinal 10) (:initform #())
  (:type common-lisp:simple-vector)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::source-location) (:ordinal 11)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::slot-list) (:ordinal 12) (:type common-lisp:list)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::slot-table) (:ordinal 13) (:initform #(1 common-lisp:nil))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-kernel:layout :slot
 ((:name sb-kernel::%for-std-class-b) (:ordinal 14) (:initform 0)
  (:type common-lisp:bit)))

(:mop-direct sb-kernel:defstruct-description :superclass
 sb-sys:structure!object)
(:mop-direct sb-kernel:defstruct-description :package-name "SB-KERNEL")
(:mop-direct sb-kernel:defstruct-description :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:defstruct-description :classof
 common-lisp:structure-class)
(:mop-direct sb-kernel:defstruct-description :typeof
 common-lisp:structure-class)
(:mop-direct sb-kernel:defstruct-description :superclass
 sb-sys:structure!object)
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::doc) (:ordinal 2)
  (:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::conc-name) (:ordinal 3)
  (:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::constructors) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::null-lexenv-p) (:ordinal 5) (:type common-lisp:boolean)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::copier-name) (:ordinal 6) (:type common-lisp:symbol)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::predicate-name) (:ordinal 7) (:type common-lisp:symbol)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::include) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::alternate-metaclass) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::slots) (:ordinal 10) (:type common-lisp:list)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::inherited-accessor-alist) (:ordinal 11)
  (:type common-lisp:list)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name common-lisp:length) (:ordinal 12) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name common-lisp:type) (:ordinal 13) (:initform 'common-lisp:structure)
  (:type
   (common-lisp:member common-lisp:structure common-lisp:vector
                       common-lisp:list sb-kernel:funcallable-structure))))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::element-type) (:ordinal 14) (:initform common-lisp:t)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::named) (:ordinal 15) (:type common-lisp:boolean)))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::offset) (:ordinal 16)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::print-option) (:ordinal 17)
  (:type (common-lisp:member common-lisp:nil :print-function :print-object))))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::printer-fname) (:ordinal 18)
  (:type (common-lisp:or common-lisp:cons common-lisp:symbol))))
(:mop-direct sb-kernel:defstruct-description :slot
 ((:name sb-kernel::pure) (:ordinal 19) (:initform :unspecified)
  (:type (common-lisp:member common-lisp:t common-lisp:nil :unspecified))))
(:mop-direct sb-kernel:defstruct-description :prototype
 #<sb-kernel:defstruct-description 0 {1006057C53}>)
(:mop-direct sb-c::debug-name-marker :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-name-marker :package-name "SB-C")
(:mop-direct sb-c::debug-name-marker :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::debug-name-marker :classof common-lisp:structure-class)
(:mop-direct sb-c::debug-name-marker :typeof common-lisp:structure-class)
(:mop-direct sb-c::debug-name-marker :superclass sb-sys:structure!object)
(:mop-direct sb-c::debug-name-marker :prototype ???)
(:mop-direct sb-c::undefined-warning :superclass sb-sys:structure!object)
(:mop-direct sb-c::undefined-warning :package-name "SB-C")
(:mop-direct sb-c::undefined-warning :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-c::undefined-warning :classof common-lisp:structure-class)
(:mop-direct sb-c::undefined-warning :typeof common-lisp:structure-class)
(:mop-direct sb-c::undefined-warning :superclass sb-sys:structure!object)
(:mop-direct sb-c::undefined-warning :slot
 ((:name sb-c::name) (:ordinal 1)
  (:type (common-lisp:or common-lisp:symbol common-lisp:list))))
(:mop-direct sb-c::undefined-warning :slot
 ((:name sb-c::kind) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:member :function :type :variable))))
(:mop-direct sb-c::undefined-warning :slot
 ((:name common-lisp:count) (:ordinal 3) (:initform 0)
  (:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::undefined-warning :slot
 ((:name sb-c::warnings) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::undefined-warning :prototype #<sb-c::undefined-warning 0>)
(:mop-direct sb-vm::room-info :superclass sb-sys:structure!object)
(:mop-direct sb-vm::room-info :package-name "SB-VM")
(:mop-direct sb-vm::room-info :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-vm::room-info :classof common-lisp:structure-class)
(:mop-direct sb-vm::room-info :typeof common-lisp:structure-class)
(:mop-direct sb-vm::room-info :superclass sb-sys:structure!object)
(:mop-direct sb-vm::room-info :slot
 ((:name sb-vm::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-vm::room-info :slot
 ((:name sb-vm::kind) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type
   (common-lisp:member :other :small-other :closure :instance :list :code
                       :vector-nil :weak-pointer))))
(:mop-direct sb-vm::room-info :prototype #S(sb-vm::room-info :name 0 :kind 0))
(:mop-direct sb-alien-internals:alien-type :superclass sb-sys:structure!object)
(:mop-direct sb-alien-internals:alien-values-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-float-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-integer-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien::alien-system-area-pointer-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-type :package-name "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-type :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-type :classof common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-type :typeof common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-type :superclass sb-sys:structure!object)
(:mop-direct sb-alien-internals:alien-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien::root)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-type :slot
 ((:name sb-alien::bits) (:ordinal 2)
  (:type (common-lisp:or common-lisp:null common-lisp:unsigned-byte))))
(:mop-direct sb-alien-internals:alien-type :slot
 ((:name sb-alien::alignment) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:unsigned-byte))))
(:mop-direct sb-alien-internals:alien-values-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-values-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-values-type :precedance
 (sb-alien-internals:alien-type sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien-internals:alien-values-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-values-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-values-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-values-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:values)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-values-type :slot
 ((:name common-lisp:values) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-alien-internals:alien-values-type :prototype

(:mop-direct sb-alien-internals:alien-float-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-double-float-type :superclass
 sb-alien-internals:alien-float-type)
(:mop-direct sb-alien-internals:alien-single-float-type :superclass
 sb-alien-internals:alien-float-type)
(:mop-direct sb-alien-internals:alien-float-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-float-type :precedance
 (sb-alien-internals:alien-type sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien-internals:alien-float-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-float-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-float-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-float-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:float)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-float-type :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-double-float-type :superclass
 sb-alien-internals:alien-float-type)
(:mop-direct sb-alien-internals:alien-double-float-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-double-float-type :precedance
 (sb-alien-internals:alien-float-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-double-float-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-double-float-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-double-float-type :superclass
 sb-alien-internals:alien-float-type)
(:mop-direct sb-alien-internals:alien-double-float-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:double-float)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-double-float-type :slot
 ((:name sb-alien::bits) (:ordinal 2) (:initform 64)
  (:type (common-lisp:or common-lisp:null common-lisp:unsigned-byte))))
(:mop-direct sb-alien-internals:alien-double-float-type :prototype

(:mop-direct sb-alien-internals:alien-single-float-type :superclass
 sb-alien-internals:alien-float-type)
(:mop-direct sb-alien-internals:alien-single-float-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-single-float-type :precedance
 (sb-alien-internals:alien-float-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-single-float-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-single-float-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-single-float-type :superclass
 sb-alien-internals:alien-float-type)
(:mop-direct sb-alien-internals:alien-single-float-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:single-float)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-single-float-type :slot
 ((:name sb-alien::bits) (:ordinal 2) (:initform 32)
  (:type (common-lisp:or common-lisp:null common-lisp:unsigned-byte))))
(:mop-direct sb-alien-internals:alien-single-float-type :prototype

(:mop-direct sb-alien-internals:alien-float-type :prototype

(:mop-direct sb-alien-internals:alien-integer-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-enum-type :superclass
 sb-alien-internals:alien-integer-type)
(:mop-direct sb-alien-internals:alien-boolean-type :superclass
 sb-alien-internals:alien-integer-type)
(:mop-direct sb-alien-internals:alien-integer-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-integer-type :precedance
 (sb-alien-internals:alien-type sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien-internals:alien-integer-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-integer-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-integer-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien-internals:alien-integer-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:integer)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-integer-type :slot
 ((:name sb-alien:signed) (:ordinal 2) (:initform common-lisp:t)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-alien-internals:alien-enum-type :superclass
 sb-alien-internals:alien-integer-type)
(:mop-direct sb-alien-internals:alien-enum-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-enum-type :precedance
 (sb-alien-internals:alien-integer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-enum-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-enum-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-enum-type :superclass
 sb-alien-internals:alien-integer-type)
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien:enum)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name sb-alien::bits) (:ordinal 2) (:initform 32)
  (:type (common-lisp:or common-lisp:null common-lisp:unsigned-byte))))
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name sb-alien::name) (:ordinal 3)))
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name sb-alien::from) (:ordinal 4)))
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name sb-alien::to) (:ordinal 5)))
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name sb-alien::kind) (:ordinal 6)))
(:mop-direct sb-alien-internals:alien-enum-type :slot
 ((:name sb-alien::offset) (:ordinal 7)))
(:mop-direct sb-alien-internals:alien-enum-type :prototype

(:mop-direct sb-alien-internals:alien-boolean-type :superclass
 sb-alien-internals:alien-integer-type)
(:mop-direct sb-alien-internals:alien-boolean-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-boolean-type :precedance
 (sb-alien-internals:alien-integer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-boolean-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-boolean-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-boolean-type :superclass
 sb-alien-internals:alien-integer-type)
(:mop-direct sb-alien-internals:alien-boolean-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:boolean)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-boolean-type :prototype

(:mop-direct sb-alien-internals:alien-integer-type :prototype

(:mop-direct sb-alien::alien-system-area-pointer-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien::alien-alien-value-type :superclass
 sb-alien::alien-system-area-pointer-type)
(:mop-direct sb-alien::alien-system-area-pointer-type :package-name "SB-ALIEN")
(:mop-direct sb-alien::alien-system-area-pointer-type :precedance
 (sb-alien-internals:alien-type sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::alien-system-area-pointer-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien::alien-system-area-pointer-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien::alien-system-area-pointer-type :superclass
 sb-alien-internals:alien-type)
(:mop-direct sb-alien::alien-system-area-pointer-type :slot
 ((:name common-lisp:class) (:ordinal 1)
  (:initform 'sb-sys:system-area-pointer) (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-alien-value-type :superclass
 sb-alien::alien-system-area-pointer-type)
(:mop-direct sb-alien::alien-mem-block-type :superclass
 sb-alien::alien-alien-value-type)
(:mop-direct sb-alien-internals:alien-pointer-type :superclass
 sb-alien::alien-alien-value-type)
(:mop-direct sb-alien::alien-alien-value-type :package-name "SB-ALIEN")
(:mop-direct sb-alien::alien-alien-value-type :precedance
 (sb-alien::alien-system-area-pointer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien::alien-alien-value-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien::alien-alien-value-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien::alien-alien-value-type :superclass
 sb-alien::alien-system-area-pointer-type)
(:mop-direct sb-alien::alien-alien-value-type :slot
 ((:name common-lisp:class) (:ordinal 1)
  (:initform 'sb-alien-internals:alien-value) (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-mem-block-type :superclass
 sb-alien::alien-alien-value-type)
(:mop-direct sb-alien-internals:alien-fun-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-record-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-array-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien::alien-mem-block-type :package-name "SB-ALIEN")
(:mop-direct sb-alien::alien-mem-block-type :precedance
 (sb-alien::alien-alien-value-type sb-alien::alien-system-area-pointer-type
  sb-alien-internals:alien-type sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::alien-mem-block-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien::alien-mem-block-type :typeof common-lisp:structure-class)
(:mop-direct sb-alien::alien-mem-block-type :superclass
 sb-alien::alien-alien-value-type)
(:mop-direct sb-alien::alien-mem-block-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien::mem-block)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-fun-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-fun-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-fun-type :precedance
 (sb-alien::alien-mem-block-type sb-alien::alien-alien-value-type
  sb-alien::alien-system-area-pointer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-fun-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-fun-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-fun-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-fun-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien::fun)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-fun-type :slot
 ((:name sb-alien::result-type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-alien-internals:alien-type)))
(:mop-direct sb-alien-internals:alien-fun-type :slot
 ((:name sb-alien::arg-types) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-alien-internals:alien-fun-type :slot
 ((:name sb-alien::stub) (:ordinal 4)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien-internals:alien-fun-type :slot
 ((:name sb-alien::convention) (:ordinal 5)
  (:type sb-alien::calling-convention)))
(:mop-direct sb-alien-internals:alien-fun-type :prototype

(:mop-direct sb-alien-internals:alien-record-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-record-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-record-type :precedance
 (sb-alien::alien-mem-block-type sb-alien::alien-alien-value-type
  sb-alien::alien-system-area-pointer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-record-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-record-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-record-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-record-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien::record)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-record-type :slot
 ((:name sb-alien::kind) (:ordinal 2) (:initform :struct)
  (:type (common-lisp:member :struct :union))))
(:mop-direct sb-alien-internals:alien-record-type :slot
 ((:name sb-alien::name) (:ordinal 3)
  (:type (common-lisp:or common-lisp:symbol common-lisp:null))))
(:mop-direct sb-alien-internals:alien-record-type :slot
 ((:name sb-alien::fields) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-alien-internals:alien-record-type :prototype

(:mop-direct sb-alien-internals:alien-array-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-array-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-array-type :precedance
 (sb-alien::alien-mem-block-type sb-alien::alien-alien-value-type
  sb-alien::alien-system-area-pointer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien-internals:alien-array-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-array-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-array-type :superclass
 sb-alien::alien-mem-block-type)
(:mop-direct sb-alien-internals:alien-array-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'common-lisp:array)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-array-type :slot
 ((:name sb-alien::element-type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-alien-internals:alien-type)))
(:mop-direct sb-alien-internals:alien-array-type :slot
 ((:name sb-alien::dimensions) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-alien-internals:alien-array-type :prototype

(:mop-direct sb-alien::alien-mem-block-type :prototype

(:mop-direct sb-alien-internals:alien-pointer-type :superclass
 sb-alien::alien-alien-value-type)
(:mop-direct sb-alien::alien-c-string-type :superclass
 sb-alien-internals:alien-pointer-type)
(:mop-direct sb-alien-internals:alien-pointer-type :package-name
 "SB-ALIEN-INTERNALS")
(:mop-direct sb-alien-internals:alien-pointer-type :precedance
 (sb-alien::alien-alien-value-type sb-alien::alien-system-area-pointer-type
  sb-alien-internals:alien-type sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien-internals:alien-pointer-type :classof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-pointer-type :typeof
 common-lisp:structure-class)
(:mop-direct sb-alien-internals:alien-pointer-type :superclass
 sb-alien::alien-alien-value-type)
(:mop-direct sb-alien-internals:alien-pointer-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien::pointer)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien-internals:alien-pointer-type :slot
 ((:name sb-alien::bits) (:ordinal 2) (:initform sb-vm:n-machine-word-bits)
  (:type (common-lisp:or common-lisp:null common-lisp:unsigned-byte))))
(:mop-direct sb-alien-internals:alien-pointer-type :slot
 ((:name sb-alien::to) (:ordinal 3)
  (:type (common-lisp:or sb-alien-internals:alien-type common-lisp:null))))
(:mop-direct sb-alien::alien-c-string-type :superclass
 sb-alien-internals:alien-pointer-type)
(:mop-direct sb-alien::alien-c-string-type :package-name "SB-ALIEN")
(:mop-direct sb-alien::alien-c-string-type :precedance
 (sb-alien-internals:alien-pointer-type sb-alien::alien-alien-value-type
  sb-alien::alien-system-area-pointer-type sb-alien-internals:alien-type
  sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-alien::alien-c-string-type :classof common-lisp:structure-class)
(:mop-direct sb-alien::alien-c-string-type :typeof common-lisp:structure-class)
(:mop-direct sb-alien::alien-c-string-type :superclass
 sb-alien-internals:alien-pointer-type)
(:mop-direct sb-alien::alien-c-string-type :slot
 ((:name common-lisp:class) (:ordinal 1) (:initform 'sb-alien:c-string)
  (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-c-string-type :slot
 ((:name sb-alien::external-format) (:ordinal 2) (:initform :default)
  (:type common-lisp:keyword)))
(:mop-direct sb-alien::alien-c-string-type :slot
 ((:name sb-alien::element-type) (:ordinal 3)
  (:initform 'common-lisp:character)
  (:type (common-lisp:member common-lisp:character common-lisp:base-char))))
(:mop-direct sb-alien::alien-c-string-type :slot
 ((:name sb-alien::not-null) (:ordinal 4) (:type common-lisp:boolean)))
(:mop-direct sb-alien::alien-c-string-type :prototype

(:mop-direct sb-alien-internals:alien-pointer-type :prototype

(:mop-direct sb-alien::alien-alien-value-type :prototype

(:mop-direct sb-alien::alien-system-area-pointer-type :prototype

(:mop-direct sb-alien-internals:alien-type :prototype

(:mop-direct sb-kernel:ctype :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:simd-pack-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:member-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:named-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:constant-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:args-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:negation-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:hairy-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:classoid :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:alien-type-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:cons-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:numeric-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:compound-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:character-set-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:array-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:ctype :package-name "SB-KERNEL")
(:mop-direct sb-kernel:ctype :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:ctype :classof common-lisp:structure-class)
(:mop-direct sb-kernel:ctype :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:ctype :superclass sb-sys:structure!object)
(:mop-direct sb-kernel:ctype :slot
 ((:name sb-kernel::class-info) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:ctype :slot
 ((:name sb-kernel::hash-value) (:ordinal 2)
  (:initform
   (sb-impl::quasi-random-address-based-hash sb-kernel::*ctype-hash-state*
                                             sb-kernel::+ctype-hash-mask+))
  (:type (common-lisp:signed-byte 63))))
(:mop-direct sb-kernel:simd-pack-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:simd-pack-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:simd-pack-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:simd-pack-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:simd-pack-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:simd-pack-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:simd-pack-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-ext:simd-pack))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:simd-pack-type :slot
 ((:name sb-kernel::element-type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:cons))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:member-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:member-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:member-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:member-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:member-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:member-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:member-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:member))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:member-type :slot
 ((:name sb-int:xset) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-int:xset)))
(:mop-direct sb-kernel:member-type :slot
 ((:name sb-kernel::fp-zeroes) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:named-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:named-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:named-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:named-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:named-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:named-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:named-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-kernel::named))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:named-type :slot
 ((:name sb-kernel::name) (:ordinal 2) (:type common-lisp:symbol)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:constant-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:constant-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:constant-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:constant-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:constant-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:constant-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:constant-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-kernel:constant))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:constant-type :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:args-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:fun-type :superclass sb-kernel:args-type)
(:mop-direct sb-kernel:values-type :superclass sb-kernel:args-type)
(:mop-direct sb-kernel:args-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:args-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:args-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:args-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:args-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:args-type :slot
 ((:name sb-kernel::required) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-kernel:args-type :slot
 ((:name sb-kernel::optional) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-kernel:args-type :slot
 ((:name common-lisp:rest) (:ordinal 3)
  (:type (common-lisp:or sb-kernel:ctype common-lisp:null))))
(:mop-direct sb-kernel:args-type :slot
 ((:name sb-kernel::keyp) (:ordinal 4) (:type common-lisp:boolean)))
(:mop-direct sb-kernel:args-type :slot
 ((:name sb-kernel::keywords) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-kernel:args-type :slot
 ((:name sb-kernel::allowp) (:ordinal 6) (:type common-lisp:boolean)))
(:mop-direct sb-kernel:fun-type :superclass sb-kernel:args-type)
(:mop-direct sb-kernel:fun-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:fun-type :precedance
 (sb-kernel:args-type sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:fun-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:fun-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:fun-type :superclass sb-kernel:args-type)
(:mop-direct sb-kernel:fun-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:function))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:fun-type :slot
 ((:name sb-kernel::wild-args) (:ordinal 2) (:type common-lisp:boolean)))
(:mop-direct sb-kernel:fun-type :slot
 ((:name sb-kernel::returns) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e330)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:values-type :superclass sb-kernel:args-type)
(:mop-direct sb-kernel:values-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:values-type :precedance
 (sb-kernel:args-type sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:values-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:values-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:values-type :superclass sb-kernel:args-type)
(:mop-direct sb-kernel:values-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:values))
  (:type sb-kernel::type-class)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e330)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:negation-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:negation-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:negation-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:negation-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:negation-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:negation-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:negation-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-kernel::negation))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:negation-type :slot
 ((:name common-lisp:type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:hairy-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:unknown-type :superclass sb-kernel:hairy-type)
(:mop-direct sb-kernel:hairy-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:hairy-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:hairy-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:hairy-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:hairy-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:hairy-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-kernel::hairy))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:hairy-type :slot
 ((:name sb-kernel::specifier) (:ordinal 2)))
(:mop-direct sb-kernel:unknown-type :superclass sb-kernel:hairy-type)
(:mop-direct sb-kernel:unknown-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:unknown-type :precedance
 (sb-kernel:hairy-type sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:unknown-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:unknown-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:unknown-type :superclass sb-kernel:hairy-type)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e330)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:classoid :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:structure-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:static-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:standard-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel::condition-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:built-in-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel::undefined-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel:classoid :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel:classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:classoid :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-kernel:classoid))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel::name) (:ordinal 2) (:type common-lisp:symbol)))
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel:layout) (:ordinal 3)
  (:type (common-lisp:or sb-kernel:layout common-lisp:null))))
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel::state) (:ordinal 4)
  (:type (common-lisp:member common-lisp:nil :read-only :sealed))))
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel::direct-superclasses) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel::subclasses) (:ordinal 6)
  (:type (common-lisp:or common-lisp:null common-lisp:hash-table))))
(:mop-direct sb-kernel:classoid :slot
 ((:name sb-kernel::pcl-class) (:ordinal 7)))
(:mop-direct sb-kernel:structure-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:structure-classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel:structure-classoid :precedance
 (sb-kernel:classoid sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:structure-classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel:structure-classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:structure-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:structure-classoid :prototype
 #<sb-kernel:structure-classoid 0 (0)>)
(:mop-direct sb-kernel:static-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:static-classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel:static-classoid :precedance
 (sb-kernel:classoid sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:static-classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel:static-classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:static-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:static-classoid :prototype
 #<sb-kernel:static-classoid 0 (0)>)
(:mop-direct sb-kernel:standard-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:standard-classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel:standard-classoid :precedance
 (sb-kernel:classoid sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:standard-classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel:standard-classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:standard-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:standard-classoid :prototype
 #<sb-kernel:standard-classoid 0 (0)>)
(:mop-direct sb-kernel::condition-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel::condition-classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel::condition-classoid :precedance
 (sb-kernel:classoid sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::condition-classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel::condition-classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::condition-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel::condition-classoid :slot
 ((:name sb-kernel::slots) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-classoid :slot
 ((:name sb-kernel::class-slots) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-classoid :slot
 ((:name sb-kernel::report) (:ordinal 3)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::condition-classoid :slot
 ((:name sb-kernel::direct-default-initargs) (:ordinal 4)
  (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-classoid :slot
 ((:name sb-kernel::cpl) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-classoid :slot
 ((:name sb-kernel::hairy-slots) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-classoid :prototype
 #<sb-kernel::condition-classoid 0 (0)>)
(:mop-direct sb-kernel:built-in-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:built-in-classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel:built-in-classoid :precedance
 (sb-kernel:classoid sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:built-in-classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel:built-in-classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:built-in-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel:built-in-classoid :slot
 ((:name sb-kernel::translation) (:ordinal 1)
  (:type
   (common-lisp:or sb-kernel:ctype
                   (common-lisp:member common-lisp:nil :initializing)))))
(:mop-direct sb-kernel:built-in-classoid :prototype
 #<sb-kernel:built-in-classoid 0 (0)>)
(:mop-direct sb-kernel::undefined-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel::undefined-classoid :package-name "SB-KERNEL")
(:mop-direct sb-kernel::undefined-classoid :precedance
 (sb-kernel:classoid sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::undefined-classoid :classof common-lisp:structure-class)
(:mop-direct sb-kernel::undefined-classoid :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::undefined-classoid :superclass sb-kernel:classoid)
(:mop-direct sb-kernel::undefined-classoid :prototype
 #<sb-kernel::undefined-classoid 0 (0)>)
(:mop-direct sb-kernel:classoid :prototype #<sb-kernel:classoid 0 (0)>)
(:mop-direct sb-kernel:alien-type-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:alien-type-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:alien-type-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:alien-type-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:alien-type-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:alien-type-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:alien-type-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-alien:alien))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:alien-type-type :slot
 ((:name sb-alien-internals:alien-type) (:ordinal 2)
  (:type sb-alien-internals:alien-type)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:cons-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:cons-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:cons-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:cons-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:cons-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:cons-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:cons-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:cons))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:cons-type :slot
 ((:name sb-kernel::car-type) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-kernel:cons-type :slot
 ((:name sb-kernel::cdr-type) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:numeric-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:numeric-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:numeric-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:numeric-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:numeric-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:numeric-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:numeric-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:number))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:numeric-type :slot
 ((:name sb-kernel::enumerable) (:ordinal 2)))
(:mop-direct sb-kernel:numeric-type :slot
 ((:name common-lisp:class) (:ordinal 3)
  (:type
   (common-lisp:member common-lisp:integer common-lisp:rational
                       common-lisp:float common-lisp:nil))))
(:mop-direct sb-kernel:numeric-type :slot
 ((:name common-lisp:format) (:ordinal 4)
  (:type (common-lisp:or sb-kernel::float-format common-lisp:null))))
(:mop-direct sb-kernel:numeric-type :slot
 ((:name common-lisp:complexp) (:ordinal 5) (:initform :real)
  (:type (common-lisp:member :real :complex common-lisp:nil))))
(:mop-direct sb-kernel:numeric-type :slot
 ((:name sb-kernel::low) (:ordinal 6)
  (:type
   (common-lisp:or common-lisp:number common-lisp:cons common-lisp:null))))
(:mop-direct sb-kernel:numeric-type :slot
 ((:name sb-kernel::high) (:ordinal 7)
  (:type
   (common-lisp:or common-lisp:number common-lisp:cons common-lisp:null))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:compound-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:intersection-type :superclass sb-kernel:compound-type)
(:mop-direct sb-kernel:union-type :superclass sb-kernel:compound-type)
(:mop-direct sb-kernel:compound-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:compound-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:compound-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:compound-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:compound-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:compound-type :slot
 ((:name sb-kernel::enumerable) (:ordinal 1)))
(:mop-direct sb-kernel:compound-type :slot
 ((:name sb-kernel::types) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-kernel:intersection-type :superclass sb-kernel:compound-type)
(:mop-direct sb-kernel:intersection-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:intersection-type :precedance
 (sb-kernel:compound-type sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:intersection-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:intersection-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:intersection-type :superclass sb-kernel:compound-type)
(:mop-direct sb-kernel:intersection-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:intersection))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:intersection-type :prototype
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e330)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:union-type :superclass sb-kernel:compound-type)
(:mop-direct sb-kernel:union-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:union-type :precedance
 (sb-kernel:compound-type sb-kernel:ctype sb-sys:structure!object
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:union-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:union-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:union-type :superclass sb-kernel:compound-type)
(:mop-direct sb-kernel:union-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:union))
  (:type sb-kernel::type-class)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e330)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:character-set-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:character-set-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:character-set-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:character-set-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:character-set-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:character-set-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:character-set-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'sb-kernel:character-set))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:character-set-type :slot
 ((:name sb-kernel::pairs) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:list)))
(:mop-direct sb-kernel:character-set-type :prototype
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel:array-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:array-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:array-type :precedance
 (sb-kernel:ctype sb-sys:structure!object common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:array-type :classof common-lisp:structure-class)
(:mop-direct sb-kernel:array-type :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:array-type :superclass sb-kernel:ctype)
(:mop-direct sb-kernel:array-type :slot
 ((:name sb-kernel::class-info) (:ordinal 1)
  (:initform (sb-kernel::type-class-or-lose 'common-lisp:array))
  (:type sb-kernel::type-class)))
(:mop-direct sb-kernel:array-type :slot
 ((:name sb-kernel::dimensions) (:ordinal 2) (:initform 'common-lisp:*)
  (:type (common-lisp:or common-lisp:list (common-lisp:member common-lisp:*)))))
(:mop-direct sb-kernel:array-type :slot
 ((:name common-lisp:complexp) (:ordinal 3) (:initform :maybe)
  (:type (common-lisp:member common-lisp:t common-lisp:nil :maybe))))
(:mop-direct sb-kernel:array-type :slot
 ((:name sb-kernel::element-type) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-kernel:ctype)))
(:mop-direct sb-kernel:array-type :slot
 ((:name sb-kernel::specialized-element-type) (:ordinal 5)
  (:initform sb-kernel:*wild-type*) (:type sb-kernel:ctype)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e3d0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x65 (pc=0x100094b81d, sp=0x7ffff2b9e470)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.

(:mop-direct sb-kernel::type-class :superclass sb-sys:structure!object)
(:mop-direct sb-kernel::type-class :package-name "SB-KERNEL")
(:mop-direct sb-kernel::type-class :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::type-class :classof common-lisp:structure-class)
(:mop-direct sb-kernel::type-class :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::type-class :superclass sb-sys:structure!object)
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::simple-subtypep) (:ordinal 2)
  (:initform #'sb-kernel::must-supply-this) (:type common-lisp:function)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::complex-subtypep-arg1) (:ordinal 3)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::complex-subtypep-arg2) (:ordinal 4)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::simple-union2) (:ordinal 5)
  (:initform #'sb-kernel::hierarchical-union2) (:type common-lisp:function)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::complex-union2) (:ordinal 6)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::simple-intersection2) (:ordinal 7)
  (:initform #'sb-kernel::hierarchical-intersection2)
  (:type common-lisp:function)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::complex-intersection2) (:ordinal 8)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::simple-=) (:ordinal 9)
  (:initform #'sb-kernel::must-supply-this) (:type common-lisp:function)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::complex-=) (:ordinal 10)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel:negate) (:ordinal 11)
  (:initform #'sb-kernel::must-supply-this) (:type common-lisp:function)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::unparse) (:ordinal 12)
  (:initform #'sb-kernel::must-supply-this) (:type common-lisp:function)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::might-contain-other-types-p) (:ordinal 13)))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-kernel::enumerable-p) (:ordinal 14)
  (:type (common-lisp:or common-lisp:function common-lisp:null common-lisp:t))))
(:mop-direct sb-kernel::type-class :slot
 ((:name sb-int:singleton-p) (:ordinal 15)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-kernel::type-class :prototype #<sb-kernel::type-class 0>)
(:mop-direct sb-thread:mutex :superclass sb-sys:structure!object)
(:mop-direct sb-thread:mutex :package-name "SB-THREAD")
(:mop-direct sb-thread:mutex :precedance
 (sb-sys:structure!object common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-thread:mutex :classof common-lisp:structure-class)
(:mop-direct sb-thread:mutex :typeof common-lisp:structure-class)
(:mop-direct sb-thread:mutex :superclass sb-sys:structure!object)
(:mop-direct sb-thread:mutex :slot
 ((:name sb-thread::name) (:ordinal 1)
  (:type (common-lisp:or common-lisp:null sb-thread:thread-name))))
(:mop-direct sb-thread:mutex :slot
 ((:name sb-thread::%owner) (:ordinal 2)
  (:type (common-lisp:or common-lisp:null sb-thread:thread))))
(:mop-direct sb-thread:mutex :slot
 ((:name sb-thread::state) (:ordinal 3) (:initform 0)
  (:type common-lisp:fixnum)))
(:mop-direct sb-thread:mutex :prototype #<sb-thread:mutex 0 owner: 0>)
(:mop-direct sb-sys:structure!object :prototype #S(sb-sys:structure!object))
(:mop-direct sb-fasl::fasl-input :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::fasl-input :package-name "SB-FASL")
(:mop-direct sb-fasl::fasl-input :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::fasl-input :classof common-lisp:structure-class)
(:mop-direct sb-fasl::fasl-input :typeof common-lisp:structure-class)
(:mop-direct sb-fasl::fasl-input :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::fasl-input :slot
 ((:name common-lisp:stream) (:ordinal 1) (:type sb-kernel:ansi-stream)))
(:mop-direct sb-fasl::fasl-input :slot
 ((:name sb-fasl::table) (:ordinal 2)
  (:initform (sb-fasl::make-fop-vector 1000))
  (:type common-lisp:simple-vector)))
(:mop-direct sb-fasl::fasl-input :slot
 ((:name sb-fasl::stack) (:ordinal 3)
  (:initform (sb-fasl::make-fop-vector 100)) (:type common-lisp:simple-vector)))
(:mop-direct sb-fasl::fasl-input :slot
 ((:name sb-fasl::deprecated-stuff) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-fasl::fasl-input :slot
 ((:name sb-fasl::skip-until) (:ordinal 5)))
(:mop-direct sb-fasl::fasl-input :prototype
 #S(sb-fasl::fasl-input
    :stream 0
    :table 0
    :stack 0
    :deprecated-stuff 0
    :skip-until 0))
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:stream)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:structure-object)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::case-frob-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:concatenated-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:two-way-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:broadcast-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:synonym-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-pretty:pretty-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-kernel:ansi-stream :package-name "SB-KERNEL")
(:mop-direct sb-kernel:ansi-stream :precedance
 (common-lisp:stream common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:ansi-stream :classof common-lisp:structure-class)
(:mop-direct sb-kernel:ansi-stream :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::in-buffer) (:ordinal 1)
  (:type (common-lisp:or sb-kernel:ansi-stream-in-buffer common-lisp:null))))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::cin-buffer) (:ordinal 2)
  (:type (common-lisp:or sb-impl::ansi-stream-cin-buffer common-lisp:null))))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::in-index) (:ordinal 3)
  (:initform sb-impl::+ansi-stream-in-buffer-length+)
  (:type (common-lisp:integer 0 512))))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::in) (:ordinal 4) (:initform #'sb-kernel:ill-in)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::bin) (:ordinal 5) (:initform #'sb-kernel:ill-bin)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 6) (:initform #'sb-kernel:ill-bin)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::out) (:ordinal 7) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::bout) (:ordinal 8) (:initform #'sb-kernel:ill-bout)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::sout) (:ordinal 9) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::misc) (:ordinal 10) (:initform #'sb-impl::no-op-placeholder)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::input-char-pos) (:ordinal 11)))
(:mop-direct sb-sys:fd-stream :superclass common-lisp:file-stream)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-sys:fd-stream :package-name "SB-SYS")
(:mop-direct sb-sys:fd-stream :precedance
 (common-lisp:file-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:fd-stream :classof common-lisp:structure-class)
(:mop-direct sb-sys:fd-stream :typeof common-lisp:structure-class)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::misc) (:ordinal 1)
  (:initform #'sb-impl::fd-stream-misc-routine) (:type common-lisp:function)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::name) (:ordinal 2)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::file) (:ordinal 3)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::original) (:ordinal 4)
  (:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::delete-original) (:ordinal 5)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::element-size) (:ordinal 6) (:initform 1)
  (:type sb-int:index)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::element-type) (:ordinal 7)
  (:initform 'common-lisp:base-char)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::fd) (:ordinal 8) (:initform -1) (:type common-lisp:fixnum)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::fd-type) (:ordinal 9) (:initform :unknown)
  (:type common-lisp:keyword)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::buffering) (:ordinal 10) (:initform :full)
  (:type (common-lisp:member :full :line :none))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::dual-channel-p) (:ordinal 11)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-column) (:ordinal 12)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name common-lisp:listen) (:ordinal 13)
  (:type (common-lisp:member common-lisp:nil common-lisp:t :eof))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::serve-events) (:ordinal 14) (:type common-lisp:boolean)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::instead) (:ordinal 15)
  (:initform
   (common-lisp:make-array 0 :element-type 'common-lisp:character :adjustable
                           common-lisp:t :fill-pointer common-lisp:t))
  (:type (common-lisp:array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::ibuf) (:ordinal 16)
  (:type (common-lisp:or sb-impl::buffer common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::eof-forced-p) (:ordinal 17)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::obuf) (:ordinal 18)
  (:type (common-lisp:or sb-impl::buffer common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-queue) (:ordinal 19)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::handler) (:ordinal 20)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-ext:timeout) (:ordinal 21)
  (:type (common-lisp:or common-lisp:single-float common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name common-lisp:pathname) (:ordinal 22)
  (:type (common-lisp:or common-lisp:pathname common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::external-format) (:ordinal 23) (:initform :latin-1)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::char-size) (:ordinal 24) (:initform 1)
  (:type (common-lisp:or common-lisp:fixnum common-lisp:function))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-bytes) (:ordinal 25) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::bivalent-p) (:ordinal 26) (:type common-lisp:boolean)))
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-int:form-tracking-stream :package-name "SB-INT")
(:mop-direct sb-int:form-tracking-stream :precedance
 (sb-sys:fd-stream common-lisp:file-stream sb-kernel:ansi-stream
  common-lisp:stream common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:form-tracking-stream :classof common-lisp:structure-class)
(:mop-direct sb-int:form-tracking-stream :typeof common-lisp:structure-class)
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::misc) (:ordinal 1)
  (:initform #'sb-impl::tracking-stream-misc) (:type common-lisp:function)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::input-char-pos) (:ordinal 2) (:initform 0)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::observer) (:ordinal 3)
  (:initform
   (common-lisp:lambda (sb-impl::x sb-impl::y sb-impl::z)
     (common-lisp:declare
      (common-lisp:ignore sb-impl::x sb-impl::y sb-impl::z))))
  (:type common-lisp:function)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::newlines) (:ordinal 4)
  (:initform
   (common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::last-newline) (:ordinal 5) (:initform -1)
  (:type sb-kernel:index-or-minus-1)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::form-start-byte-pos) (:ordinal 6)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::form-start-char-pos) (:ordinal 7)))
(:mop-direct sb-int:form-tracking-stream :prototype
 #<sb-int:form-tracking-stream for 0 {10066B7D53}>)
(:mop-direct sb-sys:fd-stream :prototype #<sb-sys:fd-stream for 0 {10066CE4A3}>)
(:mop-direct sb-impl::case-frob-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::case-frob-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::case-frob-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::case-frob-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::case-frob-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::case-frob-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::case-frob-stream :slot
 ((:name sb-impl::misc) (:ordinal 1) (:initform #'sb-impl::case-frob-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::case-frob-stream :slot
 ((:name sb-impl::target) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct sb-impl::case-frob-stream :prototype
 #<sb-impl::case-frob-stream {10066EC4A3}>)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::fill-pointer-output-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::fill-pointer-output-stream :classof
 common-lisp:structure-class)
(:mop-direct sb-impl::fill-pointer-output-stream :typeof
 common-lisp:structure-class)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::fill-pointer-ouch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::sout) (:ordinal 2) (:initform #'sb-impl::fill-pointer-sout)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::misc) (:ordinal 3) (:initform #'sb-impl::fill-pointer-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name common-lisp:string) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-impl::string-with-fill-pointer)))
(:mop-direct sb-impl::fill-pointer-output-stream :prototype
 #<sb-impl::fill-pointer-output-stream {100670D723}>)
(:mop-direct sb-impl::string-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::string-output-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::string-output-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::string-output-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::string-ouch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::sout) (:ordinal 2) (:initform #'sb-impl::string-sout)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::misc) (:ordinal 3) (:initform #'sb-impl::string-out-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::buffer) (:ordinal 4)
  (:initform
   (common-lisp:make-string
    sb-impl::*string-output-stream-buffer-initial-size*))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::prev) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::next) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::pointer) (:ordinal 7) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-int:index) (:ordinal 8) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::index-cache) (:ordinal 9) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::element-type) (:ordinal 10)
  (:initform 'common-lisp:character) (:type sb-kernel:type-specifier)))
(:mop-direct sb-impl::string-output-stream :prototype
 #<sb-impl::string-output-stream {1006734E43}>)
(:mop-direct sb-impl::string-input-stream :superclass common-lisp:string-stream)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::string-input-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::string-input-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::string-input-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::string-inch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::misc) (:ordinal 2) (:initform #'sb-impl::string-in-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name common-lisp:string) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-string)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::current) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::end) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::string-input-stream :prototype
 #<sb-impl::string-input-stream {1006757113}>)
(:mop-direct common-lisp:concatenated-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:concatenated-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:concatenated-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:concatenated-stream :classof
 common-lisp:structure-class)
(:mop-direct common-lisp:concatenated-stream :typeof
 common-lisp:structure-class)
(:mop-direct common-lisp:concatenated-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::concatenated-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::concatenated-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::concatenated-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::misc) (:ordinal 4) (:initform #'sb-impl::concatenated-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::streams) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct common-lisp:concatenated-stream :prototype
 #<common-lisp:concatenated-stream :STREAMS 0 {10067784B3}>)
(:mop-direct common-lisp:two-way-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:echo-stream :superclass common-lisp:two-way-stream)
(:mop-direct common-lisp:two-way-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:two-way-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:two-way-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:two-way-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:two-way-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::two-way-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::two-way-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::two-way-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::out) (:ordinal 4) (:initform #'sb-impl::two-way-out)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::bout) (:ordinal 5) (:initform #'sb-impl::two-way-bout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::sout) (:ordinal 6) (:initform #'sb-impl::two-way-sout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::misc) (:ordinal 7) (:initform #'sb-impl::two-way-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::input-stream) (:ordinal 8) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::output-stream) (:ordinal 9) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct common-lisp:echo-stream :superclass common-lisp:two-way-stream)
(:mop-direct common-lisp:echo-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:echo-stream :precedance
 (common-lisp:two-way-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:echo-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:echo-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:echo-stream :superclass common-lisp:two-way-stream)
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::echo-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::echo-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::echo-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::misc) (:ordinal 4) (:initform #'sb-impl::echo-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::unread-stuff) (:ordinal 5) (:type common-lisp:boolean)))
(:mop-direct common-lisp:echo-stream :prototype
 #<common-lisp:echo-stream :INPUT-STREAM 0 :OUTPUT-STREAM 0 {10067A9793}>)
(:mop-direct common-lisp:two-way-stream :prototype
 #<common-lisp:two-way-stream :input-stream 0 :output-stream 0>)
(:mop-direct common-lisp:broadcast-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:broadcast-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:broadcast-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:broadcast-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:broadcast-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:broadcast-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::broadcast-out)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::bout) (:ordinal 2) (:initform #'sb-impl::broadcast-bout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::sout) (:ordinal 3) (:initform #'sb-impl::broadcast-sout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::misc) (:ordinal 4) (:initform #'sb-impl::broadcast-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::streams) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct common-lisp:broadcast-stream :prototype
 #<common-lisp:broadcast-stream {10067E9353}>)
(:mop-direct common-lisp:synonym-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:synonym-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:synonym-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:synonym-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:synonym-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:synonym-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::synonym-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::synonym-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::synonym-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::out) (:ordinal 4) (:initform #'sb-impl::synonym-out)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::bout) (:ordinal 5) (:initform #'sb-impl::synonym-bout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::sout) (:ordinal 6) (:initform #'sb-impl::synonym-sout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::misc) (:ordinal 7) (:initform #'sb-impl::synonym-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name common-lisp:symbol) (:ordinal 8) (:type common-lisp:symbol)))
(:mop-direct common-lisp:synonym-stream :prototype
 #<common-lisp:synonym-stream :SYMBOL 0 {100680D8E3}>)
(:mop-direct sb-pretty:pretty-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-pretty:pretty-stream :package-name "SB-PRETTY")
(:mop-direct sb-pretty:pretty-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty:pretty-stream :classof common-lisp:structure-class)
(:mop-direct sb-pretty:pretty-stream :typeof common-lisp:structure-class)
(:mop-direct sb-pretty:pretty-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::target) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-kernel:line-length) (:ordinal 2)
  (:initform
   (common-lisp:or common-lisp:*print-right-margin*
                   (sb-kernel:line-length sb-pretty::target)
                   sb-pretty::default-line-length))
  (:type sb-pretty::column)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::char-out-oneshot-hook) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer) (:ordinal 4)
  (:initform (common-lisp:make-string sb-pretty::initial-buffer-size))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer-fill-pointer) (:ordinal 5) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer-offset) (:ordinal 6) (:initform 0)
  (:type sb-pretty::posn)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer-start-column) (:ordinal 7)
  (:initform (common-lisp:or (sb-kernel:charpos sb-pretty::target) 0))
  (:type sb-pretty::column)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::line-number) (:ordinal 8) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::print-lines) (:ordinal 9)
  (:initform common-lisp:*print-lines*)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::blocks) (:ordinal 10)
  (:initform (common-lisp:list (sb-pretty::make-logical-block)))
  (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::prefix) (:ordinal 11)
  (:initform (common-lisp:make-string sb-pretty::initial-buffer-size))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::suffix) (:ordinal 12)
  (:initform (common-lisp:make-string sb-pretty::initial-buffer-size))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::queue-tail) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::queue-head) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::pending-blocks) (:ordinal 15) (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :prototype
 #<sb-pretty:pretty-stream {100683A873}>)
(:mop-direct sb-kernel:ansi-stream :prototype
 #<sb-kernel:ansi-stream {1006850E53}>)
(:mop-direct common-lisp:restart :superclass common-lisp:structure-object)
(:mop-direct common-lisp:restart :package-name "COMMON-LISP")
(:mop-direct common-lisp:restart :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:restart :classof common-lisp:structure-class)
(:mop-direct common-lisp:restart :typeof common-lisp:structure-class)
(:mop-direct common-lisp:restart :superclass common-lisp:structure-object)
(:mop-direct common-lisp:restart :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:symbol)))
(:mop-direct common-lisp:restart :slot
 ((:name common-lisp:function) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:function)))
(:mop-direct common-lisp:restart :slot
 ((:name sb-kernel::report-function) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct common-lisp:restart :slot
 ((:name sb-kernel::interactive-function) (:ordinal 4)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct common-lisp:restart :slot
 ((:name sb-kernel::test-function) (:ordinal 5)
  (:initform
   (common-lisp:lambda (common-lisp:cond)
     (common-lisp:declare (common-lisp:ignore common-lisp:cond))
     common-lisp:t))
  (:type common-lisp:function)))
(:mop-direct common-lisp:restart :slot
 ((:name sb-kernel::associated-conditions) (:ordinal 6)
  (:initform 'common-lisp:nil) (:type common-lisp:list)))
(:mop-direct common-lisp:restart :prototype
 #<common-lisp:restart 0 {1006872C83}>)
(:mop-direct sb-int:deprecation-info :superclass common-lisp:structure-object)
(:mop-direct sb-int:deprecation-info :package-name "SB-INT")
(:mop-direct sb-int:deprecation-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:deprecation-info :classof common-lisp:structure-class)
(:mop-direct sb-int:deprecation-info :typeof common-lisp:structure-class)
(:mop-direct sb-int:deprecation-info :superclass common-lisp:structure-object)
(:mop-direct sb-int:deprecation-info :slot
 ((:name sb-impl::state) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type sb-int:deprecation-state)))
(:mop-direct sb-int:deprecation-info :slot
 ((:name sb-impl::software) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type (common-lisp:or common-lisp:null common-lisp:string))))
(:mop-direct sb-int:deprecation-info :slot
 ((:name sb-impl::version) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:string)))
(:mop-direct sb-int:deprecation-info :slot
 ((:name sb-impl::replacements) (:ordinal 4) (:initform 'common-lisp:nil)
  (:type common-lisp:list)))
(:mop-direct sb-int:deprecation-info :prototype

(:mop-direct sb-c::policy-dependent-quality :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::policy-dependent-quality :package-name "SB-C")
(:mop-direct sb-c::policy-dependent-quality :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::policy-dependent-quality :classof
 common-lisp:structure-class)
(:mop-direct sb-c::policy-dependent-quality :typeof common-lisp:structure-class)
(:mop-direct sb-c::policy-dependent-quality :superclass
 common-lisp:structure-object)
(:mop-direct sb-c::policy-dependent-quality :slot
 ((:name sb-c::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-c::policy-dependent-quality :slot
 ((:name sb-c::expression) (:ordinal 2)))
(:mop-direct sb-c::policy-dependent-quality :slot
 ((:name sb-c::getter) (:ordinal 3)))
(:mop-direct sb-c::policy-dependent-quality :slot
 ((:name sb-c::values-documentation) (:ordinal 4)))
(:mop-direct sb-c::policy-dependent-quality :prototype
 #S(sb-c::policy-dependent-quality
    :name 0
    :expression 0
    :getter 0
    :values-documentation 0))
(:mop-direct sb-c::meta-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::meta-info :package-name "SB-C")
(:mop-direct sb-c::meta-info :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::meta-info :classof common-lisp:structure-class)
(:mop-direct sb-c::meta-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::meta-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::meta-info :slot
 ((:name common-lisp:number) (:ordinal 1) (:type sb-int:info-number)))
(:mop-direct sb-c::meta-info :slot
 ((:name sb-c::category) (:ordinal 2) (:type common-lisp:keyword)))
(:mop-direct sb-c::meta-info :slot
 ((:name sb-c::kind) (:ordinal 3) (:type common-lisp:keyword)))
(:mop-direct sb-c::meta-info :slot ((:name sb-c::type-spec) (:ordinal 4)))
(:mop-direct sb-c::meta-info :slot
 ((:name sb-c::type-checker) (:ordinal 5)
  (:type (sb-int:sfunction (common-lisp:t) common-lisp:t))))
(:mop-direct sb-c::meta-info :slot
 ((:name sb-c::validate-function) (:ordinal 6)
  (:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-c::meta-info :slot ((:name sb-c::default) (:ordinal 7)))
(:mop-direct sb-c::meta-info :prototype #<0 0, 0>)
(:mop-direct sb-c::abstract-lexenv :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:lexenv :superclass sb-c::abstract-lexenv)
(:mop-direct sb-c::abstract-lexenv :package-name "SB-C")
(:mop-direct sb-c::abstract-lexenv :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::abstract-lexenv :classof common-lisp:structure-class)
(:mop-direct sb-c::abstract-lexenv :typeof common-lisp:structure-class)
(:mop-direct sb-c::abstract-lexenv :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:lexenv :superclass sb-c::abstract-lexenv)
(:mop-direct sb-kernel:lexenv :package-name "SB-KERNEL")
(:mop-direct sb-kernel:lexenv :precedance
 (sb-c::abstract-lexenv common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:lexenv :classof common-lisp:structure-class)
(:mop-direct sb-kernel:lexenv :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:lexenv :superclass sb-c::abstract-lexenv)
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::funs) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::vars) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::blocks) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::tags) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::type-restrictions) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-kernel:lexenv :slot ((:name common-lisp:lambda) (:ordinal 6)))
(:mop-direct sb-kernel:lexenv :slot ((:name sb-c::cleanup) (:ordinal 7)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::handled-conditions) (:ordinal 8)
  (:initform sb-c::*handled-conditions*)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-kernel:disabled-package-locks) (:ordinal 9)
  (:initform sb-c::*disabled-package-locks*)))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::%policy) (:ordinal 10)
  (:type (common-lisp:or common-lisp:null sb-c:policy))))
(:mop-direct sb-kernel:lexenv :slot
 ((:name sb-c::user-data) (:ordinal 11) (:type common-lisp:list)))
(:mop-direct sb-kernel:lexenv :slot ((:name sb-c::parent) (:ordinal 12)))
(:mop-direct sb-kernel:lexenv :prototype
 #S(sb-kernel:lexenv
    :funs 0
    :vars 0
    :blocks 0
    :tags 0
    :type-restrictions 0
    :lambda 0
    :cleanup 0
    :handled-conditions 0
    :disabled-package-locks 0
    :%policy 0
    :user-data 0
    :parent 0))
(:mop-direct sb-c::abstract-lexenv :prototype #S(sb-c::abstract-lexenv))
(:mop-direct sb-c:policy :superclass common-lisp:structure-object)
(:mop-direct sb-c:policy :package-name "SB-C")
(:mop-direct sb-c:policy :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:policy :classof common-lisp:structure-class)
(:mop-direct sb-c:policy :typeof common-lisp:structure-class)
(:mop-direct sb-c:policy :superclass common-lisp:structure-object)
(:mop-direct sb-c:policy :slot
 ((:name sb-c::presence-bits) (:ordinal 1) (:initform 4227858432)
  (:type (common-lisp:unsigned-byte 32))))
(:mop-direct sb-c:policy :slot
 ((:name sb-c::primary-qualities) (:ordinal 2) (:initform 0)
  (:type (common-lisp:unsigned-byte 12))))
(:mop-direct sb-c:policy :slot
 ((:name sb-c::dependent-qualities) (:ordinal 3) (:initform 0)
  (:type (common-lisp:unsigned-byte 52))))
(:mop-direct sb-c:policy :prototype #<sb-c:policy common-lisp:nil>)
(:mop-direct sb-impl::comma :superclass common-lisp:structure-object)
(:mop-direct sb-impl::comma :package-name "SB-IMPL")
(:mop-direct sb-impl::comma :precedance
 (common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::comma :classof common-lisp:structure-class)
(:mop-direct sb-impl::comma :typeof common-lisp:structure-class)
(:mop-direct sb-impl::comma :superclass common-lisp:structure-object)
(:mop-direct sb-impl::comma :slot ((:name sb-impl::expr) (:ordinal 1)))
(:mop-direct sb-impl::comma :slot
 ((:name sb-impl::kind) (:ordinal 2) (:type (common-lisp:member 0 1 2))))
(:mop-direct sb-impl::comma :prototype ,0)
(:mop-direct common-lisp:structure-object :prototype
 #S(sb-pcl::dead-beef-structure-object))
(:mop-direct common-lisp:condition :superclass sb-pcl::slot-object)
(:mop-direct ql-http::cbuf-progress :superclass common-lisp:condition)
(:mop-direct sb-bsd-sockets:unknown-protocol :superclass common-lisp:condition)
(:mop-direct uiop/configuration:invalid-configuration :superclass
 common-lisp:condition)
(:mop-direct uiop/lisp-build:compile-condition :superclass
 common-lisp:condition)
(:mop-direct sb-int:bootstrap-package-not-found :superclass
 common-lisp:condition)
(:mop-direct sb-sys:system-condition :superclass common-lisp:condition)
(:mop-direct sb-ext:compiler-note :superclass common-lisp:condition)
(:mop-direct sb-kernel::parse-deprecated-type :superclass common-lisp:condition)
(:mop-direct sb-kernel:parse-unknown-type :superclass common-lisp:condition)
(:mop-direct sb-int:compiler-macro-keyword-problem :superclass
 common-lisp:condition)
(:mop-direct sb-kernel:proclamation-mismatch :superclass common-lisp:condition)
(:mop-direct sb-ext:step-condition :superclass common-lisp:condition)
(:mop-direct sb-int:encapsulated-condition :superclass common-lisp:condition)
(:mop-direct sb-int:reference-condition :superclass common-lisp:condition)
(:mop-direct common-lisp:simple-condition :superclass common-lisp:condition)
(:mop-direct common-lisp:warning :superclass common-lisp:condition)
(:mop-direct common-lisp:serious-condition :superclass common-lisp:condition)
(:mop-direct common-lisp:condition :package-name "COMMON-LISP")
(:mop-direct common-lisp:condition :precedance
 (sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:condition :classof sb-pcl::condition-class)
(:mop-direct common-lisp:condition :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:condition :superclass sb-pcl::slot-object)
(:mop-direct ql-http::cbuf-progress :superclass common-lisp:condition)
(:mop-direct ql-http::cbuf-progress :package-name "QL-HTTP")
(:mop-direct ql-http::cbuf-progress :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::cbuf-progress :classof sb-pcl::condition-class)
(:mop-direct ql-http::cbuf-progress :typeof sb-pcl::condition-class)
(:mop-direct ql-http::cbuf-progress :superclass common-lisp:condition)
(:mop-direct ql-http::cbuf-progress :slot
 ((:name ql-http::size) (:ordinal 1) (:initform '0) (:initargs (:size))
  (:readers (ql-http::cbuf-progress-size))
  (:writers ((common-lisp:setf ql-http::cbuf-progress-size)))))
(:mop-direct ql-http::cbuf-progress :prototype
 #<ql-http::cbuf-progress {100696EDF3}>)
(:mop-direct sb-bsd-sockets:unknown-protocol :superclass common-lisp:condition)
(:mop-direct sb-bsd-sockets:unknown-protocol :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:unknown-protocol :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:unknown-protocol :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:unknown-protocol :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:unknown-protocol :superclass common-lisp:condition)
(:mop-direct sb-bsd-sockets:unknown-protocol :slot
 ((:name sb-bsd-sockets::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-bsd-sockets::unknown-protocol-name))))
(:mop-direct sb-bsd-sockets:unknown-protocol :prototype
 #<sb-bsd-sockets:unknown-protocol {10069780B3}>)
(:mop-direct uiop/configuration:invalid-configuration :superclass
 common-lisp:condition)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct uiop/configuration:invalid-configuration :package-name
 "UIOP/CONFIGURATION")
(:mop-direct uiop/configuration:invalid-configuration :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/configuration:invalid-configuration :classof
 sb-pcl::condition-class)
(:mop-direct uiop/configuration:invalid-configuration :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/configuration:invalid-configuration :superclass
 common-lisp:condition)
(:mop-direct uiop/configuration:invalid-configuration :slot
 ((:name uiop/configuration::form) (:ordinal 1) (:initargs (:form))
  (:readers (uiop/configuration::condition-form))))
(:mop-direct uiop/configuration:invalid-configuration :slot
 ((:name uiop/configuration::location) (:ordinal 2) (:initargs (:location))
  (:readers (uiop/configuration::condition-location))))
(:mop-direct uiop/configuration:invalid-configuration :slot
 ((:name common-lisp:format) (:ordinal 3) (:initargs (:format))
  (:readers (uiop/configuration::condition-format))))
(:mop-direct uiop/configuration:invalid-configuration :slot
 ((:name uiop/configuration::arguments) (:ordinal 4)
  (:initform 'common-lisp:nil) (:initargs (:arguments))
  (:readers (uiop/configuration::condition-arguments))))
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 common-lisp:warning)
(:mop-direct asdf/source-registry:invalid-source-registry :package-name
 "ASDF/SOURCE-REGISTRY")
(:mop-direct asdf/source-registry:invalid-source-registry :precedance
 (uiop/configuration:invalid-configuration common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/source-registry:invalid-source-registry :classof
 sb-pcl::condition-class)
(:mop-direct asdf/source-registry:invalid-source-registry :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/source-registry:invalid-source-registry :slot
 ((:name common-lisp:format) (:ordinal 1)
  (:initform
   '(uiop/common-lisp::compatfmt
     "~@<Invalid source registry ~S~@[ in ~S~]~@{ ~@?~}~@:>"))
  (:initargs (:format))))
(:mop-direct asdf/source-registry:invalid-source-registry :prototype
 #<asdf/source-registry:invalid-source-registry {1006994823}>)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 common-lisp:warning)
(:mop-direct asdf/output-translations:invalid-output-translation :package-name
 "ASDF/OUTPUT-TRANSLATIONS")
(:mop-direct asdf/output-translations:invalid-output-translation :precedance
 (uiop/configuration:invalid-configuration common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/output-translations:invalid-output-translation :classof
 sb-pcl::condition-class)
(:mop-direct asdf/output-translations:invalid-output-translation :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/output-translations:invalid-output-translation :slot
 ((:name common-lisp:format) (:ordinal 1)
  (:initform
   '(uiop/common-lisp::compatfmt
     "~@<Invalid asdf output-translation ~S~@[ in ~S~]~@{ ~@?~}~@:>"))
  (:initargs (:format))))
(:mop-direct asdf/output-translations:invalid-output-translation :prototype
 #<asdf/output-translations:invalid-output-translation {10069A1633}>)
(:mop-direct uiop/configuration:invalid-configuration :prototype
 #<uiop/configuration:invalid-configuration {10069A3083}>)
(:mop-direct uiop/lisp-build:compile-condition :superclass
 common-lisp:condition)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-file-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-condition :package-name "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/lisp-build:compile-condition :classof sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-condition :typeof sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-condition :superclass
 common-lisp:condition)
(:mop-direct uiop/lisp-build:compile-condition :slot
 ((:name uiop/lisp-build::context-format) (:ordinal 1)
  (:initform 'common-lisp:nil) (:initargs (:context-format))
  (:readers (uiop/lisp-build::compile-condition-context-format))))
(:mop-direct uiop/lisp-build:compile-condition :slot
 ((:name uiop/lisp-build::context-arguments) (:ordinal 2)
  (:initform 'common-lisp:nil) (:initargs (:context-arguments))
  (:readers (uiop/lisp-build::compile-condition-context-arguments))))
(:mop-direct uiop/lisp-build:compile-condition :slot
 ((:name uiop/lisp-build::description) (:ordinal 3)
  (:initform 'common-lisp:nil) (:initargs (:description))
  (:readers (uiop/lisp-build::compile-condition-description))))
(:mop-direct uiop/lisp-build:compile-failed-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-failed-error :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-failed-error :precedance
 (uiop/lisp-build:compile-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct uiop/lisp-build:compile-failed-error :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-error :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-error :prototype
 #<uiop/lisp-build:compile-failed-error {10069BF633}>)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-failed-warning :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-failed-warning :precedance
 (uiop/lisp-build:compile-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/lisp-build:compile-failed-warning :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-warning :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-warning :prototype
 #<uiop/lisp-build:compile-failed-warning {10069C9813}>)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-warned-error :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-warned-error :precedance
 (uiop/lisp-build:compile-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct uiop/lisp-build:compile-warned-error :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-error :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-error :prototype
 #<uiop/lisp-build:compile-warned-error {10069D4133}>)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-warned-warning :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-warned-warning :precedance
 (uiop/lisp-build:compile-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/lisp-build:compile-warned-warning :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-warning :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-warning :prototype
 #<uiop/lisp-build:compile-warned-warning {10069DE373}>)
(:mop-direct uiop/lisp-build:compile-file-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-file-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-file-error :package-name "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-file-error :precedance
 (uiop/lisp-build:compile-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct uiop/lisp-build:compile-file-error :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-file-error :typeof sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-file-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-file-error :prototype
 #<uiop/lisp-build:compile-file-error {10069E84D3}>)
(:mop-direct uiop/lisp-build:compile-condition :prototype
 #<uiop/lisp-build:compile-condition {10069E9C63}>)
(:mop-direct sb-int:bootstrap-package-not-found :superclass
 common-lisp:condition)
(:mop-direct sb-int:bootstrap-package-not-found :package-name "SB-INT")
(:mop-direct sb-int:bootstrap-package-not-found :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:bootstrap-package-not-found :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:bootstrap-package-not-found :typeof sb-pcl::condition-class)
(:mop-direct sb-int:bootstrap-package-not-found :superclass
 common-lisp:condition)
(:mop-direct sb-int:bootstrap-package-not-found :slot
 ((:name sb-impl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-int:bootstrap-package-name))))
(:mop-direct sb-int:bootstrap-package-not-found :prototype
 #<sb-int:bootstrap-package-not-found {10069F1193}>)
(:mop-direct sb-sys:system-condition :superclass common-lisp:condition)
(:mop-direct sb-sys:interactive-interrupt :superclass sb-sys:system-condition)
(:mop-direct sb-sys:breakpoint-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:memory-fault-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:system-condition :package-name "SB-SYS")
(:mop-direct sb-sys:system-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:system-condition :classof sb-pcl::condition-class)
(:mop-direct sb-sys:system-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:system-condition :superclass common-lisp:condition)
(:mop-direct sb-sys:system-condition :slot
 ((:name sb-kernel::address) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:address)) (:readers (sb-sys:system-condition-address))))
(:mop-direct sb-sys:system-condition :slot
 ((:name sb-kernel::context) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:context)) (:readers (sb-sys:system-condition-context))))
(:mop-direct sb-sys:interactive-interrupt :superclass sb-sys:system-condition)
(:mop-direct sb-sys:interactive-interrupt :superclass
 common-lisp:serious-condition)
(:mop-direct sb-sys:interactive-interrupt :package-name "SB-SYS")
(:mop-direct sb-sys:interactive-interrupt :precedance
 (sb-sys:system-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:interactive-interrupt :classof sb-pcl::condition-class)
(:mop-direct sb-sys:interactive-interrupt :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:interactive-interrupt :superclass sb-sys:system-condition)
(:mop-direct sb-sys:interactive-interrupt :prototype
 #<sb-sys:interactive-interrupt {1006A01873}>)
(:mop-direct sb-sys:breakpoint-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:breakpoint-error :superclass common-lisp:error)
(:mop-direct sb-sys:breakpoint-error :package-name "SB-SYS")
(:mop-direct sb-sys:breakpoint-error :precedance
 (sb-sys:system-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:breakpoint-error :classof sb-pcl::condition-class)
(:mop-direct sb-sys:breakpoint-error :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:breakpoint-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:breakpoint-error :prototype
 #<sb-sys:breakpoint-error {1006A08B83}>)
(:mop-direct sb-sys:memory-fault-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:memory-fault-error :superclass common-lisp:error)
(:mop-direct sb-sys:memory-fault-error :package-name "SB-SYS")
(:mop-direct sb-sys:memory-fault-error :precedance
 (sb-sys:system-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:memory-fault-error :classof sb-pcl::condition-class)
(:mop-direct sb-sys:memory-fault-error :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:memory-fault-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:memory-fault-error :prototype
 #<sb-sys:memory-fault-error {1006A0FE53}>)
(:mop-direct sb-sys:system-condition :prototype
 #<sb-sys:system-condition {1006A10FF3}>)
(:mop-direct sb-ext:compiler-note :superclass common-lisp:condition)
(:mop-direct sb-int:simple-compiler-note :superclass sb-ext:compiler-note)
(:mop-direct sb-ext:compiler-note :package-name "SB-EXT")
(:mop-direct sb-ext:compiler-note :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:compiler-note :classof sb-pcl::condition-class)
(:mop-direct sb-ext:compiler-note :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:compiler-note :superclass common-lisp:condition)
(:mop-direct sb-int:simple-compiler-note :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-compiler-note :superclass sb-ext:compiler-note)
(:mop-direct sb-ext:code-deletion-note :superclass sb-int:simple-compiler-note)
(:mop-direct sb-int:simple-compiler-note :package-name "SB-INT")
(:mop-direct sb-int:simple-compiler-note :precedance
 (common-lisp:simple-condition sb-ext:compiler-note common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-compiler-note :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-compiler-note :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-compiler-note :superclass sb-ext:compiler-note)
(:mop-direct sb-ext:code-deletion-note :superclass sb-int:simple-compiler-note)
(:mop-direct sb-ext:code-deletion-note :package-name "SB-EXT")
(:mop-direct sb-ext:code-deletion-note :precedance
 (sb-int:simple-compiler-note common-lisp:simple-condition sb-ext:compiler-note
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:code-deletion-note :classof sb-pcl::condition-class)
(:mop-direct sb-ext:code-deletion-note :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:code-deletion-note :superclass sb-int:simple-compiler-note)
(:mop-direct sb-ext:code-deletion-note :prototype
 #<sb-ext:code-deletion-note {1006A23A73}>)
(:mop-direct sb-int:simple-compiler-note :prototype
 #<sb-int:simple-compiler-note {1006A24ED3}>)
(:mop-direct sb-ext:compiler-note :prototype
 #<sb-ext:compiler-note {1006A26073}>)
(:mop-direct sb-kernel::parse-deprecated-type :superclass common-lisp:condition)
(:mop-direct sb-kernel::parse-deprecated-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel::parse-deprecated-type :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::parse-deprecated-type :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::parse-deprecated-type :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::parse-deprecated-type :superclass common-lisp:condition)
(:mop-direct sb-kernel::parse-deprecated-type :slot
 ((:name sb-kernel::specifier) (:ordinal 1) (:initargs (:specifier))
  (:readers (sb-kernel::parse-deprecated-type-specifier))))
(:mop-direct sb-kernel::parse-deprecated-type :prototype
 #<sb-kernel::parse-deprecated-type {1006A2CD83}>)
(:mop-direct sb-kernel:parse-unknown-type :superclass common-lisp:condition)
(:mop-direct sb-kernel:parse-unknown-type :package-name "SB-KERNEL")
(:mop-direct sb-kernel:parse-unknown-type :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:parse-unknown-type :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:parse-unknown-type :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:parse-unknown-type :superclass common-lisp:condition)
(:mop-direct sb-kernel:parse-unknown-type :slot
 ((:name sb-kernel::specifier) (:ordinal 1) (:initargs (:specifier))
  (:readers (sb-kernel:parse-unknown-type-specifier))))
(:mop-direct sb-kernel:parse-unknown-type :prototype
 #<sb-kernel:parse-unknown-type {1006A339D3}>)
(:mop-direct sb-int:compiler-macro-keyword-problem :superclass
 common-lisp:condition)
(:mop-direct sb-int:compiler-macro-keyword-problem :package-name "SB-INT")
(:mop-direct sb-int:compiler-macro-keyword-problem :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:compiler-macro-keyword-problem :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:compiler-macro-keyword-problem :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:compiler-macro-keyword-problem :superclass
 common-lisp:condition)
(:mop-direct sb-int:compiler-macro-keyword-problem :slot
 ((:name sb-kernel::argument) (:ordinal 1) (:initargs (:argument))
  (:readers (sb-kernel::compiler-macro-keyword-argument))))
(:mop-direct sb-int:compiler-macro-keyword-problem :prototype
 #<sb-int:compiler-macro-keyword-problem {1006A3A7C3}>)
(:mop-direct sb-kernel:proclamation-mismatch :superclass common-lisp:condition)
(:mop-direct sb-kernel:ftype-proclamation-mismatch :superclass
 sb-kernel:proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch :superclass
 sb-kernel:proclamation-mismatch)
(:mop-direct sb-kernel:proclamation-mismatch :package-name "SB-KERNEL")
(:mop-direct sb-kernel:proclamation-mismatch :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:proclamation-mismatch :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:proclamation-mismatch :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:proclamation-mismatch :superclass common-lisp:condition)
(:mop-direct sb-kernel:proclamation-mismatch :slot
 ((:name sb-kernel::kind) (:ordinal 1) (:initargs (:kind))
  (:readers (sb-kernel::proclamation-mismatch-kind))))
(:mop-direct sb-kernel:proclamation-mismatch :slot
 ((:name sb-kernel::description) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:description))
  (:readers (sb-kernel::proclamation-mismatch-description))))
(:mop-direct sb-kernel:proclamation-mismatch :slot
 ((:name sb-kernel::name) (:ordinal 3) (:initargs (:name))
  (:readers (sb-kernel:proclamation-mismatch-name))))
(:mop-direct sb-kernel:proclamation-mismatch :slot
 ((:name sb-kernel::old) (:ordinal 4) (:initargs (:old))
  (:readers (sb-kernel:proclamation-mismatch-old))))
(:mop-direct sb-kernel:proclamation-mismatch :slot
 ((:name sb-kernel::new) (:ordinal 5) (:initargs (:new))
  (:readers (sb-kernel:proclamation-mismatch-new))))
(:mop-direct sb-kernel:ftype-proclamation-mismatch :superclass
 sb-kernel:proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch :package-name "SB-KERNEL")
(:mop-direct sb-kernel:ftype-proclamation-mismatch :precedance
 (sb-kernel:proclamation-mismatch common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:ftype-proclamation-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch :superclass
 sb-kernel:proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 common-lisp:error)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :precedance
 (common-lisp:error common-lisp:serious-condition
                    sb-kernel:ftype-proclamation-mismatch
                    sb-kernel:proclamation-mismatch common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :prototype
 #<sb-kernel:ftype-proclamation-mismatch-error {1006A54143}>)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :precedance
 (common-lisp:style-warning common-lisp:warning
  sb-kernel:ftype-proclamation-mismatch sb-kernel:proclamation-mismatch
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :prototype
 #<sb-kernel:ftype-proclamation-mismatch-warning {1006A5B6D3}>)
(:mop-direct sb-kernel:ftype-proclamation-mismatch :prototype
 #<sb-kernel:ftype-proclamation-mismatch {1006A5C723}>)
(:mop-direct sb-kernel:type-proclamation-mismatch :superclass
 sb-kernel:proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 sb-kernel:type-proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch :package-name "SB-KERNEL")
(:mop-direct sb-kernel:type-proclamation-mismatch :precedance
 (sb-kernel:proclamation-mismatch common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:type-proclamation-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:type-proclamation-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:type-proclamation-mismatch :superclass
 sb-kernel:proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 sb-kernel:type-proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :precedance
 (common-lisp:style-warning common-lisp:warning
  sb-kernel:type-proclamation-mismatch sb-kernel:proclamation-mismatch
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 sb-kernel:type-proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :prototype
 #<sb-kernel:type-proclamation-mismatch-warning {1006A69533}>)
(:mop-direct sb-kernel:type-proclamation-mismatch :prototype
 #<sb-kernel:type-proclamation-mismatch {1006A6B433}>)
(:mop-direct sb-kernel:proclamation-mismatch :prototype
 #<sb-kernel:proclamation-mismatch {1006A6C483}>)
(:mop-direct sb-ext:step-condition :superclass common-lisp:condition)
(:mop-direct sb-ext:step-finished-condition :superclass sb-ext:step-condition)
(:mop-direct sb-kernel::step-result-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-form-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-condition :package-name "SB-EXT")
(:mop-direct sb-ext:step-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:step-condition :classof sb-pcl::condition-class)
(:mop-direct sb-ext:step-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:step-condition :superclass common-lisp:condition)
(:mop-direct sb-ext:step-condition :slot
 ((:name sb-kernel:form) (:ordinal 1) (:initargs (:form))
  (:readers (sb-ext:step-condition-form))))
(:mop-direct sb-ext:step-finished-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-finished-condition :package-name "SB-EXT")
(:mop-direct sb-ext:step-finished-condition :precedance
 (sb-ext:step-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:step-finished-condition :classof sb-pcl::condition-class)
(:mop-direct sb-ext:step-finished-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:step-finished-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-finished-condition :prototype
 #<sb-ext:step-finished-condition {1006A7A003}>)
(:mop-direct sb-kernel::step-result-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-values-condition :superclass
 sb-kernel::step-result-condition)
(:mop-direct sb-kernel::step-result-condition :package-name "SB-KERNEL")
(:mop-direct sb-kernel::step-result-condition :precedance
 (sb-ext:step-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::step-result-condition :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::step-result-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::step-result-condition :superclass sb-ext:step-condition)
(:mop-direct sb-kernel::step-result-condition :slot
 ((:name sb-kernel::result) (:ordinal 1) (:initargs (:result))
  (:readers (sb-ext:step-condition-result))))
(:mop-direct sb-ext:step-values-condition :superclass
 sb-kernel::step-result-condition)
(:mop-direct sb-ext:step-values-condition :package-name "SB-EXT")
(:mop-direct sb-ext:step-values-condition :precedance
 (sb-kernel::step-result-condition sb-ext:step-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:step-values-condition :classof sb-pcl::condition-class)
(:mop-direct sb-ext:step-values-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:step-values-condition :superclass
 sb-kernel::step-result-condition)
(:mop-direct sb-ext:step-values-condition :prototype
 #<sb-ext:step-values-condition {1006A864A3}>)
(:mop-direct sb-kernel::step-result-condition :prototype
 #<sb-kernel::step-result-condition {1006A874F3}>)
(:mop-direct sb-ext:step-form-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-form-condition :package-name "SB-EXT")
(:mop-direct sb-ext:step-form-condition :precedance
 (sb-ext:step-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:step-form-condition :classof sb-pcl::condition-class)
(:mop-direct sb-ext:step-form-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:step-form-condition :superclass sb-ext:step-condition)
(:mop-direct sb-ext:step-form-condition :slot
 ((:name sb-kernel::args) (:ordinal 1) (:initargs (:args))
  (:readers (sb-ext:step-condition-args))))
(:mop-direct sb-ext:step-form-condition :prototype
 #<sb-ext:step-form-condition {1006A8E203}>)
(:mop-direct sb-ext:step-condition :prototype
 #<sb-ext:step-condition {1006A8F253}>)
(:mop-direct sb-int:encapsulated-condition :superclass common-lisp:condition)
(:mop-direct sb-eval::interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-impl::eval-error :superclass sb-int:encapsulated-condition)
(:mop-direct sb-int:interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c:fatal-compiler-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c:compiler-error :superclass sb-int:encapsulated-condition)
(:mop-direct sb-int:encapsulated-condition :package-name "SB-INT")
(:mop-direct sb-int:encapsulated-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:encapsulated-condition :classof sb-pcl::condition-class)
(:mop-direct sb-int:encapsulated-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-int:encapsulated-condition :superclass common-lisp:condition)
(:mop-direct sb-int:encapsulated-condition :slot
 ((:name common-lisp:condition) (:ordinal 1) (:initargs (:condition))
  (:readers (sb-int:encapsulated-condition))))
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-eval::interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-eval::interpreted-program-error :package-name "SB-EVAL")
(:mop-direct sb-eval::interpreted-program-error :precedance
 (common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:simple-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::interpreted-program-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreted-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-eval::interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-eval::interpreted-program-error :prototype
 #<sb-eval::interpreted-program-error {1006AA18C3}>)
(:mop-direct sb-impl::eval-error :superclass sb-int:encapsulated-condition)
(:mop-direct sb-impl::eval-error :package-name "SB-IMPL")
(:mop-direct sb-impl::eval-error :precedance
 (sb-int:encapsulated-condition common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-impl::eval-error :classof sb-pcl::condition-class)
(:mop-direct sb-impl::eval-error :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::eval-error :superclass sb-int:encapsulated-condition)
(:mop-direct sb-impl::eval-error :prototype #<sb-impl::eval-error {1006AA75F3}>)
(:mop-direct sb-int:interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-int:interpreted-program-error :package-name "SB-INT")
(:mop-direct sb-int:interpreted-program-error :precedance
 (common-lisp:program-error common-lisp:error common-lisp:serious-condition
  sb-int:encapsulated-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:interpreted-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:interpreted-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-int:interpreted-program-error :slot
 ((:name sb-kernel:form) (:ordinal 1) (:initargs (:form))
  (:readers (sb-kernel::program-error-form))))
(:mop-direct sb-int:interpreted-program-error :prototype
 #<sb-int:interpreted-program-error {1006AAFCD3}>)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-compile-file :package-name "SB-C")
(:mop-direct sb-c::input-error-in-compile-file :precedance
 (common-lisp:reader-error common-lisp:parse-error common-lisp:stream-error
  common-lisp:error common-lisp:serious-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::input-error-in-compile-file :classof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-compile-file :typeof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name common-lisp:position) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:position))
  (:readers (sb-c::input-error-in-compile-file-position))))
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name sb-c::line/col) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:line/col))
  (:readers (sb-c::input-error-in-compile-file-line/col))))
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name sb-c::invoker) (:ordinal 3) (:initform ''common-lisp:compile-file)
  (:initargs (:invoker))
  (:readers (sb-c::input-error-in-compile-file-invoker))))
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-load :package-name "SB-C")
(:mop-direct sb-c::input-error-in-load :precedance
 (sb-c::input-error-in-compile-file common-lisp:reader-error
  common-lisp:parse-error common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::input-error-in-load :classof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-load :typeof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-load :prototype
 #<sb-c::input-error-in-load {1006AC1743}>)
(:mop-direct sb-c::input-error-in-compile-file :prototype
 #<sb-c::input-error-in-compile-file {1006AC2793}>)
(:mop-direct sb-c:fatal-compiler-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c:fatal-compiler-error :package-name "SB-C")
(:mop-direct sb-c:fatal-compiler-error :precedance
 (sb-int:encapsulated-condition common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-c:fatal-compiler-error :classof sb-pcl::condition-class)
(:mop-direct sb-c:fatal-compiler-error :typeof sb-pcl::condition-class)
(:mop-direct sb-c:fatal-compiler-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c:fatal-compiler-error :prototype
 #<sb-c:fatal-compiler-error {1006AC82D3}>)
(:mop-direct sb-c:compiler-error :superclass sb-int:encapsulated-condition)
(:mop-direct sb-c:compiler-error :package-name "SB-C")
(:mop-direct sb-c:compiler-error :precedance
 (sb-int:encapsulated-condition common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-c:compiler-error :classof sb-pcl::condition-class)
(:mop-direct sb-c:compiler-error :typeof sb-pcl::condition-class)
(:mop-direct sb-c:compiler-error :superclass sb-int:encapsulated-condition)
(:mop-direct sb-c:compiler-error :prototype #<sb-c:compiler-error {1006ACDD73}>)
(:mop-direct sb-int:encapsulated-condition :prototype
 #<sb-int:encapsulated-condition {1006ACED73}>)
(:mop-direct sb-int:reference-condition :superclass common-lisp:condition)
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::new-value-specialization :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::invalid-superclass :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::initarg-error :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::slotd-initialization-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::no-primary-method :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-impl::save-condition :superclass sb-int:reference-condition)
(:mop-direct sb-ext:name-conflict :superclass sb-int:reference-condition)
(:mop-direct sb-format:format-error :superclass sb-int:reference-condition)
(:mop-direct sb-ext:deprecation-condition :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:invalid-array-error :superclass sb-int:reference-condition)
(:mop-direct sb-ext:package-lock-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:extension-failure :superclass sb-int:reference-condition)
(:mop-direct sb-int:format-args-mismatch :superclass sb-int:reference-condition)
(:mop-direct sb-int:local-argument-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:type-style-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:defconstant-uneql :superclass sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance :superclass sb-int:reference-condition)
(:mop-direct sb-int:constant-modified :superclass sb-int:reference-condition)
(:mop-direct sb-int:duplicate-definition :superclass sb-int:reference-condition)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-warning :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:reference-condition :package-name "SB-INT")
(:mop-direct sb-int:reference-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:reference-condition :classof sb-pcl::condition-class)
(:mop-direct sb-int:reference-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-int:reference-condition :superclass common-lisp:condition)
(:mop-direct sb-int:reference-condition :slot
 ((:name sb-kernel::references) (:ordinal 1) (:initargs (:references))
  (:readers (sb-int:reference-condition-references))))
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 common-lisp:type-error)
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 sb-int:reference-condition)
(:mop-direct sb-sequence::protocol-unimplemented :package-name "SB-SEQUENCE")
(:mop-direct sb-sequence::protocol-unimplemented :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-sequence::protocol-unimplemented :classof
 sb-pcl::condition-class)
(:mop-direct sb-sequence::protocol-unimplemented :typeof
 sb-pcl::condition-class)
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 sb-int:reference-condition)
(:mop-direct sb-sequence::protocol-unimplemented :prototype
 #<sb-sequence::protocol-unimplemented {1006AFE683}>)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::long-method-combination-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::long-method-combination-error :prototype
 #<sb-pcl::long-method-combination-error {1006B07CC3}>)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::print-object-stream-specializer :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::print-object-stream-specializer :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::print-object-stream-specializer :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::print-object-stream-specializer :prototype
 #<sb-pcl::print-object-stream-specializer
   "~@<Specializing on the second argument to ~S has ~
                    unportable effects, and also interferes with ~
                    precomputation of print functions for exceptional ~
                    situations.~@:>"
   {1006B25EE3}>)
(:mop-direct sb-pcl::new-value-specialization :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::new-value-specialization :superclass common-lisp:error)
(:mop-direct sb-pcl::new-value-specialization :package-name "SB-PCL")
(:mop-direct sb-pcl::new-value-specialization :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::new-value-specialization :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::new-value-specialization :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::new-value-specialization :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::new-value-specialization :slot
 ((:name sb-pcl::%method) (:ordinal 1) (:initargs (:method))
  (:readers (sb-pcl::new-value-specialization-method))))
(:mop-direct sb-pcl::new-value-specialization :prototype
 #<sb-pcl::new-value-specialization {1006B332D3}>)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :package-name "SB-PCL")
(:mop-direct sb-pcl::find-method-length-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::find-method-length-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::find-method-length-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::find-method-length-mismatch :prototype
 #<sb-pcl::find-method-length-mismatch {1006B3C153}>)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :package-name "SB-PCL")
(:mop-direct sb-pcl::metaobject-initialization-violation :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::metaobject-initialization-violation :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::metaobject-initialization-violation :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::metaobject-initialization-violation :prototype
 #<sb-pcl::metaobject-initialization-violation {1006B45903}>)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass common-lisp:error)
(:mop-direct sb-pcl::cpl-protocol-violation :package-name "SB-PCL")
(:mop-direct sb-pcl::cpl-protocol-violation :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::cpl-protocol-violation :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::cpl-protocol-violation :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::cpl-protocol-violation :slot
 ((:name common-lisp:class) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::cpl-protocol-violation-class))))
(:mop-direct sb-pcl::cpl-protocol-violation :slot
 ((:name sb-pcl::cpl) (:ordinal 2) (:initargs (:cpl))
  (:readers (sb-pcl::cpl-protocol-violation-cpl))))
(:mop-direct sb-pcl::cpl-protocol-violation :prototype
 #<sb-pcl::cpl-protocol-violation {1006B51773}>)
(:mop-direct sb-pcl::invalid-superclass :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::invalid-superclass :superclass common-lisp:error)
(:mop-direct sb-pcl::invalid-superclass :package-name "SB-PCL")
(:mop-direct sb-pcl::invalid-superclass :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::invalid-superclass :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-superclass :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-superclass :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::invalid-superclass :slot
 ((:name common-lisp:class) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::invalid-superclass-class))))
(:mop-direct sb-pcl::invalid-superclass :slot
 ((:name sb-pcl::superclass) (:ordinal 2) (:initargs (:superclass))
  (:readers (sb-pcl::invalid-superclass-superclass))))
(:mop-direct sb-pcl::invalid-superclass :prototype
 #<sb-pcl::invalid-superclass {1006B5CE73}>)
(:mop-direct sb-pcl::initarg-error :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::initarg-error :superclass common-lisp:program-error)
(:mop-direct sb-pcl::initarg-error :package-name "SB-PCL")
(:mop-direct sb-pcl::initarg-error :precedance
 (sb-int:reference-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::initarg-error :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::initarg-error :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::initarg-error :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::initarg-error :slot
 ((:name common-lisp:class) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::initarg-error-class))))
(:mop-direct sb-pcl::initarg-error :slot
 ((:name sb-pcl::initargs) (:ordinal 2) (:initargs (:initargs))
  (:readers (sb-pcl::initarg-error-initargs))))
(:mop-direct sb-pcl::initarg-error :prototype
 #<sb-pcl::initarg-error {1006B68113}>)
(:mop-direct sb-pcl::slotd-initialization-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::slotd-initialization-error :superclass common-lisp:error)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-error :package-name "SB-PCL")
(:mop-direct sb-pcl::slotd-initialization-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slotd-initialization-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-error :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::slotd-initialization-error :slot
 ((:name sb-pcl::initarg) (:ordinal 1) (:initargs (:initarg))
  (:readers (sb-pcl::slotd-initialization-error-initarg))))
(:mop-direct sb-pcl::slotd-initialization-error :slot
 ((:name sb-pcl::kind) (:ordinal 2) (:initargs (:kind))
  (:readers (sb-pcl::slotd-initialization-error-kind))))
(:mop-direct sb-pcl::slotd-initialization-error :slot
 ((:name sb-pcl::value) (:ordinal 3) (:initform 'common-lisp:nil)
  (:initargs (:value)) (:readers (sb-pcl::slotd-initialization-error-value))))
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :package-name "SB-PCL")
(:mop-direct sb-pcl::slotd-initialization-type-error :precedance
 (sb-pcl::slotd-initialization-error sb-int:reference-condition
  common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slotd-initialization-type-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-type-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :slot
 ((:name sb-pcl::value) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:datum :value))))
(:mop-direct sb-pcl::slotd-initialization-type-error :prototype
 #<sb-pcl::slotd-initialization-type-error {1006B801C3}>)
(:mop-direct sb-pcl::slotd-initialization-error :prototype
 #<sb-pcl::slotd-initialization-error {1006B81C73}>)
(:mop-direct sb-pcl::no-primary-method :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::no-primary-method :superclass common-lisp:error)
(:mop-direct sb-pcl::no-primary-method :package-name "SB-PCL")
(:mop-direct sb-pcl::no-primary-method :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::no-primary-method :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::no-primary-method :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::no-primary-method :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::no-primary-method :slot
 ((:name common-lisp:generic-function) (:ordinal 1)
  (:initargs (:generic-function))
  (:readers (sb-pcl::no-primary-method-generic-function))))
(:mop-direct sb-pcl::no-primary-method :slot
 ((:name sb-pcl::args) (:ordinal 2) (:initargs (:args))
  (:readers (sb-pcl::no-primary-method-args))))
(:mop-direct sb-pcl::no-primary-method :prototype
 #<sb-pcl::no-primary-method {1006B8D1F3}>)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :package-name "SB-PCL")
(:mop-direct sb-pcl::unset-funcallable-instance-function :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::unset-funcallable-instance-function :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::unset-funcallable-instance-function :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::unset-funcallable-instance-function :prototype
 #<sb-pcl::unset-funcallable-instance-function {1006B963A3}>)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 common-lisp:error)
(:mop-direct sb-pcl::instance-structure-protocol-error :package-name "SB-PCL")
(:mop-direct sb-pcl::instance-structure-protocol-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::instance-structure-protocol-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::instance-structure-protocol-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::instance-structure-protocol-error :slot
 ((:name sb-pcl::slotd) (:ordinal 1) (:initargs (:slotd))
  (:readers (sb-pcl::instance-structure-protocol-error-slotd))))
(:mop-direct sb-pcl::instance-structure-protocol-error :slot
 ((:name sb-pcl::fun) (:ordinal 2) (:initargs (:fun))
  (:readers (sb-pcl::instance-structure-protocol-error-fun))))
(:mop-direct sb-pcl::instance-structure-protocol-error :prototype
 #<sb-pcl::instance-structure-protocol-error {1006BA29F3}>)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :package-name "SB-PCL")
(:mop-direct sb-pcl::specialized-lambda-list-error :precedance
 (sb-int:reference-condition sb-int:simple-program-error
  common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::specialized-lambda-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::specialized-lambda-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::specialized-lambda-list-error :prototype
 #<sb-pcl::specialized-lambda-list-error {1006BABC83}>)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :package-name "SB-PCL")
(:mop-direct sb-pcl::generic-function-lambda-list-error :precedance
 (sb-int:reference-condition sb-int:simple-program-error
  common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::generic-function-lambda-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::generic-function-lambda-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::generic-function-lambda-list-error :prototype
 #<sb-pcl::generic-function-lambda-list-error {1006BB5563}>)
(:mop-direct sb-impl::save-condition :superclass sb-int:reference-condition)
(:mop-direct sb-impl::save-error :superclass sb-impl::save-condition)
(:mop-direct sb-impl::save-condition :package-name "SB-IMPL")
(:mop-direct sb-impl::save-condition :precedance
 (sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-impl::save-condition :classof sb-pcl::condition-class)
(:mop-direct sb-impl::save-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::save-condition :superclass sb-int:reference-condition)
(:mop-direct sb-impl::save-error :superclass common-lisp:error)
(:mop-direct sb-impl::save-error :superclass sb-impl::save-condition)
(:mop-direct sb-impl::save-with-multiple-threads-error :superclass
 sb-impl::save-error)
(:mop-direct sb-impl::save-error :package-name "SB-IMPL")
(:mop-direct sb-impl::save-error :precedance
 (common-lisp:error common-lisp:serious-condition sb-impl::save-condition
                    sb-int:reference-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::save-error :classof sb-pcl::condition-class)
(:mop-direct sb-impl::save-error :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::save-error :superclass sb-impl::save-condition)
(:mop-direct sb-impl::save-with-multiple-threads-error :superclass
 sb-impl::save-error)
(:mop-direct sb-impl::save-with-multiple-threads-error :package-name "SB-IMPL")
(:mop-direct sb-impl::save-with-multiple-threads-error :precedance
 (sb-impl::save-error common-lisp:error common-lisp:serious-condition
  sb-impl::save-condition sb-int:reference-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::save-with-multiple-threads-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::save-with-multiple-threads-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::save-with-multiple-threads-error :superclass
 sb-impl::save-error)
(:mop-direct sb-impl::save-with-multiple-threads-error :slot
 ((:name sb-impl::interactive-thread) (:ordinal 1)
  (:initargs (:interactive-threads))
  (:readers (sb-impl::save-with-multiple-threads-error-interactive-threads))))
(:mop-direct sb-impl::save-with-multiple-threads-error :slot
 ((:name sb-impl::other-threads) (:ordinal 2) (:initargs (:other-threads))
  (:readers (sb-impl::save-with-multiple-threads-error-other-threads))))
(:mop-direct sb-impl::save-with-multiple-threads-error :prototype
 #<sb-impl::save-with-multiple-threads-error {1006BCB353}>)
(:mop-direct sb-impl::save-error :prototype #<sb-impl::save-error {1006BCC4A3}>)
(:mop-direct sb-impl::save-condition :prototype
 #<sb-impl::save-condition {1006BCD5A3}>)
(:mop-direct sb-ext:name-conflict :superclass sb-int:reference-condition)
(:mop-direct sb-ext:name-conflict :superclass common-lisp:package-error)
(:mop-direct sb-ext:name-conflict :package-name "SB-EXT")
(:mop-direct sb-ext:name-conflict :precedance
 (sb-int:reference-condition common-lisp:package-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:name-conflict :classof sb-pcl::condition-class)
(:mop-direct sb-ext:name-conflict :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:name-conflict :superclass sb-int:reference-condition)
(:mop-direct sb-ext:name-conflict :slot
 ((:name common-lisp:function) (:ordinal 1) (:initargs (:function))
  (:readers (sb-ext:name-conflict-function))))
(:mop-direct sb-ext:name-conflict :slot
 ((:name sb-impl::datum) (:ordinal 2) (:initargs (:datum))
  (:readers (sb-ext:name-conflict-datum))))
(:mop-direct sb-ext:name-conflict :slot
 ((:name sb-impl::symbols) (:ordinal 3) (:initargs (:symbols))
  (:readers (sb-ext:name-conflict-symbols))))
(:mop-direct sb-ext:name-conflict :prototype
 #<sb-ext:name-conflict {1006BD8363}>)
(:mop-direct sb-format:format-error :superclass common-lisp:error)
(:mop-direct sb-format:format-error :superclass sb-int:reference-condition)
(:mop-direct sb-format:format-error :package-name "SB-FORMAT")
(:mop-direct sb-format:format-error :precedance
 (common-lisp:error common-lisp:serious-condition sb-int:reference-condition
                    common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-format:format-error :classof sb-pcl::condition-class)
(:mop-direct sb-format:format-error :typeof sb-pcl::condition-class)
(:mop-direct sb-format:format-error :superclass sb-int:reference-condition)
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::complaint) (:ordinal 1) (:initargs (:complaint))
  (:readers (sb-format::format-error-complaint))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::args) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:args)) (:readers (sb-format::format-error-args))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::control-string) (:ordinal 3)
  (:initform 'sb-format::*default-format-error-control-string*)
  (:initargs (:control-string))
  (:readers (sb-format::format-error-control-string))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::offset) (:ordinal 4)
  (:initform 'sb-format::*default-format-error-offset*) (:initargs (:offset))
  (:readers (sb-format::format-error-offset))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::second-relative) (:ordinal 5) (:initform 'common-lisp:nil)
  (:initargs (:second-relative))
  (:readers (sb-format::format-error-second-relative))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::print-banner) (:ordinal 6) (:initform 'common-lisp:t)
  (:initargs (:print-banner))
  (:readers (sb-format::format-error-print-banner))))
(:mop-direct sb-format:format-error :prototype
 #<sb-format:format-error {1006BE6D83}>)
(:mop-direct sb-ext:deprecation-condition :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:deprecation-error :superclass sb-ext:deprecation-condition)
(:mop-direct sb-ext:final-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:late-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:deprecation-condition :package-name "SB-EXT")
(:mop-direct sb-ext:deprecation-condition :precedance
 (sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:deprecation-condition :classof sb-pcl::condition-class)
(:mop-direct sb-ext:deprecation-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:deprecation-condition :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:deprecation-condition :slot
 ((:name sb-kernel::namespace) (:ordinal 1) (:initargs (:namespace))
  (:readers (sb-ext:deprecation-condition-namespace))))
(:mop-direct sb-ext:deprecation-condition :slot
 ((:name sb-kernel::name) (:ordinal 2) (:initargs (:name))
  (:readers (sb-ext:deprecation-condition-name))))
(:mop-direct sb-ext:deprecation-condition :slot
 ((:name sb-kernel::replacements) (:ordinal 3) (:initargs (:replacements))
  (:readers (sb-ext:deprecation-condition-replacements))))
(:mop-direct sb-ext:deprecation-condition :slot
 ((:name sb-kernel::software) (:ordinal 4) (:initargs (:software))
  (:readers (sb-ext:deprecation-condition-software))))
(:mop-direct sb-ext:deprecation-condition :slot
 ((:name sb-kernel::version) (:ordinal 5) (:initargs (:version))
  (:readers (sb-ext:deprecation-condition-version))))
(:mop-direct sb-ext:deprecation-condition :slot
 ((:name sb-kernel::runtime-error) (:ordinal 6) (:initform 'common-lisp:nil)
  (:initargs (:runtime-error))
  (:readers (sb-ext:deprecation-condition-runtime-error))))
(:mop-direct sb-ext:deprecation-error :superclass common-lisp:error)
(:mop-direct sb-ext:deprecation-error :superclass sb-ext:deprecation-condition)
(:mop-direct sb-ext:deprecation-error :package-name "SB-EXT")
(:mop-direct sb-ext:deprecation-error :precedance
 (common-lisp:error common-lisp:serious-condition sb-ext:deprecation-condition
                    sb-int:reference-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:deprecation-error :classof sb-pcl::condition-class)
(:mop-direct sb-ext:deprecation-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:deprecation-error :superclass sb-ext:deprecation-condition)

(:mop-direct sb-ext:final-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:final-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:final-deprecation-warning :package-name "SB-EXT")
(:mop-direct sb-ext:final-deprecation-warning :precedance
 (common-lisp:warning sb-ext:deprecation-condition sb-int:reference-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:final-deprecation-warning :classof sb-pcl::condition-class)
(:mop-direct sb-ext:final-deprecation-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:final-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:final-deprecation-warning :prototype

(:mop-direct sb-ext:late-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:late-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:late-deprecation-warning :package-name "SB-EXT")
(:mop-direct sb-ext:late-deprecation-warning :precedance
 (common-lisp:warning sb-ext:deprecation-condition sb-int:reference-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:late-deprecation-warning :classof sb-pcl::condition-class)
(:mop-direct sb-ext:late-deprecation-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:late-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:late-deprecation-warning :prototype

(:mop-direct sb-ext:early-deprecation-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:early-deprecation-warning :package-name "SB-EXT")
(:mop-direct sb-ext:early-deprecation-warning :precedance
 (common-lisp:style-warning common-lisp:warning sb-ext:deprecation-condition
  sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:early-deprecation-warning :classof sb-pcl::condition-class)
(:mop-direct sb-ext:early-deprecation-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:early-deprecation-warning :prototype

(:mop-direct sb-ext:deprecation-condition :prototype

(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:declaration-type-conflict-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:declaration-type-conflict-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:declaration-type-conflict-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:declaration-type-conflict-error :prototype
 #<sb-kernel:declaration-type-conflict-error
   "symbol ~S cannot be both the name of a type and the name of a declaration"
   {1006D21ED3}>)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :package-name
 "SB-INT")
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :slot
 ((:name sb-kernel::operation) (:ordinal 1) (:initargs (:operation))
  (:readers (sb-kernel::standard-pprint-dispatch-table-modified-operation))))
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :prototype
 #<sb-int:standard-pprint-dispatch-table-modified-error {1006D2AD43}>)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-readtable-modified-error :package-name "SB-INT")
(:mop-direct sb-int:standard-readtable-modified-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:standard-readtable-modified-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-readtable-modified-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-readtable-modified-error :slot
 ((:name sb-kernel::operation) (:ordinal 1) (:initargs (:operation))
  (:readers (sb-kernel::standard-readtable-modified-operation))))
(:mop-direct sb-int:standard-readtable-modified-error :prototype
 #<sb-int:standard-readtable-modified-error {1006D33603}>)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:nil-array-accessed-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:nil-array-accessed-error :precedance
 (sb-int:reference-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:nil-array-accessed-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:nil-array-accessed-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:nil-array-accessed-error :prototype
 #<sb-kernel:nil-array-accessed-error {1006D3AC33}>)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:bounding-indices-bad-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:bounding-indices-bad-error :precedance
 (sb-int:reference-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:bounding-indices-bad-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:bounding-indices-bad-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:bounding-indices-bad-error :slot
 ((:name sb-kernel::object) (:ordinal 1) (:initargs (:object))
  (:readers (sb-kernel::bounding-indices-bad-object))))
(:mop-direct sb-kernel:bounding-indices-bad-error :prototype
 #<sb-kernel:bounding-indices-bad-error {1006D43B03}>)
(:mop-direct sb-int:invalid-array-error :superclass sb-int:reference-condition)
(:mop-direct sb-int:invalid-array-error :superclass common-lisp:type-error)
(:mop-direct sb-int:invalid-array-error :package-name "SB-INT")
(:mop-direct sb-int:invalid-array-error :precedance
 (sb-int:reference-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:invalid-array-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:invalid-array-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:invalid-array-error :superclass sb-int:reference-condition)
(:mop-direct sb-int:invalid-array-error :prototype
 #<sb-int:invalid-array-error {1006D4BBB3}>)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:package-error)
(:mop-direct sb-ext:package-lock-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:simple-condition)
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-lock-violation :package-name "SB-EXT")
(:mop-direct sb-ext:package-lock-violation :precedance
 (common-lisp:package-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:package-lock-violation :classof sb-pcl::condition-class)
(:mop-direct sb-ext:package-lock-violation :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:package-lock-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:package-lock-violation :slot
 ((:name sb-kernel::current-package) (:ordinal 1)
  (:initform 'common-lisp:*package*)
  (:readers (sb-kernel::package-lock-violation-in-package))))
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:symbol-package-locked-error :package-name "SB-EXT")
(:mop-direct sb-ext:symbol-package-locked-error :precedance
 (sb-ext:package-lock-violation common-lisp:package-error common-lisp:error
                                common-lisp:serious-condition
                                sb-int:reference-condition
                                common-lisp:simple-condition
                                common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-ext:symbol-package-locked-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-ext:symbol-package-locked-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:symbol-package-locked-error :slot
 ((:name common-lisp:symbol) (:ordinal 1) (:initargs (:symbol))
  (:readers (sb-ext:package-locked-error-symbol))))
(:mop-direct sb-ext:symbol-package-locked-error :prototype
 #<sb-ext:symbol-package-locked-error {1006D5D993}>)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :package-name "SB-EXT")
(:mop-direct sb-ext:package-locked-error :precedance
 (sb-ext:package-lock-violation common-lisp:package-error common-lisp:error
                                common-lisp:serious-condition
                                sb-int:reference-condition
                                common-lisp:simple-condition
                                common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-ext:package-locked-error :classof sb-pcl::condition-class)
(:mop-direct sb-ext:package-locked-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :prototype
 #<sb-ext:package-locked-error {1006D64D53}>)
(:mop-direct sb-ext:package-lock-violation :prototype
 #<sb-ext:package-lock-violation {1006D65FF3}>)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :package-name "SB-INT")
(:mop-direct sb-int:structure-initarg-not-keyword :precedance
 (sb-int:reference-condition sb-int:simple-style-warning
  common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:structure-initarg-not-keyword :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:structure-initarg-not-keyword :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:structure-initarg-not-keyword :prototype
 #<sb-int:structure-initarg-not-keyword {1006D6D963}>)
(:mop-direct sb-int:extension-failure :superclass sb-int:reference-condition)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :package-name "SB-INT")
(:mop-direct sb-int:extension-failure :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:extension-failure :classof sb-pcl::condition-class)
(:mop-direct sb-int:extension-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-int:extension-failure :superclass sb-int:reference-condition)
(:mop-direct sb-int:extension-failure :prototype
 #<sb-int:extension-failure {1006D75043}>)
(:mop-direct sb-int:format-args-mismatch :superclass sb-int:reference-condition)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-args-mismatch :package-name "SB-INT")
(:mop-direct sb-int:format-args-mismatch :precedance
 (sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:format-args-mismatch :classof sb-pcl::condition-class)
(:mop-direct sb-int:format-args-mismatch :typeof sb-pcl::condition-class)
(:mop-direct sb-int:format-args-mismatch :superclass sb-int:reference-condition)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :package-name "SB-INT")
(:mop-direct sb-int:format-too-many-args-warning :precedance
 (sb-int:format-args-mismatch sb-int:reference-condition
  sb-int:simple-style-warning common-lisp:simple-condition
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:format-too-many-args-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-many-args-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-many-args-warning :prototype
 #<sb-int:format-too-many-args-warning {1006D82C23}>)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :package-name "SB-INT")
(:mop-direct sb-int:format-too-few-args-warning :precedance
 (sb-int:format-args-mismatch sb-int:reference-condition
  common-lisp:simple-warning common-lisp:simple-condition common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:format-too-few-args-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-few-args-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-few-args-warning :prototype
 #<sb-int:format-too-few-args-warning {1006D8A473}>)
(:mop-direct sb-int:format-args-mismatch :prototype
 #<sb-int:format-args-mismatch {1006D8B713}>)
(:mop-direct sb-int:local-argument-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :package-name "SB-INT")
(:mop-direct sb-int:local-argument-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:local-argument-mismatch :classof sb-pcl::condition-class)
(:mop-direct sb-int:local-argument-mismatch :typeof sb-pcl::condition-class)
(:mop-direct sb-int:local-argument-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:local-argument-mismatch :prototype
 #<sb-int:local-argument-mismatch {1006D92E03}>)
(:mop-direct sb-int:type-style-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :package-name "SB-INT")
(:mop-direct sb-int:type-style-warning :precedance
 (sb-int:reference-condition sb-int:simple-style-warning
  common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:type-style-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:type-style-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:type-style-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-style-warning :prototype
 #<sb-int:type-style-warning {1006D9A4F3}>)
(:mop-direct sb-int:type-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :package-name "SB-INT")
(:mop-direct sb-int:type-warning :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:type-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:type-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:type-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-warning :prototype #<sb-int:type-warning {1006DA2DB3}>)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :package-name "SB-INT")
(:mop-direct sb-int:array-initial-element-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:array-initial-element-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:array-initial-element-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:array-initial-element-mismatch :prototype
 #<sb-int:array-initial-element-mismatch {1006DAA503}>)
(:mop-direct sb-ext:defconstant-uneql :superclass sb-int:reference-condition)
(:mop-direct sb-ext:defconstant-uneql :superclass common-lisp:error)
(:mop-direct sb-ext:defconstant-uneql :package-name "SB-EXT")
(:mop-direct sb-ext:defconstant-uneql :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:defconstant-uneql :classof sb-pcl::condition-class)
(:mop-direct sb-ext:defconstant-uneql :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:defconstant-uneql :superclass sb-int:reference-condition)
(:mop-direct sb-ext:defconstant-uneql :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-ext:defconstant-uneql-name))))
(:mop-direct sb-ext:defconstant-uneql :slot
 ((:name sb-kernel::old-value) (:ordinal 2) (:initargs (:old-value))
  (:readers (sb-ext:defconstant-uneql-old-value))))
(:mop-direct sb-ext:defconstant-uneql :slot
 ((:name sb-kernel::new-value) (:ordinal 3) (:initargs (:new-value))
  (:readers (sb-ext:defconstant-uneql-new-value))))
(:mop-direct sb-ext:defconstant-uneql :prototype
 #<sb-ext:defconstant-uneql {1006DB5203}>)
(:mop-direct sb-int:package-at-variance-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:package-at-variance-error :package-name "SB-INT")
(:mop-direct sb-int:package-at-variance-error :precedance
 (sb-int:reference-condition common-lisp:simple-condition
  common-lisp:package-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-at-variance-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance-error :prototype
 #<sb-int:package-at-variance-error {1006DBD653}>)
(:mop-direct sb-int:package-at-variance :superclass sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :package-name "SB-INT")
(:mop-direct sb-int:package-at-variance :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-at-variance :classof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance :typeof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance :superclass sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance :prototype
 #<sb-int:package-at-variance {1006DC4C83}>)
(:mop-direct sb-int:constant-modified :superclass sb-int:reference-condition)
(:mop-direct sb-int:constant-modified :superclass common-lisp:warning)
(:mop-direct sb-int:constant-modified :package-name "SB-INT")
(:mop-direct sb-int:constant-modified :precedance
 (sb-int:reference-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:constant-modified :classof sb-pcl::condition-class)
(:mop-direct sb-int:constant-modified :typeof sb-pcl::condition-class)
(:mop-direct sb-int:constant-modified :superclass sb-int:reference-condition)
(:mop-direct sb-int:constant-modified :slot
 ((:name sb-kernel::fun-name) (:ordinal 1) (:initargs (:fun-name))
  (:readers (sb-kernel::constant-modified-fun-name))))
(:mop-direct sb-int:constant-modified :prototype
 #<sb-int:constant-modified {1006DCD373}>)
(:mop-direct sb-int:duplicate-definition :superclass sb-int:reference-condition)
(:mop-direct sb-int:duplicate-definition :superclass common-lisp:warning)
(:mop-direct sb-int:duplicate-definition :package-name "SB-INT")
(:mop-direct sb-int:duplicate-definition :precedance
 (sb-int:reference-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:duplicate-definition :classof sb-pcl::condition-class)
(:mop-direct sb-int:duplicate-definition :typeof sb-pcl::condition-class)
(:mop-direct sb-int:duplicate-definition :superclass sb-int:reference-condition)
(:mop-direct sb-int:duplicate-definition :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-int:duplicate-definition-name))))
(:mop-direct sb-int:duplicate-definition :prototype
 #<sb-int:duplicate-definition {1006DD5A03}>)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 common-lisp:arithmetic-error)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:arguments-out-of-domain-error :package-name "SB-INT")
(:mop-direct sb-int:arguments-out-of-domain-error :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:arguments-out-of-domain-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:arguments-out-of-domain-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:arguments-out-of-domain-error :prototype
 #<sb-int:arguments-out-of-domain-error {1006DDD033}>)
(:mop-direct sb-int:simple-reference-warning :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :package-name "SB-INT")
(:mop-direct sb-int:simple-reference-warning :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reference-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-warning :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-warning :prototype
 #<sb-int:simple-reference-warning {1006DE4753}>)
(:mop-direct sb-int:simple-reference-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reference-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reference-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-error :prototype
 #<sb-int:simple-reference-error {1006DFBEF3}>)
(:mop-direct sb-int:reference-condition :prototype
 #<sb-int:reference-condition {1006DFD193}>)
(:mop-direct common-lisp:simple-condition :superclass common-lisp:condition)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-thread::simple-thread-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-stream-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-control-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-compiler-note :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-reader-error :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-type-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-style-warning :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-error :superclass common-lisp:simple-condition)
(:mop-direct common-lisp:simple-warning :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-condition :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:simple-condition :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-condition :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-condition :superclass common-lisp:condition)
(:mop-direct common-lisp:simple-condition :slot
 ((:name sb-kernel:format-control) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:format-control))
  (:readers (common-lisp:simple-condition-format-control))))
(:mop-direct common-lisp:simple-condition :slot
 ((:name sb-kernel::format-arguments) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:format-arguments))
  (:readers (common-lisp:simple-condition-format-arguments))))
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-eval::interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-eval::interpreted-program-error :package-name "SB-EVAL")
(:mop-direct sb-eval::interpreted-program-error :precedance
 (common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:simple-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::interpreted-program-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreted-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-eval::interpreted-program-error :prototype
 #<sb-eval::interpreted-program-error {1006AA18C3}>)
(:mop-direct sb-thread::simple-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread::simple-thread-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-thread::simple-thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread::simple-thread-error :precedance
 (sb-thread:thread-error common-lisp:error common-lisp:serious-condition
  common-lisp:simple-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-thread::simple-thread-error :classof sb-pcl::condition-class)
(:mop-direct sb-thread::simple-thread-error :typeof sb-pcl::condition-class)
(:mop-direct sb-thread::simple-thread-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-thread::simple-thread-error :prototype
 #<sb-thread::simple-thread-error {1006E594D3}>)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:parse-error)
(:mop-direct sb-int:simple-parse-error :package-name "SB-INT")
(:mop-direct sb-int:simple-parse-error :precedance
 (common-lisp:simple-condition common-lisp:parse-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-parse-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-parse-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-parse-error :prototype
 #<sb-int:simple-parse-error {1006E60B83}>)
(:mop-direct sb-int:simple-stream-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-stream-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:simple-stream-error :package-name "SB-INT")
(:mop-direct sb-int:simple-stream-error :precedance
 (common-lisp:simple-condition common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-stream-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-stream-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-stream-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-stream-error :prototype
 #<sb-int:simple-stream-error {1006E68143}>)
(:mop-direct sb-int:simple-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-program-error :superclass common-lisp:program-error)
(:mop-direct sb-pcl::invalid-method-initarg :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-int:simple-program-error :package-name "SB-INT")
(:mop-direct sb-int:simple-program-error :precedance
 (common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-pcl::invalid-method-initarg :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::invalid-method-initarg :package-name "SB-PCL")
(:mop-direct sb-pcl::invalid-method-initarg :precedance
 (sb-int:simple-program-error common-lisp:simple-condition
  common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::invalid-method-initarg :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-method-initarg :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-method-initarg :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::invalid-method-initarg :slot
 ((:name common-lisp:method) (:ordinal 1) (:initargs (:method))
  (:readers (sb-pcl::invalid-method-initarg-method))))
(:mop-direct sb-pcl::invalid-method-initarg :prototype
 #<sb-pcl::invalid-method-initarg {10039C2133}>)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :package-name "SB-PCL")
(:mop-direct sb-pcl::specialized-lambda-list-error :precedance
 (sb-int:reference-condition sb-int:simple-program-error
  common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::specialized-lambda-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::specialized-lambda-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :prototype
 #<sb-pcl::specialized-lambda-list-error {10079F0233}>)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :package-name "SB-PCL")
(:mop-direct sb-pcl::generic-function-lambda-list-error :precedance
 (sb-int:reference-condition sb-int:simple-program-error
  common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::generic-function-lambda-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::generic-function-lambda-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :prototype
 #<sb-pcl::generic-function-lambda-list-error {10079EFB63}>)
(:mop-direct sb-int:simple-program-error :prototype
 #<sb-int:simple-program-error {10039D52A3}>)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:file-error)
(:mop-direct sb-int:simple-file-error :package-name "SB-INT")
(:mop-direct sb-int:simple-file-error :precedance
 (common-lisp:simple-condition common-lisp:file-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-file-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-file-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-file-error :prototype
 #<sb-int:simple-file-error {10039DC903}>)
(:mop-direct sb-int:simple-control-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-control-error :superclass common-lisp:control-error)
(:mop-direct sb-int:simple-control-error :package-name "SB-INT")
(:mop-direct sb-int:simple-control-error :precedance
 (common-lisp:simple-condition common-lisp:control-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-control-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-control-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-control-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-control-error :prototype
 #<sb-int:simple-control-error {10039E4013}>)
(:mop-direct sb-int:simple-compiler-note :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-compiler-note :superclass sb-ext:compiler-note)
(:mop-direct sb-ext:code-deletion-note :superclass sb-int:simple-compiler-note)
(:mop-direct sb-int:simple-compiler-note :package-name "SB-INT")
(:mop-direct sb-int:simple-compiler-note :precedance
 (common-lisp:simple-condition sb-ext:compiler-note common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-compiler-note :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-compiler-note :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-compiler-note :superclass
 common-lisp:simple-condition)
(:mop-direct sb-ext:code-deletion-note :superclass sb-int:simple-compiler-note)
(:mop-direct sb-ext:code-deletion-note :package-name "SB-EXT")
(:mop-direct sb-ext:code-deletion-note :precedance
 (sb-int:simple-compiler-note common-lisp:simple-condition sb-ext:compiler-note
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:code-deletion-note :classof sb-pcl::condition-class)
(:mop-direct sb-ext:code-deletion-note :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:code-deletion-note :superclass sb-int:simple-compiler-note)
(:mop-direct sb-ext:code-deletion-note :prototype
 #<sb-ext:code-deletion-note {10079ECAD3}>)
(:mop-direct sb-int:simple-compiler-note :prototype
 #<sb-int:simple-compiler-note {10079ECAB3}>)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:simple-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :precedance
 (sb-kernel:dubious-asterisks-around-variable-name common-lisp:style-warning
  common-lisp:warning common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :prototype
 #<sb-kernel:asterisks-around-constant-variable-name {1003A10743}>)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :precedance
 (sb-kernel:dubious-asterisks-around-variable-name common-lisp:style-warning
  common-lisp:warning common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :prototype
 #<sb-kernel:asterisks-around-lexical-variable-name {1003A17183}>)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :prototype
 #<sb-kernel:dubious-asterisks-around-variable-name {1003A18323}>)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-kernel:simple-package-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:simple-package-error :precedance
 (common-lisp:simple-condition common-lisp:package-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:simple-package-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:simple-package-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:simple-package-error :prototype
 #<sb-kernel:simple-package-error {1003A1F903}>)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:package-error)
(:mop-direct sb-ext:package-lock-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:simple-condition)
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-lock-violation :package-name "SB-EXT")
(:mop-direct sb-ext:package-lock-violation :precedance
 (common-lisp:package-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:package-lock-violation :classof sb-pcl::condition-class)
(:mop-direct sb-ext:package-lock-violation :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:simple-condition)
(:mop-direct sb-ext:package-lock-violation :slot
 ((:name sb-kernel::current-package) (:ordinal 1)
  (:initform 'common-lisp:*package*)
  (:readers (sb-kernel::package-lock-violation-in-package))))
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:symbol-package-locked-error :package-name "SB-EXT")
(:mop-direct sb-ext:symbol-package-locked-error :precedance
 (sb-ext:package-lock-violation common-lisp:package-error common-lisp:error
                                common-lisp:serious-condition
                                sb-int:reference-condition
                                common-lisp:simple-condition
                                common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-ext:symbol-package-locked-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-ext:symbol-package-locked-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:symbol-package-locked-error :slot
 ((:name common-lisp:symbol) (:ordinal 1) (:initargs (:symbol))
  (:readers (sb-ext:package-locked-error-symbol))))
(:mop-direct sb-ext:symbol-package-locked-error :prototype
 #<sb-ext:symbol-package-locked-error {10079E80E3}>)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :package-name "SB-EXT")
(:mop-direct sb-ext:package-locked-error :precedance
 (sb-ext:package-lock-violation common-lisp:package-error common-lisp:error
                                common-lisp:serious-condition
                                sb-int:reference-condition
                                common-lisp:simple-condition
                                common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-ext:package-locked-error :classof sb-pcl::condition-class)
(:mop-direct sb-ext:package-locked-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :prototype
 #<sb-ext:package-locked-error {10079E80C3}>)
(:mop-direct sb-ext:package-lock-violation :prototype
 #<sb-ext:package-lock-violation {10079E80A3}>)
(:mop-direct sb-int:package-at-variance-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:package-at-variance-error :package-name "SB-INT")
(:mop-direct sb-int:package-at-variance-error :precedance
 (sb-int:reference-condition common-lisp:simple-condition
  common-lisp:package-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-at-variance-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:package-at-variance-error :prototype
 #<sb-int:package-at-variance-error {10079E7F43}>)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:storage-condition)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-storage-condition :package-name "SB-INT")
(:mop-direct sb-int:simple-storage-condition :precedance
 (common-lisp:storage-condition common-lisp:serious-condition
  common-lisp:simple-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-storage-condition :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-storage-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-storage-condition :prototype
 #<sb-int:simple-storage-condition {1003A47683}>)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct sb-int:simple-reader-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-error :precedance
 (common-lisp:reader-error common-lisp:parse-error common-lisp:stream-error
  common-lisp:error common-lisp:serious-condition common-lisp:simple-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reader-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:reader-impossible-number-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:simple-condition common-lisp:condition
                             sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:reader-impossible-number-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-impossible-number-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :slot
 ((:name common-lisp:error) (:ordinal 1) (:initargs (:error))
  (:readers (sb-kernel::reader-impossible-number-error-error))))
(:mop-direct sb-kernel:reader-impossible-number-error :prototype
 #<sb-kernel:reader-impossible-number-error {1003A57503}>)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:simple-reader-package-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-package-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error
                             common-lisp:simple-condition
                             common-lisp:package-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:condition sb-pcl::slot-object
                             common-lisp:t))
(:mop-direct sb-int:simple-reader-package-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :prototype
 #<sb-int:simple-reader-package-error {1003A5EEF3}>)
(:mop-direct sb-int:simple-reader-error :prototype
 #<sb-int:simple-reader-error {1003A63B93}>)
(:mop-direct common-lisp:simple-type-error :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-type-error :superclass common-lisp:type-error)
(:mop-direct common-lisp:simple-type-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-type-error :precedance
 (common-lisp:simple-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:simple-type-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-type-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-type-error :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-type-error :prototype
 #<common-lisp:simple-type-error {1003A6D0D3}>)
(:mop-direct sb-int:simple-style-warning :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-style-warning :superclass common-lisp:style-warning)
(:mop-direct sb-c:inlining-dependency-failure :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:simple-style-warning :package-name "SB-INT")
(:mop-direct sb-int:simple-style-warning :precedance
 (common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-style-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-style-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-style-warning :superclass
 common-lisp:simple-condition)
(:mop-direct sb-c:inlining-dependency-failure :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-c:inlining-dependency-failure :package-name "SB-C")
(:mop-direct sb-c:inlining-dependency-failure :precedance
 (sb-int:simple-style-warning common-lisp:simple-condition
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:inlining-dependency-failure :classof sb-pcl::condition-class)
(:mop-direct sb-c:inlining-dependency-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-c:inlining-dependency-failure :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-c:inlining-dependency-failure :prototype
 #<sb-c:inlining-dependency-failure {1003A7D4F3}>)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :package-name "SB-INT")
(:mop-direct sb-int:structure-initarg-not-keyword :precedance
 (sb-int:reference-condition sb-int:simple-style-warning
  common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:structure-initarg-not-keyword :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:structure-initarg-not-keyword :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :prototype
 #<sb-int:structure-initarg-not-keyword {10079E8083}>)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :package-name "SB-INT")
(:mop-direct sb-int:format-too-many-args-warning :precedance
 (sb-int:format-args-mismatch sb-int:reference-condition
  sb-int:simple-style-warning common-lisp:simple-condition
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:format-too-many-args-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-many-args-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :prototype
 #<sb-int:format-too-many-args-warning {10079E8043}>)
(:mop-direct sb-int:type-style-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :package-name "SB-INT")
(:mop-direct sb-int:type-style-warning :precedance
 (sb-int:reference-condition sb-int:simple-style-warning
  common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:type-style-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:type-style-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :prototype
 #<sb-int:type-style-warning {10079E7FC3}>)
(:mop-direct sb-int:simple-style-warning :prototype
 #<sb-int:simple-style-warning {1003A93E53}>)
(:mop-direct common-lisp:simple-error :superclass common-lisp:simple-condition)
(:mop-direct common-lisp:simple-error :superclass common-lisp:error)
(:mop-direct ql-gunzipper::decompression-error :superclass
 common-lisp:simple-error)
(:mop-direct asdf/action:operation-definition-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::compiler-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:unsupported-operator :superclass common-lisp:simple-error)
(:mop-direct sb-int:bug :superclass common-lisp:simple-error)
(:mop-direct common-lisp:simple-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-error :precedance
 (common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:simple-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-error :superclass common-lisp:simple-condition)
(:mop-direct ql-gunzipper::decompression-error :superclass
 common-lisp:simple-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::zlib-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::deflate-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::decompression-error :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::decompression-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-gunzipper::decompression-error :classof sb-pcl::condition-class)
(:mop-direct ql-gunzipper::decompression-error :typeof sb-pcl::condition-class)
(:mop-direct ql-gunzipper::decompression-error :superclass
 common-lisp:simple-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :package-name
 "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::gzip-decompression-error :precedance
 (ql-gunzipper::decompression-error common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::gzip-decompression-error :classof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::gzip-decompression-error :typeof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::gzip-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :prototype
 #<ql-gunzipper::gzip-decompression-error {1003AB8273}>)
(:mop-direct ql-gunzipper::zlib-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::zlib-decompression-error :package-name
 "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::zlib-decompression-error :precedance
 (ql-gunzipper::decompression-error common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::zlib-decompression-error :classof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::zlib-decompression-error :typeof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::zlib-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::zlib-decompression-error :prototype
 #<ql-gunzipper::zlib-decompression-error {1003AC1713}>)
(:mop-direct ql-gunzipper::deflate-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::deflate-decompression-error :package-name
 "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::deflate-decompression-error :precedance
 (ql-gunzipper::decompression-error common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::deflate-decompression-error :classof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::deflate-decompression-error :typeof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::deflate-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::deflate-decompression-error :prototype
 #<ql-gunzipper::deflate-decompression-error {1003ACAEB3}>)
(:mop-direct ql-gunzipper::decompression-error :prototype
 #<ql-gunzipper::decompression-error {1003ACC893}>)
(:mop-direct asdf/action:operation-definition-error :superclass
 common-lisp:simple-error)
(:mop-direct asdf/action:operation-definition-error :package-name "ASDF/ACTION")
(:mop-direct asdf/action:operation-definition-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:operation-definition-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-error :superclass
 common-lisp:simple-error)
(:mop-direct asdf/action:operation-definition-error :prototype
 #<asdf/action:operation-definition-error {1003AD5123}>)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::long-method-combination-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :prototype
 #<sb-pcl::long-method-combination-error {10079F1443}>)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :package-name "SB-PCL")
(:mop-direct sb-pcl::find-method-length-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::find-method-length-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::find-method-length-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :prototype
 #<sb-pcl::find-method-length-mismatch {10079F13E3}>)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :package-name "SB-PCL")
(:mop-direct sb-pcl::metaobject-initialization-violation :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::metaobject-initialization-violation :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::metaobject-initialization-violation :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :prototype
 #<sb-pcl::metaobject-initialization-violation {10079F13C3}>)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :package-name "SB-PCL")
(:mop-direct sb-pcl::unset-funcallable-instance-function :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::unset-funcallable-instance-function :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::unset-funcallable-instance-function :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :prototype
 #<sb-pcl::unset-funcallable-instance-function {10079F11D3}>)
(:mop-direct sb-eval::compiler-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::compiler-environment-too-complex-error :package-name
 "SB-EVAL")
(:mop-direct sb-eval::compiler-environment-too-complex-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-eval::compiler-environment-too-complex-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::compiler-environment-too-complex-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-eval::compiler-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::compiler-environment-too-complex-error :prototype
 #<sb-eval::compiler-environment-too-complex-error {1003AFF793}>)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :package-name
 "SB-EVAL")
(:mop-direct sb-eval::interpreter-environment-too-complex-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-eval::interpreter-environment-too-complex-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :prototype
 #<sb-eval::interpreter-environment-too-complex-error {1003B061D3}>)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:declaration-type-conflict-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:declaration-type-conflict-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:declaration-type-conflict-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :prototype
 #<sb-kernel:declaration-type-conflict-error
   "symbol ~S cannot be both the name of a type and the name of a declaration"
   {10079E81C3}>)
(:mop-direct sb-int:extension-failure :superclass sb-int:reference-condition)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :package-name "SB-INT")
(:mop-direct sb-int:extension-failure :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:extension-failure :classof sb-pcl::condition-class)
(:mop-direct sb-int:extension-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :prototype
 #<sb-int:extension-failure {10079E8063}>)
(:mop-direct sb-int:simple-reference-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reference-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reference-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :prototype
 #<sb-int:simple-reference-error {10079E7E83}>)
(:mop-direct sb-int:unsupported-operator :superclass common-lisp:simple-error)
(:mop-direct sb-int:unsupported-operator :package-name "SB-INT")
(:mop-direct sb-int:unsupported-operator :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:unsupported-operator :classof sb-pcl::condition-class)
(:mop-direct sb-int:unsupported-operator :typeof sb-pcl::condition-class)
(:mop-direct sb-int:unsupported-operator :superclass common-lisp:simple-error)
(:mop-direct sb-int:unsupported-operator :prototype
 #<sb-int:unsupported-operator {1003B22003}>)
(:mop-direct sb-int:bug :superclass common-lisp:simple-error)
(:mop-direct sb-int:bug :package-name "SB-INT")
(:mop-direct sb-int:bug :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:bug :classof sb-pcl::condition-class)
(:mop-direct sb-int:bug :typeof sb-pcl::condition-class)
(:mop-direct sb-int:bug :superclass common-lisp:simple-error)
(:mop-direct sb-int:bug :prototype #<sb-int:bug {1003B28913}>)
(:mop-direct common-lisp:simple-error :prototype
 #<common-lisp:simple-error {1003B29A63}>)
(:mop-direct common-lisp:simple-warning :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-warning :superclass common-lisp:warning)
(:mop-direct asdf/action:operation-definition-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct common-lisp:simple-warning :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-warning :precedance
 (common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:simple-warning :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-warning :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-warning :superclass
 common-lisp:simple-condition)
(:mop-direct asdf/action:operation-definition-warning :superclass
 common-lisp:simple-warning)
(:mop-direct asdf/action:operation-definition-warning :package-name
 "ASDF/ACTION")
(:mop-direct asdf/action:operation-definition-warning :precedance
 (common-lisp:simple-warning common-lisp:simple-condition common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/action:operation-definition-warning :classof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-warning :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-warning :superclass
 common-lisp:simple-warning)
(:mop-direct asdf/action:operation-definition-warning :prototype
 #<asdf/action:operation-definition-warning {1003B3E7E3}>)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::print-object-stream-specializer :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::print-object-stream-specializer :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::print-object-stream-specializer :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :prototype
 #<sb-pcl::print-object-stream-specializer
   "~@<Specializing on the second argument to ~S has ~
                    unportable effects, and also interferes with ~
                    precomputation of print functions for exceptional ~
                    situations.~@:>"
   {10079F1423}>)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :package-name "SB-INT")
(:mop-direct sb-int:format-too-few-args-warning :precedance
 (sb-int:format-args-mismatch sb-int:reference-condition
  common-lisp:simple-warning common-lisp:simple-condition common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:format-too-few-args-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-few-args-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :prototype
 #<sb-int:format-too-few-args-warning {10079E8023}>)
(:mop-direct sb-int:local-argument-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :package-name "SB-INT")
(:mop-direct sb-int:local-argument-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:local-argument-mismatch :classof sb-pcl::condition-class)
(:mop-direct sb-int:local-argument-mismatch :typeof sb-pcl::condition-class)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :prototype
 #<sb-int:local-argument-mismatch {10079E7FE3}>)
(:mop-direct sb-int:type-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :package-name "SB-INT")
(:mop-direct sb-int:type-warning :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:type-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:type-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :prototype #<sb-int:type-warning {10079E7FA3}>)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :package-name "SB-INT")
(:mop-direct sb-int:array-initial-element-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:array-initial-element-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:array-initial-element-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :prototype
 #<sb-int:array-initial-element-mismatch {10079E7F83}>)
(:mop-direct sb-int:package-at-variance :superclass sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :package-name "SB-INT")
(:mop-direct sb-int:package-at-variance :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-at-variance :classof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance :typeof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :prototype
 #<sb-int:package-at-variance {10079E7F23}>)
(:mop-direct sb-int:simple-reference-warning :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :package-name "SB-INT")
(:mop-direct sb-int:simple-reference-warning :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reference-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :prototype
 #<sb-int:simple-reference-warning {10079E7EA3}>)
(:mop-direct common-lisp:simple-warning :prototype
 #<common-lisp:simple-warning {1003B73113}>)
(:mop-direct common-lisp:simple-condition :prototype
 #<common-lisp:simple-condition {1003B73EF3}>)
(:mop-direct common-lisp:warning :superclass common-lisp:condition)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 common-lisp:warning)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 common-lisp:warning)
(:mop-direct sb-ext:final-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:late-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-int:constant-modified :superclass common-lisp:warning)
(:mop-direct sb-int:duplicate-definition :superclass common-lisp:warning)
(:mop-direct common-lisp:simple-warning :superclass common-lisp:warning)
(:mop-direct common-lisp:style-warning :superclass common-lisp:warning)
(:mop-direct common-lisp:warning :package-name "COMMON-LISP")
(:mop-direct common-lisp:warning :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:warning :classof sb-pcl::condition-class)
(:mop-direct common-lisp:warning :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:warning :superclass common-lisp:condition)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 common-lisp:warning)
(:mop-direct asdf/source-registry:invalid-source-registry :package-name
 "ASDF/SOURCE-REGISTRY")
(:mop-direct asdf/source-registry:invalid-source-registry :precedance
 (uiop/configuration:invalid-configuration common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/source-registry:invalid-source-registry :classof
 sb-pcl::condition-class)
(:mop-direct asdf/source-registry:invalid-source-registry :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/source-registry:invalid-source-registry :superclass
 common-lisp:warning)
(:mop-direct asdf/source-registry:invalid-source-registry :slot
 ((:name common-lisp:format) (:ordinal 1)
  (:initform
   '(uiop/common-lisp::compatfmt
     "~@<Invalid source registry ~S~@[ in ~S~]~@{ ~@?~}~@:>"))
  (:initargs (:format))))
(:mop-direct asdf/source-registry:invalid-source-registry :prototype
 #<asdf/source-registry:invalid-source-registry {1007A4EA93}>)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 uiop/configuration:invalid-configuration)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 common-lisp:warning)
(:mop-direct asdf/output-translations:invalid-output-translation :package-name
 "ASDF/OUTPUT-TRANSLATIONS")
(:mop-direct asdf/output-translations:invalid-output-translation :precedance
 (uiop/configuration:invalid-configuration common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/output-translations:invalid-output-translation :classof
 sb-pcl::condition-class)
(:mop-direct asdf/output-translations:invalid-output-translation :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/output-translations:invalid-output-translation :superclass
 common-lisp:warning)
(:mop-direct asdf/output-translations:invalid-output-translation :slot
 ((:name common-lisp:format) (:ordinal 1)
  (:initform
   '(uiop/common-lisp::compatfmt
     "~@<Invalid asdf output-translation ~S~@[ in ~S~]~@{ ~@?~}~@:>"))
  (:initargs (:format))))
(:mop-direct asdf/output-translations:invalid-output-translation :prototype
 #<asdf/output-translations:invalid-output-translation {1007A4EA73}>)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-failed-warning :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-failed-warning :precedance
 (uiop/lisp-build:compile-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/lisp-build:compile-failed-warning :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-warning :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-failed-warning :prototype
 #<uiop/lisp-build:compile-failed-warning {1007A4E8F3}>)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-warned-warning :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-warned-warning :precedance
 (uiop/lisp-build:compile-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/lisp-build:compile-warned-warning :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-warning :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-warning :superclass
 common-lisp:warning)
(:mop-direct uiop/lisp-build:compile-warned-warning :prototype
 #<uiop/lisp-build:compile-warned-warning {1007A4E8B3}>)
(:mop-direct sb-ext:final-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:final-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:final-deprecation-warning :package-name "SB-EXT")
(:mop-direct sb-ext:final-deprecation-warning :precedance
 (common-lisp:warning sb-ext:deprecation-condition sb-int:reference-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:final-deprecation-warning :classof sb-pcl::condition-class)
(:mop-direct sb-ext:final-deprecation-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:final-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:final-deprecation-warning :prototype

(:mop-direct sb-ext:late-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:late-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:late-deprecation-warning :package-name "SB-EXT")
(:mop-direct sb-ext:late-deprecation-warning :precedance
 (common-lisp:warning sb-ext:deprecation-condition sb-int:reference-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:late-deprecation-warning :classof sb-pcl::condition-class)
(:mop-direct sb-ext:late-deprecation-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:late-deprecation-warning :superclass common-lisp:warning)
(:mop-direct sb-ext:late-deprecation-warning :prototype

(:mop-direct sb-int:constant-modified :superclass sb-int:reference-condition)
(:mop-direct sb-int:constant-modified :superclass common-lisp:warning)
(:mop-direct sb-int:constant-modified :package-name "SB-INT")
(:mop-direct sb-int:constant-modified :precedance
 (sb-int:reference-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:constant-modified :classof sb-pcl::condition-class)
(:mop-direct sb-int:constant-modified :typeof sb-pcl::condition-class)
(:mop-direct sb-int:constant-modified :superclass common-lisp:warning)
(:mop-direct sb-int:constant-modified :slot
 ((:name sb-kernel::fun-name) (:ordinal 1) (:initargs (:fun-name))
  (:readers (sb-kernel::constant-modified-fun-name))))
(:mop-direct sb-int:constant-modified :prototype
 #<sb-int:constant-modified {10079E7F03}>)
(:mop-direct sb-int:duplicate-definition :superclass sb-int:reference-condition)
(:mop-direct sb-int:duplicate-definition :superclass common-lisp:warning)
(:mop-direct sb-int:duplicate-definition :package-name "SB-INT")
(:mop-direct sb-int:duplicate-definition :precedance
 (sb-int:reference-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:duplicate-definition :classof sb-pcl::condition-class)
(:mop-direct sb-int:duplicate-definition :typeof sb-pcl::condition-class)
(:mop-direct sb-int:duplicate-definition :superclass common-lisp:warning)
(:mop-direct sb-int:duplicate-definition :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-int:duplicate-definition-name))))
(:mop-direct sb-int:duplicate-definition :prototype
 #<sb-int:duplicate-definition {10079E7EE3}>)
(:mop-direct common-lisp:simple-warning :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-warning :superclass common-lisp:warning)
(:mop-direct asdf/action:operation-definition-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct common-lisp:simple-warning :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-warning :precedance
 (common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:simple-warning :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-warning :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-warning :superclass common-lisp:warning)
(:mop-direct asdf/action:operation-definition-warning :superclass
 common-lisp:simple-warning)
(:mop-direct asdf/action:operation-definition-warning :package-name
 "ASDF/ACTION")
(:mop-direct asdf/action:operation-definition-warning :precedance
 (common-lisp:simple-warning common-lisp:simple-condition common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/action:operation-definition-warning :classof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-warning :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-warning :superclass
 common-lisp:simple-warning)
(:mop-direct asdf/action:operation-definition-warning :prototype
 #<asdf/action:operation-definition-warning {1003B3E7E3}>)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::print-object-stream-specializer :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::print-object-stream-specializer :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::print-object-stream-specializer :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::print-object-stream-specializer :superclass
 common-lisp:simple-warning)
(:mop-direct sb-pcl::print-object-stream-specializer :prototype
 #<sb-pcl::print-object-stream-specializer
   "~@<Specializing on the second argument to ~S has ~
                    unportable effects, and also interferes with ~
                    precomputation of print functions for exceptional ~
                    situations.~@:>"
   {10079F1423}>)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :package-name "SB-INT")
(:mop-direct sb-int:format-too-few-args-warning :precedance
 (sb-int:format-args-mismatch sb-int:reference-condition
  common-lisp:simple-warning common-lisp:simple-condition common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:format-too-few-args-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-few-args-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:format-too-few-args-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:format-too-few-args-warning :prototype
 #<sb-int:format-too-few-args-warning {10079E8023}>)
(:mop-direct sb-int:local-argument-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :package-name "SB-INT")
(:mop-direct sb-int:local-argument-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:local-argument-mismatch :classof sb-pcl::condition-class)
(:mop-direct sb-int:local-argument-mismatch :typeof sb-pcl::condition-class)
(:mop-direct sb-int:local-argument-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:local-argument-mismatch :prototype
 #<sb-int:local-argument-mismatch {10079E7FE3}>)
(:mop-direct sb-int:type-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :package-name "SB-INT")
(:mop-direct sb-int:type-warning :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:type-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:type-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:type-warning :superclass common-lisp:simple-warning)
(:mop-direct sb-int:type-warning :prototype #<sb-int:type-warning {10079E7FA3}>)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :package-name "SB-INT")
(:mop-direct sb-int:array-initial-element-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:array-initial-element-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:array-initial-element-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:array-initial-element-mismatch :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:array-initial-element-mismatch :prototype
 #<sb-int:array-initial-element-mismatch {10079E7F83}>)
(:mop-direct sb-int:package-at-variance :superclass sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :package-name "SB-INT")
(:mop-direct sb-int:package-at-variance :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-at-variance :classof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance :typeof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance :superclass common-lisp:simple-warning)
(:mop-direct sb-int:package-at-variance :prototype
 #<sb-int:package-at-variance {10079E7F23}>)
(:mop-direct sb-int:simple-reference-warning :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :package-name "SB-INT")
(:mop-direct sb-int:simple-reference-warning :precedance
 (sb-int:reference-condition common-lisp:simple-warning
  common-lisp:simple-condition common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reference-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-warning :superclass
 common-lisp:simple-warning)
(:mop-direct sb-int:simple-reference-warning :prototype
 #<sb-int:simple-reference-warning {10079E7EA3}>)
(:mop-direct common-lisp:simple-warning :prototype
 #<common-lisp:simple-warning {1003B73113}>)
(:mop-direct common-lisp:style-warning :superclass common-lisp:warning)
(:mop-direct closer-mop::defmethod-without-generic-function :superclass
 common-lisp:style-warning)
(:mop-direct sb-impl::duplicate-case-key-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-c:compiler-macro-application-missed-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:deprecated-eval-when-situations :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:character-decoding-error-in-comment :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:lexical-environment-too-complex :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:undefined-alien-style-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:redefinition-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:implicit-generic-function-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-int:same-file-redefinition-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-int:simple-style-warning :superclass common-lisp:style-warning)
(:mop-direct common-lisp:style-warning :package-name "COMMON-LISP")
(:mop-direct common-lisp:style-warning :precedance
 (common-lisp:warning common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:style-warning :classof sb-pcl::condition-class)
(:mop-direct common-lisp:style-warning :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:style-warning :superclass common-lisp:warning)
(:mop-direct closer-mop::defmethod-without-generic-function :superclass
 common-lisp:style-warning)
(:mop-direct closer-mop::defmethod-without-generic-function :package-name
 "CLOSER-MOP")
(:mop-direct closer-mop::defmethod-without-generic-function :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop::defmethod-without-generic-function :classof
 sb-pcl::condition-class)
(:mop-direct closer-mop::defmethod-without-generic-function :typeof
 sb-pcl::condition-class)
(:mop-direct closer-mop::defmethod-without-generic-function :superclass
 common-lisp:style-warning)
(:mop-direct closer-mop::defmethod-without-generic-function :slot
 ((:name closer-mop::name) (:ordinal 1) (:initargs (:name))
  (:readers (closer-mop::dwg-name))))
(:mop-direct closer-mop::defmethod-without-generic-function :prototype
 #<closer-mop::defmethod-without-generic-function {1003C2CCB3}>)
(:mop-direct sb-impl::duplicate-case-key-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-impl::duplicate-case-key-warning :package-name "SB-IMPL")
(:mop-direct sb-impl::duplicate-case-key-warning :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::duplicate-case-key-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::duplicate-case-key-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::duplicate-case-key-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-impl::duplicate-case-key-warning :slot
 ((:name sb-impl::key) (:ordinal 1) (:initargs (:key))
  (:readers (sb-impl::case-warning-key))))
(:mop-direct sb-impl::duplicate-case-key-warning :slot
 ((:name sb-impl::case-kind) (:ordinal 2) (:initargs (:case-kind))
  (:readers (sb-impl::case-warning-case-kind))))
(:mop-direct sb-impl::duplicate-case-key-warning :slot
 ((:name sb-impl::occurrences) (:ordinal 3) (:initargs (:occurrences))
  (:readers (sb-impl::duplicate-case-key-warning-occurrences))))
(:mop-direct sb-impl::duplicate-case-key-warning :prototype
 #<sb-impl::duplicate-case-key-warning {1003C36A93}>)
(:mop-direct sb-c:compiler-macro-application-missed-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-c:compiler-macro-application-missed-warning :package-name
 "SB-C")
(:mop-direct sb-c:compiler-macro-application-missed-warning :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:compiler-macro-application-missed-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-c:compiler-macro-application-missed-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-c:compiler-macro-application-missed-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-c:compiler-macro-application-missed-warning :slot
 ((:name common-lisp:count) (:ordinal 1) (:initargs (:count))
  (:readers (sb-c::compiler-macro-application-missed-warning-count))))
(:mop-direct sb-c:compiler-macro-application-missed-warning :slot
 ((:name common-lisp:function) (:ordinal 2) (:initargs (:function))
  (:readers (sb-c::compiler-macro-application-missed-warning-function))))
(:mop-direct sb-c:compiler-macro-application-missed-warning :prototype
 #<sb-c:compiler-macro-application-missed-warning {1003C3EC63}>)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 sb-ext:deprecation-condition)
(:mop-direct sb-ext:early-deprecation-warning :package-name "SB-EXT")
(:mop-direct sb-ext:early-deprecation-warning :precedance
 (common-lisp:style-warning common-lisp:warning sb-ext:deprecation-condition
  sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:early-deprecation-warning :classof sb-pcl::condition-class)
(:mop-direct sb-ext:early-deprecation-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:early-deprecation-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:early-deprecation-warning :prototype

(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :precedance
 (common-lisp:style-warning common-lisp:warning
  sb-kernel:ftype-proclamation-mismatch sb-kernel:proclamation-mismatch
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :prototype
 #<sb-kernel:ftype-proclamation-mismatch-warning {10079E8303}>)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 sb-kernel:type-proclamation-mismatch)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :precedance
 (common-lisp:style-warning common-lisp:warning
  sb-kernel:type-proclamation-mismatch sb-kernel:proclamation-mismatch
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :prototype
 #<sb-kernel:type-proclamation-mismatch-warning {10079E82C3}>)
(:mop-direct sb-kernel:deprecated-eval-when-situations :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:deprecated-eval-when-situations :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:deprecated-eval-when-situations :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:deprecated-eval-when-situations :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:deprecated-eval-when-situations :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:deprecated-eval-when-situations :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:deprecated-eval-when-situations :slot
 ((:name sb-kernel::situations) (:ordinal 1) (:initargs (:situations))
  (:readers (sb-kernel::deprecated-eval-when-situations-situations))))
(:mop-direct sb-kernel:deprecated-eval-when-situations :prototype
 #<sb-kernel:deprecated-eval-when-situations {1003C5B173}>)
(:mop-direct sb-kernel:character-decoding-error-in-comment :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :superclass sb-kernel:character-decoding-error-in-comment)
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment
 :superclass sb-kernel:character-decoding-error-in-comment)
(:mop-direct sb-kernel:character-decoding-error-in-comment :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:character-decoding-error-in-comment :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:character-decoding-error-in-comment :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:character-decoding-error-in-comment :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:character-decoding-error-in-comment :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:character-decoding-error-in-comment :slot
 ((:name common-lisp:stream) (:ordinal 1) (:initargs (:stream))
  (:readers (sb-kernel::decoding-error-in-comment-stream))))
(:mop-direct sb-kernel:character-decoding-error-in-comment :slot
 ((:name common-lisp:position) (:ordinal 2) (:initargs (:position))
  (:readers (sb-kernel::decoding-error-in-comment-position))))
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :superclass sb-kernel:character-decoding-error-in-comment)
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :precedance
 (sb-kernel:character-decoding-error-in-comment common-lisp:style-warning
  common-lisp:warning common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :superclass sb-kernel:character-decoding-error-in-comment)
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :slot
 ((:name sb-kernel::disp-char) (:ordinal 1) (:initform '#\#)
  (:initargs (:disp-char))
  (:readers
   (sb-kernel::character-decoding-error-in-macro-char-comment-disp-char))))
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :slot
 ((:name sb-kernel::sub-char) (:ordinal 2) (:initargs (:sub-char))
  (:readers
   (sb-kernel::character-decoding-error-in-macro-char-comment-sub-char))))
(:mop-direct sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
 :prototype
 #<sb-kernel::character-decoding-error-in-dispatch-macro-char-comment
   {1003C6D9F3}>)
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment
 :superclass sb-kernel:character-decoding-error-in-comment)
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment
 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment
 :precedance
 (sb-kernel:character-decoding-error-in-comment common-lisp:style-warning
  common-lisp:warning common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment
 :superclass sb-kernel:character-decoding-error-in-comment)
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment :slot
 ((:name common-lisp:char) (:ordinal 1) (:initform '#\;) (:initargs (:char))
  (:readers (sb-kernel::character-decoding-error-in-macro-char-comment-char))))
(:mop-direct sb-kernel::character-decoding-error-in-macro-char-comment
 :prototype
 #<sb-kernel::character-decoding-error-in-macro-char-comment {1003C760E3}>)
(:mop-direct sb-kernel:character-decoding-error-in-comment :prototype
 #<sb-kernel:character-decoding-error-in-comment {1003C77133}>)
(:mop-direct sb-kernel:lexical-environment-too-complex :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:lexical-environment-too-complex :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:lexical-environment-too-complex :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:lexical-environment-too-complex :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:lexical-environment-too-complex :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:lexical-environment-too-complex :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:lexical-environment-too-complex :slot
 ((:name sb-kernel:form) (:ordinal 1) (:initargs (:form))
  (:readers (sb-kernel::lexical-environment-too-complex-form))))
(:mop-direct sb-kernel:lexical-environment-too-complex :slot
 ((:name sb-kernel:lexenv) (:ordinal 2) (:initargs (:lexenv))
  (:readers (sb-kernel::lexical-environment-too-complex-lexenv))))
(:mop-direct sb-kernel:lexical-environment-too-complex :prototype
 #<sb-kernel:lexical-environment-too-complex {1003C7F2D3}>)
(:mop-direct sb-kernel:undefined-alien-style-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:undefined-alien-style-warning :package-name "SB-KERNEL")
(:mop-direct sb-kernel:undefined-alien-style-warning :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:undefined-alien-style-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:undefined-alien-style-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:undefined-alien-style-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:undefined-alien-style-warning :slot
 ((:name common-lisp:symbol) (:ordinal 1) (:initargs (:symbol))
  (:readers (sb-kernel::undefined-alien-symbol))))
(:mop-direct sb-kernel:undefined-alien-style-warning :prototype
 #<sb-kernel:undefined-alien-style-warning {1003C86183}>)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:simple-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :precedance
 (sb-kernel:dubious-asterisks-around-variable-name common-lisp:style-warning
  common-lisp:warning common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-constant-variable-name :prototype
 #<sb-kernel:asterisks-around-constant-variable-name {1003A10743}>)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :precedance
 (sb-kernel:dubious-asterisks-around-variable-name common-lisp:style-warning
  common-lisp:warning common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :superclass
 sb-kernel:dubious-asterisks-around-variable-name)
(:mop-direct sb-kernel:asterisks-around-lexical-variable-name :prototype
 #<sb-kernel:asterisks-around-lexical-variable-name {1003A17183}>)
(:mop-direct sb-kernel:dubious-asterisks-around-variable-name :prototype
 #<sb-kernel:dubious-asterisks-around-variable-name {1003A18323}>)
(:mop-direct sb-kernel:redefinition-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:redefinition-with-deftransform :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defmethod :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defgeneric :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel::function-redefinition-warning :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-warning :package-name "SB-KERNEL")
(:mop-direct sb-kernel:redefinition-warning :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:redefinition-warning :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-kernel:redefinition-warning :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-kernel::redefinition-warning-name))))
(:mop-direct sb-kernel:redefinition-warning :slot
 ((:name sb-kernel::new-location) (:ordinal 2) (:initargs (:new-location))
  (:readers (sb-kernel::redefinition-warning-new-location))))
(:mop-direct sb-kernel:redefinition-with-deftransform :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-deftransform :package-name "SB-KERNEL")
(:mop-direct sb-kernel:redefinition-with-deftransform :precedance
 (sb-kernel:redefinition-warning common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:redefinition-with-deftransform :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-deftransform :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-deftransform :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-deftransform :slot
 ((:name sb-kernel::transform) (:ordinal 1) (:initargs (:transform))
  (:readers (sb-kernel::redefinition-with-deftransform-transform))))
(:mop-direct sb-kernel:redefinition-with-deftransform :prototype
 #<sb-kernel:redefinition-with-deftransform {1003CAC5F3}>)
(:mop-direct sb-kernel:redefinition-with-defmethod :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defmethod :package-name "SB-KERNEL")
(:mop-direct sb-kernel:redefinition-with-defmethod :precedance
 (sb-kernel:redefinition-warning common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:redefinition-with-defmethod :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defmethod :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defmethod :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defmethod :slot
 ((:name sb-kernel::qualifiers) (:ordinal 1) (:initargs (:qualifiers))
  (:readers (sb-kernel::redefinition-with-defmethod-qualifiers))))
(:mop-direct sb-kernel:redefinition-with-defmethod :slot
 ((:name sb-kernel::specializers) (:ordinal 2) (:initargs (:specializers))
  (:readers (sb-kernel::redefinition-with-defmethod-specializers))))
(:mop-direct sb-kernel:redefinition-with-defmethod :slot
 ((:name sb-kernel::new-location) (:ordinal 3) (:initargs (:new-location))
  (:readers (sb-kernel::redefinition-with-defmethod-new-location))))
(:mop-direct sb-kernel:redefinition-with-defmethod :slot
 ((:name sb-kernel::old-method) (:ordinal 4) (:initargs (:old-method))
  (:readers (sb-kernel::redefinition-with-defmethod-old-method))))
(:mop-direct sb-kernel:redefinition-with-defmethod :prototype
 #<sb-kernel:redefinition-with-defmethod {1003CB6DE3}>)
(:mop-direct sb-kernel:redefinition-with-defgeneric :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defgeneric :package-name "SB-KERNEL")
(:mop-direct sb-kernel:redefinition-with-defgeneric :precedance
 (sb-kernel:redefinition-warning common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:redefinition-with-defgeneric :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defgeneric :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defgeneric :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defgeneric :prototype
 #<sb-kernel:redefinition-with-defgeneric {1003CBCBC3}>)
(:mop-direct sb-kernel::function-redefinition-warning :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defmacro :superclass
 sb-kernel::function-redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defun :superclass
 sb-kernel::function-redefinition-warning)
(:mop-direct sb-kernel::function-redefinition-warning :package-name "SB-KERNEL")
(:mop-direct sb-kernel::function-redefinition-warning :precedance
 (sb-kernel:redefinition-warning common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::function-redefinition-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::function-redefinition-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::function-redefinition-warning :superclass
 sb-kernel:redefinition-warning)
(:mop-direct sb-kernel::function-redefinition-warning :slot
 ((:name sb-kernel::new-function) (:ordinal 1) (:initargs (:new-function))
  (:readers (sb-kernel::function-redefinition-warning-new-function))))
(:mop-direct sb-kernel:redefinition-with-defmacro :superclass
 sb-kernel::function-redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defmacro :package-name "SB-KERNEL")
(:mop-direct sb-kernel:redefinition-with-defmacro :precedance
 (sb-kernel::function-redefinition-warning sb-kernel:redefinition-warning
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:redefinition-with-defmacro :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defmacro :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defmacro :superclass
 sb-kernel::function-redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defmacro :prototype
 #<sb-kernel:redefinition-with-defmacro {1003CCA0F3}>)
(:mop-direct sb-kernel:redefinition-with-defun :superclass
 sb-kernel::function-redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defun :package-name "SB-KERNEL")
(:mop-direct sb-kernel:redefinition-with-defun :precedance
 (sb-kernel::function-redefinition-warning sb-kernel:redefinition-warning
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:redefinition-with-defun :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defun :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:redefinition-with-defun :superclass
 sb-kernel::function-redefinition-warning)
(:mop-direct sb-kernel:redefinition-with-defun :prototype
 #<sb-kernel:redefinition-with-defun {1003CCFD13}>)
(:mop-direct sb-kernel::function-redefinition-warning :prototype
 #<sb-kernel::function-redefinition-warning {1003CD0D83}>)
(:mop-direct sb-kernel:redefinition-warning :prototype
 #<sb-kernel:redefinition-warning {1003CD1DD3}>)
(:mop-direct sb-ext:implicit-generic-function-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:implicit-generic-function-warning :package-name "SB-EXT")
(:mop-direct sb-ext:implicit-generic-function-warning :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:implicit-generic-function-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-ext:implicit-generic-function-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-ext:implicit-generic-function-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-ext:implicit-generic-function-warning :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-ext:implicit-generic-function-name))))
(:mop-direct sb-ext:implicit-generic-function-warning :prototype
 #<sb-ext:implicit-generic-function-warning {1003CD8D03}>)
(:mop-direct sb-int:same-file-redefinition-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-int:same-file-redefinition-warning :package-name "SB-INT")
(:mop-direct sb-int:same-file-redefinition-warning :precedance
 (common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:same-file-redefinition-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:same-file-redefinition-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:same-file-redefinition-warning :superclass
 common-lisp:style-warning)
(:mop-direct sb-int:same-file-redefinition-warning :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))))
(:mop-direct sb-int:same-file-redefinition-warning :prototype
 #<sb-int:same-file-redefinition-warning {1003CDF983}>)
(:mop-direct sb-int:simple-style-warning :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-style-warning :superclass common-lisp:style-warning)
(:mop-direct sb-c:inlining-dependency-failure :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:simple-style-warning :package-name "SB-INT")
(:mop-direct sb-int:simple-style-warning :precedance
 (common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-style-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-style-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-style-warning :superclass common-lisp:style-warning)
(:mop-direct sb-c:inlining-dependency-failure :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-c:inlining-dependency-failure :package-name "SB-C")
(:mop-direct sb-c:inlining-dependency-failure :precedance
 (sb-int:simple-style-warning common-lisp:simple-condition
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:inlining-dependency-failure :classof sb-pcl::condition-class)
(:mop-direct sb-c:inlining-dependency-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-c:inlining-dependency-failure :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-c:inlining-dependency-failure :prototype
 #<sb-c:inlining-dependency-failure {1003A7D4F3}>)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :package-name "SB-INT")
(:mop-direct sb-int:structure-initarg-not-keyword :precedance
 (sb-int:reference-condition sb-int:simple-style-warning
  common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:structure-initarg-not-keyword :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:structure-initarg-not-keyword :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:structure-initarg-not-keyword :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:structure-initarg-not-keyword :prototype
 #<sb-int:structure-initarg-not-keyword {10079E8083}>)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:format-args-mismatch)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :package-name "SB-INT")
(:mop-direct sb-int:format-too-many-args-warning :precedance
 (sb-int:format-args-mismatch sb-int:reference-condition
  sb-int:simple-style-warning common-lisp:simple-condition
  common-lisp:style-warning common-lisp:warning common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:format-too-many-args-warning :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-many-args-warning :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:format-too-many-args-warning :superclass
 sb-int:simple-style-warning)
(:mop-direct sb-int:format-too-many-args-warning :prototype
 #<sb-int:format-too-many-args-warning {10079E8043}>)
(:mop-direct sb-int:type-style-warning :superclass sb-int:reference-condition)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :package-name "SB-INT")
(:mop-direct sb-int:type-style-warning :precedance
 (sb-int:reference-condition sb-int:simple-style-warning
  common-lisp:simple-condition common-lisp:style-warning common-lisp:warning
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:type-style-warning :classof sb-pcl::condition-class)
(:mop-direct sb-int:type-style-warning :typeof sb-pcl::condition-class)
(:mop-direct sb-int:type-style-warning :superclass sb-int:simple-style-warning)
(:mop-direct sb-int:type-style-warning :prototype
 #<sb-int:type-style-warning {10079E7FC3}>)
(:mop-direct sb-int:simple-style-warning :prototype
 #<sb-int:simple-style-warning {1003A93E53}>)
(:mop-direct common-lisp:style-warning :prototype
 #<common-lisp:style-warning {1003D06403}>)
(:mop-direct common-lisp:warning :prototype #<common-lisp:warning {1003D07453}>)
(:mop-direct common-lisp:serious-condition :superclass common-lisp:condition)
(:mop-direct sb-di:debug-condition :superclass common-lisp:serious-condition)
(:mop-direct sb-sys:interactive-interrupt :superclass
 common-lisp:serious-condition)
(:mop-direct sb-ext:timeout :superclass common-lisp:serious-condition)
(:mop-direct common-lisp:storage-condition :superclass
 common-lisp:serious-condition)
(:mop-direct common-lisp:error :superclass common-lisp:serious-condition)
(:mop-direct common-lisp:serious-condition :package-name "COMMON-LISP")
(:mop-direct common-lisp:serious-condition :precedance
 (common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:serious-condition :classof sb-pcl::condition-class)
(:mop-direct common-lisp:serious-condition :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:serious-condition :superclass common-lisp:condition)
(:mop-direct sb-di:debug-condition :superclass common-lisp:serious-condition)
(:mop-direct sb-di:ambiguous-var-name :superclass sb-di:debug-condition)
(:mop-direct sb-di:invalid-value :superclass sb-di:debug-condition)
(:mop-direct sb-di:lambda-list-unavailable :superclass sb-di:debug-condition)
(:mop-direct sb-di::no-debug-vars :superclass sb-di:debug-condition)
(:mop-direct sb-di:no-debug-blocks :superclass sb-di:debug-condition)
(:mop-direct sb-di:no-debug-fun-returns :superclass sb-di:debug-condition)
(:mop-direct sb-di:debug-condition :package-name "SB-DI")
(:mop-direct sb-di:debug-condition :precedance
 (common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-di:debug-condition :classof sb-pcl::condition-class)
(:mop-direct sb-di:debug-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-di:debug-condition :superclass common-lisp:serious-condition)
(:mop-direct sb-di:ambiguous-var-name :superclass sb-di:debug-condition)
(:mop-direct sb-di:ambiguous-var-name :package-name "SB-DI")
(:mop-direct sb-di:ambiguous-var-name :precedance
 (sb-di:debug-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:ambiguous-var-name :classof sb-pcl::condition-class)
(:mop-direct sb-di:ambiguous-var-name :typeof sb-pcl::condition-class)
(:mop-direct sb-di:ambiguous-var-name :superclass sb-di:debug-condition)
(:mop-direct sb-di:ambiguous-var-name :slot
 ((:name sb-di::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-di::ambiguous-var-name-name))))
(:mop-direct sb-di:ambiguous-var-name :slot
 ((:name sb-di:frame) (:ordinal 2) (:initargs (:frame))
  (:readers (sb-di::ambiguous-var-name-frame))))
(:mop-direct sb-di:ambiguous-var-name :prototype
 #<sb-di:ambiguous-var-name {1003D20F23}>)
(:mop-direct sb-di:invalid-value :superclass sb-di:debug-condition)
(:mop-direct sb-di:invalid-value :package-name "SB-DI")
(:mop-direct sb-di:invalid-value :precedance
 (sb-di:debug-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:invalid-value :classof sb-pcl::condition-class)
(:mop-direct sb-di:invalid-value :typeof sb-pcl::condition-class)
(:mop-direct sb-di:invalid-value :superclass sb-di:debug-condition)
(:mop-direct sb-di:invalid-value :slot
 ((:name sb-di:debug-var) (:ordinal 1) (:initargs (:debug-var))
  (:readers (sb-di::invalid-value-debug-var))))
(:mop-direct sb-di:invalid-value :slot
 ((:name sb-di:frame) (:ordinal 2) (:initargs (:frame))
  (:readers (sb-di::invalid-value-frame))))
(:mop-direct sb-di:invalid-value :prototype #<sb-di:invalid-value {1003D28F23}>)
(:mop-direct sb-di:lambda-list-unavailable :superclass sb-di:debug-condition)
(:mop-direct sb-di:lambda-list-unavailable :package-name "SB-DI")
(:mop-direct sb-di:lambda-list-unavailable :precedance
 (sb-di:debug-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:lambda-list-unavailable :classof sb-pcl::condition-class)
(:mop-direct sb-di:lambda-list-unavailable :typeof sb-pcl::condition-class)
(:mop-direct sb-di:lambda-list-unavailable :superclass sb-di:debug-condition)
(:mop-direct sb-di:lambda-list-unavailable :slot
 ((:name sb-di:debug-fun) (:ordinal 1) (:initargs (:debug-fun))
  (:readers (sb-di::lambda-list-unavailable-debug-fun))))
(:mop-direct sb-di:lambda-list-unavailable :prototype
 #<sb-di:lambda-list-unavailable {1003D2FC33}>)
(:mop-direct sb-di::no-debug-vars :superclass sb-di:debug-condition)
(:mop-direct sb-di::no-debug-vars :package-name "SB-DI")
(:mop-direct sb-di::no-debug-vars :precedance
 (sb-di:debug-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::no-debug-vars :classof sb-pcl::condition-class)
(:mop-direct sb-di::no-debug-vars :typeof sb-pcl::condition-class)
(:mop-direct sb-di::no-debug-vars :superclass sb-di:debug-condition)
(:mop-direct sb-di::no-debug-vars :slot
 ((:name sb-di:debug-fun) (:ordinal 1) (:initargs (:debug-fun))
  (:readers (sb-di::no-debug-vars-debug-fun))))
(:mop-direct sb-di::no-debug-vars :prototype
 #<sb-di::no-debug-vars {1003D36A93}>)
(:mop-direct sb-di:no-debug-blocks :superclass sb-di:debug-condition)
(:mop-direct sb-di:no-debug-blocks :package-name "SB-DI")
(:mop-direct sb-di:no-debug-blocks :precedance
 (sb-di:debug-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:no-debug-blocks :classof sb-pcl::condition-class)
(:mop-direct sb-di:no-debug-blocks :typeof sb-pcl::condition-class)
(:mop-direct sb-di:no-debug-blocks :superclass sb-di:debug-condition)
(:mop-direct sb-di:no-debug-blocks :slot
 ((:name sb-di:debug-fun) (:ordinal 1) (:initargs (:debug-fun))
  (:readers (sb-di::no-debug-blocks-debug-fun))))
(:mop-direct sb-di:no-debug-blocks :prototype
 #<sb-di:no-debug-blocks {1003D3D833}>)
(:mop-direct sb-di:no-debug-fun-returns :superclass sb-di:debug-condition)
(:mop-direct sb-di:no-debug-fun-returns :package-name "SB-DI")
(:mop-direct sb-di:no-debug-fun-returns :precedance
 (sb-di:debug-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:no-debug-fun-returns :classof sb-pcl::condition-class)
(:mop-direct sb-di:no-debug-fun-returns :typeof sb-pcl::condition-class)
(:mop-direct sb-di:no-debug-fun-returns :superclass sb-di:debug-condition)
(:mop-direct sb-di:no-debug-fun-returns :slot
 ((:name sb-di:debug-fun) (:ordinal 1) (:initargs (:debug-fun))
  (:readers (sb-di::no-debug-fun-returns-debug-fun))))
(:mop-direct sb-di:no-debug-fun-returns :prototype
 #<sb-di:no-debug-fun-returns {1003D44593}>)
(:mop-direct sb-di:debug-condition :prototype
 #<sb-di:debug-condition {1003D455E3}>)
(:mop-direct sb-sys:interactive-interrupt :superclass sb-sys:system-condition)
(:mop-direct sb-sys:interactive-interrupt :superclass
 common-lisp:serious-condition)
(:mop-direct sb-sys:interactive-interrupt :package-name "SB-SYS")
(:mop-direct sb-sys:interactive-interrupt :precedance
 (sb-sys:system-condition common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:interactive-interrupt :classof sb-pcl::condition-class)
(:mop-direct sb-sys:interactive-interrupt :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:interactive-interrupt :superclass
 common-lisp:serious-condition)
(:mop-direct sb-sys:interactive-interrupt :prototype
 #<sb-sys:interactive-interrupt {10079DB103}>)
(:mop-direct sb-ext:timeout :superclass common-lisp:serious-condition)
(:mop-direct sb-sys:deadline-timeout :superclass sb-ext:timeout)
(:mop-direct sb-sys:io-timeout :superclass sb-ext:timeout)
(:mop-direct sb-ext:timeout :package-name "SB-EXT")
(:mop-direct sb-ext:timeout :precedance
 (common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:timeout :classof sb-pcl::condition-class)
(:mop-direct sb-ext:timeout :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:timeout :superclass common-lisp:serious-condition)
(:mop-direct sb-ext:timeout :slot
 ((:name sb-kernel::seconds) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:seconds)) (:readers (sb-kernel::timeout-seconds))))
(:mop-direct sb-sys:deadline-timeout :superclass sb-ext:timeout)
(:mop-direct sb-sys:deadline-timeout :package-name "SB-SYS")
(:mop-direct sb-sys:deadline-timeout :precedance
 (sb-ext:timeout common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:deadline-timeout :classof sb-pcl::condition-class)
(:mop-direct sb-sys:deadline-timeout :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:deadline-timeout :superclass sb-ext:timeout)
(:mop-direct sb-sys:deadline-timeout :prototype
 #<sb-sys:deadline-timeout {1003D597E3}>)
(:mop-direct sb-sys:io-timeout :superclass common-lisp:stream-error)
(:mop-direct sb-sys:io-timeout :superclass sb-ext:timeout)
(:mop-direct sb-sys:io-timeout :package-name "SB-SYS")
(:mop-direct sb-sys:io-timeout :precedance
 (common-lisp:stream-error common-lisp:error sb-ext:timeout
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-sys:io-timeout :classof sb-pcl::condition-class)
(:mop-direct sb-sys:io-timeout :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:io-timeout :superclass sb-ext:timeout)
(:mop-direct sb-sys:io-timeout :slot
 ((:name sb-kernel::direction) (:ordinal 1) (:initargs (:direction))
  (:readers (sb-kernel::io-timeout-direction))))
(:mop-direct sb-sys:io-timeout :prototype #<sb-sys:io-timeout {1003D61E23}>)
(:mop-direct sb-ext:timeout :prototype #<sb-ext:timeout {1003D62E23}>)
(:mop-direct common-lisp:storage-condition :superclass
 common-lisp:serious-condition)
(:mop-direct sb-kernel::heap-exhausted-error :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::alien-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::binding-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::control-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:storage-condition)
(:mop-direct common-lisp:storage-condition :package-name "COMMON-LISP")
(:mop-direct common-lisp:storage-condition :precedance
 (common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:storage-condition :classof sb-pcl::condition-class)
(:mop-direct common-lisp:storage-condition :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:storage-condition :superclass
 common-lisp:serious-condition)
(:mop-direct sb-kernel::heap-exhausted-error :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::heap-exhausted-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel::heap-exhausted-error :precedance
 (common-lisp:storage-condition common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::heap-exhausted-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::heap-exhausted-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::heap-exhausted-error :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::heap-exhausted-error :prototype
 #<sb-kernel::heap-exhausted-error {1003D712B3}>)
(:mop-direct sb-kernel::alien-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::alien-stack-exhausted :package-name "SB-KERNEL")
(:mop-direct sb-kernel::alien-stack-exhausted :precedance
 (common-lisp:storage-condition common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::alien-stack-exhausted :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::alien-stack-exhausted :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::alien-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::alien-stack-exhausted :prototype
 #<sb-kernel::alien-stack-exhausted {1003D769B3}>)
(:mop-direct sb-kernel::binding-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::binding-stack-exhausted :package-name "SB-KERNEL")
(:mop-direct sb-kernel::binding-stack-exhausted :precedance
 (common-lisp:storage-condition common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::binding-stack-exhausted :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::binding-stack-exhausted :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::binding-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::binding-stack-exhausted :prototype
 #<sb-kernel::binding-stack-exhausted {1003D7C103}>)
(:mop-direct sb-kernel::control-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::control-stack-exhausted :package-name "SB-KERNEL")
(:mop-direct sb-kernel::control-stack-exhausted :precedance
 (common-lisp:storage-condition common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::control-stack-exhausted :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::control-stack-exhausted :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::control-stack-exhausted :superclass
 common-lisp:storage-condition)
(:mop-direct sb-kernel::control-stack-exhausted :prototype
 #<sb-kernel::control-stack-exhausted {1003D81853}>)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:storage-condition)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-storage-condition :package-name "SB-INT")
(:mop-direct sb-int:simple-storage-condition :precedance
 (common-lisp:storage-condition common-lisp:serious-condition
  common-lisp:simple-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-storage-condition :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-storage-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-storage-condition :superclass
 common-lisp:storage-condition)
(:mop-direct sb-int:simple-storage-condition :prototype
 #<sb-int:simple-storage-condition {1003A47683}>)
(:mop-direct common-lisp:storage-condition :prototype
 #<common-lisp:storage-condition {1003D89533}>)
(:mop-direct common-lisp:error :superclass common-lisp:serious-condition)
(:mop-direct ql-bundle::bundle-error :superclass common-lisp:error)
(:mop-direct quicklisp-client::invalid-client-info :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::invalid-client-file :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::system-not-quickloadable :superclass
 common-lisp:error)
(:mop-direct quicklisp-client:system-not-found :superclass common-lisp:error)
(:mop-direct ql-dist:unknown-dist :superclass common-lisp:error)
(:mop-direct ql-dist:invalid-local-archive :superclass common-lisp:error)
(:mop-direct ql-dist:subscription-unavailable :superclass common-lisp:error)
(:mop-direct ql-http:fetch-error :superclass common-lisp:error)
(:mop-direct ql-http::end-of-data :superclass common-lisp:error)
(:mop-direct ql-http::match-failure :superclass common-lisp:error)
(:mop-direct sb-bsd-sockets:name-service-error :superclass common-lisp:error)
(:mop-direct sb-bsd-sockets:socket-error :superclass common-lisp:error)
(:mop-direct sb-posix:syscall-error :superclass common-lisp:error)
(:mop-direct asdf/backward-interface:operation-error :superclass
 common-lisp:error)
(:mop-direct asdf/component:system-definition-error :superclass
 common-lisp:error)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-file-error :superclass common-lisp:error)
(:mop-direct uiop/run-program:subprocess-error :superclass common-lisp:error)
(:mop-direct sb-pcl::new-value-specialization :superclass common-lisp:error)
(:mop-direct sb-pcl::obsolete-structure :superclass common-lisp:error)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass common-lisp:error)
(:mop-direct sb-pcl::invalid-superclass :superclass common-lisp:error)
(:mop-direct sb-pcl::slotd-initialization-error :superclass common-lisp:error)
(:mop-direct sb-pcl::no-primary-method :superclass common-lisp:error)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 common-lisp:error)
(:mop-direct sb-di:debug-error :superclass common-lisp:error)
(:mop-direct sb-thread:thread-error :superclass common-lisp:error)
(:mop-direct sb-impl::save-error :superclass common-lisp:error)
(:mop-direct sb-sys:breakpoint-error :superclass common-lisp:error)
(:mop-direct sb-sys:memory-fault-error :superclass common-lisp:error)
(:mop-direct sb-int:character-coding-error :superclass common-lisp:error)
(:mop-direct sb-ext:invalid-fasl :superclass common-lisp:error)
(:mop-direct sb-format:format-error :superclass common-lisp:error)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :superclass
 common-lisp:error)
(:mop-direct sb-ext:deprecation-error :superclass common-lisp:error)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-ext:defconstant-uneql :superclass common-lisp:error)
(:mop-direct common-lisp:print-not-readable :superclass common-lisp:error)
(:mop-direct common-lisp:arithmetic-error :superclass common-lisp:error)
(:mop-direct common-lisp:cell-error :superclass common-lisp:error)
(:mop-direct common-lisp:package-error :superclass common-lisp:error)
(:mop-direct common-lisp:file-error :superclass common-lisp:error)
(:mop-direct common-lisp:stream-error :superclass common-lisp:error)
(:mop-direct common-lisp:control-error :superclass common-lisp:error)
(:mop-direct common-lisp:parse-error :superclass common-lisp:error)
(:mop-direct common-lisp:program-error :superclass common-lisp:error)
(:mop-direct common-lisp:type-error :superclass common-lisp:error)
(:mop-direct common-lisp:simple-error :superclass common-lisp:error)
(:mop-direct common-lisp:error :package-name "COMMON-LISP")
(:mop-direct common-lisp:error :precedance
 (common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:error :superclass common-lisp:serious-condition)
(:mop-direct ql-bundle::bundle-error :superclass common-lisp:error)
(:mop-direct ql-bundle:bundle-directory-exists :superclass
 ql-bundle::bundle-error)
(:mop-direct ql-bundle:object-not-found :superclass ql-bundle::bundle-error)
(:mop-direct ql-bundle::bundle-error :package-name "QL-BUNDLE")
(:mop-direct ql-bundle::bundle-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-bundle::bundle-error :classof sb-pcl::condition-class)
(:mop-direct ql-bundle::bundle-error :typeof sb-pcl::condition-class)
(:mop-direct ql-bundle::bundle-error :superclass common-lisp:error)
(:mop-direct ql-bundle:bundle-directory-exists :superclass
 ql-bundle::bundle-error)
(:mop-direct ql-bundle:bundle-directory-exists :package-name "QL-BUNDLE")
(:mop-direct ql-bundle:bundle-directory-exists :precedance
 (ql-bundle::bundle-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-bundle:bundle-directory-exists :classof sb-pcl::condition-class)
(:mop-direct ql-bundle:bundle-directory-exists :typeof sb-pcl::condition-class)
(:mop-direct ql-bundle:bundle-directory-exists :superclass
 ql-bundle::bundle-error)
(:mop-direct ql-bundle:bundle-directory-exists :slot
 ((:name common-lisp:directory) (:ordinal 1) (:initargs (:directory))
  (:readers (ql-bundle:bundle-directory-exists-directory))))
(:mop-direct ql-bundle:bundle-directory-exists :prototype
 #<ql-bundle:bundle-directory-exists {1003DCB003}>)
(:mop-direct ql-bundle:object-not-found :superclass ql-bundle::bundle-error)
(:mop-direct ql-bundle:release-not-found :superclass ql-bundle:object-not-found)
(:mop-direct ql-bundle:system-not-found :superclass ql-bundle:object-not-found)
(:mop-direct ql-bundle:object-not-found :package-name "QL-BUNDLE")
(:mop-direct ql-bundle:object-not-found :precedance
 (ql-bundle::bundle-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-bundle:object-not-found :classof sb-pcl::condition-class)
(:mop-direct ql-bundle:object-not-found :typeof sb-pcl::condition-class)
(:mop-direct ql-bundle:object-not-found :superclass ql-bundle::bundle-error)
(:mop-direct ql-bundle:object-not-found :slot
 ((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
  (:readers (ql-bundle::object-not-found-name))))
(:mop-direct ql-bundle:object-not-found :slot
 ((:name common-lisp:type) (:ordinal 2) (:initargs (:type))
  (:readers (ql-bundle::object-not-found-type))))
(:mop-direct ql-bundle:release-not-found :superclass ql-bundle:object-not-found)
(:mop-direct ql-bundle:release-not-found :package-name "QL-BUNDLE")
(:mop-direct ql-bundle:release-not-found :precedance
 (ql-bundle:object-not-found ql-bundle::bundle-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-bundle:release-not-found :classof sb-pcl::condition-class)
(:mop-direct ql-bundle:release-not-found :typeof sb-pcl::condition-class)
(:mop-direct ql-bundle:release-not-found :superclass ql-bundle:object-not-found)
(:mop-direct ql-bundle:release-not-found :prototype
 #<ql-bundle:release-not-found {1003DDEF63}>)
(:mop-direct ql-bundle:system-not-found :superclass ql-bundle:object-not-found)
(:mop-direct ql-bundle:system-not-found :package-name "QL-BUNDLE")
(:mop-direct ql-bundle:system-not-found :precedance
 (ql-bundle:object-not-found ql-bundle::bundle-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-bundle:system-not-found :classof sb-pcl::condition-class)
(:mop-direct ql-bundle:system-not-found :typeof sb-pcl::condition-class)
(:mop-direct ql-bundle:system-not-found :superclass ql-bundle:object-not-found)
(:mop-direct ql-bundle:system-not-found :slot
 ((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
  (:readers (ql-bundle:system-not-found-system))))
(:mop-direct ql-bundle:system-not-found :prototype
 #<ql-bundle:system-not-found {1003DE8AA3}>)
(:mop-direct ql-bundle:object-not-found :prototype
 #<ql-bundle:object-not-found {1003DEA113}>)
(:mop-direct ql-bundle::bundle-error :prototype
 #<ql-bundle::bundle-error {1003DEB783}>)
(:mop-direct quicklisp-client::invalid-client-info :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::invalid-client-info :package-name
 "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::invalid-client-info :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::invalid-client-info :classof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::invalid-client-info :typeof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::invalid-client-info :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::invalid-client-info :slot
 ((:name quicklisp-client::plist) (:ordinal 1)
  (:initargs (quicklisp-client::plist))
  (:readers (quicklisp-client::invalid-client-info-plist))))
(:mop-direct quicklisp-client::invalid-client-info :prototype
 #<quicklisp-client::invalid-client-info {1003DF50C3}>)
(:mop-direct quicklisp-client::invalid-client-file :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::badly-sized-client-file :superclass
 quicklisp-client::invalid-client-file)
(:mop-direct quicklisp-client::invalid-client-file :package-name
 "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::invalid-client-file :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::invalid-client-file :classof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::invalid-client-file :typeof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::invalid-client-file :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::invalid-client-file :slot
 ((:name quicklisp-client::file) (:ordinal 1) (:initargs (:file))
  (:readers (quicklisp-client::invalid-client-file-file))))
(:mop-direct quicklisp-client::badly-sized-client-file :superclass
 quicklisp-client::invalid-client-file)
(:mop-direct quicklisp-client::badly-sized-client-file :package-name
 "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::badly-sized-client-file :precedance
 (quicklisp-client::invalid-client-file common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct quicklisp-client::badly-sized-client-file :classof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::badly-sized-client-file :typeof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::badly-sized-client-file :superclass
 quicklisp-client::invalid-client-file)
(:mop-direct quicklisp-client::badly-sized-client-file :slot
 ((:name quicklisp-client::expected-size) (:ordinal 1)
  (:initargs (:expected-size))
  (:readers (quicklisp-client::badly-sized-client-file-expected-size))))
(:mop-direct quicklisp-client::badly-sized-client-file :slot
 ((:name quicklisp-client::actual-size) (:ordinal 2) (:initargs (:actual-size))
  (:readers (quicklisp-client::badly-sized-client-file-actual-size))))
(:mop-direct quicklisp-client::badly-sized-client-file :prototype
 #<quicklisp-client::badly-sized-client-file {1003E0B193}>)
(:mop-direct quicklisp-client::invalid-client-file :prototype
 #<quicklisp-client::invalid-client-file {1003E0CA23}>)
(:mop-direct quicklisp-client::system-not-quickloadable :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::system-not-quickloadable :package-name
 "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::system-not-quickloadable :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::system-not-quickloadable :classof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::system-not-quickloadable :typeof
 sb-pcl::condition-class)
(:mop-direct quicklisp-client::system-not-quickloadable :superclass
 common-lisp:error)
(:mop-direct quicklisp-client::system-not-quickloadable :slot
 ((:name ql-dist:system) (:ordinal 1) (:initargs (:system))
  (:readers (quicklisp-client::not-quickloadable-system))))
(:mop-direct quicklisp-client::system-not-quickloadable :prototype
 #<quicklisp-client::system-not-quickloadable {1003E16553}>)
(:mop-direct quicklisp-client:system-not-found :superclass common-lisp:error)
(:mop-direct quicklisp-client:system-not-found :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client:system-not-found :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client:system-not-found :classof sb-pcl::condition-class)
(:mop-direct quicklisp-client:system-not-found :typeof sb-pcl::condition-class)
(:mop-direct quicklisp-client:system-not-found :superclass common-lisp:error)
(:mop-direct quicklisp-client:system-not-found :slot
 ((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
  (:readers (quicklisp-client:system-not-found-name))))
(:mop-direct quicklisp-client:system-not-found :prototype
 #<quicklisp-client:system-not-found {1003E1FC53}>)
(:mop-direct ql-dist:unknown-dist :superclass common-lisp:error)
(:mop-direct ql-dist:unknown-dist :package-name "QL-DIST")
(:mop-direct ql-dist:unknown-dist :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:unknown-dist :classof sb-pcl::condition-class)
(:mop-direct ql-dist:unknown-dist :typeof sb-pcl::condition-class)
(:mop-direct ql-dist:unknown-dist :superclass common-lisp:error)
(:mop-direct ql-dist:unknown-dist :slot
 ((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
  (:readers (ql-dist::unknown-dist-name))))
(:mop-direct ql-dist:unknown-dist :prototype
 #<ql-dist:unknown-dist {1003E28913}>)
(:mop-direct ql-dist:invalid-local-archive :superclass common-lisp:error)
(:mop-direct ql-dist:badly-sized-local-archive :superclass
 ql-dist:invalid-local-archive)
(:mop-direct ql-dist:missing-local-archive :superclass
 ql-dist:invalid-local-archive)
(:mop-direct ql-dist:invalid-local-archive :package-name "QL-DIST")
(:mop-direct ql-dist:invalid-local-archive :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:invalid-local-archive :classof sb-pcl::condition-class)
(:mop-direct ql-dist:invalid-local-archive :typeof sb-pcl::condition-class)
(:mop-direct ql-dist:invalid-local-archive :superclass common-lisp:error)
(:mop-direct ql-dist:invalid-local-archive :slot
 ((:name ql-dist:release) (:ordinal 1) (:initargs (:release))
  (:readers (ql-dist:invalid-local-archive-release))))
(:mop-direct ql-dist:invalid-local-archive :slot
 ((:name ql-dist::file) (:ordinal 2) (:initargs (:file))
  (:readers (ql-dist:invalid-local-archive-file))))
(:mop-direct ql-dist:badly-sized-local-archive :superclass
 ql-dist:invalid-local-archive)
(:mop-direct ql-dist:badly-sized-local-archive :package-name "QL-DIST")
(:mop-direct ql-dist:badly-sized-local-archive :precedance
 (ql-dist:invalid-local-archive common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:badly-sized-local-archive :classof sb-pcl::condition-class)
(:mop-direct ql-dist:badly-sized-local-archive :typeof sb-pcl::condition-class)
(:mop-direct ql-dist:badly-sized-local-archive :superclass
 ql-dist:invalid-local-archive)
(:mop-direct ql-dist:badly-sized-local-archive :slot
 ((:name ql-dist::expected-size) (:ordinal 1) (:initargs (:expected-size))
  (:readers (ql-dist::badly-sized-local-archive-expected-size))))
(:mop-direct ql-dist:badly-sized-local-archive :slot
 ((:name ql-dist::actual-size) (:ordinal 2) (:initargs (:actual-size))
  (:readers (ql-dist::badly-sized-local-archive-actual-size))))
(:mop-direct ql-dist:badly-sized-local-archive :prototype
 #<ql-dist:badly-sized-local-archive {1003E404A3}>)
(:mop-direct ql-dist:missing-local-archive :superclass
 ql-dist:invalid-local-archive)
(:mop-direct ql-dist:missing-local-archive :package-name "QL-DIST")
(:mop-direct ql-dist:missing-local-archive :precedance
 (ql-dist:invalid-local-archive common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:missing-local-archive :classof sb-pcl::condition-class)
(:mop-direct ql-dist:missing-local-archive :typeof sb-pcl::condition-class)
(:mop-direct ql-dist:missing-local-archive :superclass
 ql-dist:invalid-local-archive)
(:mop-direct ql-dist:missing-local-archive :prototype
 #<ql-dist:missing-local-archive {1003E484C3}>)
(:mop-direct ql-dist:invalid-local-archive :prototype
 #<ql-dist:invalid-local-archive {1003E49B93}>)
(:mop-direct ql-dist:subscription-unavailable :superclass common-lisp:error)
(:mop-direct ql-dist:subscription-unavailable :package-name "QL-DIST")
(:mop-direct ql-dist:subscription-unavailable :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:subscription-unavailable :classof sb-pcl::condition-class)
(:mop-direct ql-dist:subscription-unavailable :typeof sb-pcl::condition-class)
(:mop-direct ql-dist:subscription-unavailable :superclass common-lisp:error)
(:mop-direct ql-dist:subscription-unavailable :slot
 ((:name ql-dist::object) (:ordinal 1) (:initargs (:object))
  (:readers (ql-dist::subscription-unavailable-object))))
(:mop-direct ql-dist:subscription-unavailable :prototype
 #<ql-dist:subscription-unavailable {1003E52E43}>)
(:mop-direct ql-http:fetch-error :superclass common-lisp:error)
(:mop-direct ql-http:too-many-redirects :superclass ql-http:fetch-error)
(:mop-direct ql-http:unexpected-http-status :superclass ql-http:fetch-error)
(:mop-direct ql-http:fetch-error :package-name "QL-HTTP")
(:mop-direct ql-http:fetch-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http:fetch-error :classof sb-pcl::condition-class)
(:mop-direct ql-http:fetch-error :typeof sb-pcl::condition-class)
(:mop-direct ql-http:fetch-error :superclass common-lisp:error)
(:mop-direct ql-http:too-many-redirects :superclass ql-http:fetch-error)
(:mop-direct ql-http:too-many-redirects :package-name "QL-HTTP")
(:mop-direct ql-http:too-many-redirects :precedance
 (ql-http:fetch-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http:too-many-redirects :classof sb-pcl::condition-class)
(:mop-direct ql-http:too-many-redirects :typeof sb-pcl::condition-class)
(:mop-direct ql-http:too-many-redirects :superclass ql-http:fetch-error)
(:mop-direct ql-http:too-many-redirects :slot
 ((:name ql-http:url) (:ordinal 1) (:initargs (:url))
  (:readers (ql-http:too-many-redirects-url))))
(:mop-direct ql-http:too-many-redirects :slot
 ((:name ql-http::redirect-count) (:ordinal 2) (:initargs (:redirect-count))
  (:readers (ql-http:too-many-redirects-count))))
(:mop-direct ql-http:too-many-redirects :prototype
 #<ql-http:too-many-redirects {1003E65EE3}>)
(:mop-direct ql-http:unexpected-http-status :superclass ql-http:fetch-error)
(:mop-direct ql-http:unexpected-http-status :package-name "QL-HTTP")
(:mop-direct ql-http:unexpected-http-status :precedance
 (ql-http:fetch-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http:unexpected-http-status :classof sb-pcl::condition-class)
(:mop-direct ql-http:unexpected-http-status :typeof sb-pcl::condition-class)
(:mop-direct ql-http:unexpected-http-status :superclass ql-http:fetch-error)
(:mop-direct ql-http:unexpected-http-status :slot
 ((:name ql-http::status-code) (:ordinal 1) (:initargs (:status-code))
  (:readers (ql-http:unexpected-http-status-code))))
(:mop-direct ql-http:unexpected-http-status :slot
 ((:name ql-http:url) (:ordinal 2) (:initargs (:url))
  (:readers (ql-http:unexpected-http-status-url))))
(:mop-direct ql-http:unexpected-http-status :prototype
 #<ql-http:unexpected-http-status {1003E71683}>)
(:mop-direct ql-http:fetch-error :prototype #<ql-http:fetch-error {1003E72D73}>)
(:mop-direct ql-http::end-of-data :superclass common-lisp:error)
(:mop-direct ql-http::end-of-data :package-name "QL-HTTP")
(:mop-direct ql-http::end-of-data :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::end-of-data :classof sb-pcl::condition-class)
(:mop-direct ql-http::end-of-data :typeof sb-pcl::condition-class)
(:mop-direct ql-http::end-of-data :superclass common-lisp:error)
(:mop-direct ql-http::end-of-data :prototype
 #<ql-http::end-of-data {1003E79BD3}>)
(:mop-direct ql-http::match-failure :superclass common-lisp:error)
(:mop-direct ql-http::match-failure :package-name "QL-HTTP")
(:mop-direct ql-http::match-failure :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::match-failure :classof sb-pcl::condition-class)
(:mop-direct ql-http::match-failure :typeof sb-pcl::condition-class)
(:mop-direct ql-http::match-failure :superclass common-lisp:error)
(:mop-direct ql-http::match-failure :prototype
 #<ql-http::match-failure {1003E80BB3}>)
(:mop-direct sb-bsd-sockets:name-service-error :superclass common-lisp:error)
(:mop-direct sb-bsd-sockets::no-address-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:no-recovery-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:try-again-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:host-not-found-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:netdb-success-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:netdb-internal-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:name-service-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:name-service-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:name-service-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:name-service-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:name-service-error :superclass common-lisp:error)
(:mop-direct sb-bsd-sockets:name-service-error :slot
 ((:name sb-bsd-sockets::errno) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:errno)) (:readers (sb-bsd-sockets::name-service-error-errno))))
(:mop-direct sb-bsd-sockets:name-service-error :slot
 ((:name sb-bsd-sockets::error-code) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:error-code))
  (:readers (sb-bsd-sockets::name-service-error-error-code))))
(:mop-direct sb-bsd-sockets:name-service-error :slot
 ((:name common-lisp:symbol) (:ordinal 3) (:initform 'common-lisp:nil)
  (:initargs (:symbol)) (:readers (sb-bsd-sockets::name-service-error-symbol))))
(:mop-direct sb-bsd-sockets:name-service-error :slot
 ((:name sb-bsd-sockets::syscall) (:ordinal 4)
  (:initform '"an unknown location") (:initargs (:syscall))
  (:readers (sb-bsd-sockets::name-service-error-syscall))))
(:mop-direct sb-bsd-sockets::no-address-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets::no-address-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets::no-address-error :precedance
 (sb-bsd-sockets:name-service-error common-lisp:error
                                    common-lisp:serious-condition
                                    common-lisp:condition sb-pcl::slot-object
                                    common-lisp:t))
(:mop-direct sb-bsd-sockets::no-address-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets::no-address-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets::no-address-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets::no-address-error :slot
 ((:name sb-bsd-sockets::errno-symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::no-address)
  (:readers (sb-bsd-sockets::name-service-error-errno-symbol))))
(:mop-direct sb-bsd-sockets::no-address-error :slot
 ((:name sb-bsd-sockets::error-code-symbol) (:ordinal 2)
  (:initform ''common-lisp:nil)
  (:readers (sb-bsd-sockets::name-service-error-error-code-symbol))))
(:mop-direct sb-bsd-sockets::no-address-error :prototype
 #<sb-bsd-sockets::no-address-error {1003EA1863}>)
(:mop-direct sb-bsd-sockets:no-recovery-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:no-recovery-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:no-recovery-error :precedance
 (sb-bsd-sockets:name-service-error common-lisp:error
                                    common-lisp:serious-condition
                                    common-lisp:condition sb-pcl::slot-object
                                    common-lisp:t))
(:mop-direct sb-bsd-sockets:no-recovery-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:no-recovery-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:no-recovery-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:no-recovery-error :slot
 ((:name sb-bsd-sockets::errno-symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::no-recovery)
  (:readers (sb-bsd-sockets::name-service-error-errno-symbol))))
(:mop-direct sb-bsd-sockets:no-recovery-error :slot
 ((:name sb-bsd-sockets::error-code-symbol) (:ordinal 2)
  (:initform ''sb-bsd-sockets-internal::eai-fail)
  (:readers (sb-bsd-sockets::name-service-error-error-code-symbol))))
(:mop-direct sb-bsd-sockets:no-recovery-error :prototype
 #<sb-bsd-sockets:no-recovery-error {1003EADDA3}>)
(:mop-direct sb-bsd-sockets:try-again-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:try-again-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:try-again-error :precedance
 (sb-bsd-sockets:name-service-error common-lisp:error
                                    common-lisp:serious-condition
                                    common-lisp:condition sb-pcl::slot-object
                                    common-lisp:t))
(:mop-direct sb-bsd-sockets:try-again-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:try-again-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:try-again-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:try-again-error :slot
 ((:name sb-bsd-sockets::errno-symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::try-again)
  (:readers (sb-bsd-sockets::name-service-error-errno-symbol))))
(:mop-direct sb-bsd-sockets:try-again-error :slot
 ((:name sb-bsd-sockets::error-code-symbol) (:ordinal 2)
  (:initform ''sb-bsd-sockets-internal::eai-again)
  (:readers (sb-bsd-sockets::name-service-error-error-code-symbol))))
(:mop-direct sb-bsd-sockets:try-again-error :prototype
 #<sb-bsd-sockets:try-again-error {1003EBA173}>)
(:mop-direct sb-bsd-sockets:host-not-found-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:host-not-found-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:host-not-found-error :precedance
 (sb-bsd-sockets:name-service-error common-lisp:error
                                    common-lisp:serious-condition
                                    common-lisp:condition sb-pcl::slot-object
                                    common-lisp:t))
(:mop-direct sb-bsd-sockets:host-not-found-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:host-not-found-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:host-not-found-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:host-not-found-error :slot
 ((:name sb-bsd-sockets::errno-symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::host-not-found)
  (:readers (sb-bsd-sockets::name-service-error-errno-symbol))))
(:mop-direct sb-bsd-sockets:host-not-found-error :slot
 ((:name sb-bsd-sockets::error-code-symbol) (:ordinal 2)
  (:initform ''sb-bsd-sockets-internal::eai-noname)
  (:readers (sb-bsd-sockets::name-service-error-error-code-symbol))))
(:mop-direct sb-bsd-sockets:host-not-found-error :prototype
 #<sb-bsd-sockets:host-not-found-error {1003EC6943}>)
(:mop-direct sb-bsd-sockets:netdb-success-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:netdb-success-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:netdb-success-error :precedance
 (sb-bsd-sockets:name-service-error common-lisp:error
                                    common-lisp:serious-condition
                                    common-lisp:condition sb-pcl::slot-object
                                    common-lisp:t))
(:mop-direct sb-bsd-sockets:netdb-success-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:netdb-success-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:netdb-success-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:netdb-success-error :slot
 ((:name sb-bsd-sockets::errno-symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::netdb-success)
  (:readers (sb-bsd-sockets::name-service-error-errno-symbol))))
(:mop-direct sb-bsd-sockets:netdb-success-error :slot
 ((:name sb-bsd-sockets::error-code-symbol) (:ordinal 2)
  (:initform ''common-lisp:nil)
  (:readers (sb-bsd-sockets::name-service-error-error-code-symbol))))
(:mop-direct sb-bsd-sockets:netdb-success-error :prototype
 #<sb-bsd-sockets:netdb-success-error {1003ED2D13}>)
(:mop-direct sb-bsd-sockets:netdb-internal-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:netdb-internal-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:netdb-internal-error :precedance
 (sb-bsd-sockets:name-service-error common-lisp:error
                                    common-lisp:serious-condition
                                    common-lisp:condition sb-pcl::slot-object
                                    common-lisp:t))
(:mop-direct sb-bsd-sockets:netdb-internal-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:netdb-internal-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:netdb-internal-error :superclass
 sb-bsd-sockets:name-service-error)
(:mop-direct sb-bsd-sockets:netdb-internal-error :slot
 ((:name sb-bsd-sockets::errno-symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::netdb-internal)
  (:readers (sb-bsd-sockets::name-service-error-errno-symbol))))
(:mop-direct sb-bsd-sockets:netdb-internal-error :slot
 ((:name sb-bsd-sockets::error-code-symbol) (:ordinal 2)
  (:initform ''common-lisp:nil)
  (:readers (sb-bsd-sockets::name-service-error-error-code-symbol))))
(:mop-direct sb-bsd-sockets:netdb-internal-error :prototype
 #<sb-bsd-sockets:netdb-internal-error {1003EDF1F3}>)
(:mop-direct sb-bsd-sockets:name-service-error :prototype
 #<sb-bsd-sockets:name-service-error {1003EE09C3}>)
(:mop-direct sb-bsd-sockets:socket-error :superclass common-lisp:error)
(:mop-direct sb-bsd-sockets:address-family-not-supported :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:not-connected-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:network-unreachable-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:out-of-memory-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:no-buffers-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:invalid-argument-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-timeout-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:connection-refused-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:interrupted-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:address-in-use-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:socket-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:socket-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:socket-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:socket-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:socket-error :superclass common-lisp:error)
(:mop-direct sb-bsd-sockets:socket-error :slot
 ((:name sb-bsd-sockets::errno) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:errno)) (:readers (sb-bsd-sockets::socket-error-errno))))
(:mop-direct sb-bsd-sockets:socket-error :slot
 ((:name common-lisp:symbol) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:symbol)) (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:socket-error :slot
 ((:name sb-bsd-sockets::syscall) (:ordinal 3) (:initform '"outer space")
  (:initargs (:syscall)) (:readers (sb-bsd-sockets::socket-error-syscall))))
(:mop-direct sb-bsd-sockets:address-family-not-supported :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:address-family-not-supported :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:address-family-not-supported :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:address-family-not-supported :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:address-family-not-supported :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:address-family-not-supported :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:address-family-not-supported :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::eafnosupport) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:address-family-not-supported :prototype
 #<sb-bsd-sockets:address-family-not-supported {1003F08753}>)
(:mop-direct sb-bsd-sockets:not-connected-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:not-connected-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:not-connected-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:not-connected-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:not-connected-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:not-connected-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:not-connected-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::enotconn) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:not-connected-error :prototype
 #<sb-bsd-sockets:not-connected-error {1003F12A83}>)
(:mop-direct sb-bsd-sockets:network-unreachable-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:network-unreachable-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:network-unreachable-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:network-unreachable-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:network-unreachable-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:network-unreachable-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:network-unreachable-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::enetunreach) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:network-unreachable-error :prototype
 #<sb-bsd-sockets:network-unreachable-error {1003F1D233}>)
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::esocktnosupport) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:socket-type-not-supported-error :prototype
 #<sb-bsd-sockets:socket-type-not-supported-error {1003F27D63}>)
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::eprotonosupport) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:protocol-not-supported-error :prototype
 #<sb-bsd-sockets:protocol-not-supported-error {1003F32713}>)
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::eperm) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:operation-not-permitted-error :prototype
 #<sb-bsd-sockets:operation-not-permitted-error {1003F3D093}>)
(:mop-direct sb-bsd-sockets:operation-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-not-supported-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:operation-not-supported-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:operation-not-supported-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:operation-not-supported-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:operation-not-supported-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-not-supported-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::eopnotsupp) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:operation-not-supported-error :prototype
 #<sb-bsd-sockets:operation-not-supported-error {1003F47A23}>)
(:mop-direct sb-bsd-sockets:out-of-memory-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:out-of-memory-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:out-of-memory-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:out-of-memory-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:out-of-memory-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:out-of-memory-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:out-of-memory-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::enomem) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:out-of-memory-error :prototype
 #<sb-bsd-sockets:out-of-memory-error {1003F51DE3}>)
(:mop-direct sb-bsd-sockets:no-buffers-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:no-buffers-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:no-buffers-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:no-buffers-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:no-buffers-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:no-buffers-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:no-buffers-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::enobufs) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:no-buffers-error :prototype
 #<sb-bsd-sockets:no-buffers-error {1003F5BD73}>)
(:mop-direct sb-bsd-sockets:invalid-argument-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:invalid-argument-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:invalid-argument-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:invalid-argument-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:invalid-argument-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:invalid-argument-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:invalid-argument-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::einval) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:invalid-argument-error :prototype
 #<sb-bsd-sockets:invalid-argument-error {1003F660F3}>)
(:mop-direct sb-bsd-sockets:operation-timeout-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-timeout-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:operation-timeout-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:operation-timeout-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:operation-timeout-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:operation-timeout-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:operation-timeout-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::etimedout) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:operation-timeout-error :prototype
 #<sb-bsd-sockets:operation-timeout-error {1003F705A3}>)
(:mop-direct sb-bsd-sockets:connection-refused-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:connection-refused-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:connection-refused-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:connection-refused-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:connection-refused-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:connection-refused-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:connection-refused-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::econnrefused) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:connection-refused-error :prototype
 #<sb-bsd-sockets:connection-refused-error {1003F7ABB3}>)
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :package-name
 "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::ebadf) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:bad-file-descriptor-error :prototype
 #<sb-bsd-sockets:bad-file-descriptor-error {1003F851C3}>)
(:mop-direct sb-bsd-sockets:interrupted-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:interrupted-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:interrupted-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:interrupted-error :classof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:interrupted-error :typeof sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:interrupted-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:interrupted-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::eintr) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:interrupted-error :prototype
 #<sb-bsd-sockets:interrupted-error {1003F8F2E3}>)
(:mop-direct sb-bsd-sockets:address-in-use-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:address-in-use-error :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:address-in-use-error :precedance
 (sb-bsd-sockets:socket-error common-lisp:error common-lisp:serious-condition
                              common-lisp:condition sb-pcl::slot-object
                              common-lisp:t))
(:mop-direct sb-bsd-sockets:address-in-use-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:address-in-use-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-bsd-sockets:address-in-use-error :superclass
 sb-bsd-sockets:socket-error)
(:mop-direct sb-bsd-sockets:address-in-use-error :slot
 ((:name common-lisp:symbol) (:ordinal 1)
  (:initform ''sb-bsd-sockets-internal::eaddrinuse) (:initargs (:symbol))
  (:readers (sb-bsd-sockets::socket-error-symbol))))
(:mop-direct sb-bsd-sockets:address-in-use-error :prototype
 #<sb-bsd-sockets:address-in-use-error {1003FA0283}>)
(:mop-direct sb-bsd-sockets:socket-error :prototype
 #<sb-bsd-sockets:socket-error {1003FA1A53}>)
(:mop-direct sb-posix:syscall-error :superclass common-lisp:error)
(:mop-direct sb-posix:syscall-error :package-name "SB-POSIX")
(:mop-direct sb-posix:syscall-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:syscall-error :classof sb-pcl::condition-class)
(:mop-direct sb-posix:syscall-error :typeof sb-pcl::condition-class)
(:mop-direct sb-posix:syscall-error :superclass common-lisp:error)
(:mop-direct sb-posix:syscall-error :slot
 ((:name sb-posix::errno) (:ordinal 1) (:initargs (:errno))
  (:readers (sb-posix:syscall-errno))))
(:mop-direct sb-posix:syscall-error :slot
 ((:name sb-posix::name) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:name)) (:readers (sb-posix:syscall-name))))
(:mop-direct sb-posix:syscall-error :prototype
 #<sb-posix:syscall-error {1003FAC1C3}>)
(:mop-direct asdf/backward-interface:operation-error :superclass
 common-lisp:error)
(:mop-direct asdf/backward-interface:compile-error :superclass
 asdf/backward-interface:operation-error)
(:mop-direct asdf/backward-interface:operation-error :package-name
 "ASDF/BACKWARD-INTERFACE")
(:mop-direct asdf/backward-interface:operation-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/backward-interface:operation-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:operation-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:operation-error :superclass
 common-lisp:error)
(:mop-direct asdf/backward-interface:operation-error :slot
 ((:name asdf/component:component) (:ordinal 1) (:initargs (:component))
  (:readers (asdf/backward-interface:error-component))))
(:mop-direct asdf/backward-interface:operation-error :slot
 ((:name asdf/operation:operation) (:ordinal 2) (:initargs (:operation))
  (:readers (asdf/backward-interface:error-operation))))
(:mop-direct asdf/backward-interface:compile-error :superclass
 asdf/backward-interface:operation-error)
(:mop-direct asdf/backward-interface:compile-warned :superclass
 asdf/backward-interface:compile-error)
(:mop-direct asdf/backward-interface:compile-failed :superclass
 asdf/backward-interface:compile-error)
(:mop-direct asdf/backward-interface:compile-error :package-name
 "ASDF/BACKWARD-INTERFACE")
(:mop-direct asdf/backward-interface:compile-error :precedance
 (asdf/backward-interface:operation-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/backward-interface:compile-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:compile-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:compile-error :superclass
 asdf/backward-interface:operation-error)
(:mop-direct asdf/backward-interface:compile-warned :superclass
 asdf/backward-interface:compile-error)
(:mop-direct asdf/backward-interface:compile-warned :package-name
 "ASDF/BACKWARD-INTERFACE")
(:mop-direct asdf/backward-interface:compile-warned :precedance
 (asdf/backward-interface:compile-error asdf/backward-interface:operation-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/backward-interface:compile-warned :classof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:compile-warned :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:compile-warned :superclass
 asdf/backward-interface:compile-error)
(:mop-direct asdf/backward-interface:compile-warned :prototype
 #<asdf/backward-interface:compile-warned {1003FC9833}>)
(:mop-direct asdf/backward-interface:compile-failed :superclass
 asdf/backward-interface:compile-error)
(:mop-direct asdf/backward-interface:compile-failed :package-name
 "ASDF/BACKWARD-INTERFACE")
(:mop-direct asdf/backward-interface:compile-failed :precedance
 (asdf/backward-interface:compile-error asdf/backward-interface:operation-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/backward-interface:compile-failed :classof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:compile-failed :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/backward-interface:compile-failed :superclass
 asdf/backward-interface:compile-error)
(:mop-direct asdf/backward-interface:compile-failed :prototype
 #<asdf/backward-interface:compile-failed {1003FD2463}>)
(:mop-direct asdf/backward-interface:compile-error :prototype
 #<asdf/backward-interface:compile-error {1003FD3C93}>)
(:mop-direct asdf/backward-interface:operation-error :prototype
 #<asdf/backward-interface:operation-error {1003FD54A3}>)
(:mop-direct asdf/component:system-definition-error :superclass
 common-lisp:error)
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :superclass asdf/component:system-definition-error)
(:mop-direct asdf/parse-defsystem:non-toplevel-system :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/parse-defsystem:non-system-system :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/plan:circular-dependency :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:load-system-definition-error :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:formatted-system-definition-error :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:missing-component :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/component:duplicate-names :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/component:system-definition-error :package-name
 "ASDF/COMPONENT")
(:mop-direct asdf/component:system-definition-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:system-definition-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/component:system-definition-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/component:system-definition-error :superclass
 common-lisp:error)
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :superclass asdf/component:system-definition-error)
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :package-name "ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :classof sb-pcl::condition-class)
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :typeof sb-pcl::condition-class)
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :superclass asdf/component:system-definition-error)
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :slot
 ((:name asdf/system:system) (:ordinal 1) (:initargs (:system))
  (:readers (asdf/package-inferred-system::error-system))))
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :slot
 ((:name common-lisp:pathname) (:ordinal 2) (:initargs (:pathname))
  (:readers (asdf/find-system:error-pathname))))
(:mop-direct
 asdf/package-inferred-system:package-inferred-system-missing-package-error
 :prototype
 #<asdf/package-inferred-system:package-inferred-system-missing-package-error
   {1003FF3463}>)
(:mop-direct asdf/parse-defsystem:non-toplevel-system :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/parse-defsystem:non-toplevel-system :package-name
 "ASDF/PARSE-DEFSYSTEM")
(:mop-direct asdf/parse-defsystem:non-toplevel-system :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/parse-defsystem:non-toplevel-system :classof
 sb-pcl::condition-class)
(:mop-direct asdf/parse-defsystem:non-toplevel-system :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/parse-defsystem:non-toplevel-system :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/parse-defsystem:non-toplevel-system :slot
 ((:name asdf/component:parent) (:ordinal 1) (:initargs (:parent))
  (:readers (asdf/parse-defsystem::non-toplevel-system-parent))))
(:mop-direct asdf/parse-defsystem:non-toplevel-system :slot
 ((:name asdf/component:name) (:ordinal 2) (:initargs (:name))
  (:readers (asdf/parse-defsystem::non-toplevel-system-name))))
(:mop-direct asdf/parse-defsystem:non-toplevel-system :prototype
 #<asdf/parse-defsystem:non-toplevel-system {1003FFFFA3}>)
(:mop-direct asdf/parse-defsystem:non-system-system :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/parse-defsystem:non-system-system :package-name
 "ASDF/PARSE-DEFSYSTEM")
(:mop-direct asdf/parse-defsystem:non-system-system :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/parse-defsystem:non-system-system :classof
 sb-pcl::condition-class)
(:mop-direct asdf/parse-defsystem:non-system-system :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/parse-defsystem:non-system-system :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/parse-defsystem:non-system-system :slot
 ((:name asdf/component:name) (:ordinal 1) (:initargs (:name))
  (:readers (asdf/parse-defsystem::non-system-system-name))))
(:mop-direct asdf/parse-defsystem:non-system-system :slot
 ((:name common-lisp:class-name) (:ordinal 2) (:initargs (:class-name))
  (:readers (asdf/parse-defsystem::non-system-system-class-name))))
(:mop-direct asdf/parse-defsystem:non-system-system :prototype
 #<asdf/parse-defsystem:non-system-system {1004014163}>)
(:mop-direct asdf/plan:circular-dependency :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/plan:circular-dependency :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:circular-dependency :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/plan:circular-dependency :classof sb-pcl::condition-class)
(:mop-direct asdf/plan:circular-dependency :typeof sb-pcl::condition-class)
(:mop-direct asdf/plan:circular-dependency :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/plan:circular-dependency :slot
 ((:name asdf/plan::actions) (:ordinal 1) (:initargs (:actions))
  (:readers (asdf/plan:circular-dependency-actions))))
(:mop-direct asdf/plan:circular-dependency :prototype
 #<asdf/plan:circular-dependency {100401E1E3}>)
(:mop-direct asdf/find-system:load-system-definition-error :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:load-system-definition-error :package-name
 "ASDF/FIND-SYSTEM")
(:mop-direct asdf/find-system:load-system-definition-error :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/find-system:load-system-definition-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-system:load-system-definition-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/find-system:load-system-definition-error :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:load-system-definition-error :slot
 ((:name asdf/component:name) (:ordinal 1) (:initargs (:name))
  (:readers (asdf/find-system:error-name))))
(:mop-direct asdf/find-system:load-system-definition-error :slot
 ((:name common-lisp:pathname) (:ordinal 2) (:initargs (:pathname))
  (:readers (asdf/find-system:error-pathname))))
(:mop-direct asdf/find-system:load-system-definition-error :slot
 ((:name common-lisp:condition) (:ordinal 3) (:initargs (:condition))
  (:readers (asdf/find-system:error-condition))))
(:mop-direct asdf/find-system:load-system-definition-error :prototype
 #<asdf/find-system:load-system-definition-error {100402BED3}>)
(:mop-direct asdf/find-system:formatted-system-definition-error :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:formatted-system-definition-error :package-name
 "ASDF/FIND-SYSTEM")
(:mop-direct asdf/find-system:formatted-system-definition-error :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/find-system:formatted-system-definition-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-system:formatted-system-definition-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/find-system:formatted-system-definition-error :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:formatted-system-definition-error :slot
 ((:name asdf/find-system:format-control) (:ordinal 1)
  (:initargs (:format-control)) (:readers (asdf/find-system:format-control))))
(:mop-direct asdf/find-system:formatted-system-definition-error :slot
 ((:name asdf/find-system:format-arguments) (:ordinal 2)
  (:initargs (:format-arguments))
  (:readers (asdf/find-system:format-arguments))))
(:mop-direct asdf/find-system:formatted-system-definition-error :prototype
 #<asdf/find-system:formatted-system-definition-error {1004038BD3}>)
(:mop-direct asdf/find-system:missing-component :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-component:missing-dependency :superclass
 asdf/find-system:missing-component)
(:mop-direct asdf/find-component:missing-component-of-version :superclass
 asdf/find-system:missing-component)
(:mop-direct asdf/find-system:missing-component :package-name
 "ASDF/FIND-SYSTEM")
(:mop-direct asdf/find-system:missing-component :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/find-system:missing-component :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-system:missing-component :typeof sb-pcl::condition-class)
(:mop-direct asdf/find-system:missing-component :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/find-system:missing-component :slot
 ((:name asdf/find-system::requires) (:ordinal 1) (:initform '"(unnamed)")
  (:initargs (:requires)) (:readers (asdf/find-system:missing-requires))))
(:mop-direct asdf/find-system:missing-component :slot
 ((:name asdf/component:parent) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:parent)) (:readers (asdf/find-system:missing-parent))))
(:mop-direct asdf/find-component:missing-dependency :superclass
 asdf/find-system:missing-component)
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-dependency)
(:mop-direct asdf/find-component:missing-dependency :package-name
 "ASDF/FIND-COMPONENT")
(:mop-direct asdf/find-component:missing-dependency :precedance
 (asdf/find-system:missing-component asdf/component:system-definition-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/find-component:missing-dependency :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-dependency :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-dependency :superclass
 asdf/find-system:missing-component)
(:mop-direct asdf/find-component:missing-dependency :slot
 ((:name asdf/find-component::required-by) (:ordinal 1)
  (:initargs (:required-by))
  (:readers (asdf/find-component:missing-required-by))))
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-dependency)
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-component-of-version)
(:mop-direct asdf/find-component:missing-dependency-of-version :package-name
 "ASDF/FIND-COMPONENT")
(:mop-direct asdf/find-component:missing-dependency-of-version :precedance
 (asdf/find-component:missing-dependency
  asdf/find-component:missing-component-of-version
  asdf/find-system:missing-component asdf/component:system-definition-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/find-component:missing-dependency-of-version :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-dependency-of-version :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-dependency)


(:mop-direct asdf/find-component:missing-component-of-version :superclass
 asdf/find-system:missing-component)
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-component-of-version)
(:mop-direct asdf/find-component:missing-component-of-version :package-name
 "ASDF/FIND-COMPONENT")
(:mop-direct asdf/find-component:missing-component-of-version :precedance
 (asdf/find-system:missing-component asdf/component:system-definition-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/find-component:missing-component-of-version :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-component-of-version :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-component-of-version :superclass
 asdf/find-system:missing-component)
(:mop-direct asdf/find-component:missing-component-of-version :slot
 ((:name asdf/component:version) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:version)) (:readers (asdf/find-component:missing-version))))
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-dependency)
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-component-of-version)
(:mop-direct asdf/find-component:missing-dependency-of-version :package-name
 "ASDF/FIND-COMPONENT")
(:mop-direct asdf/find-component:missing-dependency-of-version :precedance
 (asdf/find-component:missing-dependency
  asdf/find-component:missing-component-of-version
  asdf/find-system:missing-component asdf/component:system-definition-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/find-component:missing-dependency-of-version :classof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-dependency-of-version :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/find-component:missing-dependency-of-version :superclass
 asdf/find-component:missing-component-of-version)

(:mop-direct asdf/find-component:missing-component-of-version :prototype
 Component "(unnamed)" does not match version nil)
(:mop-direct asdf/find-system:missing-component :prototype
 Component "(unnamed)" not found)
(:mop-direct asdf/component:duplicate-names :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/component:duplicate-names :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:duplicate-names :precedance
 (asdf/component:system-definition-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/component:duplicate-names :classof sb-pcl::condition-class)
(:mop-direct asdf/component:duplicate-names :typeof sb-pcl::condition-class)
(:mop-direct asdf/component:duplicate-names :superclass
 asdf/component:system-definition-error)
(:mop-direct asdf/component:duplicate-names :slot
 ((:name asdf/component:name) (:ordinal 1) (:initargs (:name))
  (:readers (asdf/component::duplicate-names-name))))
(:mop-direct asdf/component:duplicate-names :prototype
 #<asdf/component:duplicate-names {1004086813}>)
(:mop-direct asdf/component:system-definition-error :prototype
 #<asdf/component:system-definition-error {1004087F03}>)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-failed-error :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-failed-error :precedance
 (uiop/lisp-build:compile-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct uiop/lisp-build:compile-failed-error :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-error :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-failed-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-failed-error :prototype
 #<uiop/lisp-build:compile-failed-error {1007A4E913}>)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-warned-error :package-name
 "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-warned-error :precedance
 (uiop/lisp-build:compile-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct uiop/lisp-build:compile-warned-error :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-error :typeof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-warned-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-warned-error :prototype
 #<uiop/lisp-build:compile-warned-error {1007A4E8D3}>)
(:mop-direct uiop/lisp-build:compile-file-error :superclass
 uiop/lisp-build:compile-condition)
(:mop-direct uiop/lisp-build:compile-file-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-file-error :package-name "UIOP/LISP-BUILD")
(:mop-direct uiop/lisp-build:compile-file-error :precedance
 (uiop/lisp-build:compile-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct uiop/lisp-build:compile-file-error :classof
 sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-file-error :typeof sb-pcl::condition-class)
(:mop-direct uiop/lisp-build:compile-file-error :superclass common-lisp:error)
(:mop-direct uiop/lisp-build:compile-file-error :prototype
 #<uiop/lisp-build:compile-file-error {1007A4E893}>)
(:mop-direct uiop/run-program:subprocess-error :superclass common-lisp:error)
(:mop-direct uiop/run-program:subprocess-error :package-name "UIOP/RUN-PROGRAM")
(:mop-direct uiop/run-program:subprocess-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct uiop/run-program:subprocess-error :classof sb-pcl::condition-class)
(:mop-direct uiop/run-program:subprocess-error :typeof sb-pcl::condition-class)
(:mop-direct uiop/run-program:subprocess-error :superclass common-lisp:error)
(:mop-direct uiop/run-program:subprocess-error :slot
 ((:name uiop/run-program::code) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:code)) (:readers (uiop/run-program:subprocess-error-code))))
(:mop-direct uiop/run-program:subprocess-error :slot
 ((:name uiop/run-program::command) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:command))
  (:readers (uiop/run-program:subprocess-error-command))))
(:mop-direct uiop/run-program:subprocess-error :slot
 ((:name uiop/run-program::process) (:ordinal 3) (:initform 'common-lisp:nil)
  (:initargs (:process))
  (:readers (uiop/run-program:subprocess-error-process))))
(:mop-direct uiop/run-program:subprocess-error :prototype
 #<uiop/run-program:subprocess-error {10040BA053}>)
(:mop-direct sb-pcl::new-value-specialization :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::new-value-specialization :superclass common-lisp:error)
(:mop-direct sb-pcl::new-value-specialization :package-name "SB-PCL")
(:mop-direct sb-pcl::new-value-specialization :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::new-value-specialization :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::new-value-specialization :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::new-value-specialization :superclass common-lisp:error)
(:mop-direct sb-pcl::new-value-specialization :slot
 ((:name sb-pcl::%method) (:ordinal 1) (:initargs (:method))
  (:readers (sb-pcl::new-value-specialization-method))))
(:mop-direct sb-pcl::new-value-specialization :prototype
 #<sb-pcl::new-value-specialization {10079F1403}>)
(:mop-direct sb-pcl::obsolete-structure :superclass common-lisp:error)
(:mop-direct sb-pcl::obsolete-structure :package-name "SB-PCL")
(:mop-direct sb-pcl::obsolete-structure :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::obsolete-structure :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::obsolete-structure :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::obsolete-structure :superclass common-lisp:error)
(:mop-direct sb-pcl::obsolete-structure :slot
 ((:name sb-pcl::datum) (:ordinal 1) (:initargs (:datum))
  (:readers (sb-pcl::obsolete-structure-datum))))
(:mop-direct sb-pcl::obsolete-structure :prototype
 #<sb-pcl::obsolete-structure {10040CC3D3}>)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass common-lisp:error)
(:mop-direct sb-pcl::cpl-protocol-violation :package-name "SB-PCL")
(:mop-direct sb-pcl::cpl-protocol-violation :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::cpl-protocol-violation :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::cpl-protocol-violation :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::cpl-protocol-violation :superclass common-lisp:error)
(:mop-direct sb-pcl::cpl-protocol-violation :slot
 ((:name common-lisp:class) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::cpl-protocol-violation-class))))
(:mop-direct sb-pcl::cpl-protocol-violation :slot
 ((:name sb-pcl::cpl) (:ordinal 2) (:initargs (:cpl))
  (:readers (sb-pcl::cpl-protocol-violation-cpl))))
(:mop-direct sb-pcl::cpl-protocol-violation :prototype
 #<sb-pcl::cpl-protocol-violation {10079F1293}>)
(:mop-direct sb-pcl::invalid-superclass :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::invalid-superclass :superclass common-lisp:error)
(:mop-direct sb-pcl::invalid-superclass :package-name "SB-PCL")
(:mop-direct sb-pcl::invalid-superclass :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::invalid-superclass :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-superclass :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-superclass :superclass common-lisp:error)
(:mop-direct sb-pcl::invalid-superclass :slot
 ((:name common-lisp:class) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::invalid-superclass-class))))
(:mop-direct sb-pcl::invalid-superclass :slot
 ((:name sb-pcl::superclass) (:ordinal 2) (:initargs (:superclass))
  (:readers (sb-pcl::invalid-superclass-superclass))))
(:mop-direct sb-pcl::invalid-superclass :prototype
 #<sb-pcl::invalid-superclass {10079F1273}>)
(:mop-direct sb-pcl::slotd-initialization-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::slotd-initialization-error :superclass common-lisp:error)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-error :package-name "SB-PCL")
(:mop-direct sb-pcl::slotd-initialization-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slotd-initialization-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-error :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-error :superclass common-lisp:error)
(:mop-direct sb-pcl::slotd-initialization-error :slot
 ((:name sb-pcl::initarg) (:ordinal 1) (:initargs (:initarg))
  (:readers (sb-pcl::slotd-initialization-error-initarg))))
(:mop-direct sb-pcl::slotd-initialization-error :slot
 ((:name sb-pcl::kind) (:ordinal 2) (:initargs (:kind))
  (:readers (sb-pcl::slotd-initialization-error-kind))))
(:mop-direct sb-pcl::slotd-initialization-error :slot
 ((:name sb-pcl::value) (:ordinal 3) (:initform 'common-lisp:nil)
  (:initargs (:value)) (:readers (sb-pcl::slotd-initialization-error-value))))
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :package-name "SB-PCL")
(:mop-direct sb-pcl::slotd-initialization-type-error :precedance
 (sb-pcl::slotd-initialization-error sb-int:reference-condition
  common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slotd-initialization-type-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-type-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :slot
 ((:name sb-pcl::value) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:datum :value))))
(:mop-direct sb-pcl::slotd-initialization-type-error :prototype
 #<sb-pcl::slotd-initialization-type-error {10079F1233}>)
(:mop-direct sb-pcl::slotd-initialization-error :prototype
 #<sb-pcl::slotd-initialization-error {10079F1213}>)
(:mop-direct sb-pcl::no-primary-method :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::no-primary-method :superclass common-lisp:error)
(:mop-direct sb-pcl::no-primary-method :package-name "SB-PCL")
(:mop-direct sb-pcl::no-primary-method :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::no-primary-method :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::no-primary-method :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::no-primary-method :superclass common-lisp:error)
(:mop-direct sb-pcl::no-primary-method :slot
 ((:name common-lisp:generic-function) (:ordinal 1)
  (:initargs (:generic-function))
  (:readers (sb-pcl::no-primary-method-generic-function))))
(:mop-direct sb-pcl::no-primary-method :slot
 ((:name sb-pcl::args) (:ordinal 2) (:initargs (:args))
  (:readers (sb-pcl::no-primary-method-args))))
(:mop-direct sb-pcl::no-primary-method :prototype
 #<sb-pcl::no-primary-method {10079F11F3}>)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 common-lisp:error)
(:mop-direct sb-pcl::instance-structure-protocol-error :package-name "SB-PCL")
(:mop-direct sb-pcl::instance-structure-protocol-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::instance-structure-protocol-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::instance-structure-protocol-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::instance-structure-protocol-error :superclass
 common-lisp:error)
(:mop-direct sb-pcl::instance-structure-protocol-error :slot
 ((:name sb-pcl::slotd) (:ordinal 1) (:initargs (:slotd))
  (:readers (sb-pcl::instance-structure-protocol-error-slotd))))
(:mop-direct sb-pcl::instance-structure-protocol-error :slot
 ((:name sb-pcl::fun) (:ordinal 2) (:initargs (:fun))
  (:readers (sb-pcl::instance-structure-protocol-error-fun))))
(:mop-direct sb-pcl::instance-structure-protocol-error :prototype
 #<sb-pcl::instance-structure-protocol-error {10079F0363}>)
(:mop-direct sb-di:debug-error :superclass common-lisp:error)
(:mop-direct sb-di:frame-fun-mismatch :superclass sb-di:debug-error)
(:mop-direct sb-di:invalid-control-stack-pointer :superclass sb-di:debug-error)
(:mop-direct sb-di:unknown-debug-var :superclass sb-di:debug-error)
(:mop-direct sb-di::unknown-code-location :superclass sb-di:debug-error)
(:mop-direct sb-di:unhandled-debug-condition :superclass sb-di:debug-error)
(:mop-direct sb-di:debug-error :package-name "SB-DI")
(:mop-direct sb-di:debug-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-error :classof sb-pcl::condition-class)
(:mop-direct sb-di:debug-error :typeof sb-pcl::condition-class)
(:mop-direct sb-di:debug-error :superclass common-lisp:error)
(:mop-direct sb-di:frame-fun-mismatch :superclass sb-di:debug-error)
(:mop-direct sb-di:frame-fun-mismatch :package-name "SB-DI")
(:mop-direct sb-di:frame-fun-mismatch :precedance
 (sb-di:debug-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:frame-fun-mismatch :classof sb-pcl::condition-class)
(:mop-direct sb-di:frame-fun-mismatch :typeof sb-pcl::condition-class)
(:mop-direct sb-di:frame-fun-mismatch :superclass sb-di:debug-error)
(:mop-direct sb-di:frame-fun-mismatch :slot
 ((:name sb-di:code-location) (:ordinal 1) (:initargs (:code-location))
  (:readers (sb-di::frame-fun-mismatch-code-location))))
(:mop-direct sb-di:frame-fun-mismatch :slot
 ((:name sb-di:frame) (:ordinal 2) (:initargs (:frame))
  (:readers (sb-di::frame-fun-mismatch-frame))))
(:mop-direct sb-di:frame-fun-mismatch :slot
 ((:name sb-kernel:form) (:ordinal 3) (:initargs (:form))
  (:readers (sb-di::frame-fun-mismatch-form))))
(:mop-direct sb-di:frame-fun-mismatch :prototype
 #<sb-di:frame-fun-mismatch {1004124483}>)
(:mop-direct sb-di:invalid-control-stack-pointer :superclass sb-di:debug-error)
(:mop-direct sb-di:invalid-control-stack-pointer :package-name "SB-DI")
(:mop-direct sb-di:invalid-control-stack-pointer :precedance
 (sb-di:debug-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:invalid-control-stack-pointer :classof
 sb-pcl::condition-class)
(:mop-direct sb-di:invalid-control-stack-pointer :typeof
 sb-pcl::condition-class)
(:mop-direct sb-di:invalid-control-stack-pointer :superclass sb-di:debug-error)
(:mop-direct sb-di:invalid-control-stack-pointer :prototype
 #<sb-di:invalid-control-stack-pointer {10041320A3}>)
(:mop-direct sb-di:unknown-debug-var :superclass sb-di:debug-error)
(:mop-direct sb-di:unknown-debug-var :package-name "SB-DI")
(:mop-direct sb-di:unknown-debug-var :precedance
 (sb-di:debug-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:unknown-debug-var :classof sb-pcl::condition-class)
(:mop-direct sb-di:unknown-debug-var :typeof sb-pcl::condition-class)
(:mop-direct sb-di:unknown-debug-var :superclass sb-di:debug-error)
(:mop-direct sb-di:unknown-debug-var :slot
 ((:name sb-di:debug-var) (:ordinal 1) (:initargs (:debug-var))
  (:readers (sb-di::unknown-debug-var-debug-var))))
(:mop-direct sb-di:unknown-debug-var :slot
 ((:name sb-di:debug-fun) (:ordinal 2) (:initargs (:debug-fun))
  (:readers (sb-di::unknown-debug-var-debug-fun))))
(:mop-direct sb-di:unknown-debug-var :prototype
 #<sb-di:unknown-debug-var {1004142103}>)
(:mop-direct sb-di::unknown-code-location :superclass sb-di:debug-error)
(:mop-direct sb-di::unknown-code-location :package-name "SB-DI")
(:mop-direct sb-di::unknown-code-location :precedance
 (sb-di:debug-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::unknown-code-location :classof sb-pcl::condition-class)
(:mop-direct sb-di::unknown-code-location :typeof sb-pcl::condition-class)
(:mop-direct sb-di::unknown-code-location :superclass sb-di:debug-error)
(:mop-direct sb-di::unknown-code-location :slot
 ((:name sb-di:code-location) (:ordinal 1) (:initargs (:code-location))
  (:readers (sb-di::unknown-code-location-code-location))))
(:mop-direct sb-di::unknown-code-location :prototype
 #<sb-di::unknown-code-location {1004148F23}>)
(:mop-direct sb-di:unhandled-debug-condition :superclass sb-di:debug-error)
(:mop-direct sb-di:unhandled-debug-condition :package-name "SB-DI")
(:mop-direct sb-di:unhandled-debug-condition :precedance
 (sb-di:debug-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:unhandled-debug-condition :classof sb-pcl::condition-class)
(:mop-direct sb-di:unhandled-debug-condition :typeof sb-pcl::condition-class)
(:mop-direct sb-di:unhandled-debug-condition :superclass sb-di:debug-error)
(:mop-direct sb-di:unhandled-debug-condition :slot
 ((:name common-lisp:condition) (:ordinal 1) (:initargs (:condition))
  (:readers (sb-di::unhandled-debug-condition-condition))))
(:mop-direct sb-di:unhandled-debug-condition :prototype
 #<sb-di:unhandled-debug-condition {100414FCE3}>)
(:mop-direct sb-di:debug-error :prototype #<sb-di:debug-error {1004150D83}>)
(:mop-direct sb-thread:thread-error :superclass common-lisp:error)
(:mop-direct sb-thread:interrupt-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:join-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:thread-deadlock :superclass sb-thread:thread-error)
(:mop-direct sb-thread::simple-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread:thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread:thread-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:thread-error :classof sb-pcl::condition-class)
(:mop-direct sb-thread:thread-error :typeof sb-pcl::condition-class)
(:mop-direct sb-thread:thread-error :superclass common-lisp:error)
(:mop-direct sb-thread:thread-error :slot
 ((:name sb-thread:thread) (:ordinal 1) (:initargs (:thread))
  (:readers (sb-thread:thread-error-thread))))
(:mop-direct sb-thread:interrupt-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:interrupt-thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread:interrupt-thread-error :precedance
 (sb-thread:thread-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:interrupt-thread-error :classof sb-pcl::condition-class)
(:mop-direct sb-thread:interrupt-thread-error :typeof sb-pcl::condition-class)
(:mop-direct sb-thread:interrupt-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:interrupt-thread-error :prototype
 #<sb-thread:interrupt-thread-error {10041601F3}>)
(:mop-direct sb-thread:join-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread:join-thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread:join-thread-error :precedance
 (sb-thread:thread-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:join-thread-error :classof sb-pcl::condition-class)
(:mop-direct sb-thread:join-thread-error :typeof sb-pcl::condition-class)
(:mop-direct sb-thread:join-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread:join-thread-error :slot
 ((:name sb-thread::problem) (:ordinal 1) (:initargs (:problem))
  (:readers (sb-thread::join-thread-problem))))
(:mop-direct sb-thread:join-thread-error :prototype
 #<sb-thread:join-thread-error {1004166FB3}>)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 common-lisp:cell-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread:symbol-value-in-thread-error :precedance
 (common-lisp:cell-error sb-thread:thread-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-thread:symbol-value-in-thread-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-thread:symbol-value-in-thread-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :slot
 ((:name sb-int:info) (:ordinal 1) (:initargs (:info))
  (:readers (sb-thread::symbol-value-in-thread-error-info))))
(:mop-direct sb-thread:symbol-value-in-thread-error :prototype
 #<sb-thread:symbol-value-in-thread-error {100416F783}>)
(:mop-direct sb-thread:thread-deadlock :superclass sb-thread:thread-error)
(:mop-direct sb-thread:thread-deadlock :package-name "SB-THREAD")
(:mop-direct sb-thread:thread-deadlock :precedance
 (sb-thread:thread-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:thread-deadlock :classof sb-pcl::condition-class)
(:mop-direct sb-thread:thread-deadlock :typeof sb-pcl::condition-class)
(:mop-direct sb-thread:thread-deadlock :superclass sb-thread:thread-error)
(:mop-direct sb-thread:thread-deadlock :slot
 ((:name sb-thread::cycle) (:ordinal 1) (:initargs (:cycle))
  (:readers (sb-thread:thread-deadlock-cycle))))
(:mop-direct sb-thread:thread-deadlock :prototype
 #<sb-thread:thread-deadlock {1004176C03}>)
(:mop-direct sb-thread::simple-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread::simple-thread-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-thread::simple-thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread::simple-thread-error :precedance
 (sb-thread:thread-error common-lisp:error common-lisp:serious-condition
  common-lisp:simple-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-thread::simple-thread-error :classof sb-pcl::condition-class)
(:mop-direct sb-thread::simple-thread-error :typeof sb-pcl::condition-class)
(:mop-direct sb-thread::simple-thread-error :superclass sb-thread:thread-error)
(:mop-direct sb-thread::simple-thread-error :prototype
 #<sb-thread::simple-thread-error {10079EDB63}>)
(:mop-direct sb-thread:thread-error :prototype
 #<sb-thread:thread-error {100417ECA3}>)
(:mop-direct sb-impl::save-error :superclass common-lisp:error)
(:mop-direct sb-impl::save-error :superclass sb-impl::save-condition)
(:mop-direct sb-impl::save-with-multiple-threads-error :superclass
 sb-impl::save-error)
(:mop-direct sb-impl::save-error :package-name "SB-IMPL")
(:mop-direct sb-impl::save-error :precedance
 (common-lisp:error common-lisp:serious-condition sb-impl::save-condition
                    sb-int:reference-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::save-error :classof sb-pcl::condition-class)
(:mop-direct sb-impl::save-error :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::save-error :superclass common-lisp:error)
(:mop-direct sb-impl::save-with-multiple-threads-error :superclass
 sb-impl::save-error)
(:mop-direct sb-impl::save-with-multiple-threads-error :package-name "SB-IMPL")
(:mop-direct sb-impl::save-with-multiple-threads-error :precedance
 (sb-impl::save-error common-lisp:error common-lisp:serious-condition
  sb-impl::save-condition sb-int:reference-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::save-with-multiple-threads-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::save-with-multiple-threads-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::save-with-multiple-threads-error :superclass
 sb-impl::save-error)
(:mop-direct sb-impl::save-with-multiple-threads-error :slot
 ((:name sb-impl::interactive-thread) (:ordinal 1)
  (:initargs (:interactive-threads))
  (:readers (sb-impl::save-with-multiple-threads-error-interactive-threads))))
(:mop-direct sb-impl::save-with-multiple-threads-error :slot
 ((:name sb-impl::other-threads) (:ordinal 2) (:initargs (:other-threads))
  (:readers (sb-impl::save-with-multiple-threads-error-other-threads))))
(:mop-direct sb-impl::save-with-multiple-threads-error :prototype
 #<sb-impl::save-with-multiple-threads-error {10079EDB43}>)
(:mop-direct sb-impl::save-error :prototype #<sb-impl::save-error {10079DC243}>)
(:mop-direct sb-sys:breakpoint-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:breakpoint-error :superclass common-lisp:error)
(:mop-direct sb-sys:breakpoint-error :package-name "SB-SYS")
(:mop-direct sb-sys:breakpoint-error :precedance
 (sb-sys:system-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:breakpoint-error :classof sb-pcl::condition-class)
(:mop-direct sb-sys:breakpoint-error :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:breakpoint-error :superclass common-lisp:error)
(:mop-direct sb-sys:breakpoint-error :prototype
 #<sb-sys:breakpoint-error {10079DC223}>)
(:mop-direct sb-sys:memory-fault-error :superclass sb-sys:system-condition)
(:mop-direct sb-sys:memory-fault-error :superclass common-lisp:error)
(:mop-direct sb-sys:memory-fault-error :package-name "SB-SYS")
(:mop-direct sb-sys:memory-fault-error :precedance
 (sb-sys:system-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:memory-fault-error :classof sb-pcl::condition-class)
(:mop-direct sb-sys:memory-fault-error :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:memory-fault-error :superclass common-lisp:error)
(:mop-direct sb-sys:memory-fault-error :prototype
 #<sb-sys:memory-fault-error {10079BD883}>)
(:mop-direct sb-int:character-coding-error :superclass common-lisp:error)
(:mop-direct sb-int:character-decoding-error :superclass
 sb-int:character-coding-error)
(:mop-direct sb-int:character-encoding-error :superclass
 sb-int:character-coding-error)
(:mop-direct sb-int:character-coding-error :package-name "SB-INT")
(:mop-direct sb-int:character-coding-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:character-coding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:character-coding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:character-coding-error :superclass common-lisp:error)
(:mop-direct sb-int:character-coding-error :slot
 ((:name sb-kernel::external-format) (:ordinal 1)
  (:initargs (:external-format))
  (:readers (sb-kernel::character-coding-error-external-format))))
(:mop-direct sb-int:character-decoding-error :superclass
 sb-int:character-coding-error)
(:mop-direct sb-impl::octet-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:c-string-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:stream-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:character-decoding-error :package-name "SB-INT")
(:mop-direct sb-int:character-decoding-error :precedance
 (sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:character-decoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:character-decoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:character-decoding-error :superclass
 sb-int:character-coding-error)
(:mop-direct sb-int:character-decoding-error :slot
 ((:name sb-kernel::octets) (:ordinal 1) (:initargs (:octets))
  (:readers (sb-int:character-decoding-error-octets))))
(:mop-direct sb-impl::octet-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-shift_jis :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-euc-jp :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-gbk-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-gbk-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-gbk :superclass sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-ascii :superclass sb-impl::octet-decoding-error)
(:mop-direct sb-impl::overlong-utf8-sequence :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-utf8-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-utf8-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::character-out-of-range :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::end-of-input-in-character :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::octet-decoding-error :package-name "SB-IMPL")
(:mop-direct sb-impl::octet-decoding-error :precedance
 (sb-int:character-decoding-error sb-int:character-coding-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::octet-decoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-impl::octet-decoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::octet-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-impl::octet-decoding-error :slot
 ((:name common-lisp:array) (:ordinal 1) (:initargs (:array))
  (:readers (sb-impl::octet-decoding-error-array))
  (:writers ((common-lisp:setf sb-impl::octet-decoding-error-array)))))
(:mop-direct sb-impl::octet-decoding-error :slot
 ((:name sb-impl::start) (:ordinal 2) (:initargs (:start))
  (:readers (sb-impl::octet-decoding-error-start))
  (:writers ((common-lisp:setf sb-impl::octet-decoding-error-start)))))
(:mop-direct sb-impl::octet-decoding-error :slot
 ((:name sb-impl::end) (:ordinal 3) (:initargs (:end))
  (:readers (sb-impl::octet-decoding-error-end))
  (:writers ((common-lisp:setf sb-impl::octet-decoding-error-end)))))
(:mop-direct sb-impl::octet-decoding-error :slot
 ((:name common-lisp:position) (:ordinal 4) (:initargs (:pos))
  (:readers (sb-impl::octet-decoding-bad-byte-position))
  (:writers ((common-lisp:setf sb-impl::octet-decoding-bad-byte-position)))))
(:mop-direct sb-impl::octet-decoding-error :slot
 ((:name sb-impl::external-format) (:ordinal 5) (:initargs (:external-format))
  (:readers (sb-impl::octet-decoding-error-external-format))
  (:writers
   ((common-lisp:setf sb-impl::octet-decoding-error-external-format)))))
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :package-name
 "SB-IMPL")
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-shift_jis-continuation-byte :prototype
 #<sb-impl::invalid-shift_jis-continuation-byte {10041C9793}>)
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-shift_jis-starter-byte :prototype
 #<sb-impl::invalid-shift_jis-starter-byte {10041CF4B3}>)
(:mop-direct sb-impl::malformed-shift_jis :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-shift_jis :package-name "SB-IMPL")
(:mop-direct sb-impl::malformed-shift_jis :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::malformed-shift_jis :classof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-shift_jis :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-shift_jis :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-shift_jis :prototype
 #<sb-impl::malformed-shift_jis {10041D5133}>)
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-euc-jp-continuation-byte :prototype
 #<sb-impl::invalid-euc-jp-continuation-byte {10041DAEE3}>)
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-euc-jp-starter-byte :prototype
 #<sb-impl::invalid-euc-jp-starter-byte {10041E0C13}>)
(:mop-direct sb-impl::malformed-euc-jp :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-euc-jp :package-name "SB-IMPL")
(:mop-direct sb-impl::malformed-euc-jp :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::malformed-euc-jp :classof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-euc-jp :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-euc-jp :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-euc-jp :prototype
 #<sb-impl::malformed-euc-jp {10041E6893}>)
(:mop-direct sb-impl::invalid-gbk-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-gbk-continuation-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-gbk-continuation-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-gbk-continuation-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-gbk-continuation-byte :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-gbk-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-gbk-continuation-byte :prototype
 #<sb-impl::invalid-gbk-continuation-byte {10041EC5D3}>)
(:mop-direct sb-impl::invalid-gbk-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-gbk-starter-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-gbk-starter-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-gbk-starter-byte :classof sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-gbk-starter-byte :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-gbk-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-gbk-starter-byte :prototype
 #<sb-impl::invalid-gbk-starter-byte {10041F22C3}>)
(:mop-direct sb-impl::malformed-gbk :superclass sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-gbk :package-name "SB-IMPL")
(:mop-direct sb-impl::malformed-gbk :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::malformed-gbk :classof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-gbk :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-gbk :superclass sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-gbk :prototype
 #<sb-impl::malformed-gbk {10041F7EA3}>)
(:mop-direct sb-impl::malformed-ascii :superclass sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-ascii :package-name "SB-IMPL")
(:mop-direct sb-impl::malformed-ascii :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::malformed-ascii :classof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-ascii :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::malformed-ascii :superclass sb-impl::octet-decoding-error)
(:mop-direct sb-impl::malformed-ascii :prototype
 #<sb-impl::malformed-ascii {10041FDB83}>)
(:mop-direct sb-impl::overlong-utf8-sequence :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::overlong-utf8-sequence :package-name "SB-IMPL")
(:mop-direct sb-impl::overlong-utf8-sequence :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::overlong-utf8-sequence :classof sb-pcl::condition-class)
(:mop-direct sb-impl::overlong-utf8-sequence :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::overlong-utf8-sequence :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::overlong-utf8-sequence :prototype
 #<sb-impl::overlong-utf8-sequence {1004203803}>)
(:mop-direct sb-impl::invalid-utf8-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-utf8-continuation-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-utf8-continuation-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-utf8-continuation-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-utf8-continuation-byte :typeof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-utf8-continuation-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-utf8-continuation-byte :prototype
 #<sb-impl::invalid-utf8-continuation-byte {1004209523}>)
(:mop-direct sb-impl::invalid-utf8-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-utf8-starter-byte :package-name "SB-IMPL")
(:mop-direct sb-impl::invalid-utf8-starter-byte :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::invalid-utf8-starter-byte :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-utf8-starter-byte :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::invalid-utf8-starter-byte :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::invalid-utf8-starter-byte :prototype
 #<sb-impl::invalid-utf8-starter-byte {100420F1F3}>)
(:mop-direct sb-impl::character-out-of-range :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::character-out-of-range :package-name "SB-IMPL")
(:mop-direct sb-impl::character-out-of-range :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::character-out-of-range :classof sb-pcl::condition-class)
(:mop-direct sb-impl::character-out-of-range :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::character-out-of-range :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::character-out-of-range :prototype
 #<sb-impl::character-out-of-range {1004214E73}>)
(:mop-direct sb-impl::end-of-input-in-character :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::end-of-input-in-character :package-name "SB-IMPL")
(:mop-direct sb-impl::end-of-input-in-character :precedance
 (sb-impl::octet-decoding-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::end-of-input-in-character :classof
 sb-pcl::condition-class)
(:mop-direct sb-impl::end-of-input-in-character :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::end-of-input-in-character :superclass
 sb-impl::octet-decoding-error)
(:mop-direct sb-impl::end-of-input-in-character :prototype
 #<sb-impl::end-of-input-in-character {100421AB43}>)
(:mop-direct sb-impl::octet-decoding-error :prototype
 #<sb-impl::octet-decoding-error {100421BB93}>)
(:mop-direct sb-int:c-string-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:c-string-decoding-error :package-name "SB-INT")
(:mop-direct sb-int:c-string-decoding-error :precedance
 (sb-int:character-decoding-error sb-int:character-coding-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:c-string-decoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:c-string-decoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:c-string-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:c-string-decoding-error :prototype
 #<sb-int:c-string-decoding-error {10042217B3}>)
(:mop-direct sb-int:stream-decoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:stream-decoding-error :package-name "SB-INT")
(:mop-direct sb-int:stream-decoding-error :precedance
 (common-lisp:stream-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:stream-decoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:stream-decoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:stream-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:stream-decoding-error :prototype
 #<sb-int:stream-decoding-error {1004228CC3}>)
(:mop-direct sb-int:character-decoding-error :prototype
 #<sb-int:character-decoding-error {1004229D13}>)
(:mop-direct sb-int:character-encoding-error :superclass
 sb-int:character-coding-error)
(:mop-direct sb-impl::octets-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:c-string-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:stream-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:character-encoding-error :package-name "SB-INT")
(:mop-direct sb-int:character-encoding-error :precedance
 (sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:character-encoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:character-encoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:character-encoding-error :superclass
 sb-int:character-coding-error)
(:mop-direct sb-int:character-encoding-error :slot
 ((:name sb-kernel::code) (:ordinal 1) (:initargs (:code))
  (:readers (sb-int:character-encoding-error-code))))
(:mop-direct sb-impl::octets-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-impl::octets-encoding-error :package-name "SB-IMPL")
(:mop-direct sb-impl::octets-encoding-error :precedance
 (sb-int:character-encoding-error sb-int:character-coding-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::octets-encoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-impl::octets-encoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-impl::octets-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-impl::octets-encoding-error :slot
 ((:name common-lisp:string) (:ordinal 1) (:initargs (:string))
  (:readers (sb-impl::octets-encoding-error-string))))
(:mop-direct sb-impl::octets-encoding-error :slot
 ((:name common-lisp:position) (:ordinal 2) (:initargs (:position))
  (:readers (sb-impl::octets-encoding-error-position))))
(:mop-direct sb-impl::octets-encoding-error :slot
 ((:name sb-impl::external-format) (:ordinal 3) (:initargs (:external-format))
  (:readers (sb-impl::octets-encoding-error-external-format))))
(:mop-direct sb-impl::octets-encoding-error :prototype
 #<sb-impl::octets-encoding-error {100423B533}>)
(:mop-direct sb-int:c-string-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:c-string-encoding-error :package-name "SB-INT")
(:mop-direct sb-int:c-string-encoding-error :precedance
 (sb-int:character-encoding-error sb-int:character-coding-error
  common-lisp:error common-lisp:serious-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:c-string-encoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:c-string-encoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:c-string-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:c-string-encoding-error :prototype
 #<sb-int:c-string-encoding-error {10042412B3}>)
(:mop-direct sb-int:stream-encoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:stream-encoding-error :package-name "SB-INT")
(:mop-direct sb-int:stream-encoding-error :precedance
 (common-lisp:stream-error sb-int:character-encoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:stream-encoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:stream-encoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:stream-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:stream-encoding-error :prototype
 #<sb-int:stream-encoding-error {1004248963}>)
(:mop-direct sb-int:character-encoding-error :prototype
 #<sb-int:character-encoding-error {10042499B3}>)
(:mop-direct sb-int:character-coding-error :prototype
 #<sb-int:character-coding-error {100424AA03}>)
(:mop-direct sb-ext:invalid-fasl :superclass common-lisp:error)
(:mop-direct sb-fasl::fasl-header-missing :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-features :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-implementation :superclass
 sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-version :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-header :superclass sb-ext:invalid-fasl)
(:mop-direct sb-ext:invalid-fasl :package-name "SB-EXT")
(:mop-direct sb-ext:invalid-fasl :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:invalid-fasl :classof sb-pcl::condition-class)
(:mop-direct sb-ext:invalid-fasl :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:invalid-fasl :superclass common-lisp:error)
(:mop-direct sb-ext:invalid-fasl :slot
 ((:name common-lisp:stream) (:ordinal 1) (:initargs (:stream))
  (:readers (sb-fasl::invalid-fasl-stream))))
(:mop-direct sb-ext:invalid-fasl :slot
 ((:name sb-fasl::expected) (:ordinal 2) (:initargs (:expected))
  (:readers (sb-fasl::invalid-fasl-expected))))
(:mop-direct sb-fasl::fasl-header-missing :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::fasl-header-missing :package-name "SB-FASL")
(:mop-direct sb-fasl::fasl-header-missing :precedance
 (sb-ext:invalid-fasl common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::fasl-header-missing :classof sb-pcl::condition-class)
(:mop-direct sb-fasl::fasl-header-missing :typeof sb-pcl::condition-class)
(:mop-direct sb-fasl::fasl-header-missing :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::fasl-header-missing :slot
 ((:name sb-fasl::fhsss) (:ordinal 1) (:initargs (:fhsss))
  (:readers (sb-fasl::invalid-fasl-fhsss))))
(:mop-direct sb-fasl::fasl-header-missing :prototype
 #<sb-fasl::fasl-header-missing {100425C4A3}>)
(:mop-direct sb-fasl::invalid-fasl-features :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-features :package-name "SB-FASL")
(:mop-direct sb-fasl::invalid-fasl-features :precedance
 (sb-ext:invalid-fasl common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::invalid-fasl-features :classof sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-features :typeof sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-features :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-features :slot
 ((:name sb-fasl::potential-features) (:ordinal 1)
  (:initargs (:potential-features))
  (:readers (sb-fasl::invalid-fasl-potential-features))))
(:mop-direct sb-fasl::invalid-fasl-features :slot
 ((:name sb-fasl::features) (:ordinal 2) (:initargs (:features))
  (:readers (sb-fasl::invalid-fasl-features))))
(:mop-direct sb-fasl::invalid-fasl-features :prototype
 #<sb-fasl::invalid-fasl-features {1004264543}>)
(:mop-direct sb-fasl::invalid-fasl-implementation :superclass
 sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-implementation :package-name "SB-FASL")
(:mop-direct sb-fasl::invalid-fasl-implementation :precedance
 (sb-ext:invalid-fasl common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::invalid-fasl-implementation :classof
 sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-implementation :typeof
 sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-implementation :superclass
 sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-implementation :slot
 ((:name sb-fasl::implementation) (:ordinal 1) (:initargs (:implementation))
  (:readers (sb-fasl::invalid-fasl-implementation))))
(:mop-direct sb-fasl::invalid-fasl-implementation :prototype
 #<sb-fasl::invalid-fasl-implementation {100426B603}>)
(:mop-direct sb-fasl::invalid-fasl-version :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-version :package-name "SB-FASL")
(:mop-direct sb-fasl::invalid-fasl-version :precedance
 (sb-ext:invalid-fasl common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::invalid-fasl-version :classof sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-version :typeof sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-version :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-version :slot
 ((:name sb-fasl::version) (:ordinal 1) (:initargs (:version))
  (:readers (sb-fasl::invalid-fasl-version))))
(:mop-direct sb-fasl::invalid-fasl-version :prototype
 #<sb-fasl::invalid-fasl-version {1004272503}>)
(:mop-direct sb-fasl::invalid-fasl-header :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-header :package-name "SB-FASL")
(:mop-direct sb-fasl::invalid-fasl-header :precedance
 (sb-ext:invalid-fasl common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::invalid-fasl-header :classof sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-header :typeof sb-pcl::condition-class)
(:mop-direct sb-fasl::invalid-fasl-header :superclass sb-ext:invalid-fasl)
(:mop-direct sb-fasl::invalid-fasl-header :slot
 ((:name common-lisp:byte) (:ordinal 1) (:initargs (:byte))
  (:readers (sb-fasl::invalid-fasl-byte))))
(:mop-direct sb-fasl::invalid-fasl-header :slot
 ((:name sb-fasl::byte-nr) (:ordinal 2) (:initargs (:byte-nr))
  (:readers (sb-fasl::invalid-fasl-byte-nr))))
(:mop-direct sb-fasl::invalid-fasl-header :prototype
 #<sb-fasl::invalid-fasl-header {100427A573}>)
(:mop-direct sb-ext:invalid-fasl :prototype #<sb-ext:invalid-fasl {100427B5C3}>)
(:mop-direct sb-format:format-error :superclass common-lisp:error)
(:mop-direct sb-format:format-error :superclass sb-int:reference-condition)
(:mop-direct sb-format:format-error :package-name "SB-FORMAT")
(:mop-direct sb-format:format-error :precedance
 (common-lisp:error common-lisp:serious-condition sb-int:reference-condition
                    common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-format:format-error :classof sb-pcl::condition-class)
(:mop-direct sb-format:format-error :typeof sb-pcl::condition-class)
(:mop-direct sb-format:format-error :superclass common-lisp:error)
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::complaint) (:ordinal 1) (:initargs (:complaint))
  (:readers (sb-format::format-error-complaint))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::args) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:args)) (:readers (sb-format::format-error-args))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::control-string) (:ordinal 3)
  (:initform 'sb-format::*default-format-error-control-string*)
  (:initargs (:control-string))
  (:readers (sb-format::format-error-control-string))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::offset) (:ordinal 4)
  (:initform 'sb-format::*default-format-error-offset*) (:initargs (:offset))
  (:readers (sb-format::format-error-offset))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::second-relative) (:ordinal 5) (:initform 'common-lisp:nil)
  (:initargs (:second-relative))
  (:readers (sb-format::format-error-second-relative))))
(:mop-direct sb-format:format-error :slot
 ((:name sb-format::print-banner) (:ordinal 6) (:initform 'common-lisp:t)
  (:initargs (:print-banner))
  (:readers (sb-format::format-error-print-banner))))
(:mop-direct sb-format:format-error :prototype
 #<sb-format:format-error {10079E8403}>)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :superclass
 common-lisp:error)
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :superclass
 sb-kernel::defmacro-lambda-list-bind-error)
(:mop-direct sb-kernel::arg-count-error :superclass
 sb-kernel::defmacro-lambda-list-bind-error)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :superclass
 common-lisp:error)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :slot
 ((:name sb-kernel::kind) (:ordinal 1) (:initargs (:kind))
  (:readers (sb-kernel::defmacro-lambda-list-bind-error-kind))))
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :slot
 ((:name sb-kernel::name) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:name))
  (:readers (sb-kernel::defmacro-lambda-list-bind-error-name))))
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :superclass
 sb-kernel::defmacro-lambda-list-bind-error)
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error
 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :precedance
 (sb-kernel::defmacro-lambda-list-bind-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :superclass
 sb-kernel::defmacro-lambda-list-bind-error)
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :slot
 ((:name sb-kernel::problem) (:ordinal 1) (:initargs (:problem))
  (:readers (sb-kernel::defmacro-lambda-list-broken-key-list-error-problem))))
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :slot
 ((:name sb-int:info) (:ordinal 2) (:initargs (:info))
  (:readers (sb-kernel::defmacro-lambda-list-broken-key-list-error-info))))
(:mop-direct sb-kernel::defmacro-lambda-list-broken-key-list-error :prototype
 #<sb-kernel::defmacro-lambda-list-broken-key-list-error {100429A743}>)
(:mop-direct sb-kernel::arg-count-error :superclass
 sb-kernel::defmacro-lambda-list-bind-error)
(:mop-direct sb-eval::arg-count-program-error :superclass
 sb-kernel::arg-count-error)
(:mop-direct sb-kernel::arg-count-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel::arg-count-error :precedance
 (sb-kernel::defmacro-lambda-list-bind-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::arg-count-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::arg-count-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::arg-count-error :superclass
 sb-kernel::defmacro-lambda-list-bind-error)
(:mop-direct sb-kernel::arg-count-error :slot
 ((:name sb-kernel::args) (:ordinal 1) (:initargs (:args))
  (:readers (sb-kernel::arg-count-error-args))))
(:mop-direct sb-kernel::arg-count-error :slot
 ((:name sb-kernel::lambda-list) (:ordinal 2) (:initargs (:lambda-list))
  (:readers (sb-kernel::arg-count-error-lambda-list))))
(:mop-direct sb-kernel::arg-count-error :slot
 ((:name sb-kernel::minimum) (:ordinal 3) (:initargs (:minimum))
  (:readers (sb-kernel::arg-count-error-minimum))))
(:mop-direct sb-kernel::arg-count-error :slot
 ((:name sb-kernel::maximum) (:ordinal 4) (:initargs (:maximum))
  (:readers (sb-kernel::arg-count-error-maximum))))
(:mop-direct sb-eval::arg-count-program-error :superclass
 sb-kernel::arg-count-error)
(:mop-direct sb-eval::arg-count-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::arg-count-program-error :package-name "SB-EVAL")
(:mop-direct sb-eval::arg-count-program-error :precedance
 (sb-kernel::arg-count-error sb-kernel::defmacro-lambda-list-bind-error
  common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::arg-count-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-eval::arg-count-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-eval::arg-count-program-error :superclass
 sb-kernel::arg-count-error)
(:mop-direct sb-eval::arg-count-program-error :prototype
 #<sb-eval::arg-count-program-error {10042ABED3}>)
(:mop-direct sb-kernel::arg-count-error :prototype
 #<sb-kernel::arg-count-error {10042ACF23}>)
(:mop-direct sb-kernel::defmacro-lambda-list-bind-error :prototype
 #<sb-kernel::defmacro-lambda-list-bind-error {10042ADF73}>)
(:mop-direct sb-ext:deprecation-error :superclass common-lisp:error)
(:mop-direct sb-ext:deprecation-error :superclass sb-ext:deprecation-condition)
(:mop-direct sb-ext:deprecation-error :package-name "SB-EXT")
(:mop-direct sb-ext:deprecation-error :precedance
 (common-lisp:error common-lisp:serious-condition sb-ext:deprecation-condition
                    sb-int:reference-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:deprecation-error :classof sb-pcl::condition-class)
(:mop-direct sb-ext:deprecation-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:deprecation-error :superclass common-lisp:error)

(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 common-lisp:error)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 sb-kernel:ftype-proclamation-mismatch)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :precedance
 (common-lisp:error common-lisp:serious-condition
                    sb-kernel:ftype-proclamation-mismatch
                    sb-kernel:proclamation-mismatch common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :superclass
 common-lisp:error)
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :prototype
 #<sb-kernel:ftype-proclamation-mismatch-error {10079E8323}>)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :package-name
 "SB-INT")
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :slot
 ((:name sb-kernel::operation) (:ordinal 1) (:initargs (:operation))
  (:readers (sb-kernel::standard-pprint-dispatch-table-modified-operation))))
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :prototype
 #<sb-int:standard-pprint-dispatch-table-modified-error {10079E81A3}>)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-readtable-modified-error :package-name "SB-INT")
(:mop-direct sb-int:standard-readtable-modified-error :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:standard-readtable-modified-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-readtable-modified-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:standard-readtable-modified-error :superclass
 common-lisp:error)
(:mop-direct sb-int:standard-readtable-modified-error :slot
 ((:name sb-kernel::operation) (:ordinal 1) (:initargs (:operation))
  (:readers (sb-kernel::standard-readtable-modified-operation))))
(:mop-direct sb-int:standard-readtable-modified-error :prototype
 #<sb-int:standard-readtable-modified-error {10079E8183}>)
(:mop-direct sb-ext:defconstant-uneql :superclass sb-int:reference-condition)
(:mop-direct sb-ext:defconstant-uneql :superclass common-lisp:error)
(:mop-direct sb-ext:defconstant-uneql :package-name "SB-EXT")
(:mop-direct sb-ext:defconstant-uneql :precedance
 (sb-int:reference-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:defconstant-uneql :classof sb-pcl::condition-class)
(:mop-direct sb-ext:defconstant-uneql :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:defconstant-uneql :superclass common-lisp:error)
(:mop-direct sb-ext:defconstant-uneql :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-ext:defconstant-uneql-name))))
(:mop-direct sb-ext:defconstant-uneql :slot
 ((:name sb-kernel::old-value) (:ordinal 2) (:initargs (:old-value))
  (:readers (sb-ext:defconstant-uneql-old-value))))
(:mop-direct sb-ext:defconstant-uneql :slot
 ((:name sb-kernel::new-value) (:ordinal 3) (:initargs (:new-value))
  (:readers (sb-ext:defconstant-uneql-new-value))))
(:mop-direct sb-ext:defconstant-uneql :prototype
 #<sb-ext:defconstant-uneql {10079E7F63}>)
(:mop-direct common-lisp:print-not-readable :superclass common-lisp:error)
(:mop-direct common-lisp:print-not-readable :package-name "COMMON-LISP")
(:mop-direct common-lisp:print-not-readable :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:print-not-readable :classof sb-pcl::condition-class)
(:mop-direct common-lisp:print-not-readable :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:print-not-readable :superclass common-lisp:error)
(:mop-direct common-lisp:print-not-readable :slot
 ((:name sb-kernel::object) (:ordinal 1) (:initargs (:object))
  (:readers (common-lisp:print-not-readable-object))))
(:mop-direct common-lisp:print-not-readable :prototype
 #<common-lisp:print-not-readable {10042DDDE3}>)
(:mop-direct common-lisp:arithmetic-error :superclass common-lisp:error)
(:mop-direct sb-kernel:floating-point-exception :superclass
 common-lisp:arithmetic-error)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-invalid-operation :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-inexact :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-underflow :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-overflow :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:division-by-zero :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:arithmetic-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:arithmetic-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:arithmetic-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:arithmetic-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:arithmetic-error :superclass common-lisp:error)
(:mop-direct common-lisp:arithmetic-error :slot
 ((:name sb-kernel::operation) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:operation)) (:readers (common-lisp:arithmetic-error-operation))))
(:mop-direct common-lisp:arithmetic-error :slot
 ((:name sb-kernel::operands) (:ordinal 2) (:initargs (:operands))
  (:readers (common-lisp:arithmetic-error-operands))))
(:mop-direct sb-kernel:floating-point-exception :superclass
 common-lisp:arithmetic-error)
(:mop-direct sb-kernel:floating-point-exception :package-name "SB-KERNEL")
(:mop-direct sb-kernel:floating-point-exception :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:floating-point-exception :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:floating-point-exception :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:floating-point-exception :superclass
 common-lisp:arithmetic-error)
(:mop-direct sb-kernel:floating-point-exception :slot
 ((:name sb-kernel::flags) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:traps)) (:readers (sb-kernel::floating-point-exception-traps))))
(:mop-direct sb-kernel:floating-point-exception :prototype
 #<sb-kernel:floating-point-exception {10042F14A3}>)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 common-lisp:arithmetic-error)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:arguments-out-of-domain-error :package-name "SB-INT")
(:mop-direct sb-int:arguments-out-of-domain-error :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:arguments-out-of-domain-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:arguments-out-of-domain-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-int:arguments-out-of-domain-error :superclass
 common-lisp:arithmetic-error)
(:mop-direct sb-int:arguments-out-of-domain-error :prototype
 #<sb-int:arguments-out-of-domain-error {10079E7EC3}>)
(:mop-direct common-lisp:floating-point-invalid-operation :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-invalid-operation :package-name
 "COMMON-LISP")
(:mop-direct common-lisp:floating-point-invalid-operation :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:floating-point-invalid-operation :classof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-invalid-operation :typeof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-invalid-operation :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-invalid-operation :prototype
 #<common-lisp:floating-point-invalid-operation {10042FE403}>)
(:mop-direct common-lisp:floating-point-inexact :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-inexact :package-name "COMMON-LISP")
(:mop-direct common-lisp:floating-point-inexact :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:floating-point-inexact :classof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-inexact :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-inexact :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-inexact :prototype
 #<common-lisp:floating-point-inexact {1004304023}>)
(:mop-direct common-lisp:floating-point-underflow :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-underflow :package-name "COMMON-LISP")
(:mop-direct common-lisp:floating-point-underflow :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:floating-point-underflow :classof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-underflow :typeof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-underflow :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-underflow :prototype
 #<common-lisp:floating-point-underflow {1004309CB3}>)
(:mop-direct common-lisp:floating-point-overflow :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-overflow :package-name "COMMON-LISP")
(:mop-direct common-lisp:floating-point-overflow :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:floating-point-overflow :classof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-overflow :typeof
 sb-pcl::condition-class)
(:mop-direct common-lisp:floating-point-overflow :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:floating-point-overflow :prototype
 #<common-lisp:floating-point-overflow {100430F913}>)
(:mop-direct common-lisp:division-by-zero :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:division-by-zero :package-name "COMMON-LISP")
(:mop-direct common-lisp:division-by-zero :precedance
 (common-lisp:arithmetic-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:division-by-zero :classof sb-pcl::condition-class)
(:mop-direct common-lisp:division-by-zero :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:division-by-zero :superclass
 common-lisp:arithmetic-error)
(:mop-direct common-lisp:division-by-zero :prototype
 #<common-lisp:division-by-zero {10043156D3}>)
(:mop-direct common-lisp:arithmetic-error :prototype
 #<common-lisp:arithmetic-error {1004316723}>)
(:mop-direct common-lisp:cell-error :superclass common-lisp:error)
(:mop-direct common-lisp:unbound-slot :superclass common-lisp:cell-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 common-lisp:cell-error)
(:mop-direct sb-alien:undefined-alien-error :superclass common-lisp:cell-error)
(:mop-direct common-lisp:undefined-function :superclass common-lisp:cell-error)
(:mop-direct common-lisp:unbound-variable :superclass common-lisp:cell-error)
(:mop-direct common-lisp:cell-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:cell-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:cell-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:cell-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:cell-error :superclass common-lisp:error)
(:mop-direct common-lisp:cell-error :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (common-lisp:cell-error-name))))
(:mop-direct common-lisp:unbound-slot :superclass common-lisp:cell-error)
(:mop-direct common-lisp:unbound-slot :package-name "COMMON-LISP")
(:mop-direct common-lisp:unbound-slot :precedance
 (common-lisp:cell-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:unbound-slot :classof sb-pcl::condition-class)
(:mop-direct common-lisp:unbound-slot :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:unbound-slot :superclass common-lisp:cell-error)
(:mop-direct common-lisp:unbound-slot :slot
 ((:name sb-kernel:instance) (:ordinal 1) (:initargs (:instance))
  (:readers (common-lisp:unbound-slot-instance))))
(:mop-direct common-lisp:unbound-slot :prototype
 #<common-lisp:unbound-slot {1004326F03}>)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 common-lisp:cell-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 sb-thread:thread-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :package-name "SB-THREAD")
(:mop-direct sb-thread:symbol-value-in-thread-error :precedance
 (common-lisp:cell-error sb-thread:thread-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-thread:symbol-value-in-thread-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-thread:symbol-value-in-thread-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-thread:symbol-value-in-thread-error :superclass
 common-lisp:cell-error)
(:mop-direct sb-thread:symbol-value-in-thread-error :slot
 ((:name sb-int:info) (:ordinal 1) (:initargs (:info))
  (:readers (sb-thread::symbol-value-in-thread-error-info))))
(:mop-direct sb-thread:symbol-value-in-thread-error :prototype
 #<sb-thread:symbol-value-in-thread-error {100416F783}>)
(:mop-direct sb-alien:undefined-alien-error :superclass common-lisp:cell-error)
(:mop-direct sb-kernel::undefined-alien-function-error :superclass
 sb-alien:undefined-alien-error)
(:mop-direct sb-kernel::undefined-alien-variable-error :superclass
 sb-alien:undefined-alien-error)
(:mop-direct sb-alien:undefined-alien-error :package-name "SB-ALIEN")
(:mop-direct sb-alien:undefined-alien-error :precedance
 (common-lisp:cell-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien:undefined-alien-error :classof sb-pcl::condition-class)
(:mop-direct sb-alien:undefined-alien-error :typeof sb-pcl::condition-class)
(:mop-direct sb-alien:undefined-alien-error :superclass common-lisp:cell-error)
(:mop-direct sb-kernel::undefined-alien-function-error :superclass
 sb-alien:undefined-alien-error)
(:mop-direct sb-kernel::undefined-alien-function-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::undefined-alien-function-error :precedance
 (sb-alien:undefined-alien-error common-lisp:cell-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::undefined-alien-function-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::undefined-alien-function-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::undefined-alien-function-error :superclass
 sb-alien:undefined-alien-error)
(:mop-direct sb-kernel::undefined-alien-function-error :prototype
 #<sb-kernel::undefined-alien-function-error {100433B9B3}>)
(:mop-direct sb-kernel::undefined-alien-variable-error :superclass
 sb-alien:undefined-alien-error)
(:mop-direct sb-kernel::undefined-alien-variable-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::undefined-alien-variable-error :precedance
 (sb-alien:undefined-alien-error common-lisp:cell-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel::undefined-alien-variable-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::undefined-alien-variable-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::undefined-alien-variable-error :superclass
 sb-alien:undefined-alien-error)
(:mop-direct sb-kernel::undefined-alien-variable-error :prototype
 #<sb-kernel::undefined-alien-variable-error {1004341ED3}>)
(:mop-direct sb-alien:undefined-alien-error :prototype
 #<sb-alien:undefined-alien-error {1004343883}>)
(:mop-direct common-lisp:undefined-function :superclass common-lisp:cell-error)
(:mop-direct sb-int:special-form-function :superclass
 common-lisp:undefined-function)
(:mop-direct common-lisp:undefined-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:undefined-function :precedance
 (common-lisp:cell-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:undefined-function :classof sb-pcl::condition-class)
(:mop-direct common-lisp:undefined-function :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:undefined-function :superclass common-lisp:cell-error)
(:mop-direct sb-int:special-form-function :superclass
 common-lisp:undefined-function)
(:mop-direct sb-int:special-form-function :package-name "SB-INT")
(:mop-direct sb-int:special-form-function :precedance
 (common-lisp:undefined-function common-lisp:cell-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:special-form-function :classof sb-pcl::condition-class)
(:mop-direct sb-int:special-form-function :typeof sb-pcl::condition-class)
(:mop-direct sb-int:special-form-function :superclass
 common-lisp:undefined-function)
(:mop-direct sb-int:special-form-function :prototype
 #<sb-int:special-form-function {100434EEE3}>)
(:mop-direct common-lisp:undefined-function :prototype
 #<common-lisp:undefined-function {1004350293}>)
(:mop-direct common-lisp:unbound-variable :superclass common-lisp:cell-error)
(:mop-direct common-lisp:unbound-variable :package-name "COMMON-LISP")
(:mop-direct common-lisp:unbound-variable :precedance
 (common-lisp:cell-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:unbound-variable :classof sb-pcl::condition-class)
(:mop-direct common-lisp:unbound-variable :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:unbound-variable :superclass common-lisp:cell-error)
(:mop-direct common-lisp:unbound-variable :prototype
 #<common-lisp:unbound-variable {1004356103}>)
(:mop-direct common-lisp:cell-error :prototype
 #<common-lisp:cell-error {10043574A3}>)
(:mop-direct common-lisp:package-error :superclass common-lisp:error)
(:mop-direct sb-ext:name-conflict :superclass common-lisp:package-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:package-error)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:package-error)
(:mop-direct common-lisp:package-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:package-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:package-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:package-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:package-error :superclass common-lisp:error)
(:mop-direct common-lisp:package-error :slot
 ((:name common-lisp:package) (:ordinal 1) (:initargs (:package))
  (:readers (common-lisp:package-error-package))))
(:mop-direct sb-ext:name-conflict :superclass sb-int:reference-condition)
(:mop-direct sb-ext:name-conflict :superclass common-lisp:package-error)
(:mop-direct sb-ext:name-conflict :package-name "SB-EXT")
(:mop-direct sb-ext:name-conflict :precedance
 (sb-int:reference-condition common-lisp:package-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-ext:name-conflict :classof sb-pcl::condition-class)
(:mop-direct sb-ext:name-conflict :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:name-conflict :superclass common-lisp:package-error)
(:mop-direct sb-ext:name-conflict :slot
 ((:name common-lisp:function) (:ordinal 1) (:initargs (:function))
  (:readers (sb-ext:name-conflict-function))))
(:mop-direct sb-ext:name-conflict :slot
 ((:name sb-impl::datum) (:ordinal 2) (:initargs (:datum))
  (:readers (sb-ext:name-conflict-datum))))
(:mop-direct sb-ext:name-conflict :slot
 ((:name sb-impl::symbols) (:ordinal 3) (:initargs (:symbols))
  (:readers (sb-ext:name-conflict-symbols))))
(:mop-direct sb-ext:name-conflict :prototype
 #<sb-ext:name-conflict {10079ED883}>)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:simple-reader-package-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-package-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error
                             common-lisp:simple-condition
                             common-lisp:package-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:condition sb-pcl::slot-object
                             common-lisp:t))
(:mop-direct sb-int:simple-reader-package-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:simple-reader-package-error :prototype
 #<sb-int:simple-reader-package-error {1003A5EEF3}>)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-kernel:simple-package-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:simple-package-error :precedance
 (common-lisp:simple-condition common-lisp:package-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:simple-package-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:simple-package-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:simple-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-kernel:simple-package-error :prototype
 #<sb-kernel:simple-package-error {1003A1F903}>)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:package-error)
(:mop-direct sb-ext:package-lock-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:simple-condition)
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-lock-violation :package-name "SB-EXT")
(:mop-direct sb-ext:package-lock-violation :precedance
 (common-lisp:package-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:simple-condition common-lisp:condition
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:package-lock-violation :classof sb-pcl::condition-class)
(:mop-direct sb-ext:package-lock-violation :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:package-lock-violation :superclass
 common-lisp:package-error)
(:mop-direct sb-ext:package-lock-violation :slot
 ((:name sb-kernel::current-package) (:ordinal 1)
  (:initform 'common-lisp:*package*)
  (:readers (sb-kernel::package-lock-violation-in-package))))
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:symbol-package-locked-error :package-name "SB-EXT")
(:mop-direct sb-ext:symbol-package-locked-error :precedance
 (sb-ext:package-lock-violation common-lisp:package-error common-lisp:error
                                common-lisp:serious-condition
                                sb-int:reference-condition
                                common-lisp:simple-condition
                                common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-ext:symbol-package-locked-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-ext:symbol-package-locked-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:symbol-package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:symbol-package-locked-error :slot
 ((:name common-lisp:symbol) (:ordinal 1) (:initargs (:symbol))
  (:readers (sb-ext:package-locked-error-symbol))))
(:mop-direct sb-ext:symbol-package-locked-error :prototype
 #<sb-ext:symbol-package-locked-error {10079E80E3}>)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :package-name "SB-EXT")
(:mop-direct sb-ext:package-locked-error :precedance
 (sb-ext:package-lock-violation common-lisp:package-error common-lisp:error
                                common-lisp:serious-condition
                                sb-int:reference-condition
                                common-lisp:simple-condition
                                common-lisp:condition sb-pcl::slot-object
                                common-lisp:t))
(:mop-direct sb-ext:package-locked-error :classof sb-pcl::condition-class)
(:mop-direct sb-ext:package-locked-error :typeof sb-pcl::condition-class)
(:mop-direct sb-ext:package-locked-error :superclass
 sb-ext:package-lock-violation)
(:mop-direct sb-ext:package-locked-error :prototype
 #<sb-ext:package-locked-error {10079E80C3}>)
(:mop-direct sb-ext:package-lock-violation :prototype
 #<sb-ext:package-lock-violation {10079E80A3}>)
(:mop-direct sb-int:package-at-variance-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:package-at-variance-error :package-name "SB-INT")
(:mop-direct sb-int:package-at-variance-error :precedance
 (sb-int:reference-condition common-lisp:simple-condition
  common-lisp:package-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-at-variance-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:package-at-variance-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:package-at-variance-error :prototype
 #<sb-int:package-at-variance-error {10079E7F43}>)
(:mop-direct common-lisp:package-error :prototype
 #<common-lisp:package-error {100439BC33}>)
(:mop-direct common-lisp:file-error :superclass common-lisp:error)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:file-error)
(:mop-direct common-lisp:file-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:file-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:file-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:file-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:file-error :superclass common-lisp:error)
(:mop-direct common-lisp:file-error :slot
 ((:name common-lisp:pathname) (:ordinal 1) (:initargs (:pathname))
  (:readers (common-lisp:file-error-pathname))))
(:mop-direct sb-int:simple-file-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:file-error)
(:mop-direct sb-int:simple-file-error :package-name "SB-INT")
(:mop-direct sb-int:simple-file-error :precedance
 (common-lisp:simple-condition common-lisp:file-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-file-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-file-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-file-error :superclass common-lisp:file-error)
(:mop-direct sb-int:simple-file-error :prototype
 #<sb-int:simple-file-error {10039DC903}>)
(:mop-direct common-lisp:file-error :prototype
 #<common-lisp:file-error {10043B24D3}>)
(:mop-direct common-lisp:stream-error :superclass common-lisp:error)
(:mop-direct sb-int:stream-decoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-encoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:simple-stream-error :superclass common-lisp:stream-error)
(:mop-direct sb-sys:io-timeout :superclass common-lisp:stream-error)
(:mop-direct common-lisp:reader-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:closed-stream-error :superclass common-lisp:stream-error)
(:mop-direct common-lisp:end-of-file :superclass common-lisp:stream-error)
(:mop-direct common-lisp:stream-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:stream-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:stream-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:stream-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:stream-error :superclass common-lisp:error)
(:mop-direct common-lisp:stream-error :slot
 ((:name common-lisp:stream) (:ordinal 1) (:initargs (:stream))
  (:readers (common-lisp:stream-error-stream))))
(:mop-direct sb-int:stream-decoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-decoding-error :superclass
 sb-int:character-decoding-error)
(:mop-direct sb-int:stream-decoding-error :package-name "SB-INT")
(:mop-direct sb-int:stream-decoding-error :precedance
 (common-lisp:stream-error sb-int:character-decoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:stream-decoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:stream-decoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:stream-decoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-decoding-error :prototype
 #<sb-int:stream-decoding-error {1004228CC3}>)
(:mop-direct sb-int:stream-encoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-encoding-error :superclass
 sb-int:character-encoding-error)
(:mop-direct sb-int:stream-encoding-error :package-name "SB-INT")
(:mop-direct sb-int:stream-encoding-error :precedance
 (common-lisp:stream-error sb-int:character-encoding-error
  sb-int:character-coding-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:stream-encoding-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:stream-encoding-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:stream-encoding-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:stream-encoding-error :prototype
 #<sb-int:stream-encoding-error {1004248963}>)
(:mop-direct sb-int:simple-stream-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-stream-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:simple-stream-error :package-name "SB-INT")
(:mop-direct sb-int:simple-stream-error :precedance
 (common-lisp:simple-condition common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-stream-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-stream-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-stream-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:simple-stream-error :prototype
 #<sb-int:simple-stream-error {10079ED703}>)
(:mop-direct sb-sys:io-timeout :superclass common-lisp:stream-error)
(:mop-direct sb-sys:io-timeout :superclass sb-ext:timeout)
(:mop-direct sb-sys:io-timeout :package-name "SB-SYS")
(:mop-direct sb-sys:io-timeout :precedance
 (common-lisp:stream-error common-lisp:error sb-ext:timeout
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-sys:io-timeout :classof sb-pcl::condition-class)
(:mop-direct sb-sys:io-timeout :typeof sb-pcl::condition-class)
(:mop-direct sb-sys:io-timeout :superclass common-lisp:stream-error)
(:mop-direct sb-sys:io-timeout :slot
 ((:name sb-kernel::direction) (:ordinal 1) (:initargs (:direction))
  (:readers (sb-kernel::io-timeout-direction))))
(:mop-direct sb-sys:io-timeout :prototype #<sb-sys:io-timeout {1003D61E23}>)
(:mop-direct common-lisp:reader-error :superclass common-lisp:parse-error)
(:mop-direct common-lisp:reader-error :superclass common-lisp:stream-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct common-lisp:reader-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:reader-error :precedance
 (common-lisp:parse-error common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:reader-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:reader-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:reader-error :superclass common-lisp:stream-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-compile-file :package-name "SB-C")
(:mop-direct sb-c::input-error-in-compile-file :precedance
 (common-lisp:reader-error common-lisp:parse-error common-lisp:stream-error
  common-lisp:error common-lisp:serious-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::input-error-in-compile-file :classof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-compile-file :typeof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name common-lisp:position) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:position))
  (:readers (sb-c::input-error-in-compile-file-position))))
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name sb-c::line/col) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:line/col))
  (:readers (sb-c::input-error-in-compile-file-line/col))))
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name sb-c::invoker) (:ordinal 3) (:initform ''common-lisp:compile-file)
  (:initargs (:invoker))
  (:readers (sb-c::input-error-in-compile-file-invoker))))
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-load :package-name "SB-C")
(:mop-direct sb-c::input-error-in-load :precedance
 (sb-c::input-error-in-compile-file common-lisp:reader-error
  common-lisp:parse-error common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::input-error-in-load :classof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-load :typeof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-load :prototype
 #<sb-c::input-error-in-load {10079E9B13}>)
(:mop-direct sb-c::input-error-in-compile-file :prototype
 #<sb-c::input-error-in-compile-file {10079E9AF3}>)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct sb-int:simple-reader-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-error :precedance
 (common-lisp:reader-error common-lisp:parse-error common-lisp:stream-error
  common-lisp:error common-lisp:serious-condition common-lisp:simple-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reader-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:reader-impossible-number-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:simple-condition common-lisp:condition
                             sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:reader-impossible-number-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-impossible-number-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :slot
 ((:name common-lisp:error) (:ordinal 1) (:initargs (:error))
  (:readers (sb-kernel::reader-impossible-number-error-error))))
(:mop-direct sb-kernel:reader-impossible-number-error :prototype
 #<sb-kernel:reader-impossible-number-error {1003A57503}>)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:simple-reader-package-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-package-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error
                             common-lisp:simple-condition
                             common-lisp:package-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:condition sb-pcl::slot-object
                             common-lisp:t))
(:mop-direct sb-int:simple-reader-package-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :prototype
 #<sb-int:simple-reader-package-error {1003A5EEF3}>)
(:mop-direct sb-int:simple-reader-error :prototype
 #<sb-int:simple-reader-error {1003A63B93}>)
(:mop-direct common-lisp:reader-error :prototype
 #<common-lisp:reader-error {100440D073}>)
(:mop-direct sb-int:closed-stream-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:closed-stream-error :package-name "SB-INT")
(:mop-direct sb-int:closed-stream-error :precedance
 (common-lisp:stream-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:closed-stream-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:closed-stream-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:closed-stream-error :superclass common-lisp:stream-error)
(:mop-direct sb-int:closed-stream-error :prototype
 #<sb-int:closed-stream-error {1004412D73}>)
(:mop-direct common-lisp:end-of-file :superclass common-lisp:stream-error)
(:mop-direct sb-kernel:reader-eof-error :superclass common-lisp:end-of-file)
(:mop-direct common-lisp:end-of-file :package-name "COMMON-LISP")
(:mop-direct common-lisp:end-of-file :precedance
 (common-lisp:stream-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:end-of-file :classof sb-pcl::condition-class)
(:mop-direct common-lisp:end-of-file :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:end-of-file :superclass common-lisp:stream-error)
(:mop-direct sb-kernel:reader-eof-error :superclass common-lisp:end-of-file)
(:mop-direct sb-kernel:reader-eof-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:reader-eof-error :precedance
 (common-lisp:end-of-file common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:reader-eof-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-eof-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-eof-error :superclass common-lisp:end-of-file)
(:mop-direct sb-kernel:reader-eof-error :slot
 ((:name sb-kernel::context) (:ordinal 1) (:initargs (:context))
  (:readers (sb-kernel::reader-eof-error-context))))
(:mop-direct sb-kernel:reader-eof-error :prototype
 #<sb-kernel:reader-eof-error {100441F253}>)
(:mop-direct common-lisp:end-of-file :prototype
 #<common-lisp:end-of-file {10044202A3}>)
(:mop-direct common-lisp:stream-error :prototype
 #<common-lisp:stream-error {10044212F3}>)
(:mop-direct common-lisp:control-error :superclass common-lisp:error)
(:mop-direct sb-int:simple-control-error :superclass common-lisp:control-error)
(:mop-direct sb-kernel::abort-failure :superclass common-lisp:control-error)
(:mop-direct common-lisp:control-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:control-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:control-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:control-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:control-error :superclass common-lisp:error)
(:mop-direct sb-int:simple-control-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-control-error :superclass common-lisp:control-error)
(:mop-direct sb-int:simple-control-error :package-name "SB-INT")
(:mop-direct sb-int:simple-control-error :precedance
 (common-lisp:simple-condition common-lisp:control-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-control-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-control-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-control-error :superclass common-lisp:control-error)
(:mop-direct sb-int:simple-control-error :prototype
 #<sb-int:simple-control-error {10039E4013}>)
(:mop-direct sb-kernel::abort-failure :superclass common-lisp:control-error)
(:mop-direct sb-kernel::abort-failure :package-name "SB-KERNEL")
(:mop-direct sb-kernel::abort-failure :precedance
 (common-lisp:control-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::abort-failure :classof sb-pcl::condition-class)
(:mop-direct sb-kernel::abort-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel::abort-failure :superclass common-lisp:control-error)
(:mop-direct sb-kernel::abort-failure :prototype
 #<sb-kernel::abort-failure {1004434143}>)
(:mop-direct common-lisp:control-error :prototype
 #<common-lisp:control-error {1004435193}>)
(:mop-direct common-lisp:parse-error :superclass common-lisp:error)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:parse-error)
(:mop-direct sb-kernel:namestring-parse-error :superclass
 common-lisp:parse-error)
(:mop-direct common-lisp:reader-error :superclass common-lisp:parse-error)
(:mop-direct common-lisp:parse-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:parse-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:parse-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:parse-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:parse-error :superclass common-lisp:error)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:simple-condition)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:parse-error)
(:mop-direct sb-int:simple-parse-error :package-name "SB-INT")
(:mop-direct sb-int:simple-parse-error :precedance
 (common-lisp:simple-condition common-lisp:parse-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-parse-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-parse-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-parse-error :superclass common-lisp:parse-error)
(:mop-direct sb-int:simple-parse-error :prototype
 #<sb-int:simple-parse-error {10079ED723}>)
(:mop-direct sb-kernel:namestring-parse-error :superclass
 common-lisp:parse-error)
(:mop-direct sb-kernel:namestring-parse-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:namestring-parse-error :precedance
 (common-lisp:parse-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:namestring-parse-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:namestring-parse-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:namestring-parse-error :superclass
 common-lisp:parse-error)
(:mop-direct sb-kernel:namestring-parse-error :slot
 ((:name sb-kernel::complaint) (:ordinal 1) (:initargs (:complaint))
  (:readers (sb-kernel::namestring-parse-error-complaint))))
(:mop-direct sb-kernel:namestring-parse-error :slot
 ((:name sb-kernel::args) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:args)) (:readers (sb-kernel::namestring-parse-error-args))))
(:mop-direct sb-kernel:namestring-parse-error :slot
 ((:name common-lisp:namestring) (:ordinal 3) (:initargs (:namestring))
  (:readers (sb-kernel::namestring-parse-error-namestring))))
(:mop-direct sb-kernel:namestring-parse-error :slot
 ((:name sb-kernel::offset) (:ordinal 4) (:initargs (:offset))
  (:readers (sb-kernel:namestring-parse-error-offset))))
(:mop-direct sb-kernel:namestring-parse-error :prototype
 #<sb-kernel:namestring-parse-error {100444D843}>)
(:mop-direct common-lisp:reader-error :superclass common-lisp:parse-error)
(:mop-direct common-lisp:reader-error :superclass common-lisp:stream-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct common-lisp:reader-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:reader-error :precedance
 (common-lisp:parse-error common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:reader-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:reader-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:reader-error :superclass common-lisp:parse-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-compile-file :package-name "SB-C")
(:mop-direct sb-c::input-error-in-compile-file :precedance
 (common-lisp:reader-error common-lisp:parse-error common-lisp:stream-error
  common-lisp:error common-lisp:serious-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::input-error-in-compile-file :classof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-compile-file :typeof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-compile-file :superclass
 common-lisp:reader-error)
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name common-lisp:position) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:position))
  (:readers (sb-c::input-error-in-compile-file-position))))
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name sb-c::line/col) (:ordinal 2) (:initform 'common-lisp:nil)
  (:initargs (:line/col))
  (:readers (sb-c::input-error-in-compile-file-line/col))))
(:mop-direct sb-c::input-error-in-compile-file :slot
 ((:name sb-c::invoker) (:ordinal 3) (:initform ''common-lisp:compile-file)
  (:initargs (:invoker))
  (:readers (sb-c::input-error-in-compile-file-invoker))))
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-load :package-name "SB-C")
(:mop-direct sb-c::input-error-in-load :precedance
 (sb-c::input-error-in-compile-file common-lisp:reader-error
  common-lisp:parse-error common-lisp:stream-error common-lisp:error
  common-lisp:serious-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::input-error-in-load :classof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-load :typeof sb-pcl::condition-class)
(:mop-direct sb-c::input-error-in-load :superclass
 sb-c::input-error-in-compile-file)
(:mop-direct sb-c::input-error-in-load :prototype
 #<sb-c::input-error-in-load {10079E9B13}>)
(:mop-direct sb-c::input-error-in-compile-file :prototype
 #<sb-c::input-error-in-compile-file {10079E9AF3}>)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct sb-int:simple-reader-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-error :precedance
 (common-lisp:reader-error common-lisp:parse-error common-lisp:stream-error
  common-lisp:error common-lisp:serious-condition common-lisp:simple-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reader-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-error :superclass common-lisp:reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:reader-impossible-number-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:simple-condition common-lisp:condition
                             sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:reader-impossible-number-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-impossible-number-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:reader-impossible-number-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-kernel:reader-impossible-number-error :slot
 ((:name common-lisp:error) (:ordinal 1) (:initargs (:error))
  (:readers (sb-kernel::reader-impossible-number-error-error))))
(:mop-direct sb-kernel:reader-impossible-number-error :prototype
 #<sb-kernel:reader-impossible-number-error {1003A57503}>)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :superclass
 common-lisp:package-error)
(:mop-direct sb-int:simple-reader-package-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reader-package-error :precedance
 (sb-int:simple-reader-error common-lisp:reader-error common-lisp:parse-error
                             common-lisp:stream-error
                             common-lisp:simple-condition
                             common-lisp:package-error common-lisp:error
                             common-lisp:serious-condition
                             common-lisp:condition sb-pcl::slot-object
                             common-lisp:t))
(:mop-direct sb-int:simple-reader-package-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reader-package-error :superclass
 sb-int:simple-reader-error)
(:mop-direct sb-int:simple-reader-package-error :prototype
 #<sb-int:simple-reader-package-error {1003A5EEF3}>)
(:mop-direct sb-int:simple-reader-error :prototype
 #<sb-int:simple-reader-error {1003A63B93}>)
(:mop-direct common-lisp:reader-error :prototype
 #<common-lisp:reader-error {100440D073}>)
(:mop-direct common-lisp:parse-error :prototype
 #<common-lisp:parse-error {1004480923}>)
(:mop-direct common-lisp:program-error :superclass common-lisp:error)
(:mop-direct sb-pcl::initarg-error :superclass common-lisp:program-error)
(:mop-direct sb-eval::arg-count-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:simple-program-error :superclass common-lisp:program-error)
(:mop-direct sb-int:interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:compiled-program-error :superclass
 common-lisp:program-error)
(:mop-direct common-lisp:program-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:program-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:program-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:program-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:program-error :superclass common-lisp:error)
(:mop-direct sb-pcl::initarg-error :superclass sb-int:reference-condition)
(:mop-direct sb-pcl::initarg-error :superclass common-lisp:program-error)
(:mop-direct sb-pcl::initarg-error :package-name "SB-PCL")
(:mop-direct sb-pcl::initarg-error :precedance
 (sb-int:reference-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::initarg-error :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::initarg-error :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::initarg-error :superclass common-lisp:program-error)
(:mop-direct sb-pcl::initarg-error :slot
 ((:name common-lisp:class) (:ordinal 1) (:initargs (:class))
  (:readers (sb-pcl::initarg-error-class))))
(:mop-direct sb-pcl::initarg-error :slot
 ((:name sb-pcl::initargs) (:ordinal 2) (:initargs (:initargs))
  (:readers (sb-pcl::initarg-error-initargs))))
(:mop-direct sb-pcl::initarg-error :prototype
 #<sb-pcl::initarg-error {10079F1253}>)
(:mop-direct sb-eval::arg-count-program-error :superclass
 sb-kernel::arg-count-error)
(:mop-direct sb-eval::arg-count-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::arg-count-program-error :package-name "SB-EVAL")
(:mop-direct sb-eval::arg-count-program-error :precedance
 (sb-kernel::arg-count-error sb-kernel::defmacro-lambda-list-bind-error
  common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::arg-count-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-eval::arg-count-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-eval::arg-count-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::arg-count-program-error :prototype
 #<sb-eval::arg-count-program-error {10042ABED3}>)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-eval::interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-eval::interpreted-program-error :package-name "SB-EVAL")
(:mop-direct sb-eval::interpreted-program-error :precedance
 (common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:simple-condition sb-int:encapsulated-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::interpreted-program-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreted-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-eval::interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-eval::interpreted-program-error :prototype
 #<sb-eval::interpreted-program-error {10079EF133}>)
(:mop-direct sb-int:simple-program-error :superclass
 common-lisp:simple-condition)
(:mop-direct sb-int:simple-program-error :superclass common-lisp:program-error)
(:mop-direct sb-pcl::invalid-method-initarg :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-int:simple-program-error :package-name "SB-INT")
(:mop-direct sb-int:simple-program-error :precedance
 (common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:simple-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-program-error :superclass common-lisp:program-error)
(:mop-direct sb-pcl::invalid-method-initarg :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::invalid-method-initarg :package-name "SB-PCL")
(:mop-direct sb-pcl::invalid-method-initarg :precedance
 (sb-int:simple-program-error common-lisp:simple-condition
  common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::invalid-method-initarg :classof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-method-initarg :typeof sb-pcl::condition-class)
(:mop-direct sb-pcl::invalid-method-initarg :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::invalid-method-initarg :slot
 ((:name common-lisp:method) (:ordinal 1) (:initargs (:method))
  (:readers (sb-pcl::invalid-method-initarg-method))))
(:mop-direct sb-pcl::invalid-method-initarg :prototype
 #<sb-pcl::invalid-method-initarg {10039C2133}>)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :package-name "SB-PCL")
(:mop-direct sb-pcl::specialized-lambda-list-error :precedance
 (sb-int:reference-condition sb-int:simple-program-error
  common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::specialized-lambda-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::specialized-lambda-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::specialized-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::specialized-lambda-list-error :prototype
 #<sb-pcl::specialized-lambda-list-error {10079F0233}>)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :package-name "SB-PCL")
(:mop-direct sb-pcl::generic-function-lambda-list-error :precedance
 (sb-int:reference-condition sb-int:simple-program-error
  common-lisp:simple-condition common-lisp:program-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-pcl::generic-function-lambda-list-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::generic-function-lambda-list-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::generic-function-lambda-list-error :superclass
 sb-int:simple-program-error)
(:mop-direct sb-pcl::generic-function-lambda-list-error :prototype
 #<sb-pcl::generic-function-lambda-list-error {10079EFB63}>)
(:mop-direct sb-int:simple-program-error :prototype
 #<sb-int:simple-program-error {10039D52A3}>)
(:mop-direct sb-int:interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:interpreted-program-error :superclass
 sb-int:encapsulated-condition)
(:mop-direct sb-int:interpreted-program-error :package-name "SB-INT")
(:mop-direct sb-int:interpreted-program-error :precedance
 (common-lisp:program-error common-lisp:error common-lisp:serious-condition
  sb-int:encapsulated-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:interpreted-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:interpreted-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:interpreted-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:interpreted-program-error :slot
 ((:name sb-kernel:form) (:ordinal 1) (:initargs (:form))
  (:readers (sb-kernel::program-error-form))))
(:mop-direct sb-int:interpreted-program-error :prototype
 #<sb-int:interpreted-program-error {10079ED6E3}>)
(:mop-direct sb-int:compiled-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:compiled-program-error :package-name "SB-INT")
(:mop-direct sb-int:compiled-program-error :precedance
 (common-lisp:program-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:compiled-program-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:compiled-program-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:compiled-program-error :superclass
 common-lisp:program-error)
(:mop-direct sb-int:compiled-program-error :slot
 ((:name sb-kernel::message) (:ordinal 1) (:initargs (:message))
  (:readers (sb-kernel::program-error-message))))
(:mop-direct sb-int:compiled-program-error :slot
 ((:name sb-kernel::source) (:ordinal 2) (:initargs (:source))
  (:readers (sb-kernel::program-error-source))))
(:mop-direct sb-int:compiled-program-error :prototype
 #<sb-int:compiled-program-error {10044D8473}>)
(:mop-direct common-lisp:program-error :prototype
 #<common-lisp:program-error {10044D94C3}>)
(:mop-direct common-lisp:type-error :superclass common-lisp:error)
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 common-lisp:type-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:case-failure :superclass common-lisp:type-error)
(:mop-direct sb-kernel:layout-invalid :superclass common-lisp:type-error)
(:mop-direct sb-kernel::macroexpand-hook-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:index-too-large-error :superclass common-lisp:type-error)
(:mop-direct sb-int:invalid-array-error :superclass common-lisp:type-error)
(:mop-direct sb-int:invalid-array-index-error :superclass
 common-lisp:type-error)
(:mop-direct common-lisp:simple-type-error :superclass common-lisp:type-error)
(:mop-direct common-lisp:type-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:type-error :precedance
 (common-lisp:error common-lisp:serious-condition common-lisp:condition
                    sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:type-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:type-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:type-error :superclass common-lisp:error)
(:mop-direct common-lisp:type-error :slot
 ((:name sb-kernel::datum) (:ordinal 1) (:initargs (:datum))
  (:readers (common-lisp:type-error-datum))))
(:mop-direct common-lisp:type-error :slot
 ((:name sb-kernel::expected-type) (:ordinal 2) (:initargs (:expected-type))
  (:readers (common-lisp:type-error-expected-type))))
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 common-lisp:type-error)
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 sb-int:reference-condition)
(:mop-direct sb-sequence::protocol-unimplemented :package-name "SB-SEQUENCE")
(:mop-direct sb-sequence::protocol-unimplemented :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  sb-int:reference-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-sequence::protocol-unimplemented :classof
 sb-pcl::condition-class)
(:mop-direct sb-sequence::protocol-unimplemented :typeof
 sb-pcl::condition-class)
(:mop-direct sb-sequence::protocol-unimplemented :superclass
 common-lisp:type-error)
(:mop-direct sb-sequence::protocol-unimplemented :prototype
 #<sb-sequence::protocol-unimplemented {10079F1A13}>)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 sb-pcl::slotd-initialization-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :package-name "SB-PCL")
(:mop-direct sb-pcl::slotd-initialization-type-error :precedance
 (sb-pcl::slotd-initialization-error sb-int:reference-condition
  common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slotd-initialization-type-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-type-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::slotd-initialization-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-pcl::slotd-initialization-type-error :slot
 ((:name sb-pcl::value) (:ordinal 1) (:initform 'common-lisp:nil)
  (:initargs (:datum :value))))
(:mop-direct sb-pcl::slotd-initialization-type-error :prototype
 #<sb-pcl::slotd-initialization-type-error {10079F1233}>)
(:mop-direct sb-kernel:case-failure :superclass common-lisp:type-error)
(:mop-direct sb-kernel:case-failure :package-name "SB-KERNEL")
(:mop-direct sb-kernel:case-failure :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:case-failure :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:case-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:case-failure :superclass common-lisp:type-error)
(:mop-direct sb-kernel:case-failure :slot
 ((:name sb-kernel::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-kernel::case-failure-name))))
(:mop-direct sb-kernel:case-failure :slot
 ((:name sb-kernel::possibilities) (:ordinal 2) (:initargs (:possibilities))
  (:readers (sb-kernel::case-failure-possibilities))))
(:mop-direct sb-kernel:case-failure :prototype
 #<sb-kernel:case-failure {10045047B3}>)
(:mop-direct sb-kernel:layout-invalid :superclass common-lisp:type-error)
(:mop-direct sb-kernel:layout-invalid :package-name "SB-KERNEL")
(:mop-direct sb-kernel:layout-invalid :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:layout-invalid :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:layout-invalid :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:layout-invalid :superclass common-lisp:type-error)
(:mop-direct sb-kernel:layout-invalid :prototype
 #<sb-kernel:layout-invalid {100450B203}>)
(:mop-direct sb-kernel::macroexpand-hook-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel::macroexpand-hook-type-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel::macroexpand-hook-type-error :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::macroexpand-hook-type-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::macroexpand-hook-type-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel::macroexpand-hook-type-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel::macroexpand-hook-type-error :prototype
 #<sb-kernel::macroexpand-hook-type-error {1004511303}>)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:nil-array-accessed-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:nil-array-accessed-error :precedance
 (sb-int:reference-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:nil-array-accessed-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:nil-array-accessed-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:nil-array-accessed-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:nil-array-accessed-error :prototype
 #<sb-kernel:nil-array-accessed-error {10079E8163}>)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:bounding-indices-bad-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:bounding-indices-bad-error :precedance
 (sb-int:reference-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:bounding-indices-bad-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:bounding-indices-bad-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:bounding-indices-bad-error :superclass
 common-lisp:type-error)
(:mop-direct sb-kernel:bounding-indices-bad-error :slot
 ((:name sb-kernel::object) (:ordinal 1) (:initargs (:object))
  (:readers (sb-kernel::bounding-indices-bad-object))))
(:mop-direct sb-kernel:bounding-indices-bad-error :prototype
 #<sb-kernel:bounding-indices-bad-error {10079E8143}>)
(:mop-direct sb-kernel:index-too-large-error :superclass common-lisp:type-error)
(:mop-direct sb-kernel:index-too-large-error :package-name "SB-KERNEL")
(:mop-direct sb-kernel:index-too-large-error :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:index-too-large-error :classof sb-pcl::condition-class)
(:mop-direct sb-kernel:index-too-large-error :typeof sb-pcl::condition-class)
(:mop-direct sb-kernel:index-too-large-error :superclass common-lisp:type-error)
(:mop-direct sb-kernel:index-too-large-error :prototype
 #<sb-kernel:index-too-large-error {10045268E3}>)
(:mop-direct sb-int:invalid-array-error :superclass sb-int:reference-condition)
(:mop-direct sb-int:invalid-array-error :superclass common-lisp:type-error)
(:mop-direct sb-int:invalid-array-error :package-name "SB-INT")
(:mop-direct sb-int:invalid-array-error :precedance
 (sb-int:reference-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:invalid-array-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:invalid-array-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:invalid-array-error :superclass common-lisp:type-error)
(:mop-direct sb-int:invalid-array-error :prototype
 #<sb-int:invalid-array-error {10079E8123}>)
(:mop-direct sb-int:invalid-array-index-error :superclass
 common-lisp:type-error)
(:mop-direct sb-int:invalid-array-index-error :package-name "SB-INT")
(:mop-direct sb-int:invalid-array-index-error :precedance
 (common-lisp:type-error common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:invalid-array-index-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:invalid-array-index-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:invalid-array-index-error :superclass
 common-lisp:type-error)
(:mop-direct sb-int:invalid-array-index-error :slot
 ((:name common-lisp:array) (:ordinal 1) (:initargs (:array))
  (:readers (sb-kernel::invalid-array-index-error-array))))
(:mop-direct sb-int:invalid-array-index-error :slot
 ((:name sb-kernel::axis) (:ordinal 2) (:initargs (:axis))
  (:readers (sb-kernel::invalid-array-index-error-axis))))
(:mop-direct sb-int:invalid-array-index-error :prototype
 #<sb-int:invalid-array-index-error {1004535FC3}>)
(:mop-direct common-lisp:simple-type-error :superclass
 common-lisp:simple-condition)
(:mop-direct common-lisp:simple-type-error :superclass common-lisp:type-error)
(:mop-direct common-lisp:simple-type-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-type-error :precedance
 (common-lisp:simple-condition common-lisp:type-error common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct common-lisp:simple-type-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-type-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-type-error :superclass common-lisp:type-error)
(:mop-direct common-lisp:simple-type-error :prototype
 #<common-lisp:simple-type-error {1003A6D0D3}>)
(:mop-direct common-lisp:type-error :prototype
 #<common-lisp:type-error {100453E3B3}>)
(:mop-direct common-lisp:simple-error :superclass common-lisp:simple-condition)
(:mop-direct common-lisp:simple-error :superclass common-lisp:error)
(:mop-direct ql-gunzipper::decompression-error :superclass
 common-lisp:simple-error)
(:mop-direct asdf/action:operation-definition-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::compiler-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:unsupported-operator :superclass common-lisp:simple-error)
(:mop-direct sb-int:bug :superclass common-lisp:simple-error)
(:mop-direct common-lisp:simple-error :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-error :precedance
 (common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:simple-error :classof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-error :typeof sb-pcl::condition-class)
(:mop-direct common-lisp:simple-error :superclass common-lisp:error)
(:mop-direct ql-gunzipper::decompression-error :superclass
 common-lisp:simple-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::zlib-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::deflate-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::decompression-error :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::decompression-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct ql-gunzipper::decompression-error :classof sb-pcl::condition-class)
(:mop-direct ql-gunzipper::decompression-error :typeof sb-pcl::condition-class)
(:mop-direct ql-gunzipper::decompression-error :superclass
 common-lisp:simple-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :package-name
 "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::gzip-decompression-error :precedance
 (ql-gunzipper::decompression-error common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::gzip-decompression-error :classof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::gzip-decompression-error :typeof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::gzip-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::gzip-decompression-error :prototype
 #<ql-gunzipper::gzip-decompression-error {1003AB8273}>)
(:mop-direct ql-gunzipper::zlib-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::zlib-decompression-error :package-name
 "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::zlib-decompression-error :precedance
 (ql-gunzipper::decompression-error common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::zlib-decompression-error :classof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::zlib-decompression-error :typeof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::zlib-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::zlib-decompression-error :prototype
 #<ql-gunzipper::zlib-decompression-error {1003AC1713}>)
(:mop-direct ql-gunzipper::deflate-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::deflate-decompression-error :package-name
 "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::deflate-decompression-error :precedance
 (ql-gunzipper::decompression-error common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::deflate-decompression-error :classof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::deflate-decompression-error :typeof
 sb-pcl::condition-class)
(:mop-direct ql-gunzipper::deflate-decompression-error :superclass
 ql-gunzipper::decompression-error)
(:mop-direct ql-gunzipper::deflate-decompression-error :prototype
 #<ql-gunzipper::deflate-decompression-error {1003ACAEB3}>)
(:mop-direct ql-gunzipper::decompression-error :prototype
 #<ql-gunzipper::decompression-error {1003ACC893}>)
(:mop-direct asdf/action:operation-definition-error :superclass
 common-lisp:simple-error)
(:mop-direct asdf/action:operation-definition-error :package-name "ASDF/ACTION")
(:mop-direct asdf/action:operation-definition-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct asdf/action:operation-definition-error :classof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-error :typeof
 sb-pcl::condition-class)
(:mop-direct asdf/action:operation-definition-error :superclass
 common-lisp:simple-error)
(:mop-direct asdf/action:operation-definition-error :prototype
 #<asdf/action:operation-definition-error {1003AD5123}>)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::long-method-combination-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::long-method-combination-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::long-method-combination-error :prototype
 #<sb-pcl::long-method-combination-error {10079F1443}>)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :package-name "SB-PCL")
(:mop-direct sb-pcl::find-method-length-mismatch :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::find-method-length-mismatch :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::find-method-length-mismatch :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::find-method-length-mismatch :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::find-method-length-mismatch :prototype
 #<sb-pcl::find-method-length-mismatch {10079F13E3}>)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :package-name "SB-PCL")
(:mop-direct sb-pcl::metaobject-initialization-violation :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::metaobject-initialization-violation :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::metaobject-initialization-violation :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::metaobject-initialization-violation :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::metaobject-initialization-violation :prototype
 #<sb-pcl::metaobject-initialization-violation {10079F13C3}>)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 sb-int:reference-condition)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :package-name "SB-PCL")
(:mop-direct sb-pcl::unset-funcallable-instance-function :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::unset-funcallable-instance-function :classof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::unset-funcallable-instance-function :typeof
 sb-pcl::condition-class)
(:mop-direct sb-pcl::unset-funcallable-instance-function :superclass
 common-lisp:simple-error)
(:mop-direct sb-pcl::unset-funcallable-instance-function :prototype
 #<sb-pcl::unset-funcallable-instance-function {10079F11D3}>)
(:mop-direct sb-eval::compiler-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::compiler-environment-too-complex-error :package-name
 "SB-EVAL")
(:mop-direct sb-eval::compiler-environment-too-complex-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-eval::compiler-environment-too-complex-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::compiler-environment-too-complex-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-eval::compiler-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::compiler-environment-too-complex-error :prototype
 #<sb-eval::compiler-environment-too-complex-error {1003AFF793}>)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :package-name
 "SB-EVAL")
(:mop-direct sb-eval::interpreter-environment-too-complex-error :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-eval::interpreter-environment-too-complex-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-eval::interpreter-environment-too-complex-error :prototype
 #<sb-eval::interpreter-environment-too-complex-error {1003B061D3}>)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel:declaration-type-conflict-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:declaration-type-conflict-error :classof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:declaration-type-conflict-error :typeof
 sb-pcl::condition-class)
(:mop-direct sb-kernel:declaration-type-conflict-error :superclass
 common-lisp:simple-error)
(:mop-direct sb-kernel:declaration-type-conflict-error :prototype
 #<sb-kernel:declaration-type-conflict-error
   "symbol ~S cannot be both the name of a type and the name of a declaration"
   {10079E81C3}>)
(:mop-direct sb-int:extension-failure :superclass sb-int:reference-condition)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :package-name "SB-INT")
(:mop-direct sb-int:extension-failure :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:extension-failure :classof sb-pcl::condition-class)
(:mop-direct sb-int:extension-failure :typeof sb-pcl::condition-class)
(:mop-direct sb-int:extension-failure :superclass common-lisp:simple-error)
(:mop-direct sb-int:extension-failure :prototype
 #<sb-int:extension-failure {10079E8063}>)
(:mop-direct sb-int:simple-reference-error :superclass
 sb-int:reference-condition)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :package-name "SB-INT")
(:mop-direct sb-int:simple-reference-error :precedance
 (sb-int:reference-condition common-lisp:simple-error
  common-lisp:simple-condition common-lisp:error common-lisp:serious-condition
  common-lisp:condition sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:simple-reference-error :classof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-error :typeof sb-pcl::condition-class)
(:mop-direct sb-int:simple-reference-error :superclass common-lisp:simple-error)
(:mop-direct sb-int:simple-reference-error :prototype
 #<sb-int:simple-reference-error {10079E7E83}>)
(:mop-direct sb-int:unsupported-operator :superclass common-lisp:simple-error)
(:mop-direct sb-int:unsupported-operator :package-name "SB-INT")
(:mop-direct sb-int:unsupported-operator :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:unsupported-operator :classof sb-pcl::condition-class)
(:mop-direct sb-int:unsupported-operator :typeof sb-pcl::condition-class)
(:mop-direct sb-int:unsupported-operator :superclass common-lisp:simple-error)
(:mop-direct sb-int:unsupported-operator :prototype
 #<sb-int:unsupported-operator {1003B22003}>)
(:mop-direct sb-int:bug :superclass common-lisp:simple-error)
(:mop-direct sb-int:bug :package-name "SB-INT")
(:mop-direct sb-int:bug :precedance
 (common-lisp:simple-error common-lisp:simple-condition common-lisp:error
  common-lisp:serious-condition common-lisp:condition sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:bug :classof sb-pcl::condition-class)
(:mop-direct sb-int:bug :typeof sb-pcl::condition-class)
(:mop-direct sb-int:bug :superclass common-lisp:simple-error)
(:mop-direct sb-int:bug :prototype #<sb-int:bug {1003B28913}>)
(:mop-direct common-lisp:simple-error :prototype
 #<common-lisp:simple-error {1003B29A63}>)
(:mop-direct common-lisp:error :prototype #<common-lisp:error {10045D22D3}>)
(:mop-direct common-lisp:serious-condition :prototype
 #<common-lisp:serious-condition {10045D32D3}>)
(:mop-direct common-lisp:condition :prototype
 #<common-lisp:condition {100123D6C3}>)
(:mop-direct sb-pcl::slot-object :prototype #<sb-pcl::slot-object {1001242733}>)
(:mop-direct common-lisp:sequence :superclass common-lisp:t)
(:mop-direct common-lisp:list :superclass common-lisp:sequence)
(:mop-direct common-lisp:vector :superclass common-lisp:sequence)
(:mop-direct common-lisp:sequence :package-name "COMMON-LISP")
(:mop-direct common-lisp:sequence :classof sb-pcl:system-class)
(:mop-direct common-lisp:sequence :typeof sb-pcl:system-class)
(:mop-direct common-lisp:sequence :superclass common-lisp:t)
(:mop-direct common-lisp:list :superclass common-lisp:sequence)
(:mop-direct common-lisp:cons :superclass common-lisp:list)
(:mop-direct common-lisp:null :superclass common-lisp:list)
(:mop-direct common-lisp:list :package-name "COMMON-LISP")
(:mop-direct common-lisp:list :precedance (common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:list :classof common-lisp:built-in-class)
(:mop-direct common-lisp:list :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:list :superclass common-lisp:sequence)
(:mop-direct common-lisp:cons :superclass common-lisp:list)
(:mop-direct common-lisp:cons :package-name "COMMON-LISP")
(:mop-direct common-lisp:cons :precedance
 (common-lisp:list common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:cons :classof common-lisp:built-in-class)
(:mop-direct common-lisp:cons :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:cons :superclass common-lisp:list)
(:mop-direct common-lisp:cons :prototype (common-lisp:nil))
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:null :superclass common-lisp:list)
(:mop-direct common-lisp:null :package-name "COMMON-LISP")
(:mop-direct common-lisp:null :precedance
 (common-lisp:symbol common-lisp:list common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:null :classof common-lisp:built-in-class)
(:mop-direct common-lisp:null :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:null :superclass common-lisp:list)
(:mop-direct common-lisp:null :prototype common-lisp:nil)
(:mop-direct common-lisp:list :prototype 42)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:vector :superclass common-lisp:sequence)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:vector :precedance
 (common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:vector :superclass common-lisp:sequence)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-vector :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :prototype #())
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:bit-vector :precedance
 (common-lisp:vector common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-bit-vector :precedance
 (common-lisp:bit-vector common-lisp:vector common-lisp:simple-array
  common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :prototype #*)
(:mop-direct common-lisp:bit-vector :prototype #*)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-8 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-8 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-16 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-16 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-fixnum :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-fixnum :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-32 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-32 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-64 :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-64 :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-single-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-single-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-double-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-double-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-single-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-single-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :package-name
 "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-double-float :precedance
 (common-lisp:vector common-lisp:simple-array common-lisp:array
                     common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-double-float :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
 common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :prototype #())
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct common-lisp:string :package-name "COMMON-LISP")
(:mop-direct common-lisp:string :precedance
 (common-lisp:vector common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:simple-array
                     common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
 (sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
 (common-lisp:base-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
 (sb-kernel::character-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct common-lisp:simple-string :prototype 42)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::vector-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::vector-nil :precedance
 (common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
                     common-lisp:t))
(:mop-direct sb-kernel::vector-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::vector-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
 (sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct sb-kernel::vector-nil :prototype "")
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:base-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
                     common-lisp:t))
(:mop-direct common-lisp:base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
 common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
 (common-lisp:base-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct common-lisp:base-string :prototype "")
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::character-string :precedance
 (common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
                     common-lisp:t))
(:mop-direct sb-kernel::character-string :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::character-string :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
 common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
 (sb-kernel::character-string common-lisp:simple-string common-lisp:string
  common-lisp:vector common-lisp:simple-array common-lisp:array
  common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
 common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
 sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct sb-kernel::character-string :prototype "")
(:mop-direct common-lisp:string :prototype 42)
(:mop-direct common-lisp:vector :prototype 42)
(:mop-direct common-lisp:sequence :prototype
 #<common-lisp:sequence {100128E103}>)
(:mop-direct common-lisp:stream :superclass common-lisp:t)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:stream)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:stream)
(:mop-direct common-lisp:string-stream :superclass common-lisp:stream)
(:mop-direct common-lisp:file-stream :superclass common-lisp:stream)
(:mop-direct common-lisp:stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:stream :classof sb-pcl:system-class)
(:mop-direct common-lisp:stream :typeof sb-pcl:system-class)
(:mop-direct common-lisp:stream :superclass common-lisp:t)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:stream)
(:mop-direct sb-gray:fundamental-binary-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-output-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-input-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-stream :precedance
 (common-lisp:standard-object sb-pcl::slot-object common-lisp:stream
  common-lisp:t))
(:mop-direct sb-gray:fundamental-stream :classof common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-stream :typeof common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:stream)
(:mop-direct sb-gray:fundamental-stream :slot
 ((:name sb-gray::open-p) (:ordinal 1) (:initform common-lisp:t)
  (:readers (sb-gray::stream-open-p))
  (:writers ((common-lisp:setf sb-gray::stream-open-p)))))
(:mop-direct sb-gray:fundamental-binary-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-character-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :package-name
 "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-stream :prototype
 #<sb-gray:fundamental-character-stream {10079F1A33}>)
(:mop-direct sb-gray:fundamental-output-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-output-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-output-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :package-name
 "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-output-stream :precedance
 (sb-gray:fundamental-output-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-output-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
 sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-output-stream :prototype
 #<sb-gray:fundamental-output-stream {10079F1A53}>)
(:mop-direct sb-gray:fundamental-input-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-input-stream :precedance
 (sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-input-stream :superclass
 sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-binary-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-input-stream :precedance
 (sb-gray:fundamental-input-stream sb-gray:fundamental-character-stream
  sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
  common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-input-stream :classof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :typeof
 common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
 sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-input-stream :prototype
 #<sb-gray:fundamental-input-stream {10079F1A73}>)
(:mop-direct sb-gray:fundamental-stream :prototype
 #<sb-gray:fundamental-stream {10079DF2D3}>)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:stream)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:structure-object)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::case-frob-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:concatenated-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:two-way-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:broadcast-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:synonym-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-pretty:pretty-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-kernel:ansi-stream :package-name "SB-KERNEL")
(:mop-direct sb-kernel:ansi-stream :precedance
 (common-lisp:stream common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-kernel:ansi-stream :classof common-lisp:structure-class)
(:mop-direct sb-kernel:ansi-stream :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:stream)
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::in-buffer) (:ordinal 1)
  (:type (common-lisp:or sb-kernel:ansi-stream-in-buffer common-lisp:null))))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::cin-buffer) (:ordinal 2)
  (:type (common-lisp:or sb-impl::ansi-stream-cin-buffer common-lisp:null))))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::in-index) (:ordinal 3)
  (:initform sb-impl::+ansi-stream-in-buffer-length+)
  (:type (common-lisp:integer 0 512))))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::in) (:ordinal 4) (:initform #'sb-kernel:ill-in)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::bin) (:ordinal 5) (:initform #'sb-kernel:ill-bin)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 6) (:initform #'sb-kernel:ill-bin)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::out) (:ordinal 7) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::bout) (:ordinal 8) (:initform #'sb-kernel:ill-bout)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::sout) (:ordinal 9) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::misc) (:ordinal 10) (:initform #'sb-impl::no-op-placeholder)
  (:type common-lisp:function)))
(:mop-direct sb-kernel:ansi-stream :slot
 ((:name sb-impl::input-char-pos) (:ordinal 11)))
(:mop-direct sb-sys:fd-stream :superclass common-lisp:file-stream)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-sys:fd-stream :package-name "SB-SYS")
(:mop-direct sb-sys:fd-stream :precedance
 (common-lisp:file-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:fd-stream :classof common-lisp:structure-class)
(:mop-direct sb-sys:fd-stream :typeof common-lisp:structure-class)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::misc) (:ordinal 1)
  (:initform #'sb-impl::fd-stream-misc-routine) (:type common-lisp:function)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::name) (:ordinal 2)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::file) (:ordinal 3)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::original) (:ordinal 4)
  (:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::delete-original) (:ordinal 5)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::element-size) (:ordinal 6) (:initform 1)
  (:type sb-int:index)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::element-type) (:ordinal 7)
  (:initform 'common-lisp:base-char)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::fd) (:ordinal 8) (:initform -1) (:type common-lisp:fixnum)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::fd-type) (:ordinal 9) (:initform :unknown)
  (:type common-lisp:keyword)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::buffering) (:ordinal 10) (:initform :full)
  (:type (common-lisp:member :full :line :none))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::dual-channel-p) (:ordinal 11)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-column) (:ordinal 12)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name common-lisp:listen) (:ordinal 13)
  (:type (common-lisp:member common-lisp:nil common-lisp:t :eof))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::serve-events) (:ordinal 14) (:type common-lisp:boolean)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::instead) (:ordinal 15)
  (:initform
   (common-lisp:make-array 0 :element-type 'common-lisp:character :adjustable
                           common-lisp:t :fill-pointer common-lisp:t))
  (:type (common-lisp:array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::ibuf) (:ordinal 16)
  (:type (common-lisp:or sb-impl::buffer common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::eof-forced-p) (:ordinal 17)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::obuf) (:ordinal 18)
  (:type (common-lisp:or sb-impl::buffer common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-queue) (:ordinal 19)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::handler) (:ordinal 20)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-ext:timeout) (:ordinal 21)
  (:type (common-lisp:or common-lisp:single-float common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name common-lisp:pathname) (:ordinal 22)
  (:type (common-lisp:or common-lisp:pathname common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::external-format) (:ordinal 23) (:initform :latin-1)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::char-size) (:ordinal 24) (:initform 1)
  (:type (common-lisp:or common-lisp:fixnum common-lisp:function))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-bytes) (:ordinal 25) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::bivalent-p) (:ordinal 26) (:type common-lisp:boolean)))
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-int:form-tracking-stream :package-name "SB-INT")
(:mop-direct sb-int:form-tracking-stream :precedance
 (sb-sys:fd-stream common-lisp:file-stream sb-kernel:ansi-stream
  common-lisp:stream common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:form-tracking-stream :classof common-lisp:structure-class)
(:mop-direct sb-int:form-tracking-stream :typeof common-lisp:structure-class)
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::misc) (:ordinal 1)
  (:initform #'sb-impl::tracking-stream-misc) (:type common-lisp:function)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::input-char-pos) (:ordinal 2) (:initform 0)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::observer) (:ordinal 3)
  (:initform
   (common-lisp:lambda (sb-impl::x sb-impl::y sb-impl::z)
     (common-lisp:declare
      (common-lisp:ignore sb-impl::x sb-impl::y sb-impl::z))))
  (:type common-lisp:function)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::newlines) (:ordinal 4)
  (:initform
   (common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::last-newline) (:ordinal 5) (:initform -1)
  (:type sb-kernel:index-or-minus-1)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::form-start-byte-pos) (:ordinal 6)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::form-start-char-pos) (:ordinal 7)))
(:mop-direct sb-int:form-tracking-stream :prototype
 #<sb-int:form-tracking-stream for 0 {10079E1893}>)
(:mop-direct sb-sys:fd-stream :prototype #<sb-sys:fd-stream for 0 {10079E1683}>)
(:mop-direct sb-impl::case-frob-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::case-frob-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::case-frob-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::case-frob-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::case-frob-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::case-frob-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::case-frob-stream :slot
 ((:name sb-impl::misc) (:ordinal 1) (:initform #'sb-impl::case-frob-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::case-frob-stream :slot
 ((:name sb-impl::target) (:ordinal 2) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct sb-impl::case-frob-stream :prototype
 #<sb-impl::case-frob-stream {10079E11F3}>)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::fill-pointer-output-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::fill-pointer-output-stream :classof
 common-lisp:structure-class)
(:mop-direct sb-impl::fill-pointer-output-stream :typeof
 common-lisp:structure-class)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::fill-pointer-ouch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::sout) (:ordinal 2) (:initform #'sb-impl::fill-pointer-sout)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::misc) (:ordinal 3) (:initform #'sb-impl::fill-pointer-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name common-lisp:string) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-impl::string-with-fill-pointer)))
(:mop-direct sb-impl::fill-pointer-output-stream :prototype
 #<sb-impl::fill-pointer-output-stream {10079E10A3}>)
(:mop-direct sb-impl::string-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::string-output-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::string-output-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::string-output-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::string-ouch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::sout) (:ordinal 2) (:initform #'sb-impl::string-sout)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::misc) (:ordinal 3) (:initform #'sb-impl::string-out-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::buffer) (:ordinal 4)
  (:initform
   (common-lisp:make-string
    sb-impl::*string-output-stream-buffer-initial-size*))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::prev) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::next) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::pointer) (:ordinal 7) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-int:index) (:ordinal 8) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::index-cache) (:ordinal 9) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::element-type) (:ordinal 10)
  (:initform 'common-lisp:character) (:type sb-kernel:type-specifier)))
(:mop-direct sb-impl::string-output-stream :prototype
 #<sb-impl::string-output-stream {10079E0F23}>)
(:mop-direct sb-impl::string-input-stream :superclass common-lisp:string-stream)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::string-input-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::string-input-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::string-input-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::string-inch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::misc) (:ordinal 2) (:initform #'sb-impl::string-in-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name common-lisp:string) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-string)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::current) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::end) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::string-input-stream :prototype
 #<sb-impl::string-input-stream {10079E0DC3}>)
(:mop-direct common-lisp:concatenated-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:concatenated-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:concatenated-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:concatenated-stream :classof
 common-lisp:structure-class)
(:mop-direct common-lisp:concatenated-stream :typeof
 common-lisp:structure-class)
(:mop-direct common-lisp:concatenated-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::concatenated-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::concatenated-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::concatenated-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::misc) (:ordinal 4) (:initform #'sb-impl::concatenated-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:concatenated-stream :slot
 ((:name sb-impl::streams) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct common-lisp:concatenated-stream :prototype
 #<common-lisp:concatenated-stream :STREAMS 0 {10079DE223}>)
(:mop-direct common-lisp:two-way-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:echo-stream :superclass common-lisp:two-way-stream)
(:mop-direct common-lisp:two-way-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:two-way-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:two-way-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:two-way-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:two-way-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::two-way-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::two-way-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::two-way-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::out) (:ordinal 4) (:initform #'sb-impl::two-way-out)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::bout) (:ordinal 5) (:initform #'sb-impl::two-way-bout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::sout) (:ordinal 6) (:initform #'sb-impl::two-way-sout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::misc) (:ordinal 7) (:initform #'sb-impl::two-way-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::input-stream) (:ordinal 8) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct common-lisp:two-way-stream :slot
 ((:name sb-impl::output-stream) (:ordinal 9) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct common-lisp:echo-stream :superclass common-lisp:two-way-stream)
(:mop-direct common-lisp:echo-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:echo-stream :precedance
 (common-lisp:two-way-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:echo-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:echo-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:echo-stream :superclass common-lisp:two-way-stream)
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::echo-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::echo-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::echo-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::misc) (:ordinal 4) (:initform #'sb-impl::echo-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:echo-stream :slot
 ((:name sb-impl::unread-stuff) (:ordinal 5) (:type common-lisp:boolean)))
(:mop-direct common-lisp:echo-stream :prototype
 #<common-lisp:echo-stream :INPUT-STREAM 0 :OUTPUT-STREAM 0 {10079DE813}>)
(:mop-direct common-lisp:two-way-stream :prototype
 #<common-lisp:two-way-stream :input-stream 0 :output-stream 0>)
(:mop-direct common-lisp:broadcast-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:broadcast-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:broadcast-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:broadcast-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:broadcast-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:broadcast-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::broadcast-out)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::bout) (:ordinal 2) (:initform #'sb-impl::broadcast-bout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::sout) (:ordinal 3) (:initform #'sb-impl::broadcast-sout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::misc) (:ordinal 4) (:initform #'sb-impl::broadcast-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:broadcast-stream :slot
 ((:name sb-impl::streams) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct common-lisp:broadcast-stream :prototype
 #<common-lisp:broadcast-stream {10079DEC13}>)
(:mop-direct common-lisp:synonym-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:synonym-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:synonym-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:synonym-stream :classof common-lisp:structure-class)
(:mop-direct common-lisp:synonym-stream :typeof common-lisp:structure-class)
(:mop-direct common-lisp:synonym-stream :superclass sb-kernel:ansi-stream)
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::synonym-in)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::bin) (:ordinal 2) (:initform #'sb-impl::synonym-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::n-bin) (:ordinal 3) (:initform #'sb-impl::synonym-n-bin)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::out) (:ordinal 4) (:initform #'sb-impl::synonym-out)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::bout) (:ordinal 5) (:initform #'sb-impl::synonym-bout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::sout) (:ordinal 6) (:initform #'sb-impl::synonym-sout)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name sb-impl::misc) (:ordinal 7) (:initform #'sb-impl::synonym-misc)
  (:type common-lisp:function)))
(:mop-direct common-lisp:synonym-stream :slot
 ((:name common-lisp:symbol) (:ordinal 8) (:type common-lisp:symbol)))
(:mop-direct common-lisp:synonym-stream :prototype
 #<common-lisp:synonym-stream :SYMBOL 0 {10079DE373}>)
(:mop-direct sb-pretty:pretty-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-pretty:pretty-stream :package-name "SB-PRETTY")
(:mop-direct sb-pretty:pretty-stream :precedance
 (sb-kernel:ansi-stream common-lisp:stream common-lisp:structure-object
  sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty:pretty-stream :classof common-lisp:structure-class)
(:mop-direct sb-pretty:pretty-stream :typeof common-lisp:structure-class)
(:mop-direct sb-pretty:pretty-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::target) (:ordinal 1) (:initform (sb-int:missing-arg))
  (:type common-lisp:stream)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-kernel:line-length) (:ordinal 2)
  (:initform
   (common-lisp:or common-lisp:*print-right-margin*
                   (sb-kernel:line-length sb-pretty::target)
                   sb-pretty::default-line-length))
  (:type sb-pretty::column)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::char-out-oneshot-hook) (:ordinal 3)
  (:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer) (:ordinal 4)
  (:initform (common-lisp:make-string sb-pretty::initial-buffer-size))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer-fill-pointer) (:ordinal 5) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer-offset) (:ordinal 6) (:initform 0)
  (:type sb-pretty::posn)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::buffer-start-column) (:ordinal 7)
  (:initform (common-lisp:or (sb-kernel:charpos sb-pretty::target) 0))
  (:type sb-pretty::column)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::line-number) (:ordinal 8) (:initform 0)
  (:type sb-int:index)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::print-lines) (:ordinal 9)
  (:initform common-lisp:*print-lines*)
  (:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::blocks) (:ordinal 10)
  (:initform (common-lisp:list (sb-pretty::make-logical-block)))
  (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::prefix) (:ordinal 11)
  (:initform (common-lisp:make-string sb-pretty::initial-buffer-size))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::suffix) (:ordinal 12)
  (:initform (common-lisp:make-string sb-pretty::initial-buffer-size))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::queue-tail) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::queue-head) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :slot
 ((:name sb-pretty::pending-blocks) (:ordinal 15) (:type common-lisp:list)))
(:mop-direct sb-pretty:pretty-stream :prototype
 #<sb-pretty:pretty-stream {10079DFD03}>)
(:mop-direct sb-kernel:ansi-stream :prototype
 #<sb-kernel:ansi-stream {10079DFA93}>)
(:mop-direct common-lisp:string-stream :superclass common-lisp:stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::string-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::string-input-stream :superclass common-lisp:string-stream)
(:mop-direct common-lisp:string-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:string-stream :precedance
 (common-lisp:stream common-lisp:t))
(:mop-direct common-lisp:string-stream :classof sb-pcl:system-class)
(:mop-direct common-lisp:string-stream :typeof sb-pcl:system-class)
(:mop-direct common-lisp:string-stream :superclass common-lisp:stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 sb-kernel:ansi-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::fill-pointer-output-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::fill-pointer-output-stream :classof
 common-lisp:structure-class)
(:mop-direct sb-impl::fill-pointer-output-stream :typeof
 common-lisp:structure-class)
(:mop-direct sb-impl::fill-pointer-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::fill-pointer-ouch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::sout) (:ordinal 2) (:initform #'sb-impl::fill-pointer-sout)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name sb-impl::misc) (:ordinal 3) (:initform #'sb-impl::fill-pointer-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::fill-pointer-output-stream :slot
 ((:name common-lisp:string) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-impl::string-with-fill-pointer)))
(:mop-direct sb-impl::fill-pointer-output-stream :prototype
 #<sb-impl::fill-pointer-output-stream {10079E10A3}>)
(:mop-direct sb-impl::string-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::string-output-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-output-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::string-output-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::string-output-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::string-output-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::string-output-stream :superclass
 common-lisp:string-stream)
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::out) (:ordinal 1) (:initform #'sb-impl::string-ouch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::sout) (:ordinal 2) (:initform #'sb-impl::string-sout)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::misc) (:ordinal 3) (:initform #'sb-impl::string-out-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::buffer) (:ordinal 4)
  (:initform
   (common-lisp:make-string
    sb-impl::*string-output-stream-buffer-initial-size*))
  (:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::prev) (:ordinal 5) (:type common-lisp:list)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::next) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::pointer) (:ordinal 7) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-int:index) (:ordinal 8) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::index-cache) (:ordinal 9) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::string-output-stream :slot
 ((:name sb-impl::element-type) (:ordinal 10)
  (:initform 'common-lisp:character) (:type sb-kernel:type-specifier)))
(:mop-direct sb-impl::string-output-stream :prototype
 #<sb-impl::string-output-stream {10079E0F23}>)
(:mop-direct sb-impl::string-input-stream :superclass common-lisp:string-stream)
(:mop-direct sb-impl::string-input-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-impl::string-input-stream :package-name "SB-IMPL")
(:mop-direct sb-impl::string-input-stream :precedance
 (common-lisp:string-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::string-input-stream :classof common-lisp:structure-class)
(:mop-direct sb-impl::string-input-stream :typeof common-lisp:structure-class)
(:mop-direct sb-impl::string-input-stream :superclass common-lisp:string-stream)
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::in) (:ordinal 1) (:initform #'sb-impl::string-inch)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::misc) (:ordinal 2) (:initform #'sb-impl::string-in-misc)
  (:type common-lisp:function)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name common-lisp:string) (:ordinal 3) (:initform (sb-int:missing-arg))
  (:type common-lisp:simple-string)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::current) (:ordinal 4) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::string-input-stream :slot
 ((:name sb-impl::end) (:ordinal 5) (:initform (sb-int:missing-arg))
  (:type sb-int:index)))
(:mop-direct sb-impl::string-input-stream :prototype
 #<sb-impl::string-input-stream {10079E0DC3}>)
(:mop-direct common-lisp:string-stream :prototype
 #<common-lisp:string-stream {10012CA8A3}>)
(:mop-direct common-lisp:file-stream :superclass common-lisp:stream)
(:mop-direct sb-sys:fd-stream :superclass common-lisp:file-stream)
(:mop-direct common-lisp:file-stream :package-name "COMMON-LISP")
(:mop-direct common-lisp:file-stream :precedance
 (common-lisp:stream common-lisp:t))
(:mop-direct common-lisp:file-stream :classof sb-pcl:system-class)
(:mop-direct common-lisp:file-stream :typeof sb-pcl:system-class)
(:mop-direct common-lisp:file-stream :superclass common-lisp:stream)
(:mop-direct sb-sys:fd-stream :superclass common-lisp:file-stream)
(:mop-direct sb-sys:fd-stream :superclass sb-kernel:ansi-stream)
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-sys:fd-stream :package-name "SB-SYS")
(:mop-direct sb-sys:fd-stream :precedance
 (common-lisp:file-stream sb-kernel:ansi-stream common-lisp:stream
  common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-sys:fd-stream :classof common-lisp:structure-class)
(:mop-direct sb-sys:fd-stream :typeof common-lisp:structure-class)
(:mop-direct sb-sys:fd-stream :superclass common-lisp:file-stream)
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::misc) (:ordinal 1)
  (:initform #'sb-impl::fd-stream-misc-routine) (:type common-lisp:function)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::name) (:ordinal 2)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::file) (:ordinal 3)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::original) (:ordinal 4)
  (:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::delete-original) (:ordinal 5)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::element-size) (:ordinal 6) (:initform 1)
  (:type sb-int:index)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::element-type) (:ordinal 7)
  (:initform 'common-lisp:base-char)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::fd) (:ordinal 8) (:initform -1) (:type common-lisp:fixnum)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::fd-type) (:ordinal 9) (:initform :unknown)
  (:type common-lisp:keyword)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::buffering) (:ordinal 10) (:initform :full)
  (:type (common-lisp:member :full :line :none))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::dual-channel-p) (:ordinal 11)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-column) (:ordinal 12)
  (:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name common-lisp:listen) (:ordinal 13)
  (:type (common-lisp:member common-lisp:nil common-lisp:t :eof))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::serve-events) (:ordinal 14) (:type common-lisp:boolean)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::instead) (:ordinal 15)
  (:initform
   (common-lisp:make-array 0 :element-type 'common-lisp:character :adjustable
                           common-lisp:t :fill-pointer common-lisp:t))
  (:type (common-lisp:array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::ibuf) (:ordinal 16)
  (:type (common-lisp:or sb-impl::buffer common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::eof-forced-p) (:ordinal 17)
  (:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::obuf) (:ordinal 18)
  (:type (common-lisp:or sb-impl::buffer common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-queue) (:ordinal 19)))
(:mop-direct sb-sys:fd-stream :slot ((:name sb-impl::handler) (:ordinal 20)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-ext:timeout) (:ordinal 21)
  (:type (common-lisp:or common-lisp:single-float common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name common-lisp:pathname) (:ordinal 22)
  (:type (common-lisp:or common-lisp:pathname common-lisp:null))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::external-format) (:ordinal 23) (:initform :latin-1)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::char-size) (:ordinal 24) (:initform 1)
  (:type (common-lisp:or common-lisp:fixnum common-lisp:function))))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::output-bytes) (:ordinal 25) (:initform #'sb-kernel:ill-out)
  (:type common-lisp:function)))
(:mop-direct sb-sys:fd-stream :slot
 ((:name sb-impl::bivalent-p) (:ordinal 26) (:type common-lisp:boolean)))
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-int:form-tracking-stream :package-name "SB-INT")
(:mop-direct sb-int:form-tracking-stream :precedance
 (sb-sys:fd-stream common-lisp:file-stream sb-kernel:ansi-stream
  common-lisp:stream common-lisp:structure-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-int:form-tracking-stream :classof common-lisp:structure-class)
(:mop-direct sb-int:form-tracking-stream :typeof common-lisp:structure-class)
(:mop-direct sb-int:form-tracking-stream :superclass sb-sys:fd-stream)
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::misc) (:ordinal 1)
  (:initform #'sb-impl::tracking-stream-misc) (:type common-lisp:function)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::input-char-pos) (:ordinal 2) (:initform 0)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::observer) (:ordinal 3)
  (:initform
   (common-lisp:lambda (sb-impl::x sb-impl::y sb-impl::z)
     (common-lisp:declare
      (common-lisp:ignore sb-impl::x sb-impl::y sb-impl::z))))
  (:type common-lisp:function)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::newlines) (:ordinal 4)
  (:initform
   (common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::last-newline) (:ordinal 5) (:initform -1)
  (:type sb-kernel:index-or-minus-1)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::form-start-byte-pos) (:ordinal 6)))
(:mop-direct sb-int:form-tracking-stream :slot
 ((:name sb-impl::form-start-char-pos) (:ordinal 7)))
(:mop-direct sb-int:form-tracking-stream :prototype
 #<sb-int:form-tracking-stream for 0 {10079E1893}>)
(:mop-direct sb-sys:fd-stream :prototype #<sb-sys:fd-stream for 0 {10079E1683}>)
(:mop-direct common-lisp:file-stream :prototype
 #<common-lisp:file-stream {10012937D3}>)
(:mop-direct common-lisp:stream :prototype #<common-lisp:stream {10012C4AB3}>)
(:mop-direct common-lisp:function :superclass common-lisp:t)
(:mop-direct sb-pcl::ctor :superclass common-lisp:function)
(:mop-direct sb-eval:interpreted-function :superclass common-lisp:function)
(:mop-direct sb-pcl::standard-funcallable-instance :superclass
 common-lisp:function)
(:mop-direct sb-pcl::%method-function :superclass common-lisp:function)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:function)
(:mop-direct common-lisp:function :package-name "COMMON-LISP")
(:mop-direct common-lisp:function :classof sb-pcl:system-class)
(:mop-direct common-lisp:function :typeof sb-pcl:system-class)
(:mop-direct common-lisp:function :superclass common-lisp:t)
(:mop-direct sb-pcl::ctor :superclass common-lisp:function)
(:mop-direct sb-pcl::ctor :package-name "SB-PCL")
(:mop-direct sb-pcl::ctor :precedance #'common-lisp:t)
(:mop-direct sb-pcl::ctor :classof common-lisp:structure-class)
(:mop-direct sb-pcl::ctor :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::ctor :superclass common-lisp:function)
(:mop-direct sb-pcl::ctor :slot ((:name sb-pcl::function-name) (:ordinal 1)))
(:mop-direct sb-pcl::ctor :slot ((:name sb-pcl::class-or-name) (:ordinal 2)))
(:mop-direct sb-pcl::ctor :slot ((:name common-lisp:class) (:ordinal 3)))
(:mop-direct sb-pcl::ctor :slot ((:name sb-pcl::initargs) (:ordinal 4)))
(:mop-direct sb-pcl::ctor :slot ((:name sb-pcl::state) (:ordinal 5)))
(:mop-direct sb-pcl::ctor :slot ((:name sb-pcl::safe-p) (:ordinal 6)))
(:mop-direct sb-pcl::ctor :prototype #<sb-pcl::ctor 0 0>)
(:mop-direct sb-eval:interpreted-function :superclass common-lisp:function)
(:mop-direct sb-eval:interpreted-function :package-name "SB-EVAL")
(:mop-direct sb-eval:interpreted-function :precedance #'common-lisp:t)
(:mop-direct sb-eval:interpreted-function :classof common-lisp:structure-class)
(:mop-direct sb-eval:interpreted-function :typeof common-lisp:structure-class)
(:mop-direct sb-eval:interpreted-function :superclass common-lisp:function)
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::name) (:ordinal 1)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::debug-name) (:ordinal 2)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::lambda-list) (:ordinal 3)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::debug-lambda-list) (:ordinal 4)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::env) (:ordinal 5)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::declarations) (:ordinal 6)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name common-lisp:documentation) (:ordinal 7)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::body) (:ordinal 8)))
(:mop-direct sb-eval:interpreted-function :slot
 ((:name sb-eval::source-location) (:ordinal 9)))
(:mop-direct sb-eval:interpreted-function :prototype #<interpreted-function 0>)
(:mop-direct sb-pcl::standard-funcallable-instance :superclass
 common-lisp:function)
(:mop-direct sb-pcl::standard-funcallable-instance :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-funcallable-instance :precedance #'common-lisp:t)
(:mop-direct sb-pcl::standard-funcallable-instance :classof
 common-lisp:structure-class)
(:mop-direct sb-pcl::standard-funcallable-instance :typeof
 common-lisp:structure-class)
(:mop-direct sb-pcl::standard-funcallable-instance :superclass
 common-lisp:function)
(:mop-direct sb-pcl::standard-funcallable-instance :slot
 ((:name sb-pcl::clos-slots) (:ordinal 1)))
(:mop-direct sb-pcl::standard-funcallable-instance :slot
 ((:name sb-pcl::hash-code) (:ordinal 2)))
(:mop-direct sb-pcl::standard-funcallable-instance :prototype
 #<sb-pcl::standard-funcallable-instance {10048CF53B}>)
(:mop-direct sb-pcl::%method-function :superclass common-lisp:function)
(:mop-direct sb-pcl::%method-function :package-name "SB-PCL")
(:mop-direct sb-pcl::%method-function :precedance #'common-lisp:t)
(:mop-direct sb-pcl::%method-function :classof common-lisp:structure-class)
(:mop-direct sb-pcl::%method-function :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::%method-function :superclass common-lisp:function)
(:mop-direct sb-pcl::%method-function :slot
 ((:name sb-pcl::fast-function) (:ordinal 1)))
(:mop-direct sb-pcl::%method-function :slot ((:name sb-pcl::name) (:ordinal 2)))
(:mop-direct sb-pcl::%method-function :prototype
 #<sb-pcl::%method-function {10048D673B}>)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:function)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:standard-object)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct sb-mop:funcallable-standard-object :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-object :precedance
 (common-lisp:function common-lisp:standard-object sb-pcl::slot-object
  common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-object :classof
 sb-mop:funcallable-standard-class)
(:mop-direct sb-mop:funcallable-standard-object :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct sb-mop:funcallable-standard-object :superclass
 common-lisp:function)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
 sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
 (sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
 sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::initial-methods) (:ordinal 2)
  (:readers (sb-pcl::generic-function-initial-methods))
  (:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
 ((:name sb-pcl::encapsulations) (:ordinal 3)
  (:readers (sb-pcl::generic-function-encapsulations))
  (:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
 (common-lisp:generic-function sb-pcl::dependent-update-mixin
  sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
 common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
  (:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
  (:readers (sb-mop:generic-function-methods))
  (:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
  (:readers (sb-mop:generic-function-method-class))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%method-combination) (:ordinal 4)
  (:initargs (:method-combination))
  (:readers (sb-mop:generic-function-method-combination))
  (:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::declarations) (:ordinal 5)
  (:initargs (:declare :declarations))
  (:readers (sb-mop:generic-function-declarations))
  (:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
  (:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
  (:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::%lock) (:ordinal 8)
  (:initform (sb-thread:make-mutex :name "GF lock"))
  (:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
 ((:name sb-pcl::info-needs-update) (:ordinal 9)
  (:readers (sb-pcl::gf-info-needs-update))
  (:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
 ((:method-class sb-pcl::*the-class-standard-method*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294207B}>)
  (:method-combination sb-pcl::*standard-method-combination*
   #<FUNCTION (common-lisp:lambda ()
                :in
                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")
     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
 (common-lisp:standard-generic-function common-lisp:generic-function
  sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
  sb-pcl::definition-source-mixin sb-mop:metaobject
  sb-mop:funcallable-standard-object common-lisp:function
  common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
 sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
 common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
 #<closer-mop:standard-generic-function {1007B8E96B}>)
(:mop-direct common-lisp:standard-generic-function :prototype
 #<common-lisp:standard-generic-function {10012846CB}>)
(:mop-direct common-lisp:generic-function :prototype
 #<common-lisp:generic-function {100127F4BB}>)
(:mop-direct sb-mop:funcallable-standard-object :prototype
 #<sb-mop:funcallable-standard-object {100126230B}>)
(:mop-direct common-lisp:function :prototype
 #<common-lisp:function {10012C5CE3}>)
(:mop-direct common-lisp:t :prototype #<common-lisp:t {10001DC4F3}>)


This is SBCL 1.3.1.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.
To load "closer-mop":
  Load 1 ASDF system:
    closer-mop
; Loading "closer-mop"


; file: /home/dmiles/logicmoo_workspace/packs_usr/wam_common_lisp/t/reference/sbcl.info
; in: DEFUN SLOT-INFO
;     (INCF *SLOTNO*)
; ==>
;   (SETQ *SLOTNO* (+ 1 *SLOTNO*))
;
; caught WARNING:
;   undefined variable: *SLOTNO*
;
; compilation unit finished
;   Undefined variable:
;     *SLOTNO*
;   caught 1 WARNING condition

; in: DEFUN PRINT-PSV-MAYBE
;     (PRINT-PSV STR A B)
;
; caught STYLE-WARNING:
;   undefined function: PRINT-PSV
;
; compilation unit finished
;   Undefined function:
;     PRINT-PSV
;   caught 1 STYLE-WARNING condition

; in: DEFUN PRINT-SUBCLASSES
;     (SETQ *SLOTNO* 0)
;
; caught WARNING:
;   undefined variable: *SLOTNO*
;
; compilation unit finished
;   Undefined variable:
;     *SLOTNO*
;   caught 1 WARNING condition

(:mop-direct ql-bundle:bundle :default-initargs ((:requested-systems common-lisp:nil   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000D05A2B}>)  (:creation-time (ql-bundle::iso8601-time-stamp)   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/bundle.lisp")     {10057D141B}>)  (:release-table (common-lisp:make-hash-table :test 'common-lisp:equalp)   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/bundle.lisp")     {10057D115B}>)  (:system-table (common-lisp:make-hash-table :test 'common-lisp:equalp)   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/bundle.lisp")     {10057D115B}>)))
(:mop-direct quicklisp-client::client-tar-file-info :default-initargs ((:plist-key :client-tar   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/client-info.lisp")     {100568D32B}>)  (:name "quicklisp.tar"   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/client-info.lisp")     {100568CFFB}>)))
(:mop-direct quicklisp-client::setup-file-info :default-initargs ((:plist-key :setup   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/client-info.lisp")     {1005686CFB}>)  (:name "setup.lisp"   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/client-info.lisp")     {10056869DB}>)))
(:mop-direct quicklisp-client::asdf-file-info :default-initargs ((:plist-key :asdf   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/client-info.lisp")     {100568523B}>)  (:name "asdf.lisp"   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/client-info.lisp")     {1005684F0B}>)))
(:mop-direct ql-dist:system :default-initargs ((:metadata-name "systems"   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")     {1005525AFB}>)))
(:mop-direct ql-dist:release :default-initargs ((:metadata-name "releases"   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")     {100549C3AB}>)))
(:mop-direct ql-dist:dist :default-initargs ((:name "unnamed"   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")     {100540B94B}>)  (:version "unknown"   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/dist.lisp")     {100540B62B}>)  (:distinfo-subscription-url common-lisp:nil   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000D05A2B}>)))
(:mop-direct ql-cdb::cdb-writer :default-initargs ((:end-of-records-position 2048   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/cdb.lisp")     {100535E17B}>)  (:buckets   (common-lisp:map-into (common-lisp:make-array 256)                         (common-lisp:lambda ()                           (common-lisp:make-instance                            'ql-cdb::hash-table-bucket)))   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/cdb.lisp")     {100535DDEB}>)))
(:mop-direct ql-cdb::hash-table-bucket :default-initargs ((:table-position 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:entries (ql-cdb::make-growable-vector)   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/cdb.lisp")     {100533810B}>)))
(:mop-direct ql-cdb::record-pointer :default-initargs ((:hash-value 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:record-position 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)))
(:mop-direct ql-http::octet-sink :default-initargs ((:storage   (common-lisp:make-array 1024 :element-type 'ql-http::octet :fill-pointer 0                           :adjustable common-lisp:t)   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/http.lisp")     {1004FFAC7B}>)))
(:mop-direct ql-http::cbuf :default-initargs ((:data (ql-http::make-octet-vector ql-http::*cbuf-buffer-size*)   #<FUNCTION (common-lisp:lambda () :in "/root/quicklisp/quicklisp/http.lisp")     {1004FB068B}>)  (:connection common-lisp:nil   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000D05A2B}>)  (:start 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:end 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:eofp common-lisp:nil   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000D05A2B}>)))
(:mop-direct ql-progress::progress-bar :default-initargs ((:progress-character #\=   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F1668B}>)  (:character-count 50   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F163FB}>)  (:characters-so-far 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:update-interval   (common-lisp:floor common-lisp:internal-time-units-per-second 4)   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F1603B}>)  (:last-update-time 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:total 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:progress 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:pending 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)))
(:mop-direct ql-progress::uncertain-size-progress-bar :default-initargs ((:total 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:progress-char-index 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:units-per-char (common-lisp:floor (common-lisp:expt 1024 2) 50)   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F5F86B}>)  (:progress-character #\=   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F1668B}>)  (:character-count 50   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F163FB}>)  (:characters-so-far 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:update-interval   (common-lisp:floor common-lisp:internal-time-units-per-second 4)   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/progress.lisp")     {1004F1603B}>)  (:last-update-time 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:progress 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)  (:pending 0   #<CLOSURE (common-lisp:lambda (common-lisp:&rest sb-impl::arguments)               :in               common-lisp:constantly)     {1000CE2A9B}>)))
(:mop-direct sb-bsd-sockets:socket :default-initargs ((:type (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/contrib/sb-bsd-sockets/sockets.lisp")     {1004A1594B}>)))
(:mop-direct sb-bsd-sockets:inet-socket :default-initargs ((:type (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/contrib/sb-bsd-sockets/sockets.lisp")     {1004A1594B}>)))
(:mop-direct sb-bsd-sockets:inet6-socket :default-initargs ((:type (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/contrib/sb-bsd-sockets/sockets.lisp")     {1004A1594B}>)))
(:mop-direct sb-bsd-sockets:local-socket :default-initargs ((:type (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/contrib/sb-bsd-sockets/sockets.lisp")     {1004A1594B}>)))
(:mop-direct sb-bsd-sockets:local-abstract-socket :default-initargs ((:type (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/contrib/sb-bsd-sockets/sockets.lisp")     {1004A1594B}>)))
(:mop-direct sb-mop:funcallable-standard-class :default-initargs ((:direct-superclasses   (common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {1002941D9B}>)))
(:mop-direct common-lisp:standard-class :default-initargs ((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {1002941E9B}>)))
(:mop-direct common-lisp:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct sb-mop:funcallable-standard-class :default-initargs ((:direct-superclasses   (common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {1002941D9B}>)))
(:mop-direct common-lisp:standard-class :default-initargs ((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {1002941E9B}>)))
(:mop-direct common-lisp:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct sb-mop:funcallable-standard-class :default-initargs ((:direct-superclasses   (common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {1002941D9B}>)))
(:mop-direct common-lisp:standard-class :default-initargs ((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {1002941E9B}>)))
(:mop-direct common-lisp:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct common-lisp:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct sb-kernel::parse-deprecated-type :default-initargs ((:specifier (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;LATE-TYPE.LISP")     {1001D2178B}>)))
(:mop-direct sb-kernel:parse-unknown-type :default-initargs ((:specifier (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;LATE-TYPE.LISP")     {1001D215CB}>)))
(:mop-direct sb-kernel:ftype-proclamation-mismatch :default-initargs ((:kind 'common-lisp:ftype   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1AE7B}>)))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :default-initargs ((:description "known function"   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B3AB}>)  (:kind 'common-lisp:ftype   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B43B}>)))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :default-initargs ((:kind 'common-lisp:ftype   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1AE7B}>)))
(:mop-direct sb-kernel:type-proclamation-mismatch :default-initargs ((:kind 'common-lisp:type   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1A94B}>)))
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :default-initargs ((:kind 'common-lisp:type   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1A94B}>)))
(:mop-direct sb-c::input-error-in-load :default-initargs ((:invoker 'common-lisp:load   #<FUNCTION (common-lisp:lambda ()                :in                "SYS:SRC;COMPILER;COMPILER-ERROR.LISP")     {1001D22E0B}>)))
(:mop-direct sb-sequence::protocol-unimplemented :default-initargs ((:references '((:sbcl :node "Extensible Sequences"))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/sequence.lisp")     {1001D536FB}>)))
(:mop-direct sb-pcl::long-method-combination-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:define-method-combination))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defcombin.lisp")     {1001D526BB}>)))
(:mop-direct sb-pcl::print-object-stream-specializer :default-initargs ((:format-arguments (common-lisp:list 'common-lisp:print-object)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D5226B}>)  (:format-control "~@<Specializing on the second argument to ~S has ~                    unportable effects, and also interferes with ~                    precomputation of print functions for exceptional ~                    situations.~@:>"   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D5233B}>)  (:references   (common-lisp:list '(:ansi-cl :function common-lisp:print-object))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D523EB}>)))
(:mop-direct sb-pcl::new-value-specialization :default-initargs ((:references   (common-lisp:list '(:sbcl :node "Metaobject Protocol")                     '(:amop :generic-function                       (common-lisp:setf sb-mop:slot-value-using-class)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D51FCB}>)))
(:mop-direct sb-pcl::find-method-length-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :function common-lisp:find-method))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D51B5B}>)))
(:mop-direct sb-pcl::cpl-protocol-violation :default-initargs ((:references (common-lisp:list '(:sbcl :node "Metaobject Protocol"))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/std-class.lisp")     {1001D50D4B}>)))
(:mop-direct sb-pcl::initarg-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (7 1 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D502BB}>)))
(:mop-direct sb-pcl::slotd-initialization-error :default-initargs ((:references   (common-lisp:list '(:amop :initialization sb-mop:slot-definition))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D4F8BB}>)))
(:mop-direct sb-pcl::slotd-initialization-type-error :default-initargs ((:references   (common-lisp:list '(:amop :initialization sb-mop:slot-definition))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D4F8BB}>)))
(:mop-direct sb-pcl::no-primary-method :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (7 6 6 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/braid.lisp")     {1001D4EC5B}>)))
(:mop-direct sb-pcl::unset-funcallable-instance-function :default-initargs ((:references   (common-lisp:list '(:amop :generic-function common-lisp:allocate-instance)                     '(:amop :function                       sb-mop:set-funcallable-instance-function))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/braid.lisp")     {1001D3D3EB}>)))
(:mop-direct sb-pcl::specialized-lambda-list-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 4 3)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/boot.lisp")     {1001D3B16B}>)))
(:mop-direct sb-pcl::generic-function-lambda-list-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 4 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/boot.lisp")     {1001D3A20B}>)))
(:mop-direct sb-impl::save-condition :default-initargs ((:references (common-lisp:list '(:sbcl :node "Saving a Core Image"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;SAVE.LISP")     {1001D2FABB}>)))
(:mop-direct sb-impl::save-error :default-initargs ((:references (common-lisp:list '(:sbcl :node "Saving a Core Image"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;SAVE.LISP")     {1001D2FABB}>)))
(:mop-direct sb-impl::save-with-multiple-threads-error :default-initargs ((:references (common-lisp:list '(:sbcl :node "Saving a Core Image"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;SAVE.LISP")     {1001D2FABB}>)))
(:mop-direct sb-ext:name-conflict :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (11 1 1 2 5)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;TARGET-PACKAGE.LISP")     {1001D2F06B}>)))
(:mop-direct sb-format:format-error :default-initargs ((:references common-lisp:nil   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;FORMAT-DIRECTIVE.LISP")     {1001D1DFFB}>)))
(:mop-direct sb-ext:deprecation-condition :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-ext:deprecation-error :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-ext:final-deprecation-warning :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-ext:late-deprecation-warning :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-ext:early-deprecation-warning :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-kernel:declaration-type-conflict-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 8 21)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1745B}>)  (:format-control   "symbol ~S cannot be both the name of a type and the name of a declaration"   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1752B}>)))
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :default-initargs ((:references `((:ansi-cl :glossary "standard pprint dispatch table"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D16B6B}>)))
(:mop-direct sb-int:standard-readtable-modified-error :default-initargs ((:references   `((:ansi-cl :section (2 1 1 2)) (:ansi-cl :glossary "standard readtable"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1689B}>)))
(:mop-direct sb-kernel:nil-array-accessed-error :default-initargs ((:references   (common-lisp:list    '(:ansi-cl :function common-lisp:upgraded-array-element-type)    '(:ansi-cl :section (15 1 2 1)) '(:ansi-cl :section (15 1 2 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D157DB}>)))
(:mop-direct sb-kernel:bounding-indices-bad-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :glossary "bounding index designator")                     '(:ansi-cl :issue "SUBSEQ-OUT-OF-BOUNDS:IS-AN-ERROR"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1543B}>)))
(:mop-direct sb-int:invalid-array-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :function common-lisp:adjust-array))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D14DCB}>)))
(:mop-direct sb-int:structure-initarg-not-keyword :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (2 4 8 13)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D138CB}>)))
(:mop-direct sb-int:format-args-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:format-too-many-args-warning :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:format-too-few-args-warning :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:local-argument-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12C6B}>)))
(:mop-direct sb-int:type-style-warning :default-initargs ((:references (common-lisp:list '(:sbcl :node "Handling of Types"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D129CB}>)))
(:mop-direct sb-int:type-warning :default-initargs ((:references (common-lisp:list '(:sbcl :node "Handling of Types"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1271B}>)))
(:mop-direct sb-int:array-initial-element-mismatch :default-initargs ((:references   (common-lisp:list '(:ansi-cl :function common-lisp:make-array)                     '(:ansi-cl :function                       common-lisp:upgraded-array-element-type))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1244B}>)))
(:mop-direct sb-ext:defconstant-uneql :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:defconstant)                     '(:sbcl :node "Idiosyncrasies"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1213B}>)))
(:mop-direct sb-int:package-at-variance-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :macro common-lisp:defpackage))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D11D1B}>)))
(:mop-direct sb-int:package-at-variance :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:defpackage)                     '(:sbcl :variable sb-ext:*on-package-variance*))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D11A1B}>)))
(:mop-direct sb-int:constant-modified :default-initargs ((:references   (common-lisp:list '(:ansi-cl :special-operator common-lisp:quote)                     '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1176B}>)))
(:mop-direct sb-int:duplicate-definition :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D112BB}>)))
(:mop-direct sb-pcl::specialized-lambda-list-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 4 3)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/boot.lisp")     {1001D3B16B}>)))
(:mop-direct sb-pcl::generic-function-lambda-list-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 4 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/boot.lisp")     {1001D3A20B}>)))
(:mop-direct sb-int:package-at-variance-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :macro common-lisp:defpackage))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D11D1B}>)))
(:mop-direct sb-int:structure-initarg-not-keyword :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (2 4 8 13)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D138CB}>)))
(:mop-direct sb-int:format-too-many-args-warning :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:type-style-warning :default-initargs ((:references (common-lisp:list '(:sbcl :node "Handling of Types"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D129CB}>)))
(:mop-direct sb-pcl::long-method-combination-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:define-method-combination))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defcombin.lisp")     {1001D526BB}>)))
(:mop-direct sb-pcl::find-method-length-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :function common-lisp:find-method))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D51B5B}>)))
(:mop-direct sb-pcl::unset-funcallable-instance-function :default-initargs ((:references   (common-lisp:list '(:amop :generic-function common-lisp:allocate-instance)                     '(:amop :function                       sb-mop:set-funcallable-instance-function))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/braid.lisp")     {1001D3D3EB}>)))
(:mop-direct sb-kernel:declaration-type-conflict-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 8 21)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1745B}>)  (:format-control   "symbol ~S cannot be both the name of a type and the name of a declaration"   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1752B}>)))
(:mop-direct sb-pcl::print-object-stream-specializer :default-initargs ((:format-arguments (common-lisp:list 'common-lisp:print-object)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D5226B}>)  (:format-control "~@<Specializing on the second argument to ~S has ~                    unportable effects, and also interferes with ~                    precomputation of print functions for exceptional ~                    situations.~@:>"   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D5233B}>)  (:references   (common-lisp:list '(:ansi-cl :function common-lisp:print-object))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D523EB}>)))
(:mop-direct sb-int:format-too-few-args-warning :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:local-argument-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12C6B}>)))
(:mop-direct sb-int:type-warning :default-initargs ((:references (common-lisp:list '(:sbcl :node "Handling of Types"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1271B}>)))
(:mop-direct sb-int:array-initial-element-mismatch :default-initargs ((:references   (common-lisp:list '(:ansi-cl :function common-lisp:make-array)                     '(:ansi-cl :function                       common-lisp:upgraded-array-element-type))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1244B}>)))
(:mop-direct sb-int:package-at-variance :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:defpackage)                     '(:sbcl :variable sb-ext:*on-package-variance*))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D11A1B}>)))
(:mop-direct sb-ext:final-deprecation-warning :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-ext:late-deprecation-warning :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-int:constant-modified :default-initargs ((:references   (common-lisp:list '(:ansi-cl :special-operator common-lisp:quote)                     '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1176B}>)))
(:mop-direct sb-int:duplicate-definition :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D112BB}>)))
(:mop-direct sb-pcl::print-object-stream-specializer :default-initargs ((:format-arguments (common-lisp:list 'common-lisp:print-object)   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D5226B}>)  (:format-control "~@<Specializing on the second argument to ~S has ~                    unportable effects, and also interferes with ~                    precomputation of print functions for exceptional ~                    situations.~@:>"   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D5233B}>)  (:references   (common-lisp:list '(:ansi-cl :function common-lisp:print-object))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D523EB}>)))
(:mop-direct sb-int:format-too-few-args-warning :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:local-argument-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 2 2 3)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12C6B}>)))
(:mop-direct sb-int:type-warning :default-initargs ((:references (common-lisp:list '(:sbcl :node "Handling of Types"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1271B}>)))
(:mop-direct sb-int:array-initial-element-mismatch :default-initargs ((:references   (common-lisp:list '(:ansi-cl :function common-lisp:make-array)                     '(:ansi-cl :function                       common-lisp:upgraded-array-element-type))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1244B}>)))
(:mop-direct sb-int:package-at-variance :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:defpackage)                     '(:sbcl :variable sb-ext:*on-package-variance*))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D11A1B}>)))
(:mop-direct sb-c:compiler-macro-application-missed-warning :default-initargs ((:function (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;COMPILER;IR1REPORT.LISP")     {1001D2AE8B}>)  (:count (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;COMPILER;IR1REPORT.LISP")     {1001D2AF2B}>)))
(:mop-direct sb-ext:early-deprecation-warning :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-warning :default-initargs ((:kind 'common-lisp:ftype   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1AE7B}>)))
(:mop-direct sb-kernel:type-proclamation-mismatch-warning :default-initargs ((:kind 'common-lisp:type   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1A94B}>)))
(:mop-direct sb-int:structure-initarg-not-keyword :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (2 4 8 13)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D138CB}>)))
(:mop-direct sb-int:format-too-many-args-warning :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (22 3 10 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D12EEB}>)))
(:mop-direct sb-int:type-style-warning :default-initargs ((:references (common-lisp:list '(:sbcl :node "Handling of Types"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D129CB}>)))
(:mop-direct ql-bundle:object-not-found :default-initargs ((:type "Object"   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/bundle.lisp")     {100579018B}>)))
(:mop-direct ql-bundle:release-not-found :default-initargs ((:type "Release"   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/bundle.lisp")     {10057B5F6B}>)))
(:mop-direct ql-bundle:system-not-found :default-initargs ((:type "System"   #<FUNCTION (common-lisp:lambda ()                :in                "/root/quicklisp/quicklisp/bundle.lisp")     {10057A45FB}>)))
(:mop-direct sb-pcl::new-value-specialization :default-initargs ((:references   (common-lisp:list '(:sbcl :node "Metaobject Protocol")                     '(:amop :generic-function                       (common-lisp:setf sb-mop:slot-value-using-class)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D51FCB}>)))
(:mop-direct sb-pcl::cpl-protocol-violation :default-initargs ((:references (common-lisp:list '(:sbcl :node "Metaobject Protocol"))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/std-class.lisp")     {1001D50D4B}>)))
(:mop-direct sb-pcl::slotd-initialization-error :default-initargs ((:references   (common-lisp:list '(:amop :initialization sb-mop:slot-definition))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D4F8BB}>)))
(:mop-direct sb-pcl::slotd-initialization-type-error :default-initargs ((:references   (common-lisp:list '(:amop :initialization sb-mop:slot-definition))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D4F8BB}>)))
(:mop-direct sb-pcl::no-primary-method :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (7 6 6 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/braid.lisp")     {1001D4EC5B}>)))
(:mop-direct sb-impl::save-error :default-initargs ((:references (common-lisp:list '(:sbcl :node "Saving a Core Image"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;SAVE.LISP")     {1001D2FABB}>)))
(:mop-direct sb-impl::save-with-multiple-threads-error :default-initargs ((:references (common-lisp:list '(:sbcl :node "Saving a Core Image"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;SAVE.LISP")     {1001D2FABB}>)))
(:mop-direct sb-format:format-error :default-initargs ((:references common-lisp:nil   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;FORMAT-DIRECTIVE.LISP")     {1001D1DFFB}>)))
(:mop-direct sb-ext:deprecation-error :default-initargs ((:references '((:sbcl :node "Deprecation Conditions"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B8EB}>)  (:version (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B97B}>)  (:software (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BA1B}>)  (:replacements (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BABB}>)  (:name (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BB5B}>)  (:namespace (sb-int:missing-arg)   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1BBFB}>)))
(:mop-direct sb-kernel:ftype-proclamation-mismatch-error :default-initargs ((:description "known function"   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B3AB}>)  (:kind 'common-lisp:ftype   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1B43B}>)))
(:mop-direct sb-int:standard-pprint-dispatch-table-modified-error :default-initargs ((:references `((:ansi-cl :glossary "standard pprint dispatch table"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D16B6B}>)))
(:mop-direct sb-int:standard-readtable-modified-error :default-initargs ((:references   `((:ansi-cl :section (2 1 1 2)) (:ansi-cl :glossary "standard readtable"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1689B}>)))
(:mop-direct sb-ext:defconstant-uneql :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:defconstant)                     '(:sbcl :node "Idiosyncrasies"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1213B}>)))
(:mop-direct sb-ext:name-conflict :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (11 1 1 2 5)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;TARGET-PACKAGE.LISP")     {1001D2F06B}>)))
(:mop-direct sb-int:package-at-variance-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :macro common-lisp:defpackage))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D11D1B}>)))
(:mop-direct sb-c::input-error-in-load :default-initargs ((:invoker 'common-lisp:load   #<FUNCTION (common-lisp:lambda ()                :in                "SYS:SRC;COMPILER;COMPILER-ERROR.LISP")     {1001D22E0B}>)))
(:mop-direct sb-c::input-error-in-load :default-initargs ((:invoker 'common-lisp:load   #<FUNCTION (common-lisp:lambda ()                :in                "SYS:SRC;COMPILER;COMPILER-ERROR.LISP")     {1001D22E0B}>)))
(:mop-direct sb-pcl::initarg-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (7 1 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D502BB}>)))
(:mop-direct sb-pcl::specialized-lambda-list-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 4 3)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/boot.lisp")     {1001D3B16B}>)))
(:mop-direct sb-pcl::generic-function-lambda-list-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 4 2)))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/boot.lisp")     {1001D3A20B}>)))
(:mop-direct sb-sequence::protocol-unimplemented :default-initargs ((:references '((:sbcl :node "Extensible Sequences"))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/sequence.lisp")     {1001D536FB}>)))
(:mop-direct sb-pcl::slotd-initialization-type-error :default-initargs ((:references   (common-lisp:list '(:amop :initialization sb-mop:slot-definition))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/init.lisp")     {1001D4F8BB}>)))
(:mop-direct sb-kernel:nil-array-accessed-error :default-initargs ((:references   (common-lisp:list    '(:ansi-cl :function common-lisp:upgraded-array-element-type)    '(:ansi-cl :section (15 1 2 1)) '(:ansi-cl :section (15 1 2 2)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D157DB}>)))
(:mop-direct sb-kernel:bounding-indices-bad-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :glossary "bounding index designator")                     '(:ansi-cl :issue "SUBSEQ-OUT-OF-BOUNDS:IS-AN-ERROR"))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1543B}>)))
(:mop-direct sb-int:invalid-array-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :function common-lisp:adjust-array))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D14DCB}>)))
(:mop-direct sb-pcl::long-method-combination-error :default-initargs ((:references   (common-lisp:list '(:ansi-cl :macro common-lisp:define-method-combination))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defcombin.lisp")     {1001D526BB}>)))
(:mop-direct sb-pcl::find-method-length-mismatch :default-initargs ((:references (common-lisp:list '(:ansi-cl :function common-lisp:find-method))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/methods.lisp")     {1001D51B5B}>)))
(:mop-direct sb-pcl::unset-funcallable-instance-function :default-initargs ((:references   (common-lisp:list '(:amop :generic-function common-lisp:allocate-instance)                     '(:amop :function                       sb-mop:set-funcallable-instance-function))   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/braid.lisp")     {1001D3D3EB}>)))
(:mop-direct sb-kernel:declaration-type-conflict-error :default-initargs ((:references (common-lisp:list '(:ansi-cl :section (3 8 21)))   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1745B}>)  (:format-control   "symbol ~S cannot be both the name of a type and the name of a declaration"   #<FUNCTION (common-lisp:lambda () :in "SYS:SRC;CODE;CONDITION.LISP")     {1001D1752B}>)))
(:mop-direct common-lisp:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))
(:mop-direct closer-mop:standard-generic-function :default-initargs ((:method-class sb-pcl::*the-class-standard-method*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294207B}>)  (:method-combination sb-pcl::*standard-method-combination*   #<FUNCTION (common-lisp:lambda ()                :in                "/build/sbcl-X2E_zI/sbcl-1.3.1/src/pcl/defs.lisp")     {100294211B}>)))


|#