﻿; -*-Lisp-*-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Description:  customization for Mold Base module
; Language:     Lisp
; Package:      MOLDBASE-UI
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(in-package :moldbase-ui)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;   SET-MOLD-BASE-VISIBLE-CATALOG-LIST
;;
;; With the license for the Mold Base module the user can choose one catalog
;; out of the list of available catalogs. To get all catalogs an
;; additional license is required.
;; The catalog data will be used for mold and component creation and 
;; modification.
;;
;; parameter: one of the following keywords:
;;             :DME-mm
;;             :DME-inch
;;             :EOC
;;             :HASCO-mm
;;             :HASCO-inch
;;             :MEUSBURGER
;;             :NATIONAL
;;             :PCSUSA
;;             :PEDROTTI
;;             :RABOURDIN
;;             :STRAK
;;             :SIDECO
;;             :PROGRESSIVE  - not yet supported
;;             :FUTABA
;;             :MISUMI
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(set-mold-base-visible-catalog-list :DME-mm)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;   SET-MOLD-BASE-COMPONENT-SECURE-PART-FLAG
;;
;; Set the behaviour of standard components in 2D Annotation section views.
;; Per default those parts are kept intact within a section view. The parameter
;; for the corresponding group of parts is set to 't'. If the part should be
;; sectioned then set the parameter to 'nil'.
;; The following groups of components exist:
;; (Please have a look into the component library help pages for further description
;; of existing components and groups. This list is structured like the entries in
;; the component browser in new group creation dialog.)
;;
;;    guide-pins (leader-pin, guide-pin, bushing, locating-sleeve, angular-pin)
;;    screws     (cap-screw, countersunk-screw, shoulder-screw, set-screw)
;;    ejectors   (ejector, ejector-pin, ejector-sleeve, flat-ejector)
;;    spacers    (stop-pin, stop-disc)
;;    injection  (locating-ring, sprue-bushing)
;;    cooling    (o-ring1, o-ring2)
;;    general    (support-pillar)
;;    dowel-pins (dowel-pin, tubular-dowel-pin)
;;    interlocks (tapered-interlock-female, shoulder-plate1,
;;                tapered-interlock-male, shoulder-plate2)
;;    springs    (spring)
;;    date-stamps (date-stamp, year-date-stamp, shift-stamp, 
;;                 day-date-stamp, week-date-stamp)

;; 
;; The value can be spefied either for the complete group of components or for every
;; single component type by itself. The values in parentheses show the names of
;; the keywords for the single components which belong to the group on the left side.
;;
;; The system defined default value is 't' for every group of components. This
;; means that all components are not sectioned in a section view in
;; 2D Annotation. If you need any other behaviour set the value to 'nil' for
;; the corresponding parameter.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(set-mold-base-component-secure-part-flag
  ;;----------------------------------
  ;; :guide-pins
  :leader-pin      t
  :guide-pin       t 
  :bushing         nil
  :locating-sleeve nil
  :angular-pin     t
  ;;----------------------------------
  :screws t       ; == complete group
  ;; :cap-screw         t
  ;; :countersunk-screw t
  ;; :shoulder-screw    t
  ;; :set-screw         t
  ;;----------------------------------
  ;; :ejectors
  :ejector        t
  :ejector-pin    t
  :ejector-sleeve nil
  :flat-ejector   t
  ;;----------------------------------
  :spacers nil    ; == complete group
  ;; :stop-pin  nil
  ;; :stop-disc nil
  ;;----------------------------------
  :injection nil  ; == complete group
  ;; :locating-ring nil
  ;; :sprue-bushing nil
  ;;----------------------------------
  :cooling nil    ; == complete group
  ;; :o-ring1 nil
  ;; :o-ring2 nil
  ;;----------------------------------
  :general nil    ; == complete group
  ;; :support-pillar nil
  ;;----------------------------------
  ;; :dowel-pins
  :dowel-pin         t
  :tubular-dowel-pin nil
  ;;----------------------------------
  :interlocks nil ; == complete group
  ;; :tapered-interlock-female nil
  ;; :shoulder-plate1          nil
  ;; :tapered-interlock-male   nil
  ;; :shoulder-plate2          nil
  ;;----------------------------------
  :springs t      ; == complete group
  ;; :spring t
  ;;----------------------------------
  :date-stamps t  ; == complete group
  ;; :date-stamp      t
  ;; :year-date-stamp t
  ;; :shift-stamp     t
  ;; :day-date-stamp  t
  ;; :week-date-stamp t
  )


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;		User components registration
;;
;;	Add each new user component here.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "HZL001"
  :package-file "HotRunners/HZL/HZL_001.pkg"
  :type "HZL"
  :description "HotRunner of type HZL"
  :symbol "HZL_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "HZL002"
  :package-file "HotRunners/HZL/HZL_002.pkg"
  :type "HZL"
  :description "HotRunner of type HZL"
  :symbol "HZL_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "HZL003"
  :package-file "HotRunners/HZL/HZL_003.pkg"
  :type "HZL"
  :description "HotRunner of type HZL"
  :symbol "HZL_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "HZL004"
  :package-file "HotRunners/HZL/HZL_004.pkg"
  :type "HZL"
  :description "HotRunner of type HZL"
  :symbol "HZL_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "HZL005"
  :package-file "HotRunners/HZL/HZL_005.pkg"
  :type "HZL"
  :description "HotRunner of type HZL"
  :symbol "HZL_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "HZL006"
  :package-file "HotRunners/HZL/HZL_006.pkg"
  :type "HZL"
  :description "HotRunner of type HZL"
  :symbol "HZL_A"
  :material "1.1730"
  :heat-treat "56HRC"
)
;;-------------------------------------------------------
(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL001"
  :package-file "HotRunners/NZL/NZL_001.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL002"
  :package-file "HotRunners/NZL/NZL_002.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL003"
  :package-file "HotRunners/NZL/NZL_003.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL004"
  :package-file "HotRunners/NZL/NZL_004.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL005"
  :package-file "HotRunners/NZL/NZL_005.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL006"
  :package-file "HotRunners/NZL/NZL_006.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL007"
  :package-file "HotRunners/NZL/NZL_007.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL008"
  :package-file "HotRunners/NZL/NZL_008.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL009"
  :package-file "HotRunners/NZL/NZL_009.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL010"
  :package-file "HotRunners/NZL/NZL_010.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL011"
  :package-file "HotRunners/NZL/NZL_011.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL012"
  :package-file "HotRunners/NZL/NZL_012.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL013"
  :package-file "HotRunners/NZL/NZL_013.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL014"
  :package-file "HotRunners/NZL/NZL_014.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "HotRunner"
  :catalog "UserCat1"
  :catalog-number "NZL015"
  :package-file "HotRunners/NZL/NZL_015.pkg"
  :type "NZL"
  :description "HotRunner of type NZL"
  :symbol "NZL_B"
  :material "1.1730"
  :heat-treat "56HRC"
)

;;-----------------------------------------------

(register-user-component 
  :component "GSlides"
  :catalog "UserCat2"
  :catalog-number "GSLDN50100"
  :package-file "MySlides/GSlides/GSLDN50100.pkg"
  :type "A"
  :description "HotRunner of type NZL"
  :symbol "GSlides_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "GSlides"
  :catalog "UserCat2"
  :catalog-number "GSLDN50120"
  :package-file "MySlides/GSlides/GSLDN50120.pkg"
  :type "A"
  :description "HotRunner of type NZL"
  :symbol "GSlides_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "GSlides"
  :catalog "UserCat2"
  :catalog-number "GSLDW50100"
  :package-file "MySlides/GSlides/GSLDW50100.pkg"
  :type "A"
  :description "HotRunner of type NZL"
  :symbol "GSlides_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

(register-user-component 
  :component "GSlides"
  :catalog "UserCat2"
  :catalog-number "GSLDW50120"
  :package-file "MySlides/GSlides/GSLDW50120.pkg"
  :type "A"
  :description "HotRunner of type NZL"
  :symbol "GSlides_A"
  :material "1.1730"
  :heat-treat "56HRC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "DeflectionElement"
  :catalog "HASCO"
  :catalog-number "Z964_6_16"
  :package-file "DeflectionElements/HASCO/Z964/Z964_6_16.pkg"
  :type "Z964"
  :description "Deflection Element"
  :symbol "Z964"
  :material "vITON_T MAX=200"
  :heat-treat "-"
)
(register-user-component 
  :component "DeflectionElement"
  :catalog "HASCO"
  :catalog-number "Z964_8_18"
  :package-file "DeflectionElements/HASCO/Z964/Z964_8_18.pkg"
  :type "Z964"
  :description "Deflection Element"
  :symbol "Z964"
  :material "vITON_T MAX=200"
  :heat-treat "-"
)
(register-user-component 
  :component "DeflectionElement"
  :catalog "HASCO"
  :catalog-number "Z964_10_20"
  :package-file "DeflectionElements/HASCO/Z964/Z964_10_20.pkg"
  :type "Z964"
  :description "Deflection Element"
  :symbol "Z964"
  :material "vITON_T MAX=200"
  :heat-treat "-"
)
(register-user-component 
  :component "DeflectionElement"
  :catalog "HASCO"
  :catalog-number "Z964_12_22"
  :package-file "DeflectionElements/HASCO/Z964/Z964_12_22.pkg"
  :type "Z964"
  :description "Deflection Element"
  :symbol "Z964"
  :material "vITON_T MAX=200"
  :heat-treat "-"
)
;;----------------------------------------------------------------

(register-user-component 
  :component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_6_16"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_6_16.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
  :component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_6_32"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_6_32.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
:component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_8_18"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_8_18.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
:component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_8_36"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_8_36.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
:component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_10_20"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_10_20.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
:component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_10_40"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_10_40.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
:component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_12_22"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_12_22.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)
(register-user-component 
:component "DeflectionElement"
  :catalog "MEUSBURGER"
  :catalog-number "E2135_12_44"
  :package-file "DeflectionElements/MEUSBURGER/E2135/E2135_12_44.pkg"
  :type "E2135"
  :description "Deflection Element"
  :symbol "E2135"
  :material "vITON_T MAX=160"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_8"
  :package-file "EyeScrews/DME_EOC/RM/RM_8.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_10"
  :package-file "EyeScrews/DME_EOC/RM/RM_10.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_12"
  :package-file "EyeScrews/DME_EOC/RM/RM_12.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_14"
  :package-file "EyeScrews/DME_EOC/RM/RM_14.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_16"
  :package-file "EyeScrews/DME_EOC/RM/RM_16.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_18"
  :package-file "EyeScrews/DME_EOC/RM/RM_18.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_20"
  :package-file "EyeScrews/DME_EOC/RM/RM_20.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_22"
  :package-file "EyeScrews/DME_EOC/RM/RM_22.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_24"
  :package-file "EyeScrews/DME_EOC/RM/RM_24.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_27"
  :package-file "EyeScrews/DME_EOC/RM/RM_27.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_30"
  :package-file "EyeScrews/DME_EOC/RM/RM_30.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "DME-EOC"
  :catalog-number "RM_36"
  :package-file "EyeScrews/DME_EOC/RM/RM_36.pkg"
  :type "RM"
  :description "eyebolts"
  :symbol "RM"
  :material "SM DIN 580"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_8"
  :package-file "EyeScrews/HASCO/Z71/Z71_8.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_10"
  :package-file "EyeScrews/HASCO/Z71/Z71_10.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_12"
  :package-file "EyeScrews/HASCO/Z71/Z71_12.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_16"
  :package-file "EyeScrews/HASCO/Z71/Z71_16.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_20"
  :package-file "EyeScrews/HASCO/Z71/Z71_20.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_24"
  :package-file "EyeScrews/HASCO/Z71/Z71_24.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "HASCO"
  :catalog-number "Z71_30"
  :package-file "EyeScrews/HASCO/Z71/Z71_30.pkg"
  :type "Z71"
  :description "EyeScrew"
  :symbol "Z71"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_10"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_10.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_12"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_12.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_16"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_16.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_20"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_20.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_24"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_24.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_30"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_30.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MEUSBURGER"
  :catalog-number "E1270_36"
  :package-file "EyeScrews/MEUSBURGER/E1270/E1270_36.pkg"
  :type "E1270"
  :description "EyeScrew"
  :symbol "E1270"
  :material "C15 DIN 580"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_6"
  :package-file "EyeScrews/MISUMI/CHI/CHI_6.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_8"
  :package-file "EyeScrews/MISUMI/CHI/CHI_8.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_10"
  :package-file "EyeScrews/MISUMI/CHI/CHI_10.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_12"
  :package-file "EyeScrews/MISUMI/CHI/CHI_12.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_16"
  :package-file "EyeScrews/MISUMI/CHI/CHI_16.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_20"
  :package-file "EyeScrews/MISUMI/CHI/CHI_20.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_24"
  :package-file "EyeScrews/MISUMI/CHI/CHI_24.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_30"
  :package-file "EyeScrews/MISUMI/CHI/CHI_30.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_36"
  :package-file "EyeScrews/MISUMI/CHI/CHI_36.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_42"
  :package-file "EyeScrews/MISUMI/CHI/CHI_42.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "MISUMI"
  :catalog-number "CHI_48"
  :package-file "EyeScrews/MISUMI/CHI/CHI_48.pkg"
  :type "CHI"
  :description "EyeScrew"
  :symbol "CHI"
  :material "SS400"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_6"
  :package-file "EyeScrews/RABOURDIN/1022/1022_6.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_8"
  :package-file "EyeScrews/RABOURDIN/1022/1022_8.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_10"
  :package-file "EyeScrews/RABOURDIN/1022/1022_10.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_12"
  :package-file "EyeScrews/RABOURDIN/1022/1022_12.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_14"
  :package-file "EyeScrews/RABOURDIN/1022/1022_14.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_16"
  :package-file "EyeScrews/RABOURDIN/1022/1022_16.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_18"
  :package-file "EyeScrews/RABOURDIN/1022/1022_18.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_20"
  :package-file "EyeScrews/RABOURDIN/1022/1022_20.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_22"
  :package-file "EyeScrews/RABOURDIN/1022/1022_22.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_24"
  :package-file "EyeScrews/RABOURDIN/1022/1022_24.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_27"
  :package-file "EyeScrews/RABOURDIN/1022/1022_27.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_30"
  :package-file "EyeScrews/RABOURDIN/1022/1022_30.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_33"
  :package-file "EyeScrews/RABOURDIN/1022/1022_33.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_36"
  :package-file "EyeScrews/RABOURDIN/1022/1022_36.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_39"
  :package-file "EyeScrews/RABOURDIN/1022/1022_39.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "RABOURDIN"
  :catalog-number "1022_42"
  :package-file "EyeScrews/RABOURDIN/1022/1022_42.pkg"
  :type "1022"
  :description "EyeScrew"
  :symbol "1022"
  :material "Acier cadmie"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_8"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_8.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_10"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_10.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_12"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_12.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_16"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_16.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_20"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_20.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_24"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_24.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)
(register-user-component 
  :component "EyeScrew"
  :catalog "STRACK"
  :catalog-number "Z4038_30"
  :package-file "EyeScrews/STRACK/Z4038/Z4038_30.pkg"
  :type "Z4038"
  :description "EyeScrew"
  :symbol "Z4038"
  :material "1.0401 DIN 580"
  :heat-treat "-"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "FW_45_40"
  :package-file "SideLocks/DME_EOC/FW45/FW_45_40.pkg"
  :type "FW45"
  :description "Side Locks"
  :symbol "FW45"
  :material "1.7131"
  :heat-treat "M_520-600 HV F_600-700 HV"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "FW_45_50"
  :package-file "SideLocks/DME_EOC/FW45/FW_45_50.pkg"
  :type "FW45"
  :description "Side Locks"
  :symbol "FW45"
  :material "1.7131"
  :heat-treat "M_520-600 HV F_600-700 HV"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "FW_45_75"
  :package-file "SideLocks/DME_EOC/FW45/FW_45_75.pkg"
  :type "FW45"
  :description "Side Locks"
  :symbol "FW45"
  :material "1.7131"
  :heat-treat "M_520-600 HV F_600-700 HV"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "FW_45_100"
  :package-file "SideLocks/DME_EOC/FW45/FW_45_100.pkg"
  :type "FW45"
  :description "Side Locks"
  :symbol "FW45"
  :material "1.7131"
  :heat-treat "M_520-600 HV F_600-700 HV"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "FW_45_125"
  :package-file "SideLocks/DME_EOC/FW45/FW_45_125.pkg"
  :type "FW45"
  :description "Side Locks"
  :symbol "FW45"
  :material "1.7131"
  :heat-treat "M_520-600 HV F_600-700 HV"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "SSI_50"
  :package-file "SideLocks/DME_EOC/SSI/SSI_50.pkg"
  :type "SSI"
  :description "Side Locks"
  :symbol "SSI"
  :material "1.7131"
  :heat-treat "M_55-57 HRC F_600-700 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "SSI_75"
  :package-file "SideLocks/DME_EOC/SSI/SSI_75.pkg"
  :type "SSI"
  :description "Side Locks"
  :symbol "SSI"
  :material "1.7131"
  :heat-treat "M_55-57 HRC F_600-700 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "SSI_100"
  :package-file "SideLocks/DME_EOC/SSI/SSI_100.pkg"
  :type "SSI"
  :description "Side Locks"
  :symbol "SSI"
  :material "1.7131"
  :heat-treat "M_55-57 HRC F_600-700 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DME-EOC"
  :catalog-number "SSI_125"
  :package-file "SideLocks/DME_EOC/SSI/SSI_125.pkg"
  :type "SSI"
  :description "Side Locks"
  :symbol "SSI"
  :material "1.7131"
  :heat-treat "M_55-57 HRC F_600-700 HRC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "DMEinch"
  :catalog-number "PLM_PLF_1"
  :package-file "SideLocks/DMEinch/PLM_PLF/PLM_PLF_1.pkg"
  :type "PLM_PLF"
  :description "Side Locks"
  :symbol "PLM_PLF"
  :material "8620 steel"
  :heat-treat "M_50-55 RC F_55-60 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DMEinch"
  :catalog-number "PLM_PLF_2"
  :package-file "SideLocks/DMEinch/PLM_PLF/PLM_PLF_2.pkg"
  :type "PLM_PLF"
  :description "Side Locks"
  :symbol "PLM_PLF"
  :material "8620 steel"
  :heat-treat "M_50-55 RC F_55-60 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DMEinch"
  :catalog-number "PLM_PLF_3"
  :package-file "SideLocks/DMEinch/PLM_PLF/PLM_PLF_3.pkg"
  :type "PLM_PLF"
  :description "Side Locks"
  :symbol "PLM_PLF"
  :material "8620 steel"
  :heat-treat "M_50-55 RC F_55-60 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DMEinch"
  :catalog-number "PLM_PLF_4"
  :package-file "SideLocks/DMEinch/PLM_PLF/PLM_PLF_4.pkg"
  :type "PLM_PLF"
  :description "Side Locks"
  :symbol "PLM_PLF"
  :material "8620 steel"
  :heat-treat "M_50-55 RC F_55-60 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "DMEinch"
  :catalog-number "PLM_PLF_5"
  :package-file "SideLocks/DMEinch/PLM_PLF/PLM_PLF_5.pkg"
  :type "PLM_PLF"
  :description "Side Locks"
  :symbol "PLM_PLF"
  :material "8620 steel"
  :heat-treat "M_50-55 RC F_55-60 RC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "MEUSBURGER"
  :catalog-number "E1304_40"
  :package-file "SideLocks/MEUSBURGER/E1304/E1304_40.pkg"
  :type "E1304"
  :description "Side Locks"
  :symbol "E1304"
  :material "2379"
  :heat-treat "60 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "MEUSBURGER"
  :catalog-number "E1304_50"
  :package-file "SideLocks/MEUSBURGER/E1304/E1304_50.pkg"
  :type "E1304"
  :description "Side Locks"
  :symbol "E1304"
  :material "2379"
  :heat-treat "60 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "MEUSBURGER"
  :catalog-number "E1304_64"
  :package-file "SideLocks/MEUSBURGER/E1304/E1304_64.pkg"
  :type "E1304"
  :description "Side Locks"
  :symbol "E1304"
  :material "2379"
  :heat-treat "60 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "MEUSBURGER"
  :catalog-number "E1304_72"
  :package-file "SideLocks/MEUSBURGER/E1304/E1304_72.pkg"
  :type "E1304"
  :description "Side Locks"
  :symbol "E1304"
  :material "2379"
  :heat-treat "60 HRC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "MISUMI"
  :catalog-number "TSSB_20_6"
  :package-file "SideLocks/MISUMI/TSSB/TSSB_20_6.pkg"
  :type "TSSB"
  :description "Side Locks"
  :symbol "TSSB"
  :material "SKD11"
  :heat-treat "58~62 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "MISUMI"
  :catalog-number "TSSB_30_8"
  :package-file "SideLocks/MISUMI/TSSB/TSSB_30_8.pkg"
  :type "TSSB"
  :description "Side Locks"
  :symbol "TSSB"
  :material "SKD11"
  :heat-treat "58~62 HRC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "MISUMI"
  :catalog-number "TSSB_40_10"
  :package-file "SideLocks/MISUMI/TSSB/TSSB_40_10.pkg"
  :type "TSSB"
  :description "Side Locks"
  :symbol "TSSB"
  :material "SKD11"
  :heat-treat "58~62 HRC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_40"
  :package-file "SideLocks/NATIONAL/SL/SL_40.pkg"
  :type "SL"
  :description "Side Locks"
  :symbol "SL"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_50"
  :package-file "SideLocks/NATIONAL/SL/SL_50.pkg"
  :type "SL"
  :description "Side Locks"
  :symbol "SL"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_10A"
  :package-file "SideLocks/NATIONAL/SL_A/SL_10A.pkg"
  :type "SL_A"
  :description "Side Locks"
  :symbol "SL_A"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_15A"
  :package-file "SideLocks/NATIONAL/SL_A/SL_15A.pkg"
  :type "SL_A"
  :description "Side Locks"
  :symbol "SL_A"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_20A"
  :package-file "SideLocks/NATIONAL/SL_A/SL_20A.pkg"
  :type "SL_A"
  :description "Side Locks"
  :symbol "SL_A"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_30A"
  :package-file "SideLocks/NATIONAL/SL_A/SL_30A.pkg"
  :type "SL_A"
  :description "Side Locks"
  :symbol "SL_A"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_40A"
  :package-file "SideLocks/NATIONAL/SL_A/SL_40A.pkg"
  :type "SL_A"
  :description "Side Locks"
  :symbol "SL_A"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_50A"
  :package-file "SideLocks/NATIONAL/SL_A/SL_50A.pkg"
  :type "SL_A"
  :description "Side Locks"
  :symbol "SL_A"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_10K"
  :package-file "SideLocks/NATIONAL/SL_K/SL_10K.pkg"
  :type "SL_K"
  :description "Side Locks"
  :symbol "SL_K"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_15K"
  :package-file "SideLocks/NATIONAL/SL_K/SL_15K.pkg"
  :type "SL_K"
  :description "Side Locks"
  :symbol "SL_K"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_20K"
  :package-file "SideLocks/NATIONAL/SL_K/SL_20K.pkg"
  :type "SL_K"
  :description "Side Locks"
  :symbol "SL_K"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_30K"
  :package-file "SideLocks/NATIONAL/SL_K/SL_30K.pkg"
  :type "SL_K"
  :description "Side Locks"
  :symbol "SL_K"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_40K"
  :package-file "SideLocks/NATIONAL/SL_K/SL_40K.pkg"
  :type "SL_K"
  :description "Side Locks"
  :symbol "SL_K"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "NATIONAL"
  :catalog-number "SL_50K"
  :package-file "SideLocks/NATIONAL/SL_K/SL_50K.pkg"
  :type "SL_K"
  :description "Side Locks"
  :symbol "SL_K"
  :material "M_Hardered steel"
  :heat-treat "M_60-62 RC F_58-62 RC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_100"
  :package-file "SideLocks/PCS/PA/PA_100.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_125"
  :package-file "SideLocks/PCS/PA/PA_125.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_150"
  :package-file "SideLocks/PCS/PA/PA_150.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_200"
  :package-file "SideLocks/PCS/PA/PA_200.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_300"
  :package-file "SideLocks/PCS/PA/PA_300.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_400"
  :package-file "SideLocks/PCS/PA/PA_400.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_500"
  :package-file "SideLocks/PCS/PA/PA_500.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "PA_600"
  :package-file "SideLocks/PCS/PA/PA_600.pkg"
  :type "PA"
  :description "Side Locks"
  :symbol "PA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)

;;----------------------------------------------------------------

(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_100"
  :package-file "SideLocks/PCS/SPA/SPA_100.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_125"
  :package-file "SideLocks/PCS/SPA/SPA_125.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_150"
  :package-file "SideLocks/PCS/SPA/SPA_150.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_200"
  :package-file "SideLocks/PCS/SPA/SPA_200.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_300"
  :package-file "SideLocks/PCS/SPA/SPA_300.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_400"
  :package-file "SideLocks/PCS/SPA/SPA_400.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
(register-user-component 
  :component "SideLocks"
  :catalog "PCS"
  :catalog-number "SPA_500"
  :package-file "SideLocks/PCS/SPA/SPA_500.pkg"
  :type "SPA"
  :description "Side Locks"
  :symbol "SPA"
  :material "M_Graphitic O-6 steel F_8620 steel"
  :heat-treat "M_60-62 RC F_54-56 RC"
)
;-----------------------------------------------------------------
;--------------------Ball Cages-------------------------------------
;-----------------------------------------------------------------
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_12_40"
  :package-file "BallCages/DME_EOC/FW12/FW12_12_40.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_12_56"
  :package-file "BallCages/DME_EOC/FW12/FW12_12_56.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_18_45"
  :package-file "BallCages/DME_EOC/FW12/FW12_18_45.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_18_56"
  :package-file "BallCages/DME_EOC/FW12/FW12_18_56.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_18_71"
  :package-file "BallCages/DME_EOC/FW12/FW12_18_71.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_30_56"
  :package-file "BallCages/DME_EOC/FW12/FW12_30_56.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_30_75"
  :package-file "BallCages/DME_EOC/FW12/FW12_30_75.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "DME-EOC"
  :catalog-number "FW12_30_95"
  :package-file "BallCages/DME_EOC/FW12/FW12_30_95.pkg"
  :type "FW12"
  :description "Ball Cages"
  :symbol "FW12"
  :material "BRASS"
  :heat-treat "-"
)
;---------------------------------------------------------------------
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_12_36"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_12_36.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_12_48"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_12_48.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_12_60"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_12_60.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_18_48"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_18_48.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_18_60"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_18_60.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_18_76"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_18_76.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_24_52"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_24_52.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_24_70"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_24_70.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_24_84"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_24_84.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_30_70"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_30_70.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_30_90"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_30_90.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MEUSBURGER"
  :catalog-number "E1332_30_110"
  :package-file "BallCages/MEUSBURGER/E1332/E1332_30_110.pkg"
  :type "E1332"
  :description "Ball Cages"
  :symbol "E1332"
  :material "Ms/St"
  :heat-treat "-"
)
;-------------------------------------------------------------
;-----------------------------------------------------------------------------------
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_8_25"
  :package-file "BallCages/MISUMI/EMBS/EMBS_8_25.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_8_30"
  :package-file "BallCages/MISUMI/EMBS/EMBS_8_30.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_8_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_8_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_8_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_8_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_10_25"
  :package-file "BallCages/MISUMI/EMBS/EMBS_10_25.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_10_30"
  :package-file "BallCages/MISUMI/EMBS/EMBS_10_30.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_10_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_10_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_10_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_10_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_45"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_45.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_50"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_50.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_55"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_55.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_60"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_60.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_65"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_65.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_13_70"
  :package-file "BallCages/MISUMI/EMBS/EMBS_13_70.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_45"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_45.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_50"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_50.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_55"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_55.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_60"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_60.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_65"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_65.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_16_70"
  :package-file "BallCages/MISUMI/EMBS/EMBS_16_70.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_45"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_45.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_50"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_50.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_55"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_55.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_60"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_60.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_65"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_65.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_20_70"
  :package-file "BallCages/MISUMI/EMBS/EMBS_20_70.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_45"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_45.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_50"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_50.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_55"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_55.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_60"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_60.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_65"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_65.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_25_70"
  :package-file "BallCages/MISUMI/EMBS/EMBS_25_70.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_35"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_35.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_40"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_40.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_45"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_45.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_50"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_50.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_55"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_55.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_60"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_60.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_65"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_65.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "MISUMI"
  :catalog-number "EMBS_30_70"
  :package-file "BallCages/MISUMI/EMBS/EMBS_30_70.pkg"
  :type "EMBS"
  :description "Ball Cages"
  :symbol "EBMS"
  :material "C3604 BALL SUJ2"
  :heat-treat "-"
)
;----------------------------------------------------------------------------------
;--------------------------------------------------------------------------------------
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_12_38"
  :package-file "BallCages/RABOURDIN/5741/5741_12_38.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_12_44"
  :package-file "BallCages/RABOURDIN/5741/5741_12_44.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_12_53"
  :package-file "BallCages/RABOURDIN/5741/5741_12_53.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_16_38"
  :package-file "BallCages/RABOURDIN/5741/5741_16_38.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_16_44"
  :package-file "BallCages/RABOURDIN/5741/5741_16_44.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_16_53"
  :package-file "BallCages/RABOURDIN/5741/5741_16_53.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_16_62"
  :package-file "BallCages/RABOURDIN/5741/5741_16_62.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_20_49"
  :package-file "BallCages/RABOURDIN/5741/5741_20_49.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_20_56"
  :package-file "BallCages/RABOURDIN/5741/5741_20_56.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_20_67"
  :package-file "BallCages/RABOURDIN/5741/5741_20_67.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_25_54"
  :package-file "BallCages/RABOURDIN/5741/5741_25_54.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_25_59"
  :package-file "BallCages/RABOURDIN/5741/5741_25_59.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_25_68"
  :package-file "BallCages/RABOURDIN/5741/5741_25_68.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_25_78"
  :package-file "BallCages/RABOURDIN/5741/5741_25_78.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "RABOURDIN"
  :catalog-number "5741_25_87"
  :package-file "BallCages/RABOURDIN/5741/5741_25_87.pkg"
  :type "5741"
  :description "Ball Cages"
  :symbol "5741"
  :material "-"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "858101"
  :package-file "BallCages/SIDECO/85/858101.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "853201"
  :package-file "BallCages/SIDECO/85/853201.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "853301"
  :package-file "BallCages/SIDECO/85/853301.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "858301"
  :package-file "BallCages/SIDECO/85/858301.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "853501"
  :package-file "BallCages/SIDECO/85/853501.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "858501"
  :package-file "BallCages/SIDECO/85/858501.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "858701"
  :package-file "BallCages/SIDECO/85/858701.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "853801"
  :package-file "BallCages/SIDECO/85/853801.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "858901"
  :package-file "BallCages/SIDECO/85/858901.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "854001"
  :package-file "BallCages/SIDECO/85/854001.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "854001A"
  :package-file "BallCages/SIDECO/85/854001A.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "857101"
  :package-file "BallCages/SIDECO/85/857101.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "852201"
  :package-file "BallCages/SIDECO/85/852201.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "852301"
  :package-file "BallCages/SIDECO/85/852301.pkg"
  :type "85"
  :description "BallCages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "857301"
  :package-file "BallCages/SIDECO/85/857301.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "852501"
  :package-file "BallCages/SIDECO/85/852501.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "857501"
  :package-file "BallCages/SIDECO/85/857501.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "857701"
  :package-file "BallCages/SIDECO/85/857701.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "852801"
  :package-file "BallCages/SIDECO/85/852801.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "857901"
  :package-file "BallCages/SIDECO/85/857901.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "853001"
  :package-file "BallCages/SIDECO/85/853001.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "853001A"
  :package-file "BallCages/SIDECO/85/853001A.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "855101"
  :package-file "BallCages/SIDECO/85/855101.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "850201"
  :package-file "BallCages/SIDECO/85/850201.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "850301"
  :package-file "BallCages/SIDECO/85/850301.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "855301"
  :package-file "BallCages/SIDECO/85/855301.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "850501"
  :package-file "BallCages/SIDECO/85/850501.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "855501"
  :package-file "BallCages/SIDECO/85/855501.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "855701"
  :package-file "BallCages/SIDECO/85/855701.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "850801"
  :package-file "BallCages/SIDECO/85/850801.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "855901"
  :package-file "BallCages/SIDECO/85/855901.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "851001"
  :package-file "BallCages/SIDECO/85/851001.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "SIDECO"
  :catalog-number "851001A"
  :package-file "BallCages/SIDECO/85/851001A.pkg"
  :type "85"
  :description "Ball Cages"
  :symbol "85"
  :material "OT 58"
  :heat-treat "-"
)
;---------------------------------------------------------------------------------
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_36"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_36.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_58"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_58.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_70"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_70.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_78"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_78.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_95"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_95.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_25_105"
  :package-file "BallCages/STRACK/SN1798/SN1798_25_105.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_35"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_35.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_57"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_57.pkg"
  :type "SN1798"
  :description "BallCages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_68"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_68.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_80"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_80.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_95"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_95.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_100"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_100.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_30_112"
  :package-file "BallCages/STRACK/SN1798/SN1798_30_112.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_35"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_35.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_57"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_57.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_68"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_68.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_80"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_80.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_95"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_95.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_100"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_100.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_32_112"
  :package-file "BallCages/STRACK/SN1798/SN1798_32_112.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
;----------==============================================================================
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_38_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_38_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_38_63"
  :package-file "BallCages/STRACK/SN1798/SN1798_38_63.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_38_73"
  :package-file "BallCages/STRACK/SN1798/SN1798_38_73.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_38_112"
  :package-file "BallCages/STRACK/SN1798/SN1798_38_112.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_38_128"
  :package-file "BallCages/STRACK/SN1798/SN1798_38_128.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_40_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_40_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_40_63"
  :package-file "BallCages/STRACK/SN1798/SN1798_40_63.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_40_73"
  :package-file "BallCages/STRACK/SN1798/SN1798_40_73.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_40_90"
  :package-file "BallCages/STRACK/SN1798/SN1798_40_90.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_40_112"
  :package-file "BallCages/STRACK/SN1798/SN1798_40_112.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_40_128"
  :package-file "BallCages/STRACK/SN1798/SN1798_40_128.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_65"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_65.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_73"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_73.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_85"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_85.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_96"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_96.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_110"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_110.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_48_126"
  :package-file "BallCages/STRACK/SN1798/SN1798_48_126.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_45"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_45.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_65"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_65.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_73"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_73.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_85"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_85.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_96"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_96.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_110"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_110.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_50_126"
  :package-file "BallCages/STRACK/SN1798/SN1798_50_126.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_60_88"
  :package-file "BallCages/STRACK/SN1798/SN1798_60_88.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_60_104"
  :package-file "BallCages/STRACK/SN1798/SN1798_60_104.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_60_126"
  :package-file "BallCages/STRACK/SN1798/SN1798_60_126.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_60_148"
  :package-file "BallCages/STRACK/SN1798/SN1798_60_148.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_63_88"
  :package-file "BallCages/STRACK/SN1798/SN1798_63_88.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_63_104"
  :package-file "BallCages/STRACK/SN1798/SN1798_63_104.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_63_126"
  :package-file "BallCages/STRACK/SN1798/SN1798_63_126.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1798_63_148"
  :package-file "BallCages/STRACK/SN1798/SN1798_63_148.pkg"
  :type "SN1798"
  :description "Ball Cages"
  :symbol "SN1798"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
;---------------------------------------------------------------------------------
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_36"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_36.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_58"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_58.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_70"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_70.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_78"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_78.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_95"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_95.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_25_105"
  :package-file "BallCages/STRACK/SN1799/SN1799_25_105.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_35"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_35.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_57"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_57.pkg"
  :type "SN1799"
  :description "BallCages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_68"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_68.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_80"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_80.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_95"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_95.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_100"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_100.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_30_112"
  :package-file "BallCages/STRACK/SN1799/SN1799_30_112.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_35"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_35.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_57"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_57.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_68"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_68.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_80"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_80.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_95"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_95.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_100"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_100.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_32_112"
  :package-file "BallCages/STRACK/SN1799/SN1799_32_112.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
;----------==============================================================================
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_38_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_38_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_38_63"
  :package-file "BallCages/STRACK/SN1799/SN1799_38_63.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_38_73"
  :package-file "BallCages/STRACK/SN1799/SN1799_38_73.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_38_112"
  :package-file "BallCages/STRACK/SN1799/SN1799_38_112.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_38_128"
  :package-file "BallCages/STRACK/SN1799/SN1799_38_128.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_40_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_40_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_40_63"
  :package-file "BallCages/STRACK/SN1799/SN1799_40_63.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_40_73"
  :package-file "BallCages/STRACK/SN1799/SN1799_40_73.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_40_90"
  :package-file "BallCages/STRACK/SN1799/SN1799_40_90.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_40_112"
  :package-file "BallCages/STRACK/SN1799/SN1799_40_112.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_40_128"
  :package-file "BallCages/STRACK/SN1799/SN1799_40_128.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_65"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_65.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_73"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_73.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_85"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_85.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_96"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_96.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_110"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_110.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_48_126"
  :package-file "BallCages/STRACK/SN1799/SN1799_48_126.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_45"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_45.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_65"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_65.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_73"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_73.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_85"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_85.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_96"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_96.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_110"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_110.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_50_126"
  :package-file "BallCages/STRACK/SN1799/SN1799_50_126.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_60_88"
  :package-file "BallCages/STRACK/SN1799/SN1799_60_88.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_60_104"
  :package-file "BallCages/STRACK/SN1799/SN1799_60_104.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_60_126"
  :package-file "BallCages/STRACK/SN1799/SN1799_60_126.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_60_148"
  :package-file "BallCages/STRACK/SN1799/SN1799_60_148.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_63_88"
  :package-file "BallCages/STRACK/SN1799/SN1799_63_88.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_63_104"
  :package-file "BallCages/STRACK/SN1799/SN1799_63_104.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_63_126"
  :package-file "BallCages/STRACK/SN1799/SN1799_63_126.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
(register-user-component 
  :component "BallCages"
  :catalog "STRACK"
  :catalog-number "SN1799_63_148"
  :package-file "BallCages/STRACK/SN1799/SN1799_63_148.pkg"
  :type "SN1799"
  :description "Ball Cages"
  :symbol "SN1799"
  :material "Nr.CuZn40"
  :heat-treat "-"
)
;---------------------------------------------------------------------------------
;-----------------------------------Inclined pin retainer--------------------------
;-----------------------------------------------------------------------------------
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "HASCO"
  :catalog-number "Z1810_8"
  :package-file "InclinedPinRetainers/HASCO/Z1810/Z1810_8.pkg"
  :type "Z1810"
  :description "Inclined pin retainer"
  :symbol "Z1810"
  :material "1.2767"
  :heat-treat "53+2HRC"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "HASCO"
  :catalog-number "Z1810_10"
  :package-file "InclinedPinRetainers/HASCO/Z1810/Z1810_10.pkg"
  :type "Z1810"
  :description "Inclined pin retainer"
  :symbol "Z1810"
  :material "1.2767"
  :heat-treat "53+2HRC"
)
;--------------------------------------------------------------------------------------
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "MEUSBURGER"
  :catalog-number "E3060_10"
  :package-file "InclinedPinRetainers/MEUSBURGER/E3060/E3060_10.pkg"
  :type "E3060"
  :description "Inclined pin retainer"
  :symbol "E3060"
  :material "2312"
  :heat-treat "-"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "MEUSBURGER"
  :catalog-number "E3060_12"
  :package-file "InclinedPinRetainers/MEUSBURGER/E3060/E3060_12.pkg"
  :type "E3060"
  :description "Inclined pin retainer"
  :symbol "E3060"
  :material "2312"
  :heat-treat "-"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "MEUSBURGER"
  :catalog-number "E3060_16"
  :package-file "InclinedPinRetainers/MEUSBURGER/E3060/E3060_16.pkg"
  :type "E3060"
  :description "Inclined pin retainer"
  :symbol "E3060"
  :material "2312"
  :heat-treat "-"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "MEUSBURGER"
  :catalog-number "E3060_20"
  :package-file "InclinedPinRetainers/MEUSBURGER/E3060/E3060_20.pkg"
  :type "E3060"
  :description "Inclined pin retainer"
  :symbol "E3060"
  :material "2312"
  :heat-treat "-"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "MEUSBURGER"
  :catalog-number "E3060_24"
  :package-file "InclinedPinRetainers/MEUSBURGER/E3060/E3060_24.pkg"
  :type "E3060"
  :description "Inclined pin retainer"
  :symbol "E3060"
  :material "2312"
  :heat-treat "-"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "MEUSBURGER"
  :catalog-number "E3060_30"
  :package-file "InclinedPinRetainers/MEUSBURGER/E3060/E3060_30.pkg"
  :type "E3060"
  :description "Inclined pin retainer"
  :symbol "E3060"
  :material "2312"
  :heat-treat "-"
)
;----------------------------------------------------------------------------------------------
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_30_8"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_30_8.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_30_10"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_30_10.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"

)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_35_12"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_35_12.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_46_16"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_46_16.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_55_20"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_55_20.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_70_25"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_70_25.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"
)
(register-user-component 
  :component "InclinedPinRetainer"
  :catalog "STRACK"
  :catalog-number "Z4070_80_32"
  :package-file "InclinedPinRetainers/STRACK/Z4070/Z4070_80_32.pkg"
  :type "Z4070"
  :description "Inclined pin retainer"
  :symbol "Z4070"
  :material "Nr. 1.2162"
  :heat-treat "60+2HRC"
)
;------------------------------------------------------------------------------------
;----------------------------------Locking Blocks------------------------------------
;------------------------------------------------------------------------------------
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_5_7_3"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_5_7_3.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_5_7_4"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_5_7_4.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_5_7_5"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_5_7_5.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_6_10_3"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_6_10_3.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_6_10_4"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_6_10_4.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_6_10_5"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_6_10_5.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_7_11_3"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_7_11_3.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_7_11_4"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_7_11_4.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_7_11_5"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_7_11_5.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_8_12_3"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_8_12_3.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_8_12_4"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_8_12_4.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_8_12_5"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_8_12_5.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_10_16_4"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_10_16_4.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_10_16_6"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_10_16_6.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_12_20_6"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_12_20_6.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_12_20_8"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_12_20_8.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_14_24_5"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_14_24_5.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_14_24_8"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_14_24_8.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "DME-EOC"
  :catalog-number "WZ9120V_16_32_8"
  :package-file "LockingBlocks/DME_EOC/WZ9120/WZ9120V_16_32_8.pkg"
  :type "WZ9120"
  :description "Locking blocks"
  :symbol "WZ9120"
  :material "CK 22/CuSn"
  :heat-treat "-"
)
;-------------------------------------------------------------------------------------------------
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_11_122"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_11_122.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_11_250"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_11_250.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_11_504"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_11_504.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_15_122"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_15_122.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_15_250"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_15_250.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_15_504"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_15_504.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_19_122"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_19_122.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_19_250"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_19_250.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_19_504"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_19_504.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_24_122"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_24_122.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_24_250"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_24_250.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_24_504"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_24_504.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_31_122"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_31_122.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_31_250"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_31_250.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_31_504"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_31_504.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_39_122"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_39_122.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_39_250"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_39_250.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MEUSBURGER"
  :catalog-number "E3020_39_504"
  :package-file "LockingBlocks/MEUSBURGER/E3020/E3020_39_504.pkg"
  :type "E3020"
  :description "Locking blocks"
  :symbol "E3020"
  :material "2767"
  :heat-treat "-"
)
;--------------------------------------------------------------------
;**************************************MISUMI***********************************
;--------------------------------------------------------------------------------
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A15_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A15_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A15_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A15_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A15_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A15_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A15_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A15_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A18_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A18_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A18_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A18_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A18_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A18_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A18_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A18_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A23_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A23_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A23_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A23_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A23_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A23_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A23_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A23_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A28_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A28_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A28_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A28_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A28_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A28_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A33_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A33_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A38_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_15_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_15_A38_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++=
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++=
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++=
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A15_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A15_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"

)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A15_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A15_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A18_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A15_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A18_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A15_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A23_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A23_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A23_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A23_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A28_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A28_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK20_20_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK20_20_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;888888888888888888888888888888888888888888888888888888888888888888888888888888888888
;8888888888888888888888888888888888888888888888888888888888888888888888888888888888888
;88888888888888888888888888888888888888888888888888888888888888888888888888888888888
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A28_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A28_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A28_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A28_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A28_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A28_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A33_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A33_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A38_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A38_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A48_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A48_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A48_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A48_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A58_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A58_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A58_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A58_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A68_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A68_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A68_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A68_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A78_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A78_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A78_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_15_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_15_A78_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
;00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
;000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A28_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A28_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A28_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A28_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A28_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A28_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC")
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A33_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A33_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A38_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A38_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A48_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A48_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A48_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A48_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A58_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A58_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A58_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A58_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A68_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A68_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A68_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A68_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A78_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A78_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A78_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK25_20_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK25_20_A78_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;11111111111111111111111111111111111111111111111111111111111111111111111111111111
;111111111111111111111111111111111111111111111111111111111111111111111111111111111
;11111111111111111111111111111111111111111111111111111111111111111111111111111111111
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A33_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A33_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
;333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
;333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A38_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A38_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A48_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A48_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A48_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A48_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
;22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
;222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A58_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A58_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A58_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A58_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A68_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A68_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A68_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A68_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A78_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A78_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A78_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_20_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_20_A78_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
;``````````````````````````````````````````````````````````````````````````
;666666666666666666666666666666666666666666666666666666666666666666666666666666666
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A33_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A33_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A38_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A38_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A48_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A48_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A48_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A48_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A58_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A58_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A58_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A58_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A68_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A68_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A68_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A68_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A78_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A78_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A78_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_25_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_25_A78_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A33_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A33_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A33_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A33_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A38_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A38_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A38_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A38_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A48_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A48_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A48_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A48_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A58_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A58_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A58_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A58_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A68_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A68_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A68_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A68_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A78_G15.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A78_G17.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A78_G20.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCSK30_30_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCSK/LBCSK30_30_A78_G22.pkg"
  :type "LBCSK"
  :description "Locking blocks"
  :symbol "LBCSK"
  :material "SKS3"
  :heat-treat "53-56HRC"
)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;		User components registration
;;
;;	Add each new user component here.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A15_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A15_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A15_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A15_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A15_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A15_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A15_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A15_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A18_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A18_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A18_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A18_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A18_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A18_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A18_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A18_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A23_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A23_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A23_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A23_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A23_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A23_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A23_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A23_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A28_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A28_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A28_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A28_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A28_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A28_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A33_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A33_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A38_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_15_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_15_A38_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A15_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A15_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"

)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A15_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A15_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A18_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A15_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A18_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A15_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A23_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A23_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A23_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A23_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A28_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A28_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK20_20_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK20_20_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A28_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A28_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A28_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A28_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A28_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A28_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A33_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A33_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A38_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A38_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A48_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A48_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A48_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A48_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A58_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A58_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A58_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A58_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A68_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A68_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A68_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A68_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A78_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A78_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A78_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_15_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_15_A78_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A28_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A28_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A28_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A28_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A28_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A28_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A28_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A28_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A33_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A33_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A38_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A38_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A48_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A48_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A48_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A48_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A58_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A58_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A58_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A58_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A68_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A68_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A68_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A68_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A78_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A78_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A78_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK25_20_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK25_20_A78_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A33_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A33_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A38_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A38_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A48_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A48_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A48_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A48_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A58_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A58_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A58_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A58_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A68_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A68_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A68_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A68_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A78_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A78_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A78_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_20_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_20_A78_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A33_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A33_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A38_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A38_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A48_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A48_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A48_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A48_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A58_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A58_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A58_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A58_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A68_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A68_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A68_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A68_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A78_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A78_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A78_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_25_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_25_A78_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A33_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A33_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A33_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A33_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A33_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A33_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A33_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A33_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A38_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A38_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A38_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A38_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A38_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A38_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A38_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A38_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A48_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A48_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A48_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A48_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A48_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A48_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A48_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A48_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A58_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A58_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A58_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A58_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A58_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A58_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A58_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A58_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A68_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A68_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A68_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A68_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A68_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A68_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A68_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A68_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A78_G15"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A78_G15.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A78_G17"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A78_G17.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A78_G20"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A78_G20.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)
(register-user-component 
  :component "LockingBlocks"
  :catalog "MISUMI"
  :catalog-number "LBCMK30_30_A78_G22"
  :package-file "LockingBlocks/MISUMI/LBCMK/LBCMK30_30_A78_G22.pkg"
  :type "LBCMK"
  :description "Locking blocks"
  :symbol "LBCMK"
  :material "HPM2T"
  :heat-treat "37-41HRC"
)






