-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_backup.sql
More file actions
566 lines (487 loc) · 240 KB
/
data_backup.sql
File metadata and controls
566 lines (487 loc) · 240 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
-- MySQL dump 10.13 Distrib 8.0.31, for Win64 (x86_64)
--
-- Host: localhost Database: data
-- ------------------------------------------------------
-- Server version 8.0.31
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `auth_group`
--
DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `auth_group` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(150) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group`
--
LOCK TABLES `auth_group` WRITE;
/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */;
INSERT INTO `auth_group` VALUES (1,'Student Assistants');
/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_group_permissions`
--
DROP TABLE IF EXISTS `auth_group_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `auth_group_permissions` (
`id` bigint NOT NULL AUTO_INCREMENT,
`group_id` int NOT NULL,
`permission_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`),
KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group_permissions`
--
LOCK TABLES `auth_group_permissions` WRITE;
/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */;
INSERT INTO `auth_group_permissions` VALUES (1,1,33),(2,1,34),(3,1,35),(4,1,36),(5,1,37),(6,1,38),(7,1,39),(8,1,40),(9,1,41),(10,1,42),(11,1,43),(12,1,44);
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_permission`
--
DROP TABLE IF EXISTS `auth_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `auth_permission` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`content_type_id` int NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`),
CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_permission`
--
LOCK TABLES `auth_permission` WRITE;
/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */;
INSERT INTO `auth_permission` VALUES (1,'Can add log entry',1,'add_logentry'),(2,'Can change log entry',1,'change_logentry'),(3,'Can delete log entry',1,'delete_logentry'),(4,'Can view log entry',1,'view_logentry'),(5,'Can add permission',2,'add_permission'),(6,'Can change permission',2,'change_permission'),(7,'Can delete permission',2,'delete_permission'),(8,'Can view permission',2,'view_permission'),(9,'Can add group',3,'add_group'),(10,'Can change group',3,'change_group'),(11,'Can delete group',3,'delete_group'),(12,'Can view group',3,'view_group'),(13,'Can add user',4,'add_user'),(14,'Can change user',4,'change_user'),(15,'Can delete user',4,'delete_user'),(16,'Can view user',4,'view_user'),(17,'Can add content type',5,'add_contenttype'),(18,'Can change content type',5,'change_contenttype'),(19,'Can delete content type',5,'delete_contenttype'),(20,'Can view content type',5,'view_contenttype'),(21,'Can add session',6,'add_session'),(22,'Can change session',6,'change_session'),(23,'Can delete session',6,'delete_session'),(24,'Can view session',6,'view_session'),(25,'Can add question',7,'add_question'),(26,'Can change question',7,'change_question'),(27,'Can delete question',7,'delete_question'),(28,'Can view question',7,'view_question'),(29,'Can add choice',8,'add_choice'),(30,'Can change choice',8,'change_choice'),(31,'Can delete choice',8,'delete_choice'),(32,'Can view choice',8,'view_choice'),(33,'Can add to p_ba r_links',10,'add_top_bar_links'),(34,'Can change to p_ba r_links',10,'change_top_bar_links'),(35,'Can delete to p_ba r_links',10,'delete_top_bar_links'),(36,'Can view to p_ba r_links',10,'view_top_bar_links'),(37,'Can add mai n_links',9,'add_main_links'),(38,'Can change mai n_links',9,'change_main_links'),(39,'Can delete mai n_links',9,'delete_main_links'),(40,'Can view mai n_links',9,'view_main_links'),(41,'Can add storage',11,'add_storage'),(42,'Can change storage',11,'change_storage'),(43,'Can delete storage',11,'delete_storage'),(44,'Can view storage',11,'view_storage'),(45,'Can add categories',13,'add_categories'),(46,'Can change categories',13,'change_categories'),(47,'Can delete categories',13,'delete_categories'),(48,'Can view categories',13,'view_categories'),(49,'Can add datasheet',14,'add_datasheet'),(50,'Can change datasheet',14,'change_datasheet'),(51,'Can delete datasheet',14,'delete_datasheet'),(52,'Can view datasheet',14,'view_datasheet'),(53,'Can add electronicparts',12,'add_electronicparts'),(54,'Can change electronicparts',12,'change_electronicparts'),(55,'Can delete electronicparts',12,'delete_electronicparts'),(56,'Can view electronicparts',12,'view_electronicparts'),(57,'Can add mail',15,'add_mail'),(58,'Can change mail',15,'change_mail'),(59,'Can delete mail',15,'delete_mail'),(60,'Can view mail',15,'view_mail');
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user`
--
DROP TABLE IF EXISTS `auth_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `auth_user` (
`id` int NOT NULL AUTO_INCREMENT,
`password` varchar(128) NOT NULL,
`last_login` datetime(6) DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(150) NOT NULL,
`first_name` varchar(150) NOT NULL,
`last_name` varchar(150) NOT NULL,
`email` varchar(254) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user`
--
LOCK TABLES `auth_user` WRITE;
/*!40000 ALTER TABLE `auth_user` DISABLE KEYS */;
INSERT INTO `auth_user` VALUES (1,'pbkdf2_sha256$390000$vOiyr56ZdciwViN5cbIfch$G6UEXtCMzcxb3f3ToHoVby5ejc7wwFFKjhihuTA7s5k=','2023-04-28 09:40:33.083597',1,'admin','admin','admin','admin@example.com',1,1,'2023-02-11 15:28:52.000000'),(3,'pbkdf2_sha256$390000$eFeSo9skr6j8G1Lzl40fPU$m8rXVZKvilF+maO+lSE2B+qP8rkxQ7lp0qaBk1nYXtw=','2023-02-12 14:00:10.000000',0,'Anirudh','Anirudh','Madhusudhan','anirudhm1311@gmail.com',0,1,'2023-02-12 13:59:54.000000'),(5,'pbkdf2_sha256$390000$tGpjkVCsnlLkF85hAt1iYd$sPw0obU1ISAB7Wl80+M15Vsc1LfeaO4w11VXzNf+DM0=','2023-04-21 09:05:53.768127',0,'testUser','','','',1,1,'2023-04-21 09:00:43.000000');
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_groups`
--
DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_groups` (
`id` bigint NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`group_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_groups_user_id_group_id_94350c0c_uniq` (`user_id`,`group_id`),
KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`),
CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_groups`
--
LOCK TABLES `auth_user_groups` WRITE;
/*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */;
INSERT INTO `auth_user_groups` VALUES (1,3,1);
/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_user_permissions`
--
DROP TABLE IF EXISTS `auth_user_user_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_user_permissions` (
`id` bigint NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`permission_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq` (`user_id`,`permission_id`),
KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`),
CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_user_permissions`
--
LOCK TABLES `auth_user_user_permissions` WRITE;
/*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */;
INSERT INTO `auth_user_user_permissions` VALUES (2,5,33),(3,5,34),(4,5,35),(5,5,36),(6,5,57),(7,5,58),(8,5,59),(9,5,60);
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
`name` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES ('Arduino_and_Accessories'),('Audio'),('Batteries_and_Accessories'),('Break_out_Boards'),('Bridge_Rectifier'),('Cable_tags'),('Cable_ties'),('Capacitors'),('Capacitors_others'),('Ceramic_Capacitors'),('Coin_Cell_Batteries'),('Connectors'),('Crimping_Connector'),('Diodes'),('Drivers_Motors_Bridges_etc'),('Electrolyte_Capacitors'),('EMC_Accessories'),('Fuses'),('Fuse_Holder'),('Heat-shrink_tubing'),('IC-Sockets'),('ICs'),('IC_Battery_Charging_Management'),('Inductors'),('Insulating_Tape'),('LEDs'),('Mechanical_Components'),('Modules'),('Nuts'),('Op-Amps'),('Optoelectronics_miscellaneous'),('Potentiometers'),('Raspberry_Pi_and_Accessories'),('Relays'),('Resistors'),('Rubber_Bumpers'),('Schottky_Diode'),('Screws'),('Spiral_hose'),('Stranded_Wire'),('Switches'),('Terminal_Blocks'),('tmp'),('Transistors'),('TVS_Diodes'),('Voltage_Regulators'),('Washers'),('Zener_Diodes');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_admin_log`
--
DROP TABLE IF EXISTS `django_admin_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `django_admin_log` (
`id` int NOT NULL AUTO_INCREMENT,
`action_time` datetime(6) NOT NULL,
`object_id` longtext,
`object_repr` varchar(200) NOT NULL,
`action_flag` smallint unsigned NOT NULL,
`change_message` longtext NOT NULL,
`content_type_id` int DEFAULT NULL,
`user_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`),
KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`),
CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `django_admin_log_chk_1` CHECK ((`action_flag` >= 0))
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_admin_log`
--
LOCK TABLES `django_admin_log` WRITE;
/*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */;
INSERT INTO `django_admin_log` VALUES (1,'2023-02-11 15:30:29.793802','2','Is this awesome?',1,'[{\"added\": {}}]',7,1),(2,'2023-02-11 16:00:53.171172','2','test',1,'[{\"added\": {}}]',4,1),(3,'2023-02-11 16:01:31.311949','2','test',2,'[{\"changed\": {\"fields\": [\"Staff status\", \"Superuser status\"]}}]',4,1),(4,'2023-02-11 16:01:44.148558','2','test',3,'',4,1),(5,'2023-02-11 17:10:33.872733','1','Resistors',1,'[{\"added\": {}}]',9,1),(6,'2023-02-11 17:21:16.074294','1','Some link 1',1,'[{\"added\": {}}]',10,1),(7,'2023-02-11 17:21:24.760347','2','Some link 1',1,'[{\"added\": {}}]',10,1),(8,'2023-02-11 17:21:31.738502','3','Some link 1',1,'[{\"added\": {}}]',10,1),(9,'2023-02-11 17:21:50.191504','2','Capacitors',1,'[{\"added\": {}}]',9,1),(10,'2023-02-11 17:21:54.430246','3','Inductors',1,'[{\"added\": {}}]',9,1),(11,'2023-02-11 17:21:59.709526','4','Transistors',1,'[{\"added\": {}}]',9,1),(12,'2023-02-11 17:22:20.502021','4','Some link 1',1,'[{\"added\": {}}]',10,1),(13,'2023-02-11 17:22:24.033469','5','Some link 1',1,'[{\"added\": {}}]',10,1),(14,'2023-02-11 17:22:27.664957','6','Some link 1',1,'[{\"added\": {}}]',10,1),(15,'2023-02-11 17:22:30.882274','7','Some link 1',1,'[{\"added\": {}}]',10,1),(16,'2023-02-11 17:22:34.754566','8','Some link 1',1,'[{\"added\": {}}]',10,1),(17,'2023-02-11 17:22:38.894704','9','Some link 1',1,'[{\"added\": {}}]',10,1),(18,'2023-02-11 17:22:42.666976','10','Some link 1',1,'[{\"added\": {}}]',10,1),(19,'2023-02-11 17:22:46.347382','11','Some link 1',1,'[{\"added\": {}}]',10,1),(20,'2023-02-11 17:30:19.631812','5','OpAmps',1,'[{\"added\": {}}]',9,1),(21,'2023-02-11 17:31:21.921750','12','Test link',1,'[{\"added\": {}}]',10,1),(22,'2023-02-12 13:59:23.543101','1','Student Assistants',1,'[{\"added\": {}}]',3,1),(23,'2023-02-12 13:59:54.592097','3','Anirudh',1,'[{\"added\": {}}]',4,1),(24,'2023-02-12 14:00:31.348963','3','Anirudh',2,'[{\"changed\": {\"fields\": [\"Groups\", \"Last login\"]}}]',4,1),(25,'2023-02-12 14:01:18.227565','3','Anirudh',2,'[{\"changed\": {\"fields\": [\"First name\", \"Last name\", \"Email address\"]}}]',4,1),(26,'2023-02-12 14:02:02.015995','1','admin',2,'[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]',4,1),(27,'2023-02-13 10:34:00.771934','test','test',1,'[{\"added\": {}}]',13,1),(28,'2023-02-13 10:47:43.029208','4','example',1,'[{\"added\": {}}]',4,1),(29,'2023-02-13 10:48:45.363359','4','example',2,'[{\"changed\": {\"fields\": [\"User permissions\"]}}]',4,1),(30,'2023-02-13 13:53:09.508640','4','example',3,'',4,1),(31,'2023-02-14 10:30:15.988588','2','datasheets/ani-005_r2CDRxF.jpg',1,'[{\"added\": {}}]',14,1),(32,'2023-02-14 10:38:28.539802','2','datasheets/ani-005_r2CDRxF.jpg',3,'',14,1),(33,'2023-02-14 10:39:50.449934','3','ani-001.jpg',1,'[{\"added\": {}}]',14,1),(34,'2023-02-14 10:40:47.320269','3','ani-001.jpg',3,'',14,1),(35,'2023-02-14 10:40:58.142512','4','ani-006.jpg',1,'[{\"added\": {}}]',14,1),(36,'2023-02-14 10:41:11.287980','4','ani-006.jpg',3,'',14,1),(37,'2023-02-14 10:41:22.742570','5','erweiterte_Leistungsübersicht___extended_Transcript_of_Records_-_Madhusudhan_-_30199.pdf',1,'[{\"added\": {}}]',14,1),(38,'2023-02-14 10:42:12.902174','5','erweiterte_Leistungsübersicht___extended_Transcript_of_Records_-_Madhusudhan_-_30199.pdf',3,'',14,1),(39,'2023-02-14 10:42:26.705391','6','erweiterte_Leistungsübersicht___extended_Transcript_of_Records_-_Madhusudhan_-_30199_ezFRxJN.pdf',1,'[{\"added\": {}}]',14,1),(40,'2023-02-14 10:43:00.467799','6','erweiterte_Leistungsübersicht___extended_Transcript_of_Records_-_Madhusudhan_-_30199_ezFRxJN.pdf',3,'',14,1),(41,'2023-02-14 10:47:03.615015','7','EXAM_FOEE-SS2021.pdf',1,'[{\"added\": {}}]',14,1),(42,'2023-02-14 10:58:23.063921','8','Math_Café_Mock_Exam.pdf',1,'[{\"added\": {}}]',14,1),(43,'2023-02-14 11:10:04.450030','9','TDA2003.pdf',1,'[{\"added\": {}}]',14,1),(44,'2023-02-16 20:58:15.811306','test','test',3,'',13,1),(45,'2023-02-16 21:30:53.685523','1','anirudhm1311@gmail.com',1,'[{\"added\": {}}]',15,1),(46,'2023-02-16 21:31:01.328514','1','anirudhm1311@gmail.com',2,'[]',15,1),(47,'2023-02-22 10:58:21.883103','324','NE555 Timer General purpose single bipolar timer',2,'[{\"changed\": {\"fields\": [\"Part\", \"Datasheet\"]}}]',12,1),(48,'2023-02-22 11:59:04.170512','1756','Test Part this is just for test',1,'[{\"added\": {}}]',12,1),(49,'2023-02-22 12:00:26.556182','1756','Test Part this is just for test',2,'[{\"changed\": {\"fields\": [\"Datasheet\"]}}]',12,1),(50,'2023-02-22 12:00:40.530931','324','NE555 Timer General purpose single bipolar timer',2,'[{\"changed\": {\"fields\": [\"Datasheet\"]}}]',12,1),(51,'2023-02-22 12:01:05.483742','1756','Test Part this is just for test',3,'',12,1),(52,'2023-04-21 09:00:44.113038','5','Test',1,'[{\"added\": {}}]',4,1),(53,'2023-04-21 09:01:22.367845','5','Test',2,'[{\"changed\": {\"fields\": [\"User permissions\", \"Last login\"]}}]',4,1),(54,'2023-04-21 09:02:53.487257','5','Test',2,'[{\"changed\": {\"fields\": [\"password\"]}}]',4,1),(55,'2023-04-21 09:03:04.045431','5','testUser',2,'[{\"changed\": {\"fields\": [\"Username\"]}}]',4,1),(56,'2023-04-21 09:04:38.971653','5','testUser',2,'[{\"changed\": {\"fields\": [\"password\"]}}]',4,1),(57,'2023-04-21 09:04:41.171747','5','testUser',2,'[]',4,1),(58,'2023-04-21 09:05:07.662788','5','testUser',2,'[]',4,1),(59,'2023-04-21 09:05:42.436210','5','testUser',2,'[{\"changed\": {\"fields\": [\"Staff status\"]}}]',4,1),(60,'2023-04-28 09:38:47.314568','1757','hubjhbjh',1,'[{\"added\": {}}]',12,1),(61,'2023-04-28 09:43:22.750902','1757','hubjhbjh',3,'',12,1);
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_content_type`
--
DROP TABLE IF EXISTS `django_content_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `django_content_type` (
`id` int NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_content_type`
--
LOCK TABLES `django_content_type` WRITE;
/*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */;
INSERT INTO `django_content_type` VALUES (1,'admin','logentry'),(3,'auth','group'),(2,'auth','permission'),(4,'auth','user'),(5,'contenttypes','contenttype'),(13,'mainpage','categories'),(14,'mainpage','datasheet'),(12,'mainpage','electronicparts'),(15,'mainpage','mail'),(9,'mainpage','main_links'),(11,'mainpage','storage'),(10,'mainpage','top_bar_links'),(8,'polls','choice'),(7,'polls','question'),(6,'sessions','session');
/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_migrations`
--
DROP TABLE IF EXISTS `django_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `django_migrations` (
`id` bigint NOT NULL AUTO_INCREMENT,
`app` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_migrations`
--
LOCK TABLES `django_migrations` WRITE;
/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */;
INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2023-02-11 15:11:30.364780'),(2,'auth','0001_initial','2023-02-11 15:11:30.722373'),(3,'admin','0001_initial','2023-02-11 15:11:30.811563'),(4,'admin','0002_logentry_remove_auto_add','2023-02-11 15:11:30.819572'),(5,'admin','0003_logentry_add_action_flag_choices','2023-02-11 15:11:30.827092'),(6,'contenttypes','0002_remove_content_type_name','2023-02-11 15:11:30.877734'),(7,'auth','0002_alter_permission_name_max_length','2023-02-11 15:11:30.914383'),(8,'auth','0003_alter_user_email_max_length','2023-02-11 15:11:30.936462'),(9,'auth','0004_alter_user_username_opts','2023-02-11 15:11:30.944018'),(10,'auth','0005_alter_user_last_login_null','2023-02-11 15:11:30.984927'),(11,'auth','0006_require_contenttypes_0002','2023-02-11 15:11:30.988433'),(12,'auth','0007_alter_validators_add_error_messages','2023-02-11 15:11:30.996980'),(13,'auth','0008_alter_user_username_max_length','2023-02-11 15:11:31.043666'),(14,'auth','0009_alter_user_last_name_max_length','2023-02-11 15:11:31.092240'),(15,'auth','0010_alter_group_name_max_length','2023-02-11 15:11:31.109824'),(16,'auth','0011_update_proxy_permissions','2023-02-11 15:11:31.119372'),(17,'auth','0012_alter_user_first_name_max_length','2023-02-11 15:11:31.177480'),(18,'sessions','0001_initial','2023-02-11 15:11:31.203069'),(19,'polls','0001_initial','2023-02-11 15:20:03.000668'),(20,'mainpage','0001_initial','2023-02-11 17:10:03.853638'),(21,'mainpage','0002_storage','2023-02-11 18:11:16.162934'),(22,'mainpage','0003_alter_storage_options_alter_storage_longname_and_more','2023-02-14 10:21:25.928412'),(23,'mainpage','0004_alter_storage_options','2023-02-14 10:21:25.942278'),(24,'mainpage','0005_categories_electronicparts','2023-02-14 10:21:25.944786'),(25,'mainpage','0006_datasheet','2023-02-14 10:21:25.946791'),(26,'mainpage','0007_delete_electronicparts_delete_storage','2023-02-14 10:21:25.948792'),(27,'mainpage','0008_electronicparts_storage','2023-02-14 10:21:56.220681'),(28,'mainpage','0009_delete_datasheet','2023-02-14 10:24:36.684383'),(29,'mainpage','0010_datasheet','2023-02-14 10:24:48.646175'),(30,'mainpage','0011_mail_alter_datasheet_datasheet','2023-02-16 21:26:53.441196');
/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_session`
--
DROP TABLE IF EXISTS `django_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `django_session` (
`session_key` varchar(40) NOT NULL,
`session_data` longtext NOT NULL,
`expire_date` datetime(6) NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_expire_date_a5c62663` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_session`
--
LOCK TABLES `django_session` WRITE;
/*!40000 ALTER TABLE `django_session` DISABLE KEYS */;
INSERT INTO `django_session` VALUES ('109fxlg3w2t3hv0iuwnbmnhlmsjiccfm','.eJxVjDsOwjAQBe_iGllrx79Q0nMGa73e4ACypTipEHeHSCmgfTPzXiLitpa4dV7inMVZKHH63RLSg-sO8h3rrUlqdV3mJHdFHrTLa8v8vBzu30HBXr61Ucr5kW1ICUizMdn5AIw8ZhWSQSAEP9kJQ9LkB4CBnLMaEIlQkRXvD97GOBM:1pSdn1:_D4NTNnRqsWdNlduRZ2oGzPRsF9B0dAGVQJPDKxEUa8','2023-03-02 12:55:07.425984'),('2lh5tbo2ah4cq2hl1efwymgqdcg8kptb','.eJxVjDsOwjAQBe_iGllrx79Q0nMGa73e4ACypTipEHeHSCmgfTPzXiLitpa4dV7inMVZKHH63RLSg-sO8h3rrUlqdV3mJHdFHrTLa8v8vBzu30HBXr61Ucr5kW1ICUizMdn5AIw8ZhWSQSAEP9kJQ9LkB4CBnLMaEIlQkRXvD97GOBM:1psKaf:njA3reIRfjEoouXbn8Y0zNDNXAqC2zUp3E9Oq7jegwc','2023-05-12 09:40:33.085594');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `electronicparts`
--
DROP TABLE IF EXISTS `electronicparts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `electronicparts` (
`price` decimal(10,2) DEFAULT NULL,
`category` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`part` varchar(256) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`datasheet` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`room_num` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`box_num` int DEFAULT NULL,
`reichelt_name` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`reichelt_num` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_reichelt` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_conrad` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_voelkner` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_farnell` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_rs` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_mouser` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_digikey` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`link_other` varchar(128) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
`remainder` tinyint(1) NOT NULL DEFAULT '0',
`available` tinyint(1) NOT NULL DEFAULT '1',
`date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`compartment` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
KEY `category` (`category`),
KEY `room` (`room_num`),
CONSTRAINT `electronicparts_ibfk_1` FOREIGN KEY (`category`) REFERENCES `categories` (`name`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `electronicparts_ibfk_2` FOREIGN KEY (`room_num`) REFERENCES `storage` (`room`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE=InnoDB AUTO_INCREMENT=1758 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `electronicparts`
--
LOCK TABLES `electronicparts` WRITE;
/*!40000 ALTER TABLE `electronicparts` DISABLE KEYS */;
INSERT INTO `electronicparts` VALUES (0.26,'ICs','NE556 Dual Bipolar Timers DIP14','NE556STM.pdf','05 EG 008',10,'NE 556 DIL','13398',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-26 12:55:18',153,NULL),(0.34,'Op-Amps','UA741 General Purpose Single Op-Amp DIP8','UA741STM.pdf','05 01 026',1,'µA 741 DIP','23435',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-26 13:04:31',154,NULL),(0.28,'Op-Amps','LM293N Low Power Dual Voltage Comparators DIP8','LM293NSTM.pdf','05 EG 008',20,'LM 293 DIP','10439',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-26 13:14:44',155,NULL),(0.34,'ICs','ULN2803A Eight Darlington Arrays DIP18','ULN2803UTC.pdf','05 EG 008',10,'ULN 2803A','22085',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-26 13:21:08',156,NULL),(0.18,'Op-Amps','LM393 Dual Voltage Comparators DIP8','LM393ESTEK.pdf','05 EG 008',20,'LM 393 DIP','10510',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-26 13:30:41',157,NULL),(0.26,'Op-Amps','LM324 Low Power Quad Op-Amp DIP14','LM324STM.pdf','05 EG 008',9,'LM 324 DIL','10463',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 07:38:31',158,NULL),(0.33,'ICs','74HC4075 Triple 3 Input OR Gate DIP14','74HC4075STM.pdf','05 EG 008',10,'74HC 4075','3237',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 07:44:59',159,NULL),(0.29,'ICs','74HC32 Quad 2 Input OR Gate DIP14','74HC32.pdf','05 EG 008',10,'74HC 32','3196',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2017-07-27 07:48:56',160,NULL),(0.28,'ICs','74HC04 Hex Inverter DIP14','74HC04.pdf','05 EG 008',10,'74HC 04','3123',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2017-07-27 07:52:55',161,NULL),(0.40,'ICs','74HCT4051 Single 8 Channel Analog Multiplexer/Demultiplexer DIP16','74HCT4051.pdf','05 EG 008',10,'74HCT 4051','3393',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 07:58:04',162,NULL),(0.36,'ICs','74HCT161 4 Bit Binary Counter Asynchronous Reset DIP16','74HCT161.pdf','05 EG 008',10,'74HCT 161','3329',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 08:45:49',163,NULL),(0.42,'ICs','74HC4078 8 Input NOR/OR Gate DIP14','74HC4078STM.pdf','05 EG 008',10,'74HC 4078','3238',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 08:49:22',164,NULL),(0.70,'ICs','74HCT4511 BCD to 7-segment latch/decoder/driver DIP16','74HCT4511.pdf','05 EG 008',10,'74HCT 4511','3409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 12:03:56',165,NULL),(0.31,'ICs','74HC08 Quad 2 Input AND Gate DIP14','74HC08.pdf','05 EG 008',10,'74HC 08','3124',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2017-07-27 12:06:45',166,NULL),(0.44,'ICs','74HCT4040 12-stage binary ripple counter DIP16','74HCT4040.pdf','05 EG 008',10,'74HCT 4040','3391',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 12:10:02',167,NULL),(NULL,'ICs','HEF4067BP 16 Channel Analog Multiplexer/Demultiplexer DIP24 breit','HEF4067BP.pdf','05 EG 008',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-27 12:20:51',168,NULL),(0.02,'Connectors','Single Print Connector Straight 2-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/2G','14907',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',169,NULL),(0.03,'Connectors','Single Print Connector Straight 3-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/3G','14462',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',170,NULL),(0.06,'Connectors','Single Print Connector Straight 5-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/5G','14911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',171,NULL),(0.08,'Connectors','Single Print Connector Straight 8-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/5G','14913',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',172,NULL),(0.09,'Connectors','Single Print Connector Straight 6-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/6G','147626',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',173,NULL),(0.06,'Connectors','Single Print Connector Straight 4-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/4G','696',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',174,NULL),(0.02,'Connectors','Single Print Connector Angled 2-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/2W','14908',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',175,NULL),(0.04,'Connectors','Single Print Connector Angled 3-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/3W','14910',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',176,NULL),(0.09,'Connectors','Single Print Connector Angled 4-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/4W','137974',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',177,NULL),(0.07,'Connectors','Single Print Connector Angled 5-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/4W','14912',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',178,NULL),(0.09,'Connectors','Single Print Connector Angled 8-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,'PSS 254/8W','14914',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',179,NULL),(0.01,'Connectors','Single Print Connector Coupling Housing 2-Pin Pitch 2,54 mm',NULL,'05 EG 008',1,'PSK 254/2W','14857',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',180,NULL),(0.01,'Connectors','Single Print Connector Coupling Housing 3-Pin Pitch 2,54 mm',NULL,'05 EG 008',1,'PSK 254/3W','14858',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',181,NULL),(0.02,'Connectors','Single Print Connector Coupling Housing 4-Pin Pitch 2,54 mm',NULL,'05 EG 008',1,'PSK 254/4W','694',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',182,NULL),(0.07,'Connectors','Single Print Connector Coupling Housing 6-Pin Pitch 2,54 mm',NULL,'05 EG 008',1,'PSK 254/6W','147625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',183,NULL),(0.04,'Connectors','Single Print Connector Coupling Housing 8-Pin Pitch 2,54 mm',NULL,'05 EG 008',1,'PSK 254/8W','14860',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',184,NULL),(0.02,'Connectors','Crimp Contacts For Print Connectors ',NULL,'05 EG 008',1,'PSK-KONTAKTE','14861',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-28 09:30:33',185,NULL),(0.02,'Connectors','Ferrule 0.34 mm² turquoise',NULL,'05 EG 008',2,NULL,NULL,'https://www.reichelt.de/-p196195.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-04-18 17:30:53',186,NULL),(0.02,'Connectors','Ferrule 0.75 mm² grey',NULL,'05 EG 008',2,'AEH ST 0,75 GR','164819',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-31 08:49:46',187,NULL),(0.02,'Connectors','Ferrule 1.0 mm² red',NULL,'05 EG 008',2,'AEH ST 1,0 RT','164822',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-31 08:50:33',188,NULL),(0.02,'Connectors','Ferrule 1.5 mm² black',NULL,'05 EG 008',2,'AEH ST 1,5 SW','164824',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-31 08:50:33',190,NULL),(0.02,'Connectors','Ferrule 2.5 mm² blue',NULL,'05 EG 008',2,'AEH ST 2,5 BL','164826',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-31 08:50:33',193,NULL),(NULL,'Connectors','Ferrule 6.0 mm² yellow',NULL,'05 EG 008',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-31 08:50:33',194,NULL),(0.28,'ICs','HCF4017BE Decade Counter With 10 Decoded Outputs DIL16','HCF4017BSTM.pdf','05 EG 008',10,'MOS 4017','12563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-04 11:30:47',195,NULL),(0.25,'ICs','HCF4093BE Quad 2 Input NAND Schmitt Trigger DIL14','HCF4093BSTM.pdf','05 EG 008',10,'MOS 4093','12636',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-04 11:34:37',196,NULL),(0.34,'ICs','CD4026BE Decade Counters/Dividers DIL16','CD4026B_CD4033B.pdf','05 EG 008',10,'MOS 4026','12585',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-04 11:37:34',197,NULL),(NULL,'ICs','HEF4017BP Decade Counter With 10 Decoded Outputs DIL16','HEF4017BNXP.pdf','05 EG 008',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-04 11:49:34',198,NULL),(0.43,'Op-Amps','MC33078 Dual High-Speed Low-Noise Op-Amp DIL8','MC33078TI.pdf','05 EG 008',20,'MC 33078 P','39638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-04 12:17:36',199,NULL),(0.40,'ICs','ULN2803D Eight Darlington Arrays SOP18','ULN2803.pdf','05 EG 008',10,'ULN 2803 D','39779',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-04 12:20:44',200,NULL),(0.04,'Transistors','BC546B NPN 65V 0,1A 0,5W 300 MHz B=200-450 TO92','BC546_48-CDIL.pdf','05 EG 008',5,'BC 546B','5004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',202,NULL),(0.04,'Transistors','BC547B NPN 45V 0,1A 0,5W 300 MHz B=200-450 TO92','BC546_48-CDIL.pdf','05 EG 008',5,'BC 547B','5006',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',203,NULL),(0.04,'Transistors','BC547C NPN 45V 0,1A 0,5W 300 MHz 420-800 TO92','BC546_48-CDIL.pdf','05 EG 008',5,'BC 547C','5007',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',204,NULL),(0.04,'Transistors','BC548B NPN 30V 0,1A 0,5W 300 MHz B=200-450 TO92','BC546_48-CDIL.pdf','05 EG 008',5,'BC 548B','5009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',205,NULL),(0.04,'Transistors','BC550C NPN 45V 0,1A 0,625W 250 MHz B=420-800 TO92','BC549_50.pdf','05 EG 008',5,'BC 550C','5014',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',206,NULL),(0.04,'Transistors','BC556B PNP 65V 0,1A 0,5W 150 MHz B=220-475 TO92','BC556_58-CDIL.pdf','05 EG 008',5,'BC 556B','5016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',207,NULL),(0.04,'Transistors','BC560C PNP 30V 0,1A 0,5W 200 MHz B=420-800 TO92','BC559_60.pdf','05 EG 008',5,'BC 560C','5028',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',208,NULL),(0.10,'Transistors','BS170 N-FET 60V 0,5A 0,35W TO92','BS170-FSC.pdf','05 EG 008',5,'BS 170','5856',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 06:49:36',209,NULL),(0.16,'Transistors','BD135 NPN 45V 1,5A 12,5W B=60-160 TO126','BD135_137_139.pdf','05 EG 008',5,'BD 135','5073',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 07:24:41',210,NULL),(0.16,'Transistors','BD136 PNP 45V 1,5A 8W B=60-160 TO126','BD136_138_140.pdf','05 EG 008',5,'BD 136','5074',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 07:24:41',211,NULL),(0.26,'Transistors','BD235 NPN 60V 2A 25W B>40 TO126','BD233-238.pdf','05 EG 008',5,'BD 235','5120',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 07:24:41',212,NULL),(0.25,'Transistors','BF199 HF NPN 25V 100mA 350mW >400MHz B=40 TO92','BF199-CDIL.pdf','05 EG 008',5,'BF 199','5433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 07:53:59',213,NULL),(0.39,'Transistors','2N2222A NPN 40V 0,8A 0,5W 300 MHz B=100-300 TO18','2N2222A-CDIL.pdf','05 EG 008',5,'2N 2222A','1968',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 07:56:49',214,NULL),(1.15,'Transistors','IRF4905 P-FET -55V 74A RDS(on)=0.02 Ohm TO220AB','IRF4905_IR.pdf','05 EG 008',5,'IRF 4905','41606',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 08:00:33',215,NULL),(NULL,'Transistors','IRF9622 P-FET -200V -3A RDS(on)=1.5 Ohm TO220AB','IRF9622.pdf','05 EG 008',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 08:09:04',216,NULL),(0.90,'Transistors','DN2540N3-G N-Ch Depletion-Mode Vertical DMOS-FET 400V RDS(on)=17 Ohm TO92','DN2540_DS.pdf','05 EG 008',5,'DN2540N3-G','153627',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 08:15:13',217,NULL),(NULL,'Transistors','C1129 NPN 35V 30mA 400MHz TO92',NULL,'05 EG 008',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2017-08-07 08:18:41',218,NULL),(0.29,'Transistors','2SA933AS PNP 50V 0.15A 0.3W 140MHz B=120-390','A933.pdf','05 EG 008',5,'SA 933','15728',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2017-08-07 08:24:39',219,NULL),(NULL,'Transistors','2SA934 PNP 32V 1A 150MHz B=82-390','A934.pdf','05 EG 008',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2017-08-07 08:24:39',220,NULL),(NULL,'Connectors','Ring Cable Lug Red M3',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:23:30',221,NULL),(NULL,'Connectors','Ring Cable Lug Red M4',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:23:49',222,NULL),(NULL,'Connectors','Ring Cable Lug Red M5',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:24:01',223,NULL),(NULL,'Connectors','Ring Cable Lug Blue M3',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:24:17',224,NULL),(NULL,'Connectors','Ring Cable Lug Blue M4',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:24:24',225,NULL),(NULL,'Connectors','Ring Cable Lug Blue M5',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:24:31',226,NULL),(NULL,'Connectors','Ring Cable Lug Yellow M5',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:24:45',227,NULL),(NULL,'Connectors','Ring Cable Lug Yellow M6',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:24:53',228,NULL),(NULL,'Connectors','Cable Lug Fork Shape Red M3',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:41:40',229,NULL),(NULL,'Connectors','Cable Lug Fork Shape Red 3.7mm',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:41:52',230,NULL),(NULL,'Connectors','Cable Lug Fork Shape Red M4',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:42:06',231,NULL),(NULL,'Connectors','Cable Lug Fork Shape Blue M4',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:42:19',232,NULL),(NULL,'Connectors','Cable Lug Fork Shape Yellow M4',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:42:29',233,NULL),(0.05,'Connectors','Butt Connector Blue 1.25–2.5 mm²',NULL,'05 EG 008',3,'STV-B','19834',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:43:56',234,NULL),(0.04,'Connectors','Butt Connector Red 0.5–1.0 mm²',NULL,'05 EG 008',3,'STV-R','19836',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:46:45',235,NULL),(0.07,'Connectors','Butt Connector Yellow 2.5–6.0 mm²',NULL,'05 EG 008',3,'STV-G','19835',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:46:45',236,NULL),(0.06,'Connectors','Round Plug Blue 1.25 - 2.5 mm²',NULL,'05 EG 008',3,'RS-B','15300',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:51:37',237,NULL),(0.05,'Connectors','Round Plug Red 0.5 - 1.0 mm²',NULL,'05 EG 008',3,'RS-R','15302',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:52:23',238,NULL),(0.06,'Connectors','Round Connector Sleeve Blue 1.5 - 2.5 mm²',NULL,'05 EG 008',3,'RSH-B','15303',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:53:34',239,NULL),(0.05,'Connectors','Round Connector Sleeve Red 0.5 - 1.25 mm²',NULL,'05 EG 008',3,'RSH-R','15305',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 13:54:43',240,NULL),(0.05,'Connectors','Flat Connector Blue 6.35mm',NULL,'05 EG 008',4,'FS-B-6,35','7893',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:00:13',241,NULL),(0.05,'Connectors','Flat Connector Red 6.35mm',NULL,'05 EG 008',4,'FS-R-6,35','7896',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:00:52',242,NULL),(0.04,'Connectors','Flat Connector Sleeve Blue 2.8mm',NULL,'05 EG 008',4,'FSH-B-2,8','7907',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:03:44',243,NULL),(0.05,'Connectors','Flat Connector Sleeve Blue 4.75mm',NULL,'05 EG 008',4,'FSH-B-4,75','7908',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:04:16',244,NULL),(0.05,'Connectors','Flat Connector Sleeve Blue 6.35mm',NULL,'05 EG 008',4,'FSH-B-6,35','7909',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:04:58',245,NULL),(0.04,'Connectors','Flat Connector Sleeve Red 2.8mm',NULL,'05 EG 008',4,'FSH-R-2,8','7911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:05:38',246,NULL),(0.05,'Connectors','Flat Connector Sleeve Red 4.75mm',NULL,'05 EG 008',4,'FSH-R-4,75','7912',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:06:13',247,NULL),(0.05,'Connectors','Flat Connector Sleeve Red 6.35mm',NULL,'05 EG 008',4,'FSH-R-6,35','7913',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-08-07 14:06:47',248,NULL),(NULL,'Screws','chipboard screw 3,0 x 12 mm T10',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:18:46',249,NULL),(NULL,'Screws','chipboard screw 3,0 x 16 mm T10',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:19:27',250,NULL),(NULL,'Screws','chipboard screw 3,0 x 20 mm T10',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:19:37',251,NULL),(NULL,'Screws','chipboard screw 3,5 x 20 mm T15',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:44:50',252,NULL),(NULL,'Screws','chipboard screw 3,5 x 25 mm T15',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:45:19',253,NULL),(NULL,'Screws','chipboard screw 3,5 x 30 mm T15',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:45:27',254,NULL),(NULL,'Screws','chipboard screw 4,0 x 25 mm T20',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:46:35',255,NULL),(NULL,'Screws','chipboard screw 4,0 x 30 mm T20',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:46:43',256,NULL),(NULL,'Screws','chipboard screw 4,0 x 40 mm T20',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:46:52',257,NULL),(NULL,'Screws','chipboard screw 5,0 x 50 mm T25',NULL,'05 EG 008',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-01-23 07:47:06',258,NULL),(0.28,'Fuses','Resettable fuse Ihold=0.1A, Itrip=0.2A, trip time 4s, max. 40 A, 60 V radial','PFRA.pdf','05 EG 008',7,'PFRA 010','35201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 08:52:27',259,NULL),(0.28,'Fuses','Resettable fuse Ihold=0.5A, Itrip=1.0A, trip time 4s, max. 40 A, 60 V radial','PFRA.pdf','05 EG 008',7,'PFRA 050','35207',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 08:52:27',260,NULL),(0.28,'Fuses','Resettable fuse Ihold=1.1A, Itrip=2.2A, trip time 6.6s, max. 40 A, 30 V radial','PFRA.pdf','05 EG 008',7,'PFRA 110','35211',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 08:52:27',261,NULL),(0.22,'Fuses','Resettable fuse Ihold=1.6A, Itrip=3.2A, trip time 8s, max. 40 A, 30 V radial','PFRA.pdf','05 EG 008',7,'PFRA 160','35213',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 08:52:27',262,NULL),(0.26,'Fuses','Resettable fuse Ihold=3.0A, Itrip=6.0A, trip time 10.8s, max. 40 A, 30 V radial','PFRA.pdf','05 EG 008',7,'PFRA 300','34946',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 08:52:27',263,NULL),(0.31,'Connectors','2-pin terminal strip Pitch 5,08 mm','AKL101.pdf','05 EG 008',NULL,'AKL 101-02','36605',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 09:15:12',264,NULL),(0.22,'Screws','Cheese head / Hex slot / A2 S.Steel / DIN 912 / M6 x 35 mm',NULL,'05 EG 008',NULL,'SZK E M6X35-50','168886',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-06 09:19:44',265,NULL),(0.23,'Fuses','G-fuse link, quick, 50 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 0,05A','119318',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:22:30',266,NULL),(NULL,'Fuses','G-fuse link, quick, 80 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:26:42',267,NULL),(0.19,'Fuses','G-fuse link, quick, 100 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 0,1A','119321',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:28:48',268,NULL),(0.13,'Fuses','G-fuse link, quick, 200 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 0,2A','119324',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:29:46',269,NULL),(0.14,'Fuses','G-fuse link, quick, 250 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 0,25A','119325',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:29:51',270,NULL),(NULL,'Fuses','G-fuse link, quick, 400 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:29:55',271,NULL),(NULL,'Fuses','G-fuse link, quick, 500 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:17',272,NULL),(NULL,'Fuses','G-fuse link, quick, 630 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:22',273,NULL),(0.18,'Fuses','G-fuse link, quick, 1 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 1,0A','119331',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:35',274,NULL),(0.13,'Fuses','G-fuse link, quick, 1.6 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 1,6A','119333',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:43',275,NULL),(NULL,'Fuses','G-fuse link, quick, 2 A 5x20 mm','eska_quick.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:47',276,NULL),(0.13,'Fuses','G-fuse link, quick, 2.5 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 2,5A','119335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:50',277,NULL),(0.13,'Fuses','G-fuse link, quick, 3.15 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 3,15A','119336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:30:57',278,NULL),(0.13,'Fuses','G-fuse link, quick, 6.3 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 6,3A','119339',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:31:06',279,NULL),(NULL,'Fuses','G-fuse link, medium slow, 50 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:38:30',280,NULL),(NULL,'Fuses','G-fuse link, medium slow, 80 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:38:35',281,NULL),(NULL,'Fuses','G-fuse link, medium slow, 100 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:38:41',282,NULL),(NULL,'Fuses','G-fuse link, medium slow, 400 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:38:52',283,NULL),(NULL,'Fuses','G-fuse link, medium slow, 500 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:38:57',284,NULL),(NULL,'Fuses','G-fuse link, medium slow, 630 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:01',285,NULL),(NULL,'Fuses','G-fuse link, medium slow, 1 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:10',286,NULL),(NULL,'Fuses','G-fuse link, medium slow, 1.25 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:18',287,NULL),(NULL,'Fuses','G-fuse link, medium slow, 1.6 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:25',288,NULL),(NULL,'Fuses','G-fuse link, medium slow, 2 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:29',289,NULL),(NULL,'Fuses','G-fuse link, medium slow, 2.5 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:33',290,NULL),(NULL,'Fuses','G-fuse link, medium slow, 3.15 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:39',291,NULL),(NULL,'Fuses','G-fuse link, medium slow, 6.3 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:47',292,NULL),(NULL,'Fuses','G-fuse link, medium slow, 10 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',293,NULL),(NULL,'Fuses','G-fuse link, slow, 50 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:41:23',294,NULL),(NULL,'Fuses','G-fuse link, slow, 80 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:41:27',295,NULL),(NULL,'Fuses','G-fuse link, slow, 100 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:41:32',296,NULL),(NULL,'Fuses','G-fuse link, slow, 200 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:41:50',297,NULL),(NULL,'Fuses','G-fuse link, slow, 250 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:41:54',298,NULL),(NULL,'Fuses','G-fuse link, slow, 400 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:00',299,NULL),(0.11,'Fuses','G-fuse link, slow, 1 A 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 1,0A','119352',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:07',300,NULL),(0.11,'Fuses','G-fuse link, slow, 1.25 A 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 1,25A','119353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:12',301,NULL),(0.11,'Fuses','G-fuse link, slow, 1.6 A 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 1,6A','119354',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:17',302,NULL),(0.12,'Fuses','G-fuse link, slow, 2 A 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 2,0A','119355',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:23',303,NULL),(NULL,'Fuses','G-fuse link, slow, 2.5 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:28',304,NULL),(0.11,'Fuses','G-fuse link, slow, 3.15 A 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 3,15A','119357',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:36',305,NULL),(NULL,'Fuses','G-fuse link, slow, 4 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:40',306,NULL),(NULL,'Fuses','G-fuse link, slow, 5 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:46',307,NULL),(NULL,'Fuses','G-fuse link, slow, 6.3 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:26',308,NULL),(NULL,'Fuses','G-fuse link, slow, 10 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:30',309,NULL),(NULL,'Fuses','G-fuse link, slow, 12.5 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:36',310,NULL),(NULL,'Fuses','G-fuse link, slow, 16 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:39',311,NULL),(0.13,'Fuses','G-fuse link, quick, 800 mA 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 0,8A','119330',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:22:30',312,NULL),(0.13,'Fuses','G-fuse link, quick, 1.25 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 1,25A','119332',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:22:30',313,NULL),(0.13,'Fuses','G-fuse link, quick, 10 A 5x20 mm','eska_quick.pdf','05 EG 008',7,'K-FLINK 10A','119341',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:22:30',314,NULL),(NULL,'Fuses','G-fuse link, medium slow, 4 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',315,NULL),(NULL,'Fuses','G-fuse link, medium slow, 800 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',316,NULL),(NULL,'Fuses','G-fuse link, medium slow, 250 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',317,NULL),(NULL,'Fuses','G-fuse link, medium slow, 200 mA 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',318,NULL),(0.12,'Fuses','G-fuse link, slow, 500 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 0,5A','119349',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:39',319,NULL),(0.12,'Fuses','G-fuse link, slow, 630 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 0,63A','119350',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:39',320,NULL),(0.12,'Fuses','G-fuse link, slow, 800 mA 5x20 mm','eska_slow.pdf','05 EG 008',7,'K-TR 0,8A','119351',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:39',321,NULL),(0.60,'Fuses','Multimeter fuse, quick, 10 A, 250 V DC 6x25 mm','TDC180.pdf','05 EG 008',7,'MMS 6X25 10A','124015',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'2018-02-07 12:43:39',322,NULL),(NULL,'Fuses','Multimeter fuse, 1 A, 600 V 6x25 mm',NULL,'05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:43:39',323,NULL),(0.16,'ICs','NE555 Timer General purpose single bipolar timer','ne555.pdf','05 EG 008',10,'NE 555 DIP','13396',NULL,'https://www.conrad.biz/de/xxx-152184.html','https://www.voelkner.de/products/23668/Texas-Instruments-Takt-Timing-IC-Timer-Oszillator-NE555P-PDIP-8.html','http://de.farnell.com/texas-instruments/ne555p/timer-single-precision-dip8-0/dp/9589899','https://de.rs-online.com/web/p/timer-ics/2215535/','https://www.mouser.de/ProductDetail/Texas-Instruments/NE555P?qs=sGAEpiMZZMsG1k5vdNM%2fc6UNh9pCnCAm','https://www.digikey.de/product-detail/de/texas-instruments/NE555P/296-1411-5-ND/277057','https://www.amazon.de/NE555-NE555P-Controller-Timer-Dil-555-Timer/dp/B00Z8CAA46',0,1,'2018-02-23 10:40:16',324,NULL),(0.05,'IC-Sockets','IC Socket 8 pins double spring contact',NULL,'05 EG 008',8,'GS 8','8230',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:01:41',328,NULL),(0.07,'IC-Sockets','IC Socket 14 pins double spring contact',NULL,'05 EG 008',8,'GS 14','8206',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:01:54',329,NULL),(0.07,'IC-Sockets','IC Socket 16 pins double spring contact',NULL,'05 EG 008',8,'GS 16','8208',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:01:54',330,NULL),(0.07,'IC-Sockets','IC Socket 24 pins double spring contact',NULL,'05 EG 008',9,'GS 24-S','8217',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:01:54',331,NULL),(0.12,'IC-Sockets','IC Socket 28 pins double spring contact',NULL,'05 EG 008',9,'GS 28-S','86281',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:01:54',332,NULL),(0.34,'IC-Sockets','IC Socket (precision) 18 pins super flat turned gold plated',NULL,'05 EG 008',8,'GS18P','8211',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',335,NULL),(0.45,'IC-Sockets','IC Socket (precision) 28 pins super flat turned gold plated',NULL,'05 EG 008',9,'GS28P-S','8222',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',336,NULL),(0.25,'IC-Sockets','IC Socket (precision) 16 pins super flat turned gold plated',NULL,'05 EG 008',8,'GS16P','8209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',337,NULL),(0.02,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 40 mm',NULL,'05 EG 008',11,'SSK M3X40-200','130276',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:13:30',338,NULL),(0.01,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 25 mm',NULL,'05 EG 008',11,'SSK M3X25-200','130273',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:20:10',339,NULL),(0.01,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 30 mm',NULL,'05 EG 008',11,'SSK M3X30-200','130275',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:24:22',340,NULL),(0.01,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 20 mm',NULL,'05 EG 008',11,'SSK M3X20-200','65738',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:26:44',341,NULL),(0.01,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 10 mm',NULL,'05 EG 008',11,'SSK M3X10-200','65736',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:26:55',342,NULL),(0.01,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 16 mm',NULL,'05 EG 008',11,'SSK M3X16-200','65737',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:29:01',343,NULL),(0.03,'Screws','Flat countersunk / cross slotted - PZD Pozidriv / A2 S.Steel / DIN965-Z / M3 x 30 mm',NULL,'05 EG 008',11,'SKS M3X30-50','130289',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:29:02',344,NULL),(0.03,'Screws','Flat countersunk / cross slotted - PZD Pozidriv / A2 S.Steel / DIN965-Z / M3 x 25 mm',NULL,'05 EG 008',11,'SKS M3X25-50','130288',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:29:03',345,NULL),(0.03,'Screws','Flat countersunk / cross slotted - PZD Pozidriv / A2 S.Steel / DIN965-Z / M3 x 20 mm',NULL,'05 EG 008',11,'SKS M3X20-50','65749',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:29:04',346,NULL),(0.03,'Screws','Flat countersunk / cross slotted - PZD Pozidriv / A2 S.Steel / DIN965-Z / M3 x 16 mm',NULL,'05 EG 008',11,'SKS M3X16-50','65748',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:29:05',347,NULL),(0.02,'Screws','Flat countersunk / cross slotted - PZD Pozidriv / A2 S.Steel / DIN965-Z / M3 x 10 mm',NULL,'05 EG 008',11,'SKS M3X10-50','65747',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 13:29:06',348,NULL),(0.07,'Screws','Flat countersunk / flat slotted / A2 S.Steel / DIN 963 / M3 x 12 mm @ Voelkner',NULL,'05 EG 008',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 16:36:15',349,NULL),(NULL,'Screws','Cheese head / Hex slot / A4 S.Steel / DIN 912 / M6 x 8 mm @ Voelkner',NULL,'05 EG 008',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-03-02 17:28:40',350,NULL),(0.01,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 6 mm ',NULL,'05 EG 008',12,'SZK M3X6-200','65692',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',351,NULL),(0.01,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 8 mm ',NULL,'05 EG 008',12,'SZK M3X8-200','65693',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',352,NULL),(0.01,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 10 mm ',NULL,'05 EG 008',12,'SZK M3X10-200','65694',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',353,NULL),(0.01,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 12 mm ',NULL,'05 EG 008',12,'SZK M3X12-200','65695',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',354,NULL),(0.01,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 25 mm ',NULL,'05 EG 008',12,'SZK M3X25-200','129308',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',355,NULL),(0.02,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 30 mm ',NULL,'05 EG 008',12,'SZK M3X30-200','129309',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',356,NULL),(0.02,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 35 mm ',NULL,'05 EG 008',12,'SZK M3X35-200','129310',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',357,NULL),(0.02,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 40 mm ',NULL,'05 EG 008',12,'SZK M3X40-200','129311',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',358,NULL),(0.04,'Screws','Cheese Head / Hex Slot / A2 S.Steel / DIN 84 / M3 x 50 mm ',NULL,'05 EG 008',12,'SZK M3X50-200','129312',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',359,NULL),(0.02,'Screws','PAN Head / Cross Slotted - PZD Pozidriv / A2 S.Steel / DIN 7985-Z / M3 x 10 mm',NULL,'05 EG 008',12,'SKL M3X10-50','65753',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',360,NULL),(0.03,'Screws','PAN Head / Cross Slotted - PZD Pozidriv / A2 S.Steel / DIN 7985-Z / M3 x 16 mm',NULL,'05 EG 008',12,'SKL M3X16-50','65754',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',361,NULL),(0.03,'Screws','PAN Head / Cross Slotted - PZD Pozidriv / A2 S.Steel / DIN 7985-Z / M3 x 20 mm',NULL,'05 EG 008',12,'SKL M3X20-50','65755',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',362,NULL),(0.03,'Screws','PAN Head / Cross Slotted - PZD Pozidriv / A2 S.Steel / DIN 7985-Z / M3 x 25 mm',NULL,'05 EG 008',12,'SKL M3X25-50','130348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',363,NULL),(0.03,'Screws','PAN Head / Cross Slotted - PZD Pozidriv / A2 S.Steel / DIN 7985-Z / M3 x 30 mm',NULL,'05 EG 008',12,'SKL M3X30-50','130349',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',364,NULL),(0.02,'Washers','for M3 / Flat Round Large / A2 S.Steel / DIN 9021',NULL,'05 EG 008',13,'SKA 3,2X9-100 ','65774',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'2003-03-18 17:28:40',365,NULL),(0.02,'Washers','for M3 / Flat Round Small / A2 S.Steel / DIN 125',NULL,'05 EG 008',13,'SKU 3,2-100 ','65763',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'2003-03-18 17:28:40',366,NULL),(0.01,'Washers','for M3 / Serrated lock / A2 S.Steel / DIN 125',NULL,'05 EG 008',13,'SKZ 3,2-100 ','65789',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'2003-03-18 17:28:40',367,NULL),(0.01,'Washers','for M3 / Spring lock / A2 S.Steel / DIN 125',NULL,'05 EG 008',13,'SKU 3,2-100 ','65781',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'2003-03-18 17:28:40',368,NULL),(0.01,'Nuts','Hexagonal / A2 S.Steel / DIN 934 / M3',NULL,'05 EG 008',13,'SK M3','18083',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',369,NULL),(0.03,'Nuts','Locking Hexagonal / A2 S.Steel / DIN 985 / M3',NULL,'05 EG 008',13,'SKSM M3-100','65808',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',370,NULL),(0.04,'Nuts','Plastic Hexagonal / Polycarbonate / DIN / M3',NULL,'05 EG 008',13,'SPC M3','19303',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',371,NULL),(0.03,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 0.1 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 0,1/63RAD ','18156',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',372,NULL),(0.11,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 0.15 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 0,15/63RAD ','18157',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',373,NULL),(0.03,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 0.22 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 0,22/63RAD ','18158',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',374,NULL),(0.03,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 0.33 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 0,33/63RAD ','18159',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',375,NULL),(0.03,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 0.47 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 0,47/63RAD ','18160',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',376,NULL),(0.07,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 0.68 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 0,68/63RAD ','18161',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',377,NULL),(0.02,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / - / 1k Hours / 85°C / 20% / 63V / 1.0 µF','REC_SM RAD.pdf','05 EG 008',14,'SM 1,0/63RAD ','18162',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',378,NULL),(0.14,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 1k Hours / 105°C / 20% / 50V / 2.2 µF','Panasonic_FC-A.pdf','05 EG 008',14,'RAD FC 2,2/50','84581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',380,NULL),(0.14,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 1k Hours / 105°C / 20% / 50V / 3.3 µF','Panasonic_FC-A.pdf','05 EG 008',14,'RAD FC 3,3/50','84582',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',381,NULL),(0.13,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 1k Hours / 105°C / 20% / 50V / 4.7 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 4,7/50','84583',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-03-18 17:28:40',382,NULL),(0.11,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 50V / 4.7 µF','Panasonic_FR-A.pdf','05 EG 008',14,'FR-A 4,7U 50','200267',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1h4r7/?qs=tfZGHB2PWd0gZ8LzVWIqKg%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-05-18 16:28:40',383,NULL),(0.11,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 50V / 10 µF','Panasonic_FR-A.pdf','05 EG 008',14,'FR-A 10U 50','200268',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1h100/?qs=tfZGHB2PWd1NAbdNSgjToQ%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-05-18 16:28:40',385,NULL),(0.09,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 50V / 22 µF','Panasonic_FR-A.pdf','05 EG 008',14,'RAD FR 22/50','121288',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1h220/?qs=ob%252bdNz2%252bYEhXAsBAimeqnw%3d%3d&countrycode=DE',NULL,NULL,0,1,'2003-05-18 16:28:40',387,NULL),(0.15,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 6.3 mm diameter / Low ESR / 1k Hours / 105°C / 20% / 50V / 47 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 47/50','84600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-05-18 16:28:40',391,NULL),(0.14,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 6.3 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 50V / 47 µF','Panasonic_FR-A.pdf','05 EG 008',14,'FR-A 47U 50','200269',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1h470b/?qs=tfZGHB2PWd1bObcqeQ%252b2mg%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-05-18 16:28:40',392,NULL),(0.11,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 25V / 68 µF','Panasonic_FR-A.pdf','05 EG 008',14,'FR-A 68U 25','200271',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-06-18 16:28:40',394,NULL),(0.26,'Capacitors','Electrolytic / Aluminium / Radial / 3.5 mm grid / 8.0 mm diameter / Low ESR / 2k Hours / 105°C / 20% / 63V / 68 µF','Panasonic_FC-A.pdf','05 EG 008',14,'RAD FC 68/63','84611',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-06-18 16:28:40',396,NULL),(0.14,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 6.3 mm diameter / Low ESR / 1k Hours / 105°C / 20% / 16V / 100 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 100/16','84617',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-06-18 16:28:40',397,NULL),(0.14,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 6.3 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 25V / 100 µF','Panasonic_FR-A.pdf','05 EG 008',14,'FR-A 100U 25','200274',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1e101/?qs=Ao3mORb5HCDieoJwtkb8Dw%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-06-18 16:28:40',398,NULL),(0.29,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 8.0 mm diameter / Low ESR / 2k Hours / 105°C / 20% / 35V / 100 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 100/35','84619',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-06-18 16:28:40',399,NULL),(0.24,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / Low ESR / 3k Hours / 105°C / 20% / 63V / 100 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 100/63-5','84622',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-06-18 16:28:40',400,NULL),(0.26,'Capacitors','Electrolytic / Aluminium / Radial / 3.5 mm grid / 8.0/10.0 mm diameter / Low ESR / 6k Hours / 105°C / 20% / 63V / 100 µF','Panasonic_FR-A.pdf','05 EG 008',14,'FR-A 100U 63','200275',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1j101/?qs=55qYoNY87qh6Atyfc8W%252bxw%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-06-18 16:28:40',401,NULL),(0.15,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 6.3 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 25V / 150 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 150U 25','121263',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-06-18 16:28:40',402,NULL),(0.35,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / Low ESR / 8k Hours / 105°C / 20% / 63V / 150 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 150U 63','200277',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1j151/?qs=55qYoNY87qiVGUf5iLQ2WQ%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-06-18 16:28:40',404,NULL),(0.25,'Capacitors','Electrolytic / Aluminium / Radial / 3.5 mm grid / 8.0 mm diameter / Low ESR / 6k Hours / 105°C / 20% / 25V / 220 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 220U 25','200281',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1e221/?qs=tfZGHB2PWd1Rv9iToDM7xw%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-07-18 16:28:40',405,NULL),(0.23,'Capacitors','Electrolytic / Aluminium / Radial / 3.5 mm grid / 8.0 mm diameter / Low ESR / 2k Hours / 105°C / 20% / 35V / 220 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 220/35','84640',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-07-18 16:28:40',406,NULL),(0.35,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / Low ESR / 3k Hours / 105°C / 20% / 63V / 220 µF','Panasonic_FC-A.pdf','05 EG 008',22,'RAD FC 220/63','84642',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-07-18 16:28:40',407,NULL),(0.48,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 63V / 220 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 220U 63','200282',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1j221l/?qs=55qYoNY87qgVMhX9bg%252bLVw%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-07-18 16:28:40',408,NULL),(0.26,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / Low ESR / 6k Hours / 105°C / 20% / 25V / 330 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 330U 35','121265',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-07-18 16:28:40',409,NULL),(0.64,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 12.0 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 63V / 330 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 330U 63','200286',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-07-18 16:28:40',411,NULL),(0.32,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0mm diameter / Low ESR / 8k Hours / 105°C / 20% / 35V / 470 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 470U 35','200291',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1v471/?qs=Uw8ySfEHS7KEaAj8gX6cTQ%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-07-18 16:28:40',413,NULL),(0.76,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 12.5 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 63 V / 470 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 470U 63','200292',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1j471/?qs=55qYoNY87qhLF%2fnu%2fBCRsQ%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-07-18 16:28:40',415,NULL),(0.33,'Capacitors','Electrolytic / Aluminium / Radial / 7.5 mm grid / 18.0 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 35V / 680 µF','Panasonic_FR-A.pdf','05 EG 008',15,'FR-A 680U 35 ','200295',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',417,NULL),(0.99,'Capacitors','Electrolytic / Aluminium / Radial / 7.5 mm grid / 16 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 35V / 2200 µF','Panasonic_FR-A.pdf','05 EG 008',15,'RAD FR 2.200/35 ','121275',NULL,NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1v222b/?qs=n1SRcuzDZT3wDWVIf2yTyQ%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2003-08-18 16:28:40',423,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / - / - / 105°C / 20% / 100V / 2.2 µF',NULL,'05 EG 008',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-09-18 16:28:40',436,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / - / - / 105°C / 20% / 63V / 3.3 µF',NULL,'05 EG 008',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-09-18 16:28:40',438,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / - / - / 105°C / 20% / 100V / 4.7 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',439,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / - / - / 105°C / 20% / 50V / 10 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',440,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 6.0 mm diameter / - / - / 105°C / 20% / 63V / 22 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',441,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 3.5 mm grid / 8.0 mm diameter / - / - / 105°C / 20% / 63V / 47 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',443,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 2.5 mm grid / 8.0 mm diameter / - / - / 105°C / 20% / 16V / 470 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',445,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 13.0 mm diameter / - / - / 105°C / 20% / 63V / 470 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',446,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / - / - / 85°C / 20% / 16V / 1000 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',447,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 13.0 mm diameter / - / - / 85°C / 20% / 35V / 1000 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',448,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 7.5 mm grid / 16.0 mm diameter / - / - / 85°C / 20% / 63V / 1000 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',449,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10.0 mm diameter / - / - / 85°C / 20% / 10V / 2200 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',450,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 7.5 mm grid / 16 mm diameter / - / - / 85°C / 20% / 35V / 2200 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',451,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 10 mm diameter / - / - / 105°C / 20% / 6.3V / 2200 µF',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',452,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 6 mm diameter / - / - / 85°C / 20% / 63V / 10 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',453,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 6 mm diameter / - / - / 85°C / 20% / 16V / 47 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',454,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 8 mm diameter / - / - / 85°C / 20% / 16V / 220 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',455,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 10 mm diameter / - / - / 85°C / 20% / 63V / 220 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',456,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 10 mm diameter / - / - / 85°C / 20% / 16V / 1000 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',457,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 13 mm diameter / - / - / 85°C / 20% / 35V / 1000 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',458,NULL),(NULL,'Capacitors','Electrolytic / Aluminium / Axial / - / 16 mm diameter / - / - / 85°C / 20% / 63V / 1000 µF',NULL,'05 EG 008',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',459,NULL),(NULL,'Capacitors','AC line filter safety / Radial / - / - / - / - / X1/Y2 / -',NULL,'05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-10-18 16:28:00',461,NULL),(0.02,'Connectors','Ferrule 0.25 mm² violet/light blue',NULL,'05 EG 008',2,NULL,NULL,NULL,'https://www.conrad.biz/de/xxx-1571001.html',NULL,'https://de.farnell.com/multicomp/e0206-lightblue/aderendh-lsen-isol-0-25mm-100er/dp/9972196',NULL,NULL,NULL,NULL,0,1,'2018-07-25 16:14:42',463,NULL),(0.06,'LEDs','LED / yellow / 585 nm / THD (leaded) / 5 mm / max. 2,8 V / 20 mA / 5 V',NULL,'05 EG 008',19,'LED 5MM GE','10231',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',466,NULL),(0.06,'LEDs','LED / green / 565 nm / THD (leaded) / 5 mm / max. 2,8 V / 20 mA / 5 V',NULL,'05 EG 008',19,'LED 5MM GN','10232',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',467,NULL),(0.06,'LEDs','LED / red / 697 nm / THD (leaded) / 5 mm / max. 2,8 V / 20 mA / 5 V',NULL,'05 EG 008',19,'LED 5MM RT','10233',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',468,NULL),(0.17,'LEDs','Spacer for 5-mm LEDs / length 5.0 mm / black',NULL,'05 EG 008',19,'MEN 2819.5045','62825',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',469,NULL),(0.05,'LEDs','Mounting Clip for 5-mm LEDs / black',NULL,'05 EG 008',19,'MONTAGERING 5MM','12529',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',470,NULL),(0.06,'LEDs','LED / yellow / 585 nm / THD (leaded) / 3 mm / max. 2,8 V / 20 mA / 5 V',NULL,'05 EG 008',19,'LED 3MM GE','10226',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',471,NULL),(0.17,'LEDs','Spacer for 3-mm LEDs / length 5.0 mm / black',NULL,'05 EG 008',19,'MEN 2818.3045','62820',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',473,NULL),(0.05,'LEDs','Mounting Clip for 3-mm LEDs / black',NULL,'05 EG 008',19,'MONTAGERING 3MM','12528',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',474,NULL),(0.23,'TVS_Diodes','unidirectional / 18 V / UF 3.5/5.0 V / IFSM 200 A / 1500 W / THD, DO-201',NULL,'05 EG 008',NULL,'1,5KE 18A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-31 13:14:25',475,NULL),(0.23,'TVS_Diodes','unidirectional / 15 V / UF 3.5/5.0 V / IFSM 200 A / 1500 W / THD, DO-201',NULL,'05 EG 008',NULL,'1,5KE 15A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-31 13:14:25',476,NULL),(0.58,'Heat-shrink_tubing','black / before: 19.1 mm / after: 9.5 mm / length: 5 m / flame-retardant / dielectric strength: 15 kV','SDB_19_1_SW_DB.pdf','05 EG 008',NULL,'SDB 19,1 SW','53764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',477,NULL),(0.23,'Heat-shrink_tubing','red / before: 6.4 mm / after: 3.2 mm / length: 12 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 6,4 RT','53779',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',478,NULL),(0.92,'Heat-shrink_tubing','transparent / before: 25.4 mm / after: 12.7 mm / length: 5 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 25,4 TR','53815',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',479,NULL),(0.23,'Heat-shrink_tubing','transparent / before: 6.4 mm / after: 3.2 mm / length: 12 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 6,4 TR','53811',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',480,NULL),(0.14,'Heat-shrink_tubing','red / before: 2.4 mm / after: 1.2 mm / length: 15 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 2,4 RT','53775',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',481,NULL),(0.13,'Heat-shrink_tubing','transparent / before: 1.6 mm / after: 0.8 mm / length: 20 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 1,6 TR','53807',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',482,NULL),(0.21,'Heat-shrink_tubing','red / before: 4.8 mm / after: 2.4 mm / length: 12 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 4,8 RT','53778',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',483,NULL),(0.72,'Heat-shrink_tubing','transparent / before: 19.1 mm / after: 9.5 mm / length: 5 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 19,1 TR','53814',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',484,NULL),(0.39,'Heat-shrink_tubing','transparent / before: 12.7 mm / after: 6.4 mm / length: 8 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 12,7 TR','53813',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',485,NULL),(0.16,'Heat-shrink_tubing','transparent / before: 3.2 mm / after: 1.6 mm / length: 15 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 3,2 TR','53809',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',486,NULL),(0.14,'Heat-shrink_tubing','transparent / before: 2.4 mm / after: 1.2 mm / length: 15 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 2,4 TR','53808',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',487,NULL),(0.20,'Heat-shrink_tubing','black / before: 4.8 mm / after: 2.4 mm / length: 12 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 4,8 SW','53759',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',488,NULL),(0.30,'Heat-shrink_tubing','black / before: 9.5 mm / after: 4.7 mm / length: 8 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 9,5 SW','53761',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',489,NULL),(0.16,'Heat-shrink_tubing','black / before: 3.2 mm / after: 1.6 mm / length: 15 m / flame-retardant / dielectric strength: 15 kV','SDB_3_2_SW_DB.pdf','05 EG 008',NULL,'SDB 3,2 SW','53758',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',490,NULL),(0.16,'Heat-shrink_tubing','red / before: 3.2 mm / after: 1.6 mm / length: 15 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 3,2 RT','53777',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',491,NULL),(0.32,'Heat-shrink_tubing','transparent / before: 9.5 mm / after: 4.7 mm / length: 8 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 9,5 TR','53812',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',493,NULL),(0.23,'Heat-shrink_tubing','black / before: 6.4 mm / after: 3.2 mm / length: 12 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 6,4 SW','53760',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',494,NULL),(0.32,'Heat-shrink_tubing','blue / before: 9.5 mm / after: 4.7 mm / length: 8 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 9,5 BL','53790',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',495,NULL),(0.32,'Heat-shrink_tubing','yellow / before: 9.5 mm / after: 4.7 mm / length: 8 m / flame-retardant / dielectric strength: 15 kV',NULL,'05 EG 008',NULL,'SDB 9,5 GE','142982',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-01 12:02:11',496,NULL),(0.06,'LEDs','LED / green / 565 nm / THD (leaded) / 3 mm / max. 2,8 V / 20 mA / 5 V',NULL,'05 EG 008',19,'LED 3MM GN','10227',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',497,NULL),(0.06,'LEDs','LED / red / 697 nm / THD (leaded) / 3 mm / max. 2,8 V / 20 mA / 5 V',NULL,'05 EG 008',19,'LED 3MM RT','10228',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-07-30 17:08:48',498,NULL),(0.77,'Terminal_Blocks','Push-in connection / number of connections: 2 / cross section:0.2 mm2 - 6 mm2, AWG: 24 - 10 / NS 35/7,5, NS 35/15 / blue','','05 EG 008',0,'PT 4 BU','209590',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',499,NULL),(0.77,'Terminal_Blocks','Push-in connection / number of connections: 2 / cross section:0.2 mm2 - 6 mm2, AWG: 24 - 10 / NS 35/7,5, NS 35/15 / grey','','05 EG 008',0,'PT 4','209589',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',500,NULL),(1.93,'Terminal_Blocks','Push-in connection / numb of connections: 2 / cross section:0.2 mm2 - 6 mm2, AWG: 24 - 10 / NS 35/7,5, NS 35/15 / green-yellow','','05 EG 008',0,'PT 4 PE','209591',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',501,NULL),(0.59,'Terminal_Blocks','End piece for rail mounting 35 / for DIN rail 35 (NS 35/7,5 or NS 35/15) / grey','','05 EG 008',0,'CLIPFIX 35-5','56051',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',502,NULL),(0.61,'Terminal_Blocks','End clamp for DIN rail 35 (NS 35/7,5 or NS 35/15) / grey','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/clipfix-35-endhalter-clipfix-35-phoenix-contact-inhalt-1-st-658694.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',503,NULL),(2.79,'Terminal_Blocks','Push-in connection / numb of connections: 2 / cross section:0.25 mm2 - 4 mm2, AWG: 22 - 12 / NS 35/7,5, NS 35/15 / green-yellow','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/schutzleiterklemme-520-mm-zugfeder-belegung-pe-gruen-gelb-wago-2002-1207-1-st-730685.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',504,NULL),(4.33,'Terminal_Blocks','Push-in connection / numb of connections: 2 / cross section:0.5 mm2 - 16 mm2; AWG 20 - 4 / NS 35/7,5, NS 35/15 / gnye /76A/800V','','05 EG 008',0,'WAGO 2016-1207','100769',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',505,NULL),(2.26,'Terminal_Blocks','Push-in connection / numb of connections: 2 / cross section:0.5 mm2 - 16 mm2; AWG 20 - 4 / NS 35/7,5, NS 35/15 / grey /76A/800V','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/durchgangsklemme-12-mm-zugfeder-grau-wago-2016-7601-20-st-657021.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',506,NULL),(2.35,'Terminal_Blocks','Push-in connection / numb of connections: 2 / cross section:0.5 mm2 - 16 mm2; AWG 20 - 4 / NS 35/7,5, NS 35/15 / blue /76A/800V','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/durchgangsklemme-12-mm-zugfeder-blau-wago-2016-7604-20-st-657020.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',507,NULL),(3.83,'Terminal_Blocks','Push-in connection / numb of connections: 5 / cross section:0.14 mm2 - 1.5 mm2, AWG: 26 - 12 / NS 35/7,5, NS 35/15 / grey','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/phoenix-contact-zviok-15-3006506-durchgangsreihenklemme-polzahl-5-014-mm-15-mm-grau-50-st-565341.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',508,NULL),(0.79,'Terminal_Blocks','End cover for terminal block ZVIOK 1,5 - 30006506','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/d-zviok-15-abschlussdeckel-d-zviok-15-phoenix-contact-inhalt-50-st-588813.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',509,NULL),(23.78,'Zener_Diodes','Vz = 2.7 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,'https://www.reichelt.de/zener-diode-assortment-0-5-w-sortiment-37-p19276.html?&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',511,NULL),(0.02,'Zener_Diodes','Vz = 3.3 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',512,NULL),(0.02,'Zener_Diodes','Vz = 6.2 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',513,NULL),(0.02,'Zener_Diodes','Vz = 5.1 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,'https://www.conrad.biz/de/bzx55c5v1-zener-diode-05w-51v-do35-inhalt-100-stueck-800202024.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',514,NULL),(0.02,'Zener_Diodes','Vz = 5.6 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',515,NULL),(0.02,'Zener_Diodes','Vz = 10 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',516,NULL),(0.02,'Zener_Diodes','Vz = 24 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',517,NULL),(0.02,'Zener_Diodes','Vz = 12 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',518,NULL),(0.02,'Zener_Diodes','Vz = 18 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',519,NULL),(0.02,'Zener_Diodes','??? Vz = 15 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',520,NULL),(0.02,'Zener_Diodes','??? Vz = 12 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',521,NULL),(0.02,'Zener_Diodes','??? Vz = 24 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',523,NULL),(0.02,'Zener_Diodes','??? Vz = 7 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',524,NULL),(0.02,'Zener_Diodes','??? Vz = 6 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',525,NULL),(0.02,'Zener_Diodes','Vz = 4.7 V / Ptot = 500 mW / VF = 1 V at IF = 100 mA / Package: DO-35',NULL,'05 EG 008',16,NULL,NULL,NULL,'https://www.conrad.biz/de/bzx55c4v7-zener-diode-05w-47v-do35-inhalt-100-stueck-800202023.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 12:18:24',526,NULL),(3.71,'Terminal_Blocks','DIN rail / width = 35 mm; height = 7,5 mm; length: 2m (NS 35/7,5) / perforated: slotted holes for M5-screws / zinc-plated metal','','05 EG 008',0,NULL,NULL,NULL,'https://www.conrad.biz/de/hutschiene-gelocht-stahlblech-2000-mm-hellermanntyton-delta3f-st-gel-wc-1-st-545703.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',527,NULL),(0.04,'Cable_tags','imprint: A / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-a-4-bis-10-mm-0251311637-cli-c-2-4-gesw-a-mp-weidmueller-277008.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',529,NULL),(0.04,'Cable_tags','imprint: G / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-g-4-bis-10-mm-0251311649-cli-c-2-4-gesw-g-mp-weidmueller-277016.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',531,NULL),(0.04,'Cable_tags','imprint: F / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-f-4-bis-10-mm-0251311647-cli-c-2-4-gesw-f-mp-weidmueller-277014.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',532,NULL),(0.04,'Cable_tags','imprint: Q / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-q-4-bis-10-mm-0251311669-cli-c-2-4-gesw-q-mp-weidmueller-277027.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',533,NULL),(0.04,'Cable_tags','imprint: S / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-s-4-bis-10-mm-0251311673-cli-c-2-4-gesw-s-mp-weidmueller-277030.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',534,NULL),(0.04,'Cable_tags','imprint: X / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-x-4-bis-10-mm-0251311687-cli-c-2-4-gesw-x-mp-weidmueller-277035.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',535,NULL),(0.04,'Cable_tags','imprint: 0 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-0-4-bis-10-mm-0251311502-cli-c-2-4-gesw-0-mp-weidmueller-276988.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',536,NULL),(0.04,'Cable_tags','imprint: 1 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-1-4-bis-10-mm-0251311505-cli-c-2-4-gesw-1-mp-weidmueller-276990.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',537,NULL),(0.04,'Cable_tags','imprint: 2 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-2-4-bis-10-mm-0251311508-cli-c-2-4-gesw-2-mp-weidmueller-276992.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',538,NULL),(0.04,'Cable_tags','imprint: 3 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-3-4-bis-10-mm-0251311511-cli-c-2-4-gesw-3-mp-weidmueller-276994.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',539,NULL),(0.04,'Cable_tags','imprint: 4 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-4-4-bis-10-mm-0251311514-cli-c-2-4-gesw-4-mp-weidmueller-276997.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',540,NULL),(0.04,'Cable_tags','imprint: 5 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-5-4-bis-10-mm-0251311517-cli-c-2-4-gesw-5-mp-weidmueller-276998.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',541,NULL),(0.04,'Cable_tags','imprint: 6 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-6-4-bis-10-mm-0251311520-cli-c-2-4-gesw-6-mp-weidmueller-277000.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',542,NULL),(0.04,'Cable_tags','imprint: 7 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-7-4-bis-10-mm-0251311523-cli-c-2-4-gesw-7-mp-weidmueller-277003.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',543,NULL),(0.04,'Cable_tags','imprint: 8 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-8-4-bis-10-mm-0251311526-cli-c-2-4-gesw-8-mp-weidmueller-277005.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',544,NULL),(0.04,'Cable_tags','imprint: 9 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-9-4-bis-10-mm-0251311529-cli-c-2-4-gesw-9-mp-weidmueller-277007.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',545,NULL),(0.04,'Cable_tags','imprint: K / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-k-4-bis-10-mm-1568261657-cli-c-2-4-gesw-k-cd-weidmueller-322926.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',546,NULL),(0.04,'Cable_tags','imprint: L1 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-l1-4-bis-10-mm-1871901728-cli-c-2-6-gesw-l1-cd-weidmueller-362725.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',547,NULL),(0.04,'Cable_tags','imprint: L2 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-l2-4-bis-10-mm-1871901729-cli-c-2-6-gesw-l2-cd-weidmueller-362726.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',548,NULL),(0.04,'Cable_tags','imprint: L3 / yellow / font: black / fits for outer diameter: 4 - 10 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-BIG.pdf','05 EG 008',17,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-l3-4-bis-10-mm-1871901730-cli-c-2-6-gesw-l3-cd-weidmueller-362728.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',549,NULL),(0.04,'Cable_tags','imprint: 1 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-1-1-bis-3-mm-0252111505-cli-c-02-3-gesw-1-mp-weidmueller-277074.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',550,NULL),(0.04,'Cable_tags','imprint: 2 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-2-1-bis-3-mm-0252111508-cli-c-02-3-gesw-2-mp-weidmueller-277076.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',551,NULL),(0.04,'Cable_tags','imprint: 3 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-3-1-bis-3-mm-0252111511-cli-c-02-3-gesw-3-mp-weidmueller-277079.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',552,NULL),(0.04,'Cable_tags','imprint: 4 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-4-1-bis-3-mm-0252111514-cli-c-02-3-gesw-4-mp-weidmueller-277081.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',553,NULL),(0.04,'Cable_tags','imprint: 5 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-5-1-bis-3-mm-0252111517-cli-c-02-3-gesw-5-mp-weidmueller-277082.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',554,NULL),(0.04,'Cable_tags','imprint: 6 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-6-1-bis-3-mm-0252111520-cli-c-02-3-gesw-6-mp-weidmueller-277084.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',555,NULL),(0.04,'Cable_tags','imprint: 7 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-7-1-bis-3-mm-0252111523-cli-c-02-3-gesw-7-mp-weidmueller-277086.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',556,NULL),(0.04,'Cable_tags','imprint: 8 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-8-1-bis-3-mm-0252111526-cli-c-02-3-gesw-8-mp-weidmueller-277089.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',557,NULL),(0.04,'Cable_tags','imprint: 9 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-9-1-bis-3-mm-0252111529-cli-c-02-3-gesw-9-mp-weidmueller-277091.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',558,NULL),(0.04,'Cable_tags','imprint: A / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-a-1-bis-3-mm-0252111637-cli-c-02-3-gesw-a-mp-weidmueller-277095.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',559,NULL),(0.04,'Cable_tags','imprint: K / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-k-1-bis-3-mm-0252111657-cli-c-02-3-gesw-k-mp-weidmueller-277109.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',560,NULL),(0.04,'Cable_tags','imprint: S / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-s-1-bis-3-mm-0252111673-cli-c-02-3-gesw-s-mp-weidmueller-277119.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',561,NULL),(0.04,'Cable_tags','imprint: X / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 3.4 mm; height: 3.6 mm; length: 3 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-x-1-bis-3-mm-0252111687-cli-c-02-3-gesw-x-mp-weidmueller-277124.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',562,NULL),(0.04,'Cable_tags','imprint: 0 / yellow / font: black / fits for outer diameter: 1 - 3 mm / width: 7 mm; height: 8 mm; length: 4 mm / series: CableLine CLI C','TAG-SMALL.pdf','05 EG 008',18,NULL,NULL,NULL,'https://www.conrad.biz/de/kennzeichnungsring-aufdruck-0-1-bis-3-mm-0252111502-cli-c-02-3-gesw-0-mp-weidmueller-277072.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',563,NULL),(0.01,'Resistors','12 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 12','1345',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',564,NULL),(0.01,'Resistors','120 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 120','1346',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',565,NULL),(0.01,'Resistors','1.2 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 1,2K','1321',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',566,NULL),(0.01,'Resistors','18 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 18K','1364',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',567,NULL),(0.01,'Resistors','120 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 120K','1347',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',568,NULL),(0.01,'Resistors','15 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 15','1353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',569,NULL),(0.01,'Resistors','150 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 150','1354',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',570,NULL),(0.01,'Resistors','1.5 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 1,5K','1327',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',571,NULL),(0.01,'Resistors','15 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 15K','1356',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',572,NULL),(0.01,'Resistors','150 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 150K','1355',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',573,NULL),(0.01,'Resistors','18 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 18','1361',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',574,NULL),(0.01,'Resistors','180 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 180','1362',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',575,NULL),(0.01,'Resistors','1.8 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 1,8K','1333',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',576,NULL),(0.01,'Resistors','180 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 180K','1363',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',577,NULL),(0.01,'Resistors','22 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 22','1381',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',578,NULL),(0.01,'Resistors','220 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 220','1382',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',579,NULL),(0.01,'Resistors','2.2 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 2,2K','1369',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',580,NULL),(0.01,'Resistors','22 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 22K','1384',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',581,NULL),(0.01,'Resistors','220 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 220K','1383',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',582,NULL),(0.01,'Resistors','12 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',65,'1/4W 12K','1348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',583,NULL),(0.01,'Resistors','27 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 27','1389',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',584,NULL),(0.01,'Resistors','270 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 270','1390',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',585,NULL),(0.01,'Resistors','2.7 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 2,7K','1375',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',586,NULL),(0.01,'Resistors','27 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 27K','1392',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',587,NULL),(0.01,'Resistors','270 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 270K','1391',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',588,NULL),(0.01,'Resistors','33 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 33','1409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',589,NULL),(0.01,'Resistors','330 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 330','1410',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',590,NULL),(0.01,'Resistors','3.3 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 3,3K','1397',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',591,NULL),(0.01,'Resistors','33 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 33K','1412',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',592,NULL),(0.01,'Resistors','330 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 330K','1411',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',593,NULL),(0.01,'Resistors','39 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 39','1417',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',594,NULL),(0.01,'Resistors','390 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 390','1418',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',595,NULL),(0.01,'Resistors','3.9 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 3,9K','1403',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',596,NULL),(0.01,'Resistors','39 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 39K','1420',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',597,NULL),(0.01,'Resistors','390 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 390K','1419',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',598,NULL),(0.01,'Resistors','47 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 47','1431',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',599,NULL),(0.01,'Resistors','470 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 470','1432',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',600,NULL),(0.01,'Resistors','4.7 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 4,7K','1432',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',601,NULL),(0.01,'Resistors','47 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 47K','1434',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',602,NULL),(0.01,'Resistors','470 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',66,'1/4W 470K','1433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',603,NULL),(0.01,'Resistors','56 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 56','1433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',604,NULL),(0.01,'Resistors','560 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 560','1446',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',605,NULL),(0.01,'Resistors','5.6 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 5,6K','1439',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',606,NULL),(0.01,'Resistors','56 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 56K','1448',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',607,NULL),(0.01,'Resistors','560 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 560K','1447',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',608,NULL),(0.01,'Resistors','68 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 68','1459',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',609,NULL),(0.01,'Resistors','680 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 680','1460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',610,NULL),(0.01,'Resistors','6.8 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 6,8K','1453',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',611,NULL),(0.01,'Resistors','68 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 68K','1462',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',612,NULL),(0.01,'Resistors','680 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 680K','1461',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',613,NULL),(0.01,'Resistors','82 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 82','1473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',614,NULL),(0.01,'Resistors','820 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 820','1474',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',615,NULL),(0.01,'Resistors','8.2 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 8,2K','1471',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',616,NULL),(0.01,'Resistors','82 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 82K','1476',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',617,NULL),(0.01,'Resistors','820 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 820K','1475',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',618,NULL),(0.01,'Resistors','100 Ohm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 100','1336',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',619,NULL),(0.01,'Resistors','1.0 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 1,0K','1315',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',620,NULL),(0.01,'Resistors','10 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 10K','1338',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',621,NULL),(0.01,'Resistors','100 kOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 100K','1337',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',622,NULL),(0.01,'Resistors','1.0 MOhm / 1/4 W / 5% / Carbon film resistor / mountig form: 0207 / Series E24 / diameter: 2.3 mm; lenght: 6.5 mm / THD (leaded)',NULL,'05 EG 008',67,'1/4W 1,0M','1316',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-06 14:52:28',623,NULL),(NULL,'Connectors','Ferrule 10.0 mm² red',NULL,'05 EG 008',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-04-18 17:27:27',624,NULL),(NULL,'Connectors','Ferrule 16.0 mm² blue',NULL,'05 EG 008',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-04-18 17:28:52',625,NULL),(NULL,'Fuses','Fuse holder for 6 x 30 mm, panel mount, 10 A, 250 V',NULL,'05 EG 008',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-04-18 17:34:12',626,NULL),(NULL,'Connectors','Ring Cable Lug Yellow M4',NULL,'05 EG 008',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-04-18 17:36:24',627,NULL),(0.04,'Transistors','BC560B PNP 30V 0,1A 0,5W 200 MHz B=180-460 TO92','BC559_60.pdf','05 EG 008',5,NULL,NULL,'https://www.reichelt.de/-p5027.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-04-17 22:00:00',628,NULL),(0.20,'IC-Sockets','IC Socket (precision) 8 pins super flat turned gold plated',NULL,'05 EG 008',8,NULL,NULL,'https://www.reichelt.de/ic-sockel-8-polig-superflach-gedreht-vergold-gs-8p-p8231.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',629,NULL),(0.21,'IC-Sockets','IC Socket (precision) 14 pins super flat turned gold plated',NULL,'05 EG 008',8,NULL,NULL,'https://reichelt.de/ic-sockel-14-polig-superflach-gedreht-vergold-gs-14p-p8207.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',630,NULL),(0.25,'IC-Sockets','IC Socket (precision) 20 pins super flat turned gold plated',NULL,'05 EG 008',9,NULL,NULL,'https://www.reichelt.de/ic-sockel-20-polig-superflach-gedreht-vergold-gs-20p-p8213.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',631,NULL),(0.34,'IC-Sockets','IC Socket (precision) 24 pins super flat turned gold plated',NULL,'05 EG 008',9,NULL,NULL,'https://www.reichelt.de/ic-sockel-24-polig-superflach-gedreht-schmal-gs-24p-s-p8219.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-23 15:10:02',632,NULL),(0.23,'LEDs','LED / blue / 465 nm / THD (leaded) / 5 mm / max. 3,6 V / 30 mA / 5 V','5mm_blue.pdf','05 EG 008',19,NULL,NULL,'https://www.reichelt.de/led-5-mm-bedrahtet-blau-800-mcd-60-led-5mm-bl-p61102.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 16:20:02',633,NULL),(0.08,'IC-Sockets','IC Socket 28 pins double spring contact RM 15,24 mm ','MPE.pdf','05 EG 008',9,NULL,NULL,'https://www.reichelt.de/ic-sockel-28-polig-doppelter-federkontakt-gs-28-p8220.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-09-03 14:01:54',634,NULL),(0.39,'IC-Sockets','IC Socket (precision) 28 pins super flat turned gold plated RM 15,24 mm','DS_GS28P.pdf','05 EG 008',9,NULL,NULL,'https://www.reichelt.de/ic-socket-28-pin-super-flat-turned-gold-plated-gs-28p-p8221.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 14:10:02',635,NULL),(NULL,'IC-Sockets','IC Socket 14 pins double spring contact (special contact protection)',NULL,'05 EG 008',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 14:01:54',636,NULL),(1.60,'Audio','TDA7268 2x2W stereo audio amplifier DIL16','TDA7268.pdf','05 EG 008',20,NULL,NULL,'https://www.reichelt.de/audio-amplifier-dil-16-tda-7268-p40656.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:00:37',637,NULL),(0.41,'Audio','TDA2003 10W car radio audio amplifier TO-220B','TDA2003.pdf','05 EG 008',20,NULL,NULL,'https://www.reichelt.de/amplifier-pentawatt-5-tda-2003-p20676.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:03:24',638,NULL),(0.99,'Capacitors','Electrolytic / Aluminium / Radial / 7.5 mm grid / 16 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 25V / 3300 µF','Panasonic_FR-A.pdf','05 EG 008',15,NULL,NULL,'https://www.reichelt.de/elko-radial-3-3-mf-25-v-105-c-low-esr-rad-fr-3-300-25-p121266.html?&trstct=pol_2',NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1e332/?qs=ATUT3BIXiFiTEDM%252baFF1KA%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2019-09-04 11:01:42',640,NULL),(0.90,'Capacitors','Electrolytic / Aluminium / Radial / 7.5 mm grid / 16 mm diameter / Low ESR / 5-10k Hours / 105°C / 20% / 35V / 1500 µF','Panasonic_FR-A.pdf','05 EG 008',15,NULL,NULL,'https://www.reichelt.de/elko-radial-1-5-mf-35-v-105-c-low-esr-fr-a-1-5m-35-p200308.html?&trstct=pol_15',NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fr1v152s/?qs=ATUT3BIXiFjKazY0vbjP2Q%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2019-09-04 11:01:42',641,NULL),(0.52,'Capacitors','Electrolytic / Aluminium / Radial / 5.0 mm grid / 12.5 mm diameter / Low ESR / 10k Hours / 105°C / 20% / 35V / 1000 µF','Panasonic_FR-A.pdf','05 EG 008',15,NULL,NULL,'https://www.reichelt.de/elko-radial-1-0-mf-35-v-105-c-low-esr-rad-fr-1-000-35-p121272.html?&trstct=pol_15',NULL,NULL,NULL,NULL,'http://www.mouser.com/ProductDetail/panasonic/eeu-fs1v102lb/?qs=gt1LBUVyoHkqlHqaUIidlw%3d%3d&countrycode=DE¤cycode=EUR',NULL,NULL,0,1,'2019-09-04 11:01:42',642,NULL),(0.11,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 5k Hours / 105°C / 20% / 35V / 33 µF','Panasonic_FR-A.pdf','05 EG 008',14,NULL,NULL,'https://www.reichelt.de/elko-radial-33-uf-35-v-105-c-low-esr-rad-fr-33-35-p121277.html?&trstct=pol_2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-04 11:01:42',643,NULL),(0.12,'Capacitors','Electrolytic / Aluminium / Radial / 1.5 mm grid / 4.0 mm diameter / Low ESR / 1k Hours / 105°C / 20% / 35V / 6.8 µF','Panasonic_FC-A.pdf','05 EG 008',14,NULL,NULL,'https://www.reichelt.de/elko-radial-6-8-f-35-v-rm-1-5-105-c-1000-h-20-fc-a-6-8u-35-p228383.html?&trstct=pol_0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-04 11:01:42',644,NULL),(0.12,'Capacitors','Electrolytic / Aluminium / Radial / 2.0 mm grid / 5.0 mm diameter / Low ESR / 1-5k Hours / 105°C / 20% / 50V / 15 µF','Panasonic_FC-A.pdf','05 EG 008',14,NULL,NULL,'https://www.reichelt.de/elko-radial-15-uf-50-v-105-c-low-esr-aec-q200-fc-a-15u-50-p199897.html?&trstct=pol_5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-04 11:01:42',645,NULL),(0.16,'Connectors','Single Print Connector Angled 6-Pin Pitch 2,54 mm','IMP.pdf','05 EG 008',1,NULL,NULL,'https://www.reichelt.de/printstecker-einzelstecker-gewinkelt-6-polig-pss-254-6w-p217631.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-11 09:30:33',646,NULL),(0.02,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M4 x 12 mm',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.schraubenluchs.de/x::8730.html',0,1,'2019-09-25 12:08:53',647,NULL),(0.03,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M4 x 25 mm',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',648,NULL),(0.04,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M4 x 35 mm',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',649,NULL),(0.05,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M4 x 45 mm',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',650,NULL),(0.02,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M5 x 12 mm',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',651,NULL),(0.03,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M5 x 25 mm',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',652,NULL),(0.03,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M5 x 35 mm',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',653,NULL),(0.04,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M5 x 45 mm',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',654,NULL),(0.05,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M5 x 55 mm',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',655,NULL),(0.02,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M6 x 12 mm',NULL,'05 EG 008',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',656,NULL),(0.02,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M6 x 16 mm',NULL,'05 EG 008',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',657,NULL),(0.04,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M6 x 25 mm',NULL,'05 EG 008',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',658,NULL),(0.05,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M6 x 35 mm',NULL,'05 EG 008',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',659,NULL),(0.06,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M6 x 45 mm',NULL,'05 EG 008',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',660,NULL),(0.07,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M6 x 55 mm',NULL,'05 EG 008',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',661,NULL),(0.06,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 12 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',662,'17'),(0.07,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 25 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',663,'17'),(0.09,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 35 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',664,'17'),(0.10,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 45 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',665,'17'),(0.14,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 55 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',666,'17'),(0.01,'Nuts','Hexagonal / galvanised / DIN 934 / M4',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',667,NULL),(0.01,'Nuts','Hexagonal / galvanised / DIN 934 / M5',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',668,NULL),(0.01,'Nuts','Hexagonal / galvanised / DIN 934 / M6',NULL,'05 EG 008',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',669,NULL),(0.01,'Nuts','Hexagonal / galvanised / DIN 934 / M8',NULL,'05 EG 008',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',670,NULL),(0.01,'Nuts','Locking Hexagonal / galvanised / DIN 985 / M4',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',671,NULL),(0.01,'Nuts','Locking Hexagonal / galvanised / DIN 985 / M5',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',672,NULL),(0.01,'Nuts','Locking Hexagonal / galvanised / DIN 985 / M6',NULL,'05 EG 008',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',673,NULL),(0.01,'Nuts','Locking Hexagonal / galvanised / DIN 985 / M8',NULL,'05 EG 008',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',674,NULL),(0.01,'Washers','for M4 / Flat Round Large / galvanised / DIN 9021 / 4,3',NULL,'05 EG 008',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',675,NULL),(0.01,'Washers','for M5 / Flat Round Large / galvanised / DIN 9021 / 5,3',NULL,'05 EG 008',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',676,NULL),(0.01,'Washers','for M6 / Flat Round Large / galvanised / DIN 9021 / 6,4 ',NULL,'05 EG 008',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',677,NULL),(0.02,'Washers','for M8 / Flat Round Large / galvanised / DIN 9021 / 8,4',NULL,'05 EG 008',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',678,NULL),(NULL,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 80 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',679,'17'),(46.18,'Ceramic_Capacitors','assortment of ceramic capacitors, available capacities: 1 pF, 2.2 pF, 4.7 pF, 10 pF, 15 pF, 22 pF, 33 pF, 47 pF, 56 pF, 68 pF, 100 pF, 150 pF, 220 pF, 330 pF, 470 pF, 560 pF, 680 pF, 1 nF, 1.5 nF, 2.2 nF, 3.3 nF, 4.7 nF, 6.8 nF, 10 nF, 22 nF / 100 V, 2.5mm','Ceramic_Capacitoors_RECCC-31.pdf','05 EG 008',29,'SORTIMENT 23',NULL,'https://www.reichelt.de/ceramic-capacitor-assortment-box-spacing-2-5-mm-sortiment-23-p19273.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',680,NULL),(0.00,'Ceramic_Capacitors','assortment of ceramic capacitors, available capacities: 1 pF, 2.2 pF, 4.7 pF, 10 pF, 15 pF, 22 pF, 33 pF, 47 pF, 56 pF, 68 pF, 100 pF, 150 pF, 220 pF, 330 pF, 470 pF, 560 pF, 680 pF, 1 nF, 1.5 nF, 2.2 nF, 3.3 nF, 4.7 nF, 6.8 nF, ..., 22 nF / 50 V, 2.5mm','','05 EG 008',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'2003-08-18 16:28:40',681,NULL),(23.78,'Zener_Diodes','assortment of Zener Diodes, available values: 2.7 V, 3.3 V, 3.9 V, 4.7 V, 5.6 V, 6.8 V, 8.2 V, 10 V, 12 V, 15 V, 18 V, 22 V, 27 V, 33 V, 39 V, 47 V / Type: BZX83... / 0.5 W','','05 EG 008',31,NULL,NULL,'https://www.reichelt.de/zener-diode-assortment-0-5-w-sortiment-37-p19276.html?&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',682,NULL),(0.11,'Crimping_Connector','Ring Cable Lug / partly insulated / black / cross section: 2.5 - 4 mm2 / hole diameter: 4.3 mm (for M4) / True Components 738266',NULL,'05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/tru-components-738266.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',684,NULL),(11.87,'Crimping_Connector','Ring Cable Lug / package: 100 Pieces / uninsulated / cross section: up to 10 mm2 / hole diameter: 8.4 mm (for M8) / Lapp 63204255 (Lappkabel)','Lapp_63204255_RingCableLug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/lapp-63204255-ringkabelschuh-querschnitt-max-10-mm-loch-8-4-mm-unisoliert-metall-100-st-1041290.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',685,NULL),(14.24,'Crimping_Connector','Ring Cable Lug / package: 100 pieces / uninsulated / cross section: up to 10 mm2 / hole diameter: 10.4 mm (for M10) / Lapp 63204265 (Lappkabel)','Lapp_63204265_RingCableLug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/lapp-63204265-ringkabelschuh-querschnitt-max-10-mm-loch-10-5-mm-unisoliert-metall-100-st-1041286.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',686,NULL),(0.41,'Crimping_Connector','Ring Cable Lug / partly insulated / yellow / cross section: 4 - 6 mm2 / hole diameter: 10.5 mm (for M10) / Cimco 180058','Cimco_180058_Ringkabelschuh.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/cimco-180058-ringkabelschuh-querschnitt-max-6-mm-loch-10-5-mm-teilisoliert-gelb-1-st-736508.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',687,NULL),(0.22,'Crimping_Connector','Ring Cable Lug / partly insulated / red / cross section: max. 1.5 mm2 / hole diameter: 8.4 mm (for M8) / True Components 1583065',NULL,'05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/1583065.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',688,NULL),(0.50,'Crimping_Connector','Ring Cable Lug / partly insulated / yellow / cross section: max. 6 mm2 / hole diameter: 8.4 mm (for M8) / Klauke 6508','Klauke_6508_RingCableLug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/klauke-6508-ringkabelschuh-querschnitt-max-6-mm-loch-8-4-mm-teilisoliert-gelb-1-st-737146.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',689,NULL),(0.52,'Crimping_Connector','Ring Cable Lug / partly insulated / yellow / cross section: max. 6.604 mm2 / hole diameter: 3.51 mm (for M3) / TE Connectivity 320 567','TEConnectivi_320567_CableLug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/1276355.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',690,NULL),(0.17,'Crimping_Connector','Ring Cable Lug / partly insulated / yellow / cross section: 4 - 6 mm2 / hole diameter: 8.4 mm (for M8) / Vogt 3664a','Vogt_3664a_RingCableLug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/1226310.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',691,NULL),(0.93,'Crimping_Connector','Ring Cable Lug / uninsulated / cross section: 26.7 mm2 / hole diameter: 10.5 mm (for M10) / TE Connectivity 160075','TEConnectivi_160075_CableLug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/733112.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',693,NULL),(0.15,'Crimping_Connector','Ring Cable Lug / partly insulated / blue / cross section: 1.5 - 2.5 mm2 / hole diameter: 8.4 mm (for M8) / Vogt 3645a','Vogt_3645a__Ring_Cable_Lug.pdf','05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/1226316.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',694,NULL),(0.34,'Crimping_Connector','Ring Cable Lug / partly insulated / yellow / cross section: 2.7 - 6.6 mm2 / hole diameter: 4.3 mm (for M4) / TE Connectivity 34853',NULL,'05 EG 008',32,NULL,NULL,NULL,'https://www.conrad.de/de/p/749758.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',695,NULL),(0.38,'Fuse_Holder','for fuse link size: 5 x 20 mm / black / Load Limit: 250 V/10 A, Protection Class: IP40, PC2 / PCB mounting / THT / Schurter OGN','Fuseholder_Schurter_OGN.pdf','05 EG 008',33,NULL,NULL,'https://www.reichelt.de/fuse-holder-5-x-20-mm-max-10-a-250-v-pl-ogn-25-p35196.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',696,NULL),(0.45,'Fuse_Holder','for fuse link size: 5 x 20 mm / black / Load Limit: 250 V/10 A, Protection Class: IP40, PC2 / PCB mounting / SMD / Schurter OGN-SMD','Fuseholder_Schurter_OGN-SMD.pdf','05 EG 008',33,NULL,NULL,'https://www.reichelt.de/fuse-holder-5-x-20-mm-max-10-a-250-v-pl-ogn-smd-p35197.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',697,NULL),(0.24,'Fuse_Holder','Dust Cover for Fuseholder Schurter OGN, OGN-SMD / 5 x 20 mm / transparent / Schurter OGN','Cover_Fuseholder_SchurterOGN.pdf','05 EG 008',33,NULL,NULL,'https://www.reichelt.de/dust-cover-for-fuse-holder-pl-ogn-a-p35198.html?&nbc=1&trstct=lsbght_sldr::35196',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',698,NULL),(0.22,'Fuse_Holder','for fuse link size: 6.3 x 32 mm / pale beige / Load Limit: 250 V/6.3 A / PCB mounting / THT /','Fuseholder_6.3x32.pdf','05 EG 008',33,NULL,NULL,'https://www.reichelt.de/fuse-holder-6-3-x-32-mm-max-6-3-a-250-v-pl-137000-p14686.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',699,NULL),(0.40,'Fuse_Holder','for fuse link size: 5 x 20 mm / black / Load Limit: 250 V/6.3 A / PCB mounting / THT / ESKA 508.000 / incl. removing help','Eska-508000_Ziehhilfe_5x20mm.pdf','05 EG 008',33,NULL,NULL,NULL,'https://www.conrad.de/de/p/1367476.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',700,NULL),(0.36,'Fuse_Holder','for fuse link size: 5 x 20 mm / pale beige / Load Limit: 250 V/6.3 A / PCB mounting / THT / pitch: 22 mm / ESKA 503.500','Eska-503500_5x20-mm.pdf','05 EG 008',33,NULL,NULL,NULL,'https://www.conrad.de/de/p/533866.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',701,NULL),(1.81,'Raspberry_Pi_and_Accessories','Infrared Motion Detector HC-SR501 / op. Voltage: 5 - 20 V DC / Output Level: 3.3 (high), 0 V (low) / Detection Angle: 140°','','05 EG 008',34,NULL,NULL,'https://www.reichelt.de/raspberry-pi-infrared-motion-detector-hc-sr501-rpi-hc-sr501-p224216.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',702,NULL),(7.98,'Arduino_and_Accessories','Arduino-compatible NANO V3 board / Interfaces: I2C, UART, SPI / Flash: 32 KB / SRAM: 2 KB / EEPROM: 1 KB / 20 free GPIO pins (6 PWM, 6 analogue inputs) / Dimensions (L x W): 45 mm x 18 mm / joy-it / Distributor: Reichelt, ARD NANO V3','ARD-NANOV3-DS__EN.pdf','05 EG 008',35,NULL,NULL,'https://www.reichelt.de/arduino-compatible-nano-board-atmega328-mini-usb-ard-nano-v3-p225690.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',704,NULL),(8.39,'Modules','Developer Board, NodeMCU ESP32 Wi-Fi & Blue Tooth Module / Processor: Tensilica LX6 dual-core / CLK speed: 240 MHz / SRAM: 512 KB / Memory: 4 MB / Wireless std: 802.11 b/g/n / f: 2.4 GHz / Bluetooth: Classic/LE /Interfaces: UART, I2C, SPI, DAC, ADC /joy-it','SBC-NODEMCU-ESP32_DS_V1-2_EN.pdf','05 EG 008',36,NULL,NULL,'https://www.reichelt.de/development-boards-esp32-wi-fi-and-bluetooth-module-debo-jt-esp32-p219897.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',705,NULL),(3.78,'Arduino_and_Accessories','Extension Board for Arduino: MotoDriver2 for up to two DC-motors / Driver: L298N / Logical Voltage: 5V / Drive Voltage: 5V - 35 V / Drive Current: 2A / Power: max. 25W / joy-it','SBC-MOTORDRIVER2_DS_V2__EN.pdf','05 EG 008',35,NULL,NULL,'https://www.reichelt.de/developer-boards-motodriver2-l298n-debo-motodriver2-p202829.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',706,NULL),(7.95,'Modules','Developer Kit: NodeMCU V2 based on ESP8266 WiFi-Chip / 10 GPIO (PWM, I2C, 1-Wire) / USB-TTL, plug-and-play / PCB-Antenna / Firmware: open source / Lua Script / Al-Thinker 113990105 / Distributor: EXPtech, EXP-R02-428','','05 EG 008',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/wireless/wifi/6534/nodemcu-v2-lua-based-esp8266',0,1,'2018-02-07 12:39:52',707,NULL),(0.00,'Modules','Relay Module / Microbot MR009-001.2 / previous Distributor: EXPtech, EXP-R26-003 Microbot Relay Module','Microbot_Relays_MR009-001-2.pdf','05 EG 008',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',708,NULL),(3.20,'Break_out_Boards','SOIC to DIP Adaptor - 8-Pin / SparkFun BOB-13655 / Distributor: EXPtech, EXP-R05-833','','05 EG 008',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/zubehoer/adapters/6658/sparkfun-soic-to-dip-adapter-8-pin',0,1,'2018-02-07 12:39:52',709,NULL),(3.30,'Break_out_Boards','SSOP to DIP Adaptor - 16-Pin / SparkFun BOB-13994 / Distributor: EXPtech, EXP-R05-990','','05 EG 008',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/prototyping/7909/sparkfun-ssop-to-dip-adapter-16-pin',0,1,'2018-02-07 12:39:52',710,NULL),(0.00,'Break_out_Boards','SSOP28-SOIC28 to DIP Adaptor / Microbot MR006-002.2 / previous Distributor: EXPtech, EXP-R26-013','SSOP28-SOIC28DIP_MR006-002-2.pdf','05 EG 008',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',712,NULL),(1.19,'Break_out_Boards','SOT23 to DIP Adaptor - 6-Pin / SparkFun BOB-00717 / Distributor: EXPtech, EXP-R05-108',NULL,'05 EG 008',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/sonstige/4207/sot23-to-dip-adapter-bob-00717',0,1,'2018-02-07 12:39:52',713,NULL),(2.95,'Modules','Level Converter, bidirectional 3.3V <--> 5V (works also with 2.8V and 1.8 V) / Sparkfun BOB-12009 / Distributor: EXPtech, EXP-R05-559','','05 EG 008',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/stromspannung/5410/sparkfun-pegelwandler-bidirektional',0,1,'2018-02-07 12:39:52',714,NULL),(3.51,'Audio','Mono 2.5W Class D Audio Amplifier / Adafruit PAM8302 (PAM8302A)\r\nDistributors: Digi-Key, 1528-1492-ND; Eckstein AF2130',NULL,'05 EG 008',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/product-detail/de/adafruit-industries-llc/2130/1528-1492-ND/',0,1,'2018-02-07 12:39:52',715,NULL),(8.50,'Modules','Step-Down Voltage Regulator D24V22F3 / 3.3V, 2.6A / Pololu 2857 / Distributor: EXPtech, EXP-R25-511','','05 EG 008',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/stromspannung/6779/pololu-3.3v-2.6a-step-down-voltage-regulator-d24v22f3',0,1,'2018-02-07 12:39:52',716,NULL),(13.52,'Modules','adjustable Step-Up Voltage Regulator U3V50ALV / 4-12V / Pololu 2570 / Distributor: EXPtech, EXP-R25-333','','05 EG 008',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/stromspannung/5513/pololu-einstellbarer-4-12v-step-up-spannungsregler-u3v50alv',0,1,'2018-02-07 12:39:52',717,NULL),(6.37,'Modules','USB to Serial Converter Adafruit CP2104 Friend / Adafruit 3309 / Distributor: EXPtech, EXP-R15-1157','','05 EG 008',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.exp-tech.de/module/schnittstellen/7838/adafruit-cp2104-friend-usb-zu-serial-converter',0,1,'2018-02-07 12:39:52',718,NULL),(10.34,'Break_out_Boards','SMT Breakout PCB for 44-QFN or 44-TQFP / Adafruit 1162',NULL,'05 EG 008',37,NULL,NULL,NULL,'https://www.conrad.de/de/p/platine-unbestueckt-smt-breakout-pcb-for-44-qfn-or-44-tqfp-adafruit-1162-1516589.html','https://www.voelkner.de/products/954912/Adafruit-Platine-unbestueckt-SMT-Breakout-PCB-for-44-QFN-or-44-TQFP-1162.html',NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',719,NULL),(1.93,'Rubber_Bumpers','Self-adhesive rubber feet for PC enclosures / cylindric / black / Diameter: 32 mm / Height: 9 mm / Pack of 4 / inLine / Distributor: Reichelt, INL 59909B','Bumper_INL_59909B_DE.pdf','05 EG 008',38,NULL,NULL,'https://www.reichelt.de/rubber-feet-for-pc-enclosures-pack-of-4-black-inl-59909b-p143653.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:00:37',720,NULL),(2.21,'Rubber_Bumpers','Self-adhesive Bumper / hemispherical / clear / Diameter: 8 mm / Height: 2.2 mm / Pack of 140 / RND Components RND 455-00489 / Distributor: Reichelt, RND 455-00489','Bumper_RND_455-00489_EN.pdf','05 EG 008',38,NULL,NULL,'https://www.reichelt.de/bumper-self-adhesive-8-mm-clear-rnd-455-00489-p211669.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:00:37',721,NULL),(3.45,'Rubber_Bumpers','Self-adhesive Bumper / hemispherical / grey / Diameter: 11.1 mm / Height: 5 mm / Pack of 56 / 3M Elektro Produkte SJ-5003 GREY / Distributor: Reichelt, 3M SJ5003 GREY','Bumper_3M_SJ-series__EN.pdf','05 EG 008',38,NULL,NULL,'https://www.reichelt.de/rubber-feet-3m-sj5003-grey-p225106.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:00:37',722,NULL),(3.82,'Rubber_Bumpers','Self-adhesive Bumper / hemispherical / black / Diameter: 16 mm / Height: 7.9 mm / Pack of 40 / 3M Elektro Produkte SJ-5027 BLACK / Distributor: Reichelt, 3M SJ5027 BLACK','Bumper_3M_SJ-series__EN.pdf','05 EG 008',38,NULL,NULL,'https://www.reichelt.de/rubber-feet-3m-sj5027-black-p225121.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:00:37',723,NULL),(4.90,'Rubber_Bumpers','Self-adhesive Bumper / hemispherical / clear / Diameter: 11.1 mm / Height: 5 mm / Pack of 24 / Hammond Electronics 1421T5CL / Distributor: Conrad, 485962; Mouser','Bumper_Hammond_Electron_1421.pdf','05 EG 008',38,NULL,NULL,NULL,'https://www.conrad.de/de/485962.html',NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Hammond-Manufacturing/1421T5CL?qs=7%2F6SraaimPSu2o3tW0eNwQ==',NULL,NULL,0,1,'2019-09-03 18:00:37',724,NULL),(25.81,'EMC_Accessories','Grounding Clamp / diameter: 8 mm / sheet steel / package: 50 pieces / Rittal SZ 2367.080 / ',NULL,'05 EG 008',39,NULL,NULL,NULL,'https://www.conrad.de/de/p/rittal-sz-2367-080-erdungsschellen-stahlblech-50-st-393378.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',725,NULL),(21.27,'EMC_Accessories','Grounding Clamp / diameter: 4 mm / sheet steel / package: 50 pieces / Rittal SZ 2367.040 / ',NULL,'05 EG 008',39,NULL,NULL,NULL,'https://www.conrad.de/de/p/rittal-sz-2367-040-erdungsschellen-stahlblech-50-st-393376.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',726,NULL),(1.51,'Audio','BNC Connector / BNC 75 PCB panel jack, angled / impedance 75 Ohm / solder version / Diameter: 9.65 mm / Length: 24.93 mm / BKL / Distributor: Reichelt, UG 1094W2 ','BNC_75_Ohm_BKL_UG1094W2.pdf','05 EG 008',39,NULL,NULL,'https://www.reichelt.de/bnc-pcb-panel-socket-angled-75-ohm-ug-1094w2-p22019.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-03 18:00:37',727,NULL),(1.60,'Mechanical_Components','Knob for Potentiometer/Devices with 4 mm-Shaft / outer diameter: 8 mm / inner diameter: 4 mm / hight: 14 mm / chromium-plated metal / Mentor 487.4 / Distributor: Conrad, 183569','Mentor_4874_Drehknopf.pdf','05 EG 008',39,NULL,NULL,NULL,'https://www.conrad.de/de/p/mentor-487-4-drehknopf-chrom-x-h-8-mm-x-14-mm-1-st-183569.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',728,NULL),(1.78,'Mechanical_Components','5mm-LED Socket with internal reflector / outer diameter: M8 / inner diameter: 5 mm / hight: 20 mm / chromium-plated metal / Signal Construct SMZ1089 / Distributor: Conrad, 185957','SignalConstructsmz1089Led_Fa.pdf','05 EG 008',39,NULL,NULL,NULL,'https://www.conrad.de/de/p/signal-construct-smz1089-led-fassung-metall-passend-fuer-led-5-mm-schraubbefestigung-185957.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',729,NULL),(1.76,'Mechanical_Components','Knob for Potentiometer/Devices with 6 mm-Shaft / outer diameter: 12 mm / inner diameter: 6 mm / hight: 12 mm / Aluminium / Mentor 505.611 / Distributor: Reichelt KNOPF 12-6 AL','Mentor_Drehknopf_6mm.pdf','05 EG 008',39,NULL,NULL,'https://www.reichelt.de/aluminium-device-knob-for-6-mm-axis-knopf-12-6-al-p42121.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',731,NULL),(0.00,'Arduino_and_Accessories','Arduino-compatible NANO V3? board / Interfaces: I2C, UART, SPI / Flash: 32 KB / SRAM: 2 KB / EEPROM: 1 KB / 20 free GPIO pins (6 PWM, 6 analogue inputs) / Dimensions (L x W): 45 mm x 18 mm / ? / Distributor: ?','ARD-NANOV3-DS__EN.pdf','05 EG 008',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',732,NULL),(2.27,'Modules','Relay Module / two Channel / 5 V / Relais Coil: 15 - 20 mA for switching / Relay Type: toggle switch / can be controlled directly with a Microcontroller /Dimensions 50x41x19 mm / SRD-05VDC_SL_C or Sertronics HLRELM-2 Distributor: Reichelt, DEBO RELAIS 2CH','Relay_Modul DEBRO RELAIS 2CH.pdf','05 EG 008',36,NULL,NULL,'https://www.reichelt.de/developer-boards-relay-module-2-channel-5-v-srd-05vdc-sl-c-debo-relais-2ch-p242810.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',733,NULL),(6.51,'Modules','LCD 16 x 2 Display-Module / 16 Characters x 2 Lines / Resolution: 16 x 4 Pixel / +5V DC LED Backlight / suitable for Arduino Due, Arduino Mega 2560, Arduino UNO / attachable to the EXP500-Extension-Board / joy-it COM-LCD16X2 / Distributor: Conrad, 1656369','1656369-joy-it-com-lcd-16x2.pdf','05 EG 008',40,NULL,NULL,NULL,'https://www.conrad.de/de/p/1656369.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',734,NULL),(0.64,'Batteries_and_Accessories','9V Batterie Holder / with flying cables ( True Components BH9VA / Distributor: Conrad, 1672593','TruComponents_bh9va_9v-block.pdf','05 EG 008',40,NULL,NULL,NULL,'https://www.conrad.de/de/p/tru-components-bh9va-batteriehalter-1x-9-v-block-kabel-1672593.html',NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:52',735,NULL),(0.26,'Fuses','G-fuse link, quick, 8 A 5x20 mm','eska_quick.pdf','05 EG 008',7,NULL,NULL,'https://www.reichelt.de/f-p7840.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:22:30',736,NULL),(0.30,'Fuses','G-fuse link, slow, 8 A 5x20 mm','eska_slow.pdf','05 EG 008',7,NULL,NULL,'https://www.reichelt.de/f-p21801.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:42:07',737,NULL),(0.30,'Fuses','G-fuse link, medium slow, 8 A 5x20 mm','eska_medium.pdf','05 EG 008',7,NULL,NULL,'https://www.reichelt.de/f-p13251.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-02-07 12:39:47',738,NULL),(0.02,'Connectors','Ferrule 4.0 mm² grey',NULL,'05 EG 008',2,NULL,NULL,'https://www.reichelt.de/1-p231449.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2017-07-31 08:50:33',739,NULL),(0.04,'Ceramic_Capacitors','C = 10 nF / Working Voltage: 100VDC/250 VAC / Dielectric Strength: 2600VAC for 60 s / Tolerance: +/-10% / Pitch: 5mm, Manufacturer: Hitano / Factory Number: HB2A103K-S565B-ROHS (HITA HB2A103K-S5) / Distributor: Reichelt Ordering Code: HITA HB2A103K-S5','Ceramic_C_HITA HB2A103K-S5.pdf','05 EG 008',1000,'HITA HB2A103K-S5',NULL,'https://www.reichelt.de/ceramic-capacitor-10-nf-100-v-10-85-c-hita-hb2a103k-s5-p246882.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',740,NULL),(0.08,'Ceramic_Capacitors','C = 47 nF / Nominal Voltage: 63VDC / Tolerance: +80%-20% / Pitch: 5mm / Manufacturer: 4D electronic / Type Designation: hik47n63z5vz8d10f5bu /\r\nDistributor: Reichelt / Ordering Code: KERKO 47N','Ceramic_C_KERKO_47N.pdf','05 EG 008',1000,'KERKO 47N',NULL,'https://www.reichelt.de/ceramic-capacitor-47-n-kerko-47n-p9296.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',741,NULL),(0.05,'Ceramic_Capacitors','C = 100 nF, Nominal Voltage: 50VDC, Tolerance: ?, Pitch: 5mm, Manufacturer: ?, Type Designation: \r\nDistributor: Reichelt, Ordering Code: KERKO 100N','Ceramic_C_KERKO_100N.pdf','05 EG 008',1000,'KERKO 100N',NULL,'https://www.reichelt.de/ceramic-capacitor-100-n-kerko-100n-p9265.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',742,NULL),(0.02,'Ceramic_Capacitors','C = 1 nF, Nominal Voltage: 100VDC, Tolerance: 10%, Pitch: 2.5mm, Manufacturer: Hitano, Type Designation: HB2A102K-S265B-ROHS (HITA HB2A102K-S2)\r\nDistributor: Reichelt, Ordering Code: HITA HB2A102K-S2','Ceramic_C_HITA HB2A102K-S2.pdf','05 EG 008',1000,'HITA HB2A102K-S2',NULL,'https://www.reichelt.de/ceramic-capacitor-1-nf-100-v-10-85-c-hita-hb2a102k-s2-p246880.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',743,NULL),(0.02,'Electrolyte_Capacitors','C = 0.22 uF / Voltage: 63VDC / Ripple Current: 4mA / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 0,22/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/sub-miniature-electrolytic-capacitor-radial-0-22-f-63-volt-sm-0-22-63rad-p18158.html?GROUPID=3140&&r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',746,NULL),(0.02,'Electrolyte_Capacitors','C = 0.47 uF / Voltage: 63VDC / Ripple Current: 7mA / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 0,47/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/sub-miniature-electrolytic-capacitor-radial-0-47-f-63-volt-sm-0-47-63rad-p18160.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',747,NULL),(0.02,'Electrolyte_Capacitors','C = 0.1 uF / Voltage: 63VDC / Ripple Current: 4mA / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 0,1/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/subminiature-electrolytic-capacitor-radial-0-1-f-63-v-sm-0-1-63rad-p18156.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',748,NULL),(0.02,'Electrolyte_Capacitors','C = 0.33 uF / Voltage: 63VDC / Ripple Current: 6mA / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 0,33/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/sub-miniature-electrolytic-capacitor-radial-0-33-f-63-volt-sm-0-33-63rad-p18159.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',749,NULL),(0.02,'Electrolyte_Capacitors','C = 1.0 uF / Voltage: 63VDC / Ripple Current: 12mA / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 1,0/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/sub-miniature-electrolytic-capacitor-radial-1-0-f-63-volt-sm-1-0-63rad-p18162.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',750,NULL),(0.02,'Electrolyte_Capacitors','C = 0.15 uF / Voltage: 63VDC / Ripple Current: ... / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 0,15/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/sub-miniature-electrolytic-capacitor-radial-0-15-f-63-volt-sm-0-15-63rad-p18157.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',751,NULL),(0.06,'Electrolyte_Capacitors','C = 0.68 uF / Voltage: 63VDC / Ripple Current: 6mA / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: REC / Type Designation: SS series / Distributor: Reichelt, SM 0,68/63RAD','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/sub-miniature-electrolytic-capacitor-radial-0-68-f-63-volt-sm-0-68-63rad-p18161.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',752,NULL),(0.34,'Electrolyte_Capacitors','Low ESR / C = 680 uF / Voltage: 35VDC / Ripple Current: 2470mA / Resistor: 18mOhm / Tolerance: 20% / Pitch: 5mm / Diameter: 10mm / Height: 25mm / Manufacturer: PANASONIC / Type Designation: / Factory Num: EEUFR1V681L / Distributor: Reichelt, FR-A 680U 35','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-680-uf-35-v-105-c-low-esr-fr-a-680u-35-p200295.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',753,NULL),(0.22,'Electrolyte_Capacitors','Low ESR / C = 470 uF / Voltage: 35VDC / Ripple Current: 2470mA / Resistor: 18mOhm / Tolerance: 20% / Pitch: 5mm / Diameter: 10mm / Height: 25mm / Manufacturer: PANASONIC / Type Designation: / Factory Num: EEUFR1V471 / Distributor: Reichelt, FR-A 470U 35','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-470-uf-35-v-105-c-low-esr-fr-a-470u-35-p200291.html?&trstct=pos_2&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',754,NULL),(0.22,'Electrolyte_Capacitors','Low ESR / C = 100 uF / Voltage: 63VDC / Ripple Current: 741mA / Resistor: 68mOhm / Tolerance: 20% / Pitch: 3.5mm / Diameter: 8mm / Height: 15mm / Manufacturer: PANASONIC / Factory Num: EEUFR1J101L / Distributor: Reichelt, FR-A 100U 63','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-100-uf-63-v-105-c-low-esr-fr-a-100u-63-p200275.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',755,NULL),(0.11,'Electrolyte_Capacitors','Low ESR / C = 68 uF / Voltage: 25VDC / Ripple Current: 280mA / Resistor: 300mOhm / Tolerance: 20% / Pitch: 2mm / Diameter: 5mm / Height: 11mm / Manufacturer: PANASONIC / Factory Num: EEUFR1E680 / Distributor: Reichelt, FR-A 68U 25','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-68-uf-25-v-105-c-low-esr-fr-a-68u-25-p200271.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',756,NULL),(0.11,'Electrolyte_Capacitors','Low ESR / C = 2.2 uF / Voltage: 50VDC / Ripple Current: 45mA / Impedance: 1.8 Ohm / Tolerance: 20% / Pitch: 2mm / Diameter: 5mm / Height: 11mm / Manufacturer: Panasonic / Factory Num: EEUFC1H2R2H / Distributor: Reichelt, RAD FC 2,2/50','E_Cap_PANASONIC_FC_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-2-0-mm-rad-fc-2-2-50-p84581.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',757,NULL),(0.10,'Electrolyte_Capacitors','Low ESR / C = 3.3 uF / Voltage: 50VDC / Ripple Current: 65mA / Impedance: 1.3 Ohm / Tolerance: 20% / Pitch: 2mm / Diameter: 5mm / Height: 11mm / Manufacturer: Panasonic / Factory Num: EEUFC1H3R3H / Distributor: Reichelt, RAD FC 3,3/50','E_Cap_PANASONIC_FC_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-2-0-mm-rad-fc-3-3-50-p84582.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',758,NULL),(0.11,'Electrolyte_Capacitors','Low ESR / C = 150 uF / Voltage: 25VDC / Ripple Current: 455mA / Impedance: 0.130 Ohm / Tolerance: 20% / Pitch: 2.5mm / Diameter: 6.3mm / Height: 11.2mm / Manufacturer: Panasonic / Factory Num: EEUFR1E151H / Distributor: Reichelt, RAD FR 150/25','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-2-5-mm-rad-fr-150-25-p121263.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',759,NULL),(0.10,'Electrolyte_Capacitors','Low ESR / C = 33 uF / Voltage: 35VDC / Ripple Current: 280mA / Impedance: 0.300 Ohm / Tolerance: 20% / Pitch: 2mm / Diameter: 5mm / Height: 11mm / Manufacturer: Panasonic / Factory Num: EEUFR1V330H / Distributor: Reichelt, RAD FR 33/35','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-2-0-mm-rad-fr-33-35-p121277.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',760,NULL),(0.10,'Electrolyte_Capacitors','Low ESR / C = 15 uF / Voltage: 50VDC / Ripple Current: 145mA / Impedance: ... Ohm / Tolerance: 20% / Pitch: 2mm / Diameter: 5mm / Height: 11mm / Manufacturer: Panasonic / Factory Num: EEUFC1H150 / Distributor: Reichelt, FC-A 15U 50','E_Cap_PANASONIC_FC_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-15-uf-50-v-105-c-low-esr-aec-q200-fc-a-15u-50-p199897.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',761,NULL),(0.10,'Electrolyte_Capacitors','Low ESR / C = 6.8 uF / Voltage: 35VDC / Ripple Current: ... / Impedance: ... Ohm / Tolerance: 20% / Pitch: 1.5mm / Diameter: 4mm / Height: 7mm / Manufacturer: Panasonic / Factory Num: EEAFC1V6R8 / Distributor: Reichelt, FC-A 6,8U 35','E_Cap_PANASONIC_FC_A__.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-6-8-f-35-v-rm-1-5-105-c-1000-h-20-fc-a-6-8u-35-p228383.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',762,NULL),(0.58,'Electrolyte_Capacitors','Low ESR / C = 470 uF / Voltage: 63VDC / Ripple Current: 1995mA / Resistor: 27mOhm / Tolerance: 20% / Pitch: 5mm / Diameter: 12.5mm / Height: 25mm / Manufacturer: PANASONIC / Type Designation: / Factory Num: EEUFR1J471 / Distributor: Reichelt, FR-A 470U 63','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-470-uf-63-v-105-c-low-esr-fr-a-470u-63-p200292.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',763,NULL),(0.22,'Electrolyte_Capacitors','Low ESR / C = 100 uF / Voltage: 63VDC / Ripple Current: 741mA / Resistor: 68mOhm / Tolerance: 20% / Pitch: 3.5mm / Diameter: 8mm / Height: 15mm / Manufacturer: PANASONIC / Type Designation: / Factory Num: EEUFR1J101L / Distributor: Reichelt, FR-A 100U 63','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/e-cap-radial-100-uf-63-v-105-c-low-esr-fr-a-100u-63-p200275.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',764,NULL),(0.83,'Electrolyte_Capacitors','Low ESR / C = 2200 uF / Voltage: 35VDC / Ripple Current: 3750mA / Resistor: 12mOhm / Tolerance: 20% / Pitch: 7.5mm / Diameter: 16mm / Height: 25mm / Manufacturer: PANASONIC / Factory Num: EEUFR1V222B / Distributor: Reichelt, RAD FR 2.200/35','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-7-5-mm-rad-fr-2-200-35-p121275.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',765,NULL),(0.83,'Electrolyte_Capacitors','Low ESR / C = 3300 uF / Voltage: 25VDC / Ripple Current: 3820mA / Resistor: 14mOhm / Tolerance: 20% / Pitch: 7.5mm / Diameter: 16mm / Height: 25mm / Manufacturer: PANASONIC / Factory Num: EEUFR1E332B / Distributor: Reichelt, RAD FR 3.300/25','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-7-5-mm-rad-fr-3-300-25-p121266.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',766,NULL),(0.44,'Electrolyte_Capacitors','Low ESR / C = 1000 uF / Voltage: 35VDC / Ripple Current: 2600mA / Resistor: 18mOhm / Tolerance: 20% / Pitch: 5mm / Diameter: 12.5mm / Height: 20mm / Manufacturer: PANASONIC / Factory Num: EEUFR1V102B / Distributor: Reichelt, RAD FR 1.000/35','E_Cap_PANASONIC_FR_A.pdf','05 EG 008',1000,'',NULL,'https://www.reichelt.de/radial-electrolytic-capacitor-105-c-low-esr-spacing-5-0-mm-rad-fr-1-000-35-p121272.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',767,NULL),(0.44,'Bridge_Rectifier','Input Voltage: 280 VAC / I = 10A / URRM = 400V / Width: 30mm / Height: 20 mm / Depth: 4.8 mm / Manufacturer: Diotec Semiconductor / Factory Num: GBI10G / Distributor: Reichelt, GBI 10G DIO','','05 EG 008',1000,'OJDIOTEC-SIL-BGR_GBI10_EN.pdf',NULL,'https://www.reichelt.de/bridge-rectifier-400v-10a-sil-gbi-10g-dio-p217376.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',768,NULL),(0.21,'Bridge_Rectifier','Input Voltage: 250 VAC / I = 2A / URRM = 600V / Height: 5.1 mm / Diameter: 9 mm / Manufacturer: Diotec Semiconductor / Factory Num: B250R / Distributor: Reichelt, B250R DIO','','05 EG 008',1000,'',NULL,'https://www.reichelt.de/round-bridge-rectifier-600-v-2-a-b250r-dio-p216729.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',769,NULL),(0.23,'Potentiometers','R = 1 kOhm / Nominal Load: 0.1W / Load limit: 200V / Assembly: vertical / Content spacing: 2.5m respective 5mm / Diameter: 10.3 mm / Width: 4.5 mm / Angle of rotation: 240/ Manufacturer: Piher/ FacNum: PT10LH01-102A2020/ Distributor: Reichelt, PT 10-S 1,0K','PIHER_PT-10.pdf','05 EG 008',1000,'PT 10-S 1,0K',NULL,'https://www.reichelt.de/setting-potentiometer-vertical-10mm-1-0-k-ohm-pt-10-s-1-0k-p14632.html?r=1#nav-open',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',770,NULL),(0.23,'Potentiometers','R = 10 kOhm / Nominal Load: 0.1W / Load limit: 200V / Assembly: vertical / Content spacing: 2.5m respective 5mm / Diameter: 10.3 mm / Width: 4.5 mm / Angle of rotation: 240/ Manufacturer: Piher/ FacNum: PT10LH01-103A2020/ Distributor: Reichelt, PT 10-S 10K','PIHER_PT-10.pdf','05 EG 008',1000,'PT 10-S 10K',NULL,'https://www.reichelt.de/setting-potentiometer-vertical-10mm-10-k-ohm-pt-10-s-10k-p14636.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',771,NULL),(0.23,'Potentiometers','R = 100 kOhm / Nominal Load: 0.1W / Load limit: 200V / Assembly: vertical / Content spacing: 2.5m respective 5mm/ Diameter: 10.3 mm / Width: 4.5 mm/ Angle of rotation: 240/ Manufacturer: Piher/ FacNum: PT10LH01-104A2020/ Distributor: Reichelt, PT 10-S 100K','PIHER_PT-10.pdf','05 EG 008',1000,'PT 10-S 100K',NULL,'https://www.reichelt.de/setting-potentiometer-vertical-10mm-100-k-ohm-pt-10-s-100k-p14635.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',772,NULL),(0.48,'Inductors','L = 1 mH, I = 0.85 A / R = 2.33 Ohm / Tolerance: 10 % /Connection: radial, vertical / Mounting form: 11PHC / Diameter: 12 mm / Height: 15 mm / Conten spacing: 5 mm / Manufacturer: Fastron / Factory Num: 11PHC-102K-50 / Distributor: Reichelt, L-11PHC 1,0M','','05 EG 008',1000,'L-11PHC 1,0M',NULL,'https://www.reichelt.de/vertical-inductor-11phc-ferrite-1-0-mh-l-11phc-1-0m-p138671.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',773,NULL),(0.29,'Inductors','Material: ferrite/ L = 1uH, I = 7.5 A/ R = 7 mOhm/ Tolerance: 20 %/Connection: radial, vertical/ Mounting form: 07HCP/ Diameter: 8.3 mm/Height: 10 mm/Content spacing: 5 mm/Manufacturer: Fastron/Factory Num: 11PHC-102K-50/Distributor: Reichelt, L-07HCP 1,0µ','Fastron__DS_07HCP.pdf','05 EG 008',1000,'L-07HCP 1,0µ',NULL,'https://www.reichelt.de/vertical-inductor-07hcp-ferrite-1-0-l-07hcp-1-0-p86387.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',774,NULL),(0.44,'Inductors','Material: ferrite/ L = 10uH, I = 6.7 A/R = 14 mOhm/ Tolerance: 20 %/Connection: radial, vertical/ Mounting form: 09HCP/ Diameter: 12.5 mm/Height: 10.8 mm/Content spacing: 7 mm/Manufacturer: Fastron/Fac. Num: 09HCP-100M-50/Distributor: Reichelt, L-09HCP 10µ','Fastron__DS_09HCP.pdf','05 EG 008',1000,'L-09HCP 10µ',NULL,'https://www.reichelt.de/vertical-inductor-09hcp-ferrite-10-h-l-09hcp-10-p138644.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',775,NULL),(0.61,'Inductors','Material: ferrite/ L = 100uH,I = 2.4A/R = 100 mOhm/Tolerance: 10 %/Connection: radial, vertical/ Mounting form: 09HVP/ Diameter: 12.5 mm/Height: 10.8 mm/Content spacing: 7 mm/Manufacturer: Fastron/Fac. Num: 09HVP-101K-50/Distributor: Reichelt, L-09HVP 100µ','Fastron_09HVP_T.pdf','05 EG 008',1000,'L-09HVP 100µ',NULL,'https://www.reichelt.de/vertical-inductor-09hcp-ferrite-100-h-l-09hvp-100-p255614.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',776,NULL),(17.66,'Cable_ties','Package: 1000 pieces / 100mmx2.5mm / black / 78N / Polyamid 6.6W / Manufacturer: RND Cable / Factory Num: RND 475-00333 / Distributor: Reichelt, RND 475-00333 (not valid? or Distrelec','','05 EG 008',1000,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'https://www.distrelec.de/de/kabelbinder-100-5mm-polyamid-78n-schwarz-rnd-cable-rnd-475-00333/p/30075241',0,1,'2003-08-18 16:28:40',777,NULL),(1.09,'Spiral_hose','Spiral band (10 m coil) / Diameter: 2 - 8 mm / Colour: white transparent / Manufacturer: Eisenacher elektroTECHNIK GmbH / Factory Num: / Distributor: Reichelt, SPIRAL 08-10','','05 EG 008',1000,'SPIRAL08.pdf',NULL,'https://www.reichelt.de/10-m-ring-spiral-tape-2-8-mm-white-transparent-spiral-08-10-p50452.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',778,NULL),(1.55,'Spiral_hose','Spiral band (10 m coil) / Diameter: 5 - 20 mm / Colour: white transparent / Manufacturer: Eisenacher elektroTECHNIK GmbH / Factory Num: / Distributor: Reichelt, SPIRAL 20-10','','05 EG 008',1000,'SPIRAL_20-XX.pdf',NULL,'https://www.reichelt.de/10-m-ring-spiral-tape-5-20-mm-white-transparent-spiral-20-10-p50457.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',779,NULL),(0.66,'Insulating_Tape','Approval: VDE / Colour: green (middle) Width: 15 mm / Length: 10 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1656',NULL,'05 EG 008',1000,'CORO 1656',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-10-m-15-mm-green-coro-1656-p235228.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',780,NULL),(1.18,'Insulating_Tape','Approval: VDE / Colour: green (Flaschengrün) / Width: 19 mm / Length: 25 m / Manufacturer: Scapa / Factory Num: / Distributor: Reichelt, ISOBAND 19 GN',NULL,'05 EG 008',1000,'ISOBAND 19 GN',NULL,'https://www.reichelt.de/vde-insulating-tape-25-m-width-19-mm-green-isoband-19-gn-p136328.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',781,NULL),(1.51,'Insulating_Tape','Approval: VDE / Colour: blue (middle) / Width: 25 mm / Length: 25 m / Manufacturer: Scapa / Factory Num: / Distributor: Reichelt, ISOBAND 25 BL',NULL,'05 EG 008',1000,'ISOBAND 25 BL',NULL,'https://www.reichelt.de/vde-insulating-tape-25-m-width-25-mm-blue-isoband-25-bl-p136335.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',782,NULL),(1.47,'Insulating_Tape','Approval: VDE / Colour: grey / Width: 25 mm / Length: 25 m / Manufacturer: Scapa / Factory Num: / Distributor: Reichelt, ISOBAND 25 GR',NULL,'05 EG 008',1000,'ISOBAND 25 BL',NULL,'https://www.reichelt.de/vde-insulating-tape-25-m-width-25-mm-grey-isoband-25-gr-p136338.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',783,NULL),(1.51,'Insulating_Tape','Approval: VDE / Colour: white / Width: 25 mm / Length: 25 m / Manufacturer: Scapa / Factory Num: / Distributor: Reichelt, ISOBAND 25 WS',NULL,'05 EG 008',1000,'ISOBAND 25 BL',NULL,'https://www.reichelt.de/vde-insulating-tape-25-m-width-25-mm-white-isoband-25-ws-p136334.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',784,NULL),(1.51,'Insulating_Tape','Approval: VDE / Colour: yellow / Width: 25 mm / Length: 25 m / Manufacturer: WE / Factory Num: / Distributor: Reichelt, ISOBAND 25 GE',NULL,'05 EG 008',1000,'ISOBAND 25 GE',NULL,'https://www.reichelt.de/vde-insulating-tape-25-m-width-25-mm-yellow-isoband-25-ge-p136336.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',785,NULL),(1.51,'Insulating_Tape','Approval: VDE / Colour: brown (dark) / Width: 19 mm / Length: 25 m / Manufacturer: WE / Factory Num: / Distributor: Reichelt, ISOBAND 19 BR',NULL,'05 EG 008',1000,'ISOBAND 19 BR',NULL,'https://www.reichelt.de/vde-insulating-tape-25-m-width-19-mm-brown-isoband-19-br-p136330.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',786,NULL),(1.39,'Insulating_Tape','Approval: VDE / Colour: brown (middle) Width: 15 mm / Length: 25 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1436',NULL,'05 EG 008',1000,'CORO 1436',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-25-m-15-mm-brown-coro-1436-p235262.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',787,NULL),(1.39,'Insulating_Tape','Approval: VDE / Colour: yellow / Width: 15 mm / Length: 25 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1428',NULL,'05 EG 008',1000,'CORO 1428',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-25-m-15-mm-yellow-coro-1428-p235263.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',788,NULL),(1.13,'Insulating_Tape','Approval: VDE / Colour: light blue / Width: 15 mm / Length: 25 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1433',NULL,'05 EG 008',1000,'CORO 1433',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-25-m-15-mm-light-blue-coro-1433-p235268.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',789,NULL),(1.09,'Insulating_Tape','Approval: VDE / Colour: violet / Width: 15 mm / Length: 25 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1431',NULL,'05 EG 008',1000,'CORO 1431',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-25-m-15-mm-violet-coro-1431-p235272.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',790,NULL),(1.39,'Insulating_Tape','Approval: VDE / Colour: red / Width: 15 mm / Length: 25 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1792',NULL,'05 EG 008',1000,'CORO 1792',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-25-m-15-mm-red-coro-1792-p235270.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',791,NULL),(1.47,'Insulating_Tape','Approval: VDE / Colour: blue / Width: 15 mm / Length: 25 m / Carrier: PVC film / Adhesive: Acrylic / flexible soft film / hardly inflammable / Manufacturer: Coroplast / Factory Num: / Distributor: Reichelt, CORO 1798',NULL,'05 EG 008',1000,'CORO 1798',NULL,'https://www.reichelt.de/vde-electrical-insulation-tape-25-m-15-mm-blue-coro-1798-p235261.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',792,NULL),(0.64,'Stranded_Wire','Colour: red / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE RT','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE RT',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-red-litze-rt-p10297.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',793,NULL),(0.66,'Stranded_Wire','Colour: black / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE SW','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE SW',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-black-litze-sw-p10298.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',794,NULL),(0.66,'Stranded_Wire','Colour: brown / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE BR','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE BR',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-brown-litze-br-p10293.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',795,NULL),(0.64,'Stranded_Wire','Colour: grey / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE GR','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE GR',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-grey-litze-gr-p10295.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',796,NULL),(0.64,'Stranded_Wire','Colour: yellow / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE GE','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE GE',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-yellow-litze-ge-p10294.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',797,NULL),(0.80,'Stranded_Wire','Colour: orange / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE OR','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE OR',NULL,'https://www.reichelt.de/insulated-copper-litz-wire-10-m-1-x-0-14-mm-orange-litze-or-p118722.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',798,NULL),(0.64,'Stranded_Wire','Colour: green / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE GN','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE GN',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-green-litze-gn-p10296.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',799,NULL),(0.66,'Stranded_Wire','Colour: blue / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE BL','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE BL',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-blue-litze-bl-p10292.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',800,NULL),(0.66,'Stranded_Wire','Colour: white / Insulated braided copper wire (1-core) / 1x0.14 mm2, multi-wire (18x0.1mm) / Length: 10m / Manufacturer: / Factory Num: / Distributor: Reichelt, LITZE WS','LiY-Schaltlitze_1501016.pdf','05 EG 008',1000,'LITZE WS',NULL,'https://www.reichelt.de/insulated-braided-copper-wire-10-m-1-x-0-14-mm-white-litze-ws-p10299.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',801,NULL),(4.29,'Crimping_Connector','Ferrule / insulated / grey / cross section: 0.14 mm2 / Length: 10 mm / package of 500 pieces / Manufacturer: WE Wire Engineering / Distributor: Reichelt, AEHI 0,14-500',NULL,'05 EG 008',1000,'AEHI 0,14-500',NULL,'https://www.reichelt.de/500-pack-of-insulated-0-14-mm-ferrules-aehi-0-14-500-p170061.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',802,NULL),(0.76,'Crimping_Connector','Ferrule / insulated / white / cross section: 0.5 mm2 / Length: 8 mm / package of 100 pieces / Manufacturer: Vogt AG / Distributor: Reichelt, VT AEHI 0,5-100',NULL,'05 EG 008',1000,'VT AEHI 0,5-100',NULL,'https://www.reichelt.de/100-pack-of-insulated-0-5mm-ferrules-vt-aehi-0-5-100-p231444.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',803,NULL),(0.83,'Crimping_Connector','Ferrule / insulated / grey / cross section: 0.75 mm2 / Length: 8 mm / package of 100 pieces / Manufacturer: Vogt AG / Distributor: Reichelt, VT AEHI 0,75-100',NULL,'05 EG 008',1000,'VT AEHI 0,75-100',NULL,'https://www.reichelt.de/100-pack-of-insulated-0-75mm-ferrules-grey-vt-aehi-0-75-100-p231445.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',804,NULL),(0.83,'Crimping_Connector','Ferrule / insulated / red / cross section: 1.0 mm2 / Length: 8 mm / package of 100 pieces / Manufacturer: Vogt AG / Distributor: Reichelt, VT AEHI 1,0-100',NULL,'05 EG 008',1000,'VT AEHI 1,0-100',NULL,'https://www.reichelt.de/100-pack-of-insulated-1-0mm-ferrules-vt-aehi-1-0-100-p231446.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',805,NULL),(0.83,'Crimping_Connector','Ferrule / insulated / black / cross section: 1.5 mm2 / Length: 8 mm / package of 100 pieces / Manufacturer: Vogt AG / Distributor: Reichelt, VT AEHI 1,5-100',NULL,'05 EG 008',1000,'VT AEHI 1,5-100',NULL,'https://www.reichelt.de/100-pack-of-insulated-1-5mm-ferrules-vt-aehi-1-5-100-p231447.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',806,NULL),(1.06,'Crimping_Connector','Ferrule / insulated / light blue / cross section: 0.25 mm2 (24AWG) / Length: 8 mm / package of 100 pieces / Manufacturer: RND CONNECT / Factory Num: RND 465-00538 / Distributor: Reichelt, RND 465-00538',NULL,'05 EG 008',1000,'RND 465-00538',NULL,'https://www.reichelt.de/bootlace-ferrule-insulated-0-25-mm-8-mm-blue-100-pcs-rnd-465-00538-p252558.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',807,NULL),(1.76,'Crimping_Connector','Ferrule / insulated / turquoise / cross section: 0.34 mm2 (24AWG) / Length: 8 mm / package of 100 pieces / Manufacturer: RND CONNECT / Factory Num: RND 465-00563 / Distributor: Reichelt, RND 465-00563',NULL,'05 EG 008',1000,'RND 465-00563',NULL,'https://www.reichelt.de/bootlace-ferrule-insulated-0-34-mm-8-mm-turquoise-100-pcs-rnd-465-00563-p252583.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',808,NULL),(1.06,'Crimping_Connector','Ferrule,extra long / insulated / grey / cross section: 2.5 mm2 (14AWG) / Length: 18 mm / package of 100 pieces / Manufacturer: RND CONNECT / Factory Num: RND 465-00551 / Distributor: Reichelt, RND 465-00551',NULL,'05 EG 008',1000,'RND 465-00551',NULL,'https://www.reichelt.de/bootlace-ferrule-insulated-2-5-mm-18-mm-grey-100-pcs-rnd-465-00551-p252571.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',809,NULL),(2.51,'Heat-shrink_tubing','red / before shrinking D = 1.2 mm / after shrinking d = 0.6 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,2 RT','SDB_1_2_RT_DB.pdf','05 EG 008',1000,'SDB 1,2 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-red-1-2-mm-sdb-1-2-rt-p53771.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',810,NULL),(2.51,'Heat-shrink_tubing','red / before shrinking D = 1.6 mm / after shrinking d = 0.8 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,6 RT','SDB_1_6_RT_DB.pdf','05 EG 008',1000,'SDB 1,6 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-red-1-6-mm-sdb-1-6-rt-p53772.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',811,NULL),(2.10,'Heat-shrink_tubing','red / before shrinking D = 2.4 mm / after shrinking d = 1.2 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 2,4 RT','SDB_2_4_RT_DB.pdf','05 EG 008',1000,'SDB 2,4 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-red-2-4-mm-sdb-2-4-rt-p53775.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',812,NULL),(2.31,'Heat-shrink_tubing','red / before shrinking D = 3.2 mm / after shrinking d = 1.6 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 3,2 RT','SDB_3_2_RT_DB.pdf','05 EG 008',1000,'SDB 3,2 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-red-3-2-mm-sdb-3-2-rt-p53777.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',813,NULL),(2.51,'Heat-shrink_tubing','red / before shrinking D = 4.8 mm / after shrinking d = 2.4 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 4,8 RT','SDB_4_8_RT_DB.pdf','05 EG 008',1000,'SDB 4,8 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-red-4-8-mm-sdb-4-8-rt-p53778.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',814,NULL),(2.69,'Heat-shrink_tubing','red / before shrinking D = 6.4 mm / after shrinking d = 3.2 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 6,4 RT','SDB_6_4_RT_DB.pdf','05 EG 008',1000,'SDB 6,4 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-red-6-4-mm-sdb-6-4-rt-p53779.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',815,NULL),(2.69,'Heat-shrink_tubing','red / before shrinking D = 9.5 mm / after shrinking d = 4.8 mm / Length: 8 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 9,5 RT','SDB_9_5_RT_DB.pdf','05 EG 008',1000,'SDB 9,5 RT',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-8-m-red-9-5-mm-sdb-9-5-rt-p53780.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',816,NULL),(2.51,'Heat-shrink_tubing','white / before shrinking D = 1.2 mm / after shrinking d = 0.6 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,2 WS','SDB_1_2_WS_DB.pdf','05 EG 008',1000,'SDB 1,2 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-white-1-2-mm-sdb-1-2-ws-p142949.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',817,NULL),(2.51,'Heat-shrink_tubing','white / before shrinking D = 1.6 mm / after shrinking d = 0.8 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,6 WS','SDB_1_6_RT_DB.pdf','05 EG 008',1000,'SDB 1,6 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-white-1-6-mm-sdb-1-6-ws-p142955.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',818,NULL),(3.35,'Heat-shrink_tubing','white / before shrinking D = 2.4 mm / after shrinking d = 1.2 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 2,4 WS','SDB_2_4_RT_DB.pdf','05 EG 008',1000,'SDB 2,4 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-white-2-4-mm-sdb-2-4-ws-p142961.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',819,NULL),(3.74,'Heat-shrink_tubing','white / before shrinking D = 3.2 mm / after shrinking d = 1.6 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 3,2 WS','SDB_3_2_RT_DB.pdf','05 EG 008',1000,'SDB 3,2 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-white-3-2-mm-sdb-3-2-ws-p142967.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',820,NULL),(2.51,'Heat-shrink_tubing','white / before shrinking D = 4.8 mm / after shrinking d = 2.4 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 4,8 WS','SDB_4_8_RT_DB.pdf','05 EG 008',1000,'SDB 4,8 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-white-4-8-mm-sdb-4-8-ws-p142973.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',821,NULL),(4.41,'Heat-shrink_tubing','white / before shrinking D = 6.4 mm / after shrinking d = 3.2 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 6,4 WS','SDB_6_4_RT_DB.pdf','05 EG 008',1000,'SDB 6,4 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-white-6-4-mm-sdb-6-4-ws-p142979.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',822,NULL),(2.51,'Heat-shrink_tubing','white / before shrinking D = 9.5 mm / after shrinking d = 4.8 mm / Length: 8 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 9,5 WS','SDB_9_5_RT_DB.pdf','05 EG 008',1000,'SDB 9,5 WS',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-8-m-white-9-5-mm-sdb-9-5-ws-p142985.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',823,NULL),(4.16,'Heat-shrink_tubing','white / before shrinking D = 5 mm / after shrinking d = 2.3 mm / Length: 10m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Manufacturer: RND / Factory Num: RND 465-00260 / Packaging: Box / Distributor: Reichelt, RND 465-00260','HEAT-SHRINK-TUBES-SPOOL_RND.pdf','05 EG 008',1000,'RND 465-00260',NULL,'https://www.reichelt.de/heat-shrink-tubing-wh-4-8mm-x-10m-box-rnd-465-00260-p221549.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',824,NULL),(2.31,'Heat-shrink_tubing','black / before shrinking D = 1.2 mm / after shrinking d = 0.6 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,2 SW','SDB_1_2_RT_DB.pdf','05 EG 008',1000,'SDB 1,2 SW',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-black-1-2-mm-sdb-1-2-sw-p53752.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',825,NULL),(2.35,'Heat-shrink_tubing','black / before shrinking D = 1.6 mm / after shrinking d = 0.8 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,6 SW','SDB_1_6_RT_DB.pdf','05 EG 008',1000,'SDB 1,6 SW',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-black-1-6-mm-sdb-1-6-sw-p53754.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',826,NULL),(1.93,'Heat-shrink_tubing','black / before shrinking D = 2.4 mm / after shrinking d = 1.2 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 2,4 SW','SDB_2_4_RT_DB.pdf','05 EG 008',1000,'SDB 2,4 SW',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-black-2-4-mm-sdb-2-4-sw-p53756.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',827,NULL),(2.27,'Heat-shrink_tubing','black / before shrinking D = 3.2 mm / after shrinking d = 1.6 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 3,2 SW','SDB_3_2_RT_DB.pdf','05 EG 008',1000,'SDB 3,2 SW',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-black-3-2-mm-sdb-3-2-sw-p53758.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',828,NULL),(2.31,'Heat-shrink_tubing','black / before shrinking D = 4.8 mm / after shrinking d = 2.4 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 4,8 SW','SDB_4_8_RT_DB.pdf','05 EG 008',1000,'SDB 4,8 SW',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-black-4-8-mm-sdb-4-8-sw-p53759.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',829,NULL),(2.65,'Heat-shrink_tubing','black / before shrinking D = 6.4 mm / after shrinking d = 3.2 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 6,4 SW','SDB_6_4_RT_DB.pdf','05 EG 008',1000,'SDB 6,4 SW',NULL,'https://www.reichelt.de/shrink-tube-box-12m-black-6-4mm-sdb-6-4-sw-p53760.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',830,NULL),(2.39,'Heat-shrink_tubing','black / before shrinking D = 9.5 mm / after shrinking d = 4.8 mm / Length: 8 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 9,5 SW','SDB_9_5_RT_DB.pdf','05 EG 008',1000,'SDB 9,5 SW',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-8-m-black-9-5-mm-sdb-9-5-sw-p53761.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',831,NULL),(2.51,'Heat-shrink_tubing','blue / before shrinking D = 1.2 mm / after shrinking d = 0.6 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,2 BL','SDB_1_2_RT_DB.pdf','05 EG 008',1000,'SDB 1,2 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-blue-1-2-mm-sdb-1-2-bl-p53784.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',832,NULL),(2.51,'Heat-shrink_tubing','blue / before shrinking D = 1.6 mm / after shrinking d = 0.8 mm / Length: 20m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 1,6 BL','SDB_1_6_RT_DB.pdf','05 EG 008',1000,'SDB 1,6 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-20-m-blue-1-6-mm-sdb-1-6-bl-p53785.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',833,NULL),(2.10,'Heat-shrink_tubing','blue / before shrinking D = 2.4 mm / after shrinking d = 1.2 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 2,4 BL','SDB_2_4_RT_DB.pdf','05 EG 008',1000,'SDB 2,4 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-blue-2-4-mm-sdb-2-4-bl-p53786.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',834,NULL),(2.31,'Heat-shrink_tubing','blue / before shrinking D = 3.2 mm / after shrinking d = 1.6 mm / Length: 15 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 3,2 BL','SDB_3_2_RT_DB.pdf','05 EG 008',1000,'SDB 3,2 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-15-m-blue-3-2-mm-sdb-3-2-bl-p53787.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',835,NULL),(2.51,'Heat-shrink_tubing','blue / before shrinking D = 4.8 mm / after shrinking d = 2.4 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 4,8 BL','SDB_4_8_RT_DB.pdf','05 EG 008',1000,'SDB 4,8 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-blue-4-8-mm-sdb-4-8-bl-p53788.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',836,NULL),(2.69,'Heat-shrink_tubing','blue / before shrinking D = 6.4 mm / after shrinking d = 3.2 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 6,4 BL','SDB_6_4_RT_DB.pdf','05 EG 008',1000,'SDB 6,4 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-blue-6-4-mm-sdb-6-4-bl-p53789.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',837,NULL),(2.51,'Heat-shrink_tubing','blue / before shrinking D = 9.5 mm / after shrinking d = 4.8 mm / Length: 8 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 9,5 BL','SDB_9_5_RT_DB.pdf','05 EG 008',1000,'SDB 9,5 BL',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-8-m-blue-9-5-mm-sdb-9-5-bl-p53790.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',838,NULL),(2.77,'Heat-shrink_tubing','transparent / before shrinking D = 6.4 mm / after shrinking d = 3.2 mm / Length: 12 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 6,4 TR','SDB_6_4_TR_DB.pdf','05 EG 008',1000,'SDB 6,4 TR',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-12-m-transparent-6-4-mm-sdb-6-4-tr-p53811.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',839,NULL),(2.51,'Heat-shrink_tubing','transparent / before shrinking D = 9.5 mm / after shrinking d = 4.8 mm / Length: 8 m / Shrink ratio: 2:1/+120°C / flame-retardant / dielectric strength: 15 kV / Packaging: Box / Distributor: Reichelt, SDB 9,5 TR','SDB_9_5_TR_DB.pdf','05 EG 008',1000,'SDB 9,5 TR',NULL,'https://www.reichelt.de/heat-shrink-tubing-box-8-m-transparent-9-5-mm-sdb-9-5-tr-p53812.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-08-18 16:28:40',840,NULL),(0.90,'Voltage_Regulators','IC REG LINEAR 3.3V 100MA SOT23-3 // Vin = 30 V (max.) / Vout = 3.3V (fixed) / Iout = 100 mA / Output-Konfiguration: positive / Package: SOT-23-3 / Manufacturer: Texas Instruments / Factory Num: LM3480IM3-3.3/NOPB / Distributor: Digi-Key, LM3480IM3-3.3/NOPB','lm3480.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de/integrated-circuits-ics/pmic-voltage-regulators-linear/699?k=lm3480im3-3.3%2Fnopb',NULL,0,1,'2003-08-18 16:28:40',841,NULL),(0.90,'Voltage_Regulators','IC REG LINEAR 5.0V 100MA SOT23-3 // Vin = 30 V (max.) / Vout = 5 V (fixed) / Iout = 100 mA / Output-Konfiguration: positive / Package: SOT-23-3 / Manufacturer: Texas Instruments / Factory Num: LM3480IM3-5.0/NOPB / Distributor: Digi-Key, LM3480IM3-5.0/NOPB','lm3480.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=lm3480im3-5.0%2Fnopb',NULL,0,1,'2003-08-18 16:28:40',842,NULL),(0.45,'Voltage_Regulators','IC REG LINEAR 3.3V 1A SOT223-3 // Vin = 18 V (max.) / Vout = 5 V (fixed) / Iout = 1 A / Output-Konfiguration: positive / Package: SOT-23-3 / Manufacturer: Diodes Incorporated / Factory Num: ZLDO1117G33TA / Distributor: Digi-Key, ZLDO1117G33DICT-ND','ZLDO1117.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/product-detail/de/diodes-incorporated/ZLDO1117G33TA/ZLDO1117G33DICT-ND/2095612',NULL,0,1,'2003-08-18 16:28:40',843,NULL),(0.43,'Voltage_Regulators','IC REG LINEAR 5V 1A SOT223 // Vin = 20 V (max.) / Vout = 5 V (fixed) / Iout = 1 A / Output-Konfiguration: positive / Package: SOT-23-3 / Manufacturer: ON Semiconductor / Factory Num: NCP1117ST50T3G / Distributor: Digi-Key, NCP1117ST50T3GOSCT-ND','NCP1117-D.PDF','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=ncp1117st50t3gosct-nd',NULL,0,1,'2003-08-18 16:28:40',844,NULL),(0.36,'Voltage_Regulators','IC REG LINEAR 3.3V 150MA SOT23-5 // Vin = 16 V (max.) / Vout = 3.3V (fixed) / Iout = 150 mA / Output-Konfiguration: positive / Package: SOT-23-5 / Manufacturer: Microchip Technology / Factory Num: MIC5205-3.3YM5-TR / Distributor: Digi-Key, 576-1259-1-ND','20005785A.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=576-1259-1-nd',NULL,0,1,'2003-08-18 16:28:40',845,NULL),(0.30,'LEDs','Colours: red, green, blue / configuration: common anode / Wavelength: 622nm red, 528nm green, 468nm blue / Vf: 2V red, 3,2V green, 3,2V blue / SMD / Package: 4-PLCC / Manufacturer: Cree Inc. / \r\nDistributor: Digi-Key, CLV1A-FKB-CK1VW1DE1BB7C3C3TR-ND','ds-CLV1A-FKB.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=clv1a-fkb-ck1vw1de1bb7c3c3t',NULL,0,1,'2003-08-18 16:28:40',846,NULL),(0.49,'LEDs','LED BLUE CLEAR CHIP SMD / Wavelength: 470nm / Vf: 3.3V / I = 20 mA / angle: 130° / SMD / Package: 1206 (3216 metric) / Dimension: L x B: 3,20mm x 1,60mm / Height: 1,10mm / Manufacturer: Lite-On Inc., LTST-C230TBKT \r\nDistributor: Digi-Key, 160-1889-1-ND','LTST-C230TBKT.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=160-1889-1-nd',NULL,0,1,'2003-08-18 16:28:40',847,NULL),(0.28,'LEDs','LED GREEN CLEAR 1206 SMD / Wavelength: 569nm / Vf: 2.1V / I = 10 mA / angle: 130° / SMD / Package: 1206 (3216 metric) / Dimension: L x B: 3,20mm x 1,60mm / Height: 1,10mm / Manufacturer: Lite-On Inc., LTST-C150GKT \r\nDistributor: Digi-Key, 160-1169-1-ND','LTST-C150GKT.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=160-1169-1-nd',NULL,0,1,'2003-08-18 16:28:40',848,NULL),(0.57,'LEDs','LED WHITE CHIP SMD / lens: yellow / Vf: 3.3V / I = 20 mA / angle: 130° / SMD / Package: 1206 (3216 metric) / Dimension: L x B: 3,20mm x 1,60mm / Height: 1,10mm / Manufacturer: Lite-On Inc., LTW-150TK \r\nDistributor: Digi-Key, 160-1737-1-ND','LTW-150TK.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=160-1737-1-nd',NULL,0,1,'2003-08-18 16:28:40',849,NULL),(0.29,'LEDs','LED ORANGE CLEAR 1206 SMD / Wavelength: 605nm / Vf: 2V / I = 20 mA / angle: 130° / SMD / Package: 1206 (3216 metric) / Dimension: L x B: 3,20mm x 1,60mm / Height: 1,10mm / Manufacturer: Lite-On Inc., LTST-C150KFKT \r\nDistributor: Digi-Key, 160-1403-1-ND','LTST-C150KFKT.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=160-1403-1-nd',NULL,0,1,'2003-08-18 16:28:40',850,NULL),(0.31,'LEDs','LED RED CLEAR 1206 SMD / Wavelength: 638nm / Vf: 1.8V / I = 10 mA / angle: 130° / SMD / Package: 1206 (3216 metric) / Dimension: L x B: 3,20mm x 1,60mm / Height: 1,10mm / Manufacturer: Lite-On Inc., LTST-C150CKT \r\nDistributor: Digi-Key, 160-1167-1-ND','LTST-C150CKT.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=160-1167-1-nd',NULL,0,1,'2003-08-18 16:28:40',851,NULL),(4.78,'Capacitors_others','C = 1.0 F (EDLC) Superkondensatoren 5,5V Radial, Becher 30Ohm bei 1kHz 1000 Std bei 70°C/ Voltage: 5.5V / Tolerance: 20% / Pitch: 5 mm / Diameter: 21.5 mm / Height: 7.1 mm / Manufacturer: Eaton Electronics, KR-5R5C105-R / Distributor: Digi-Key, 283-2810-ND','Cap_REC_SS_series_SM x_63RAD.pdf','05 EG 008',1000,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=283-2810-nd',NULL,0,1,'2003-08-18 16:28:40',852,NULL),(0.02,'Inductors','L = 1.2uH / I = 6.5A / DCR = 4.6 mOhm / shielded / Dimension: L x B: 12mm x 12mm / Height: 4.5 mm / Manufacturer: Panasonic, ELL-CTV1R2N / Distributor: Digi-Key, PCD2144CT-ND','AGM0000CE11.pdf','05 EG 008',1000,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=pcd2144ct-nd',NULL,0,1,'2003-08-18 16:28:40',853,NULL),(0.02,'Inductors','L = 10 uH / I = 3.9 A / DCR = 17 mOhm / shielded / SMD / Dimension: L x B: 12mm x 12mm / Height: 4.5 mm / Manufacturer: Panasonic, ELL-CTV100M / Distributor: Digi-Key, PCD2152CT-ND','AGM0000CE11.pdf','05 EG 008',1000,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=pcd2152ct-nd',NULL,0,1,'2003-08-18 16:28:40',854,NULL),(0.05,'Ceramic_Capacitors','MLCC (Multilayer Ceramic Chip Capacitor) / C = 1 pF / V = 50V / Tolerance: 0.25 pF/ Package: 1206 (3216 metric), SMD / Manufacturer: Yageo / Factory Num: CC1206CRNPO9BN1R0 / Distributor: Digi-Key, 311-1212-1-ND','UPY-GP_NP0_16V-to-50V_18.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=311-1212-1-nd',NULL,0,1,'2003-08-18 16:28:40',855,NULL),(0.22,'Ceramic_Capacitors','MLCC (Multilayer Ceramic Chip Capacitor) / C = 10 pF / V = 50V / Tolerance: 5%/ Package: 1206 (3216 metric), SMD / Manufacturer: Yageo / Factory Num: CC1206JRNPO9BN100 / Distributor: Digi-Key, 311-1150-1-ND','UPY-GP_NP0_16V-to-50V_18.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=311-1150-1-nd',NULL,0,1,'2003-08-18 16:28:40',856,NULL),(0.22,'Ceramic_Capacitors','MLCC (Multilayer Ceramic Chip Capacitor) / C = 100 pF / V = 50V / Tolerance: 5%/ Package: 1206 (3216 metric), SMD / Manufacturer: Yageo / Factory Num: CC1206JRNPO9BN101 / Distributor: Digi-Key, 311-1161-1-ND','UPY-GP_NP0_16V-to-50V_18.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=311-1161-1-nd',NULL,0,1,'2003-08-18 16:28:40',857,NULL),(0.38,'Ceramic_Capacitors','MLCC (Multilayer Ceramic Chip Capacitor) / C = 100 pF / V = 50V / Tolerance: 5%/ Package: 1206 (3216 metric), SMD / Manufacturer: Yageo / Factory Num: CC1206KKX7RCBB102 / Distributor: Digi-Key, 311-1144-1-ND','UPY-GP_NP0_16V-to-50V_18.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=311-1144-1-nd',NULL,0,1,'2003-08-18 16:28:40',858,NULL),(0.28,'Ceramic_Capacitors','MLCC (Multilayer Ceramic Chip Capacitor) / C = 1 uF / V = 50V / Tolerance: 10%/ Package: 1206 (3216 metric), SMD / Manufacturer: TDK Corporation / Factory Num: C3216X7R1H105K160AB / Distributor: Digi-Key, 445-1423-1-ND','mlcc_commercial_general_en.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=445-1423-1-nd',NULL,0,1,'2003-08-18 16:28:40',859,NULL),(0.51,'IC_Battery_Charging_Management','IC CONTROLLR LI-ION 4.2V (IC für Ladegerät Lithium-Ionen/Polymer SOT-23-5)/ Package: SOT-23-5 / Manufacturer: Microchip Technology / Factory Num: MCP73831T-2ACI/OT / Distributor: Digi-Key, MCP73831T-2ACI/OTCT-ND','20001984g.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=mcp73831t-2aci%2Fotct-nd',NULL,0,1,'2003-08-18 16:28:40',860,NULL),(0.43,'Schottky_Diode','Vf = 850 mV@1A / Vr = 100V / Io = 1A / Package: SOD-123T / Manufacturer: Comchip Technology / Factory Num: CDBM1100-G / Distributor: Digi-Key, 641-1331-1-ND','CDBM140-HF-Thru-CDBM1200-HF.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=641-1331-1-nd',NULL,0,1,'2003-08-18 16:28:40',861,NULL),(0.30,'Schottky_Diode','Vf = 1V @250mA / Vr = 100V / Io = 150mA / Package: SOD-123 / Manufacturer: Comchip Technology / Factory Num: BAT46ZFILM / Distributor: Digi-Key, 497-5559-1-ND','en.CD00004930.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=497-5559-1-nd',NULL,0,1,'2003-08-18 16:28:40',862,NULL),(0.18,'Zener_Diodes','Vz = 3.3V / Tolerance: 6% / Ptot: 500 mW / Vf = 900mV @ 10mA / Impedance: 95 Ohms / Package: SOD-123 / Manufacturer: Diodes Incorporated / Factory Num: BZT52C3V3-7-F / Distributor: Digi-Key, BZT52C3V3-FDICT-ND','ds18004.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=bzt52c3v3-fdict-nd',NULL,0,1,'2003-08-18 16:28:40',863,NULL),(0.18,'Zener_Diodes','Vz = 4.7V / Tolerance: 6% / Ptot: 500 mW / Vf = 900mV @ 10mA / Impedance: 80 Ohms / Package: SOD-123 / Manufacturer: Diodes Incorporated / Factory Num: BZT52C4V7-13-F / Distributor: Digi-Key, BZT52C4V7-13FDICT-ND','ds18004.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=bzt52c4v7-13fdict-nd',NULL,0,1,'2003-08-18 16:28:40',864,NULL),(0.53,'Optoelectronics_miscellaneous','Infrared (IR) / Vf = 1.45V / If = 65 mA / Wavelength: 850 nm / angle: 75° / Package: 1206 (3016 metric), SMD / Manufacturer: Everlight Electronics / Factory Num: HIR11-21C/L11/TR8 / Distributor: Digi-Key, 1080-1346-1-ND','201407052100495806.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=1080-1346-1-nd',NULL,0,1,'2003-08-18 16:28:40',866,NULL),(0.04,'Schottky_Diode','Schottky Diode BAT 46 / mounting form: DO35 / URRM = 100 V / UF = 0.25 V / IF(AV) = 0.15 A / IFSM = 0.75 / IR = 0.5 µA / Distributor: Reichelt, BAT 46','BAT46_VISHAY.pdf','05 EG 008',39,NULL,NULL,'https://www.reichelt.de/schottky-diode-do35-100-v-0-15-a-bat-46-p4853.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',867,NULL),(0.94,'Transistors','MOSFET/ N-Channel/ RFD16N05LSM /Vdss = 50V/ Id = 16A/ Vgs = 2V @250 mA / Vgs max = +/-10V / Ptot = 60W/ Rdson = 47 mOhms @16A, 5V/ Package: TO-252AA, TO-252-3, DPak/ Manufacturer: ON Semiconductor, RFD16N05LSM9A/ Distributor: Digi-Key, RFD16N05LSM9ACT-ND','0x0u957j6crriyxx6dryyswc917y.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=rfd16n05lsm9act-nd',NULL,0,1,'2019-04-17 22:00:00',868,NULL),(0.39,'Transistors','MOSFET/ N-Channel/ NDS355AN/Vdss = 30V/ Id = 1.7A/ Vgs = 2V @250 uA/ Vgs max = +/-20V/ Ptot = 500mW/ Rdson = 85 mOhms @1.9A, 10V/ Package: SuperSOT-3, TO-236-3, SC-59, SOT-23-3/ Manufacturer: ON Semiconductor, NDS355AN/ Distributor: Digi-Key, NDS355ANCT-ND','NDS355AN-D.PDF','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=nds355anct-nd',NULL,0,1,'2019-04-17 22:00:00',869,NULL),(0.36,'Transistors','P-Channel/ RFD16N05LSM /Vdss = 30V/ Id = 1.1A/ Vgs = 2.5V @250 mA / Vgs max = +/-20V / Ptot = 500mW/ Rdson = 200mOhms @1.3A, 10V/ Package: SuperSOT-3, TO-236-3, SC-59, SOT-23-3/ Manufacturer: ON Semiconductor, NDS356AP/ Distributor: Digi-Key, NDS356APCT-ND','NDS356AP-D.PDF','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=nds356apct-nd',NULL,0,1,'2019-04-17 22:00:00',870,NULL),(0.97,'Drivers_Motors_Bridges_etc','IC Bridge Driver / / Manufacturer: Texas Instruments / Factory Num: DRV8838DSGR / Distributor: Digi-Key, 296-40081-1-ND','drv8838.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=296-40081-1-nd',NULL,0,1,'2003-08-18 16:28:40',872,NULL),(3.07,'Drivers_Motors_Bridges_etc','Bipolar Motortreiber DMOS Logik 24-TSSOP-EP / / Manufacturer: Allegro MicroSystems / Factory Num: A4982SLPTR-T / Distributor: Digi-Key, 620-1352-1-ND','A4982-Datasheet.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=620-1352-1-nd',NULL,0,1,'2003-08-18 16:28:40',873,NULL),(1.64,'Drivers_Motors_Bridges_etc','IC MOTOR DRIVER 8V-40V 8SOIC (Motortreiber DMOS Parallel 8-SOIC-EP)/ / Manufacturer: Allegro MicroSystems / Factory Num: A4953ELJTR-T / Distributor: Digi-Key, 620-1428-1-ND','A4952-3-Datasheet.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=620-1428-1-nd',NULL,0,1,'2003-08-18 16:28:40',874,NULL),(1.02,'Switches','SWITCH SLIDE SPDT 100MA 12V (Schiebeschalter SPDT Oberflächenmontage, rechtwinklig)/ / Manufacturer: C&K / Factory Num: AYZ0102AGRLC / Distributor: Digi-Key, 401-2012-1-ND','ayz.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=401-2012-1-nd',NULL,0,1,'2003-08-18 16:28:40',875,NULL),(0.95,'Switches','SWITCH TACTILE SPST-NO 0.05A 24V (Tastschalter SPST-Schließer Von oben betätigt Oberflächenmontage)/ / Manufacturer: Omron Electronics Inc-EMC Div / Factory Num: B3SN-3112P / Distributor: Digi-Key, SW262CT-ND','en-b3sn.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=sw262ct-nd',NULL,0,1,'2003-08-18 16:28:40',876,NULL),(1.72,'Op-Amps','IC OPAMP GP 1 CIRCUIT SOT23-5 (Mehrzweck Verstärker 1 Schaltungen Rail-to-Rail SOT-23-5)/ Manufacturer: Analog Devices, AD8605ARTZ-REEL7 / Distributor: Digi-Key, AD8605ARTZREEL7CT-ND','AD8605_8606_8608.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=ad8605artzreel7ct-nd',NULL,0,1,'2017-07-27 07:38:31',877,NULL),(2.04,'Op-Amps','IC OPAMP GP 1 CIRCUIT TSOT23-5 (Mehrzweck Verstärker 1 Schaltungen Rail-to-Rail TSOT-23-5)/ Manufacturer: Analog Devices, AD8615AUJZ-REEL7 / Distributor: Digi-Key, AD8615AUJZ-REEL7CT-ND','AD8615_8616_8618.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=ad8615aujz-reel7ct-nd',NULL,0,1,'2017-07-27 07:38:31',878,NULL),(2.95,'Relays','Vin = 1.2 V DC / I = 1.5A / SPST-Schließer (1 Form A) / Voltage: 0V ...800V/ AC Load / Package: 8-SOIC, 8-SOP (0,400\", 10,16mm width) / Manufacturer: IXYS Integrated Circuits Division / FacNum: CPC1964B / Distributor: Digi-Key, CLA413-ND','CPC1964B.pdf','05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=cla413-nd',NULL,0,1,'2003-08-18 16:28:40',879,NULL),(1.18,'Op-Amps','IC AMP CLASS AB MONO 3W 8SOIC (Verstärker IC 1 Kanal (Mono) KlasseAB 8-SOIC)/ Manufacturer: Texas Instruments, LM4871M / Distributor: Digi-Key, LM4871M-ND','lm4871.pdf','05 EG 008',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.digikey.de/products/de?keywords=lm4871m-nd',NULL,0,1,'2017-07-27 07:38:31',880,NULL),(1.93,'Washers','for M8 / Serrated lock washer, external teeth (Faecherscheibe) / Steel, zinc pl. blue / DIN 6798 / Internal Diameter: 8,4 / packaging unit: 100 pcs. /\r\nDistributor: Reichelt, SKZ 8,4-100',NULL,'05 EG 008',27,'SKZ 8,4-100 ','','https://www.reichelt.de/serrated-lock-washers-8-4mm-100-pcs-skz-8-4-100-p65793.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',881,NULL),(2.39,'Washers','for M8 / Lock washer (Federring) / Steel, zinc pl. bue / DIN 127 / B8 / Distributor: Reichelt, SFR 8-100',NULL,'05 EG 008',27,'SFR 8-100','','https://www.reichelt.de/spring-washers-8-mm-100-pcs-sfr-8-100-p65786.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',882,NULL),(1.67,'Washers','for M6 / Lock washer (Federring) / Steel, zinc pl. bue / DIN 127 / B6 / Distributor: Reichelt, SFR 6-100',NULL,'05 EG 008',25,'SFR 8-100','','https://www.reichelt.de/spring-washers-6-mm-100-pcs-sfr-6-100-p65785.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',883,NULL),(1.47,'Washers','for M6 / Serrated lock washer, external teeth (Faecherscheibe) / Steel, zinc pl. blue / DIN 6798 / Internal Diameter: 6.4 / packaging unit: 100 pcs. /\r\nDistributor: Reichelt, SKZ 6,4-100',NULL,'05 EG 008',25,'SKZ 6,4-100 ','','https://www.reichelt.de/serrated-lock-washers-6-4mm-100-pcs-skz-6-4-100-p65792.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',884,NULL),(2.51,'Washers','for M6 / Large washer (Karosseriescheibe) / Steel, zinc pl. bue / DIN 9021 / Internal Diameter: 6.4 mm / Outer Diameter: 18 mm / Thickness: 1.6 mm / Distributor: Reichelt, SKA 6,4X18-100',NULL,'05 EG 008',25,'SKA 6,4X18-100','','https://www.reichelt.de/large-diameter-washers-6-4-mm-100-pcs-ska-6-4x18-100-p65777.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',885,NULL),(1.34,'Washers','for M4 / Large washer (Karosseriescheibe) / Steel, zinc pl. blue / DIN 9021 / Internal Diameter: 4.3 mm / Outer Diameter: 12 mm / Thickness: 1 mm / Distributor: Reichelt, SKA 4,3X12-100',NULL,'05 EG 008',23,'SKA 4,3X12-100','','https://www.reichelt.de/large-diameter-washers-4-3-mm-100-pcs-ska-4-3x12-100-p65775.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',886,NULL),(1.22,'Washers','for M4 / Lock washer (Federring) / Steel, zinc pl. blue / DIN 127 / B4 / Distributor: Reichelt, SFR 4-100',NULL,'05 EG 008',23,'SFR 4-100','','https://www.reichelt.de/spring-washers-4-mm-100-pcs-sfr-4-100-p65782.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',888,NULL),(1.93,'Washers','for M4 / Serrated lock washer, external teeth (Faecherscheibe) / Steel, zinc pl. blue / DIN 6798 / Internal Diameter: 4.3 / packaging unit: 100 pcs. /\r\nDistributor: Reichelt, SKZ 4,3-100',NULL,'05 EG 008',23,'SKZ 4,3-100 ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',889,NULL),(1.34,'Washers','for M5 / Serrated lock washer, external teeth (Faecherscheibe) / Steel, zinc pl. blue / DIN 6798 / Internal Diameter: 5.3 / packaging unit: 100 pcs. /\r\nDistributor: Reichelt, SKZ 5,3-100',NULL,'05 EG 008',24,'SKZ 5,3-100 ','','https://www.reichelt.de/serrated-lock-washers-5-3mm-100-pcs-skz-5-3-100-p65791.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',890,NULL),(1.09,'Washers','for M5 / Lock washer (Federring) / Steel, zinc pl. bue / DIN 127 / B5 / Distributor: Reichelt, SFR 5-100',NULL,'05 EG 008',24,'SFR 5-100','','https://www.reichelt.de/spring-washers-5-mm-100-pcs-sfr-5-100-p65783.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',891,NULL),(1.09,'Washers','for M3 / Serrated lock washer, external teeth (Faecherscheibe) / Steel, zinc pl. blue / DIN 6798 / Internal Diameter: 3.2 / packaging unit: 100 pcs. /\r\nDistributor: Reichelt, SKZ 3,2-100',NULL,'05 EG 008',13,'SKZ 3,2-100 ','','https://www.reichelt.de/serrated-lock-washers-3-2mm-100-pcs-skz-3-2-100-p65789.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',892,NULL),(1.09,'Washers','for M3 / Lock washer (Federring) / Steel, zinc pl. bue / DIN 127 / B3 / Distributor: Reichelt, SFR 3-100',NULL,'05 EG 008',13,'SFR 3-100','','https://www.reichelt.de/spring-washers-3-mm-100-pcs-sfr-3-100-p65781.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',893,NULL),(1.34,'Washers','for M3 / Large washer (Karosseriescheibe) / Steel, zinc pl. blue / DIN 9021 / Internal Diameter: 3.2 mm / Outer Diameter: 9 mm / Thickness: 0.8 mm / Distributor: Reichelt, SKA 3,2X9-100',NULL,'05 EG 008',25,'SKA 6,4X18-100','','https://www.reichelt.de/large-diameter-washers-3-2-mm-100-pcs-ska-3-2x9-100-p65774.html?r=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2003-03-18 17:28:40',894,NULL),(2.51,'Coin_Cell_Batteries','CR2032 / 3V / Size: 20 x 3.2 mm / Lithium / compatible with: CR2032 / SB-T 51 / E-CR 2032 / DL 2032 / Packaging: 10 pcs. / Distributor: Reichelt, LOGILINK CR2032','','05 EG 008',3000,'LOGILINK CR2032',NULL,'https://www.reichelt.de/lithium-button-cell-3-v-20-0-x-3-2-mm-pack-of-10-logilink-cr2032-p225264.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',895,NULL),(0.76,'Coin_Cell_Batteries','LR44 /1.5V/11.6 x 5.4 mm /Alkaline/ compatible with: VARTA V 357/ SR 44/ SR 1154 W/ SR 44 W (SW)/ SB-B9/ 357 (357.7) / D 357/ RW 42/ S 1154 S/ VARTA V 303/ SB-A9/ 280-08/ 303 (303.9)/ D 303/ RW 32/ PX 76A/ GPA 76 / KA 76 / VARTA V 13GA /Reichelt, HC 4XLR44','','05 EG 008',3000,'HC 4XLR44',NULL,'https://www.reichelt.de/4x-ansmann-hycell-alkaline-button-cells-lr44-hc-4xlr44-p195311.html?&trstct=pol_1&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',896,NULL),(0.66,'Coin_Cell_Batteries','CR1220 / 3V / 35 mAh/ Size: 12.5 x 2.0 mm / Lithium / compatible with: SB-T 13 / E-CR 1220 / DL 1220 / Distributor: Reichelt, CR 1220','','05 EG 008',3000,'CR 1220',NULL,'https://www.reichelt.de/lithium-button-cell-battery-3-volt-35-mah-12-5x2-0-mm-cr-1220-p26543.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',897,NULL),(1.67,'Coin_Cell_Batteries','LR1130 / 1.5V / Size: 11.6 x 3.1 mm / Alkaline / compatible with: LR54 / AG10 / Packaging: 10 pcs. / Distributor: Reichelt, HC 10XLR54','','05 EG 008',3000,'HC 10XLR54',NULL,'https://www.reichelt.de/alkaline-button-cell-lr54-10-pcs-hc-10xlr54-p266300.html?&trstct=pos_2&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',898,NULL),(2.51,'Coin_Cell_Batteries','CR2025 / 3V / Size: 20 x 2.5 mm / Lithium / compatible with: SB-T 14/280-205/E-CR 2025/DL 2025 / Packaging: 10 pcs. / Distributor: Reichelt, LOGILINK CR2025','','05 EG 008',3000,'LOGILINK CR2025',NULL,'https://www.reichelt.de/lithium-button-cell-3-v-20-0-x-2-5-mm-pack-of-10-logilink-cr2025-p225263.html?&trstct=pos_0&nbc=1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2018-08-03 17:56:03',899,NULL),(3.95,'Coin_Cell_Batteries','LR626 / 1.5V / 18 mAh / Size: 6.8 x 2.6 mm / Alkaline / compatible with: AG4 / GP77A / LR66 / 177 / LR626 / 377 / V377 / Packaging: 10 pcs. / Distributor: AkkuShop.de','','05 EG 008',3000,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.akkushop.de/de/marken-knopfzelle-ag-4-batterie-entspricht-v-377-knopfzelle-und-lr626-batterien-15v-typisch-18mah/',0,1,'2018-08-03 17:56:03',900,NULL),(20.09,'Diodes','HSRW Backofen Diode','lageplan_escape.pdf','05 EG 008',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2020-12-09 12:57:03',1701,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M3 x 25 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1702,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M4 x 8 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1703,NULL),(0.00,'Screws','pan head/ Torx / galvanised / DIN 965 / Class 4.8 / M2.5 x 4 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1704,NULL),(0.00,'Screws','Pan head/ Torx / galvanised / DIN 965 / Class 4.8 / M2.5 x 8 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1705,NULL),(0.00,'Screws','Pan head/ Torx / galvanised / DIN 965 / Class 4.8 / M2.5 x 12 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1706,NULL),(0.00,'Screws','Pan head/ Torx / galvanised / DIN 965 / Class 4.8 / M2.5 x 16 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1707,NULL),(0.00,'Screws','Pan head/ Torx / galvanised / DIN 965 / Class 4.8 / M2.5 x 20 mm ???',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1708,NULL),(0.00,'Screws','Pan head/ Torx / galvanised / DIN 965 / Class 4.8 / M2.5 x 25 mm',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1709,NULL),(0.33,'ICs','NE555 D Bipolar Timer SO-8 SMD ','NE555DSTM.pdf','05 EG 008',9,NULL,NULL,'https://www.reichelt.de/de/de/timer-ic-typ-555-so-8-ne-555-d-smd-p18799.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-02-24 13:55:18',1710,NULL),(0.20,'Op-Amps','LM358 DIP Operational amplifier, dual, DIP-8','LM358DIPSTM.pdf','05 EG 008',9,NULL,NULL,'https://www.reichelt.de/de/de/operationsverstaerker-2-fach-dip-8-lm-358-dip-p10483.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-02-24 08:38:31',1711,NULL),(2.51,'ICs','ATMEGA328P-PU 32KB, 8bit Micro-controller','ATmega328P_PU_STM.pdf','05 EG 008',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Microchip-Technology-Atmel/ATMEGA328P-PU?qs=K8BHR703ZXguOQv3sKbWcg%3D%3D',NULL,NULL,0,1,'2022-03-07 13:55:18',1712,NULL),(2.65,'ICs','ATMEGA8A-PU 8-Bit Mikrocontroller - MCU AVR 8KB, 512B EE 16MHz 1KB SRAM ','ATmega8ASTM.pdf','05 EG 008',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Microchip-Technology-Atmel/ATMEGA8A-PU?qs=iKytVS9glgYDJuUgqldMDA%3D%3D',NULL,NULL,0,1,'2022-03-07 13:55:18',1713,NULL),(0.55,'ICs','74HC 4051 1/8 MULTIPLEXER',NULL,'05 EG 008',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-03-07 14:58:19',1714,NULL),(0.41,'Op-Amps','MCP6002 I/P Operationsverstärker Dual 1.8V 1MHz ','MCP6002I_PSTM.pdf','05 EG 008',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Microchip-Technology/MCP6002-I-P?qs=sGAEpiMZZMsxiS4eJwGuBtZupmX4AUSq',NULL,NULL,0,1,'2022-03-07 13:17:36',1715,NULL),(2.90,'ICs','ATMEGA8A-16PU 8-Bit Mikrocontroller - MCU 8kB Flash 0.5kB EEPROM 23 I/O Pins ','ATMEGA8A_16PUSTM.pdf','05 EG 008',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Microchip-Technology-Atmel/ATMEGA8-16PU?qs=7JStj%2FjQ2SFlSdRaC1qNjQ%3D%3D',NULL,NULL,0,1,'2022-03-07 13:55:18',1716,NULL),(0.79,'Op-Amps','MCP 602-I/P Operationsverstärker, 2-fach, 2,8 MHz, 2,7 ... 6,0 V, DIP-8','MCP602_MCP604_MICSTM.pdf','05 EG 008',9,NULL,NULL,'https://www.reichelt.de/operationsverstaerker-2-fach-2-8-mhz-2-7--6-0-v-dip-8-mcp-602-i-p-p90032.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-03-07 13:17:36',1717,NULL),(1.30,'ICs','MCP1407-E/P Gate-Treiber 4.5V Single Mosfet ','MCP1407MOSFETSTM.pdf','05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Microchip-Technology/MCP1407-E-P?qs=r%2FVmNO8Tjq5kfT%2FCttKvgw%3D%3D',NULL,NULL,0,1,'2022-03-07 13:17:36',1718,NULL),(5.25,'Op-Amps','MC33078P Operationsverstärker Dual Hi-Sp Lo-Noise Op Amp ','mc33078STM.pdf','05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.mouser.de/ProductDetail/Texas-Instruments/MC33078P?qs=paYhMW8qfitOyf5y6DVo5Q%3D%3D',NULL,NULL,0,1,'2022-03-07 13:17:36',1719,NULL),(8.70,'ICs','LM 3914 DIL Display-Treiber, Konstantstromregler, DIL-18','LM3914N_1STM.pdf','05 EG 008',NULL,NULL,NULL,'https://www.reichelt.de/display-treiber-konstantstromregler-dil-18-lm-3914-dil-p10504.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-03-07 13:17:36',1720,NULL),(0.77,'Transistors','IRF 9530N MOSFET, P-Kanal, -100 V, -14 A, Rds(on) 0,2 Ohm, TO-220AB','IRF9530N_IRSTM.pdf','05 EG 008',NULL,NULL,NULL,'https://www.reichelt.de/mosfet-p-kanal-100-v-14-a-rds-on-0-2-ohm-to-220ab-irf-9530n-p90235.html?search=IRF+9530',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-03-07 09:09:04',1721,NULL),(0.05,'Transistors','BC 547A Bipolartransistor, NPN, 45V, 0,1A, 0,5W, TO-92','NZDIOTEC-BC546-549_DE-EN.STMpdf','05 EG 008',NULL,NULL,NULL,'https://www.reichelt.de/bipolartransistor-npn-45v-0-1a-0-5w-to-92-bc-547a-p219128.html?search=BC+547A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2022-03-07 09:09:04',1722,NULL),(NULL,'Screws','Cylinder Hat / Hex Slot / galvanised / DIN 912 / M8 x 16 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1723,'17'),(NULL,'Screws','Hexagon Hat / galvanised / DIN 933 10.9 / M8 x 12 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1724,'17'),(NULL,'Screws','Hexagon Hat / hot dip galvanised / DIN 933 8.8 / M8 x 20 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1725,'17'),(NULL,'Screws','Hexagon Hat / hot dip galvanised / DIN 933 8.8 / M8 x 30 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1726,'17'),(NULL,'Screws','Hexagon Hat / galvanised / DIN 933 8.8 / M8 x 40 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1727,'17'),(NULL,'Screws','Hexagon Hat / galvanised yellow / DIN 933 8.8 / M8 x 55 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1728,'17'),(NULL,'Screws','Hexagon Hat / galvanised yellow / DIN 933 8.8 / M8 x 80 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1729,'17'),(NULL,'Screws','Countersunk head / Cross Slotted - Phillips / galvanised / DIN 965 / Class 4.8 / M8 x 12 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1730,'17'),(NULL,'Screws','Countersunk head / Cross Slotted - Phillips / galvanised / DIN 965 / Class 4.8 / M8 x 16 mm',NULL,'05 EG 008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1731,'17'),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M3 x 12 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1732,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M4 x 16 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1733,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M4 x 20 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1734,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M4 x 25 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1735,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M4 x 30 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1736,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M4 x 40 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1737,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M5 x 10 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1738,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M5 x 25 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1739,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M6 x 10 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1740,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M6 x 16 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1741,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M6 x 30 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1742,NULL),(0.00,'Screws','Countersunk head/ Torx / galvanised / DIN 965 / Class 4.8 / M6 x 40 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1743,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M3 x 12 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1745,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M3 x 16 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1746,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M3 x 20 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1747,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M3 x 25 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1748,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M4 x 20 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1749,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M4 x 30 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1750,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M5 x 8 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1751,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M5 x 16 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1752,NULL),(0.00,'Screws','oval-head screw / Torx / galvanised / DIN 7985 / Class 4.8 / M5 x 25 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1753,NULL),(0.00,'Screws','Countersunk head/ Philips (H) / galvanised / DIN 965 / Class 4.8 / M8 x 12 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1754,NULL),(0.00,'Screws','hexagon screw / hot-dip galvanised / DIN 933 / Class 8.8 / M8 x 20 mm; Distributor: Reidl',NULL,'05 01 026',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,'2019-09-25 12:08:53',1755,NULL);
/*!40000 ALTER TABLE `electronicparts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mainpage_datasheet`
--
DROP TABLE IF EXISTS `mainpage_datasheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `mainpage_datasheet` (
`id` bigint NOT NULL AUTO_INCREMENT,
`datasheet` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mainpage_datasheet`
--
LOCK TABLES `mainpage_datasheet` WRITE;
/*!40000 ALTER TABLE `mainpage_datasheet` DISABLE KEYS */;
INSERT INTO `mainpage_datasheet` VALUES (7,'EXAM_FOEE-SS2021.pdf'),(8,'Math_Café_Mock_Exam.pdf'),(9,'TDA2003.pdf');
/*!40000 ALTER TABLE `mainpage_datasheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mainpage_mail`
--
DROP TABLE IF EXISTS `mainpage_mail`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `mainpage_mail` (
`id` bigint NOT NULL AUTO_INCREMENT,
`mail` varchar(254) NOT NULL,
`send_to_this` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mainpage_mail`
--
LOCK TABLES `mainpage_mail` WRITE;
/*!40000 ALTER TABLE `mainpage_mail` DISABLE KEYS */;
INSERT INTO `mainpage_mail` VALUES (1,'anirudhm1311@gmail.com',1);
/*!40000 ALTER TABLE `mainpage_mail` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mainpage_main_links`
--
DROP TABLE IF EXISTS `mainpage_main_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `mainpage_main_links` (
`id` bigint NOT NULL AUTO_INCREMENT,
`main_name` varchar(200) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mainpage_main_links`
--
LOCK TABLES `mainpage_main_links` WRITE;
/*!40000 ALTER TABLE `mainpage_main_links` DISABLE KEYS */;
INSERT INTO `mainpage_main_links` VALUES (1,'Resistors'),(2,'Capacitors'),(3,'Inductors'),(4,'Transistors'),(5,'OpAmps');
/*!40000 ALTER TABLE `mainpage_main_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mainpage_top_bar_links`
--
DROP TABLE IF EXISTS `mainpage_top_bar_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `mainpage_top_bar_links` (
`id` bigint NOT NULL AUTO_INCREMENT,
`top_bar_name` varchar(200) NOT NULL,
`main_id` bigint NOT NULL,
PRIMARY KEY (`id`),
KEY `mainpage_top_bar_lin_main_id_19e4cb5f_fk_mainpage_` (`main_id`),
CONSTRAINT `mainpage_top_bar_lin_main_id_19e4cb5f_fk_mainpage_` FOREIGN KEY (`main_id`) REFERENCES `mainpage_main_links` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mainpage_top_bar_links`
--
LOCK TABLES `mainpage_top_bar_links` WRITE;
/*!40000 ALTER TABLE `mainpage_top_bar_links` DISABLE KEYS */;
INSERT INTO `mainpage_top_bar_links` VALUES (1,'Some link 1',1),(2,'Some link 1',1),(3,'Some link 1',1),(4,'Some link 1',2),(5,'Some link 1',2),(6,'Some link 1',2),(7,'Some link 1',3),(8,'Some link 1',3),(9,'Some link 1',4),(10,'Some link 1',4),(11,'Some link 1',4),(12,'Test link',5);
/*!40000 ALTER TABLE `mainpage_top_bar_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `polls_choice`
--
DROP TABLE IF EXISTS `polls_choice`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `polls_choice` (
`id` bigint NOT NULL AUTO_INCREMENT,
`choice_text` varchar(200) NOT NULL,
`votes` int NOT NULL,
`question_id` bigint NOT NULL,
PRIMARY KEY (`id`),
KEY `polls_choice_question_id_c5b4b260_fk_polls_question_id` (`question_id`),
CONSTRAINT `polls_choice_question_id_c5b4b260_fk_polls_question_id` FOREIGN KEY (`question_id`) REFERENCES `polls_question` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `polls_choice`
--
LOCK TABLES `polls_choice` WRITE;
/*!40000 ALTER TABLE `polls_choice` DISABLE KEYS */;
INSERT INTO `polls_choice` VALUES (1,'Not much',0,1),(2,'The sky',0,1),(3,'Just hacking again',0,1);
/*!40000 ALTER TABLE `polls_choice` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `polls_question`
--
DROP TABLE IF EXISTS `polls_question`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `polls_question` (
`id` bigint NOT NULL AUTO_INCREMENT,
`question_text` varchar(200) NOT NULL,
`pub_date` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `polls_question`
--
LOCK TABLES `polls_question` WRITE;
/*!40000 ALTER TABLE `polls_question` DISABLE KEYS */;
INSERT INTO `polls_question` VALUES (1,'What\'s up?','2023-02-11 15:21:19.590050'),(2,'Is this awesome?','2023-02-11 15:30:24.000000');
/*!40000 ALTER TABLE `polls_question` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `storage`
--
DROP TABLE IF EXISTS `storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8 */;
CREATE TABLE `storage` (
`room` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`longname` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`shortname` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`responsible_person` varchar(32) NOT NULL,
`title_en` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`title_de` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
PRIMARY KEY (`room`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `storage`
--
LOCK TABLES `storage` WRITE;
/*!40000 ALTER TABLE `storage` DISABLE KEYS */;
INSERT INTO `storage` VALUES ('05 01 026','Microcontroller-Lab','uC','Grunenberg','Mr.','Herr'),('05 EG 008','Electrical workshop','EE','Muhs','Mr.','Herr'),('06 02 007','Mechatronics-Lab','MSE','Titze','Mr.','Herr');
/*!40000 ALTER TABLE `storage` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-04-30 13:05:52