-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbdump.l
3322 lines (3322 loc) · 162 KB
/
dbdump.l
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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# PICOBOT DATABASE DUMP
# 2014-02-26 15:40:34
# Geekbauch
(obj ((+Geek) nick "JVSponge")
measures (`(obj ((+Bauch) ts "2008-11-17 12:57:00" cm 120)) `(obj ((+Bauch) ts "2008-11-02 10:03:00" cm 119)) `(obj ((+Bauch) ts "2008-11-30 15:51:00" cm 117)) `(obj ((+Bauch) ts "2008-11-04 12:48:00" cm 128)) `(obj ((+Bauch) ts "2008-01-20 00:00:00" cm 124)) `(obj ((+Bauch) ts "2008-01-10 00:00:00" cm 124)) `(obj ((+Bauch) ts "2009-04-06 23:34:00" cm 114))) )
(obj ((+Geek) nick "NIL")
measures (`(obj ((+Bauch) ts "2009-03-17 10:55:00" cm 0))) )
(obj ((+Geek) nick "SpongeBot")
measures (`(obj ((+Bauch) ts "2009-03-12 18:45:00" cm 121)) `(obj ((+Bauch) ts "2009-03-14 19:11:00" cm 114)) `(obj ((+Bauch) ts "2009-03-08 18:11:00" cm 120))) )
(obj ((+Geek) nick "b3")
measures (`(obj ((+Bauch) ts "2009-10-10 13:15:00" cm 96)) `(obj ((+Bauch) ts "2009-09-29 16:43:00" cm 99))) )
(obj ((+Geek) nick "bierbaron")
measures (`(obj ((+Bauch) ts "2009-01-20 20:02:00" cm 102)) `(obj ((+Bauch) ts "2009-10-13 20:09:00" cm 97)) `(obj ((+Bauch) ts "2009-03-13 22:51:00" cm 100)) `(obj ((+Bauch) ts "2009-07-19 17:20:00" cm 98)) `(obj ((+Bauch) ts "2010-05-06 21:18:00" cm 99))) )
(obj ((+Geek) nick "blafa")
measures (`(obj ((+Bauch) ts "2009-03-11 17:23:00" cm 10))) )
(obj ((+Geek) nick "bonk")
measures (`(obj ((+Bauch) ts "2014-01-12 12:00:40" cm 115)) `(obj ((+Bauch) ts "2008-10-16 11:46:00" cm 130)) `(obj ((+Bauch) ts "2008-10-13 21:55:00" cm 133)) `(obj ((+Bauch) ts "2008-10-15 14:49:00" cm 134)) `(obj ((+Bauch) ts "2008-10-18 16:45:00" cm 133)) `(obj ((+Bauch) ts "2008-10-18 15:18:00" cm 133)) `(obj ((+Bauch) ts "2008-10-18 11:42:00" cm 131)) `(obj ((+Bauch) ts "2008-10-18 02:55:00" cm 133)) `(obj ((+Bauch) ts "2008-10-19 21:37:00" cm 134)) `(obj ((+Bauch) ts "2008-10-19 12:12:00" cm 131)) `(obj ((+Bauch) ts "2008-10-19 01:10:00" cm 132)) `(obj ((+Bauch) ts "2008-10-21 20:31:00" cm 132)) `(obj ((+Bauch) ts "2008-10-22 22:11:00" cm 133)) `(obj ((+Bauch) ts "2008-10-22 14:53:00" cm 131)) `(obj ((+Bauch) ts "2008-10-22 09:55:00" cm 131)) `(obj ((+Bauch) ts "2008-10-23 14:54:00" cm 132)) `(obj ((+Bauch) ts "2008-10-23 08:50:00" cm 130)) `(obj ((+Bauch) ts "2008-10-24 23:24:00" cm 133)) `(obj ((+Bauch) ts "2008-10-24 21:40:00" cm 132)) `(obj ((+Bauch) ts "2008-10-25 14:05:00" cm 130)) `(obj ((+Bauch) ts "2008-10-26 21:35:00" cm 133)) `(obj ((+Bauch) ts "2008-10-26 20:02:00" cm 132)) `(obj ((+Bauch) ts "2008-10-27 21:16:00" cm 132)) `(obj ((+Bauch) ts "2008-10-30 12:40:00" cm 131)) `(obj ((+Bauch) ts "2008-10-04 23:26:00" cm 131)) `(obj ((+Bauch) ts "2008-10-05 21:06:00" cm 135)) `(obj ((+Bauch) ts "2008-11-01 11:55:00" cm 129)) `(obj ((+Bauch) ts "2008-11-02 23:20:00" cm 131)) `(obj ((+Bauch) ts "2008-11-02 15:10:00" cm 128)) `(obj ((+Bauch) ts "2008-11-02 12:49:00" cm 128)) `(obj ((+Bauch) ts "2008-11-02 00:56:00" cm 130)) `(obj ((+Bauch) ts "2008-11-02 00:56:00" cm 129)) `(obj ((+Bauch) ts "2008-11-02 00:50:00" cm 130)) `(obj ((+Bauch) ts "2008-11-22 23:32:00" cm 131)) `(obj ((+Bauch) ts "2008-11-26 13:59:00" cm 129)) `(obj ((+Bauch) ts "2008-11-27 13:47:00" cm 129)) `(obj ((+Bauch) ts "2008-11-03 23:26:00" cm 133)) `(obj ((+Bauch) ts "2008-11-30 21:27:00" cm 129)) `(obj ((+Bauch) ts "2008-11-04 21:58:00" cm 130)) `(obj ((+Bauch) ts "2008-11-05 21:30:00" cm 131)) `(obj ((+Bauch) ts "2008-11-05 00:18:00" cm 134)) `(obj ((+Bauch) ts "2008-12-17 22:37:00" cm 131)) `(obj ((+Bauch) ts "2008-12-24 11:27:00" cm 129)) `(obj ((+Bauch) ts "2008-12-27 19:53:00" cm 133)) `(obj ((+Bauch) ts "2008-12-04 15:38:00" cm 129)) `(obj ((+Bauch) ts "2008-12-05 15:48:00" cm 128)) `(obj ((+Bauch) ts "2008-03-29 21:28:00" cm 124)) `(obj ((+Bauch) ts "2008-04-10 20:41:00" cm 126)) `(obj ((+Bauch) ts "2008-04-13 21:55:00" cm 127)) `(obj ((+Bauch) ts "2008-04-18 22:09:00" cm 126)) `(obj ((+Bauch) ts "2008-04-21 20:19:00" cm 126)) `(obj ((+Bauch) ts "2008-04-24 22:30:00" cm 132)) `(obj ((+Bauch) ts "2008-04-26 09:55:00" cm 125)) `(obj ((+Bauch) ts "2007-12-27 00:00:00" cm 123)) `(obj ((+Bauch) ts "2007-11-10 00:00:00" cm 116)) `(obj ((+Bauch) ts "2007-11-11 00:00:00" cm 124)) `(obj ((+Bauch) ts "2008-03-29 00:00:00" cm 124)) `(obj ((+Bauch) ts "2008-02-09 00:00:00" cm 126)) `(obj ((+Bauch) ts "2008-02-08 00:00:00" cm 136)) `(obj ((+Bauch) ts "2008-01-11 00:00:00" cm 123)) `(obj ((+Bauch) ts "2008-01-10 00:00:00" cm 124)) `(obj ((+Bauch) ts "2008-05-28 23:01:00" cm 127)) `(obj ((+Bauch) ts "2008-06-14 23:13:00" cm 125)) `(obj ((+Bauch) ts "2008-06-26 13:55:00" cm 125)) `(obj ((+Bauch) ts "2008-06-07 18:16:00" cm 127)) `(obj ((+Bauch) ts "2008-07-12 20:49:00" cm 130)) `(obj ((+Bauch) ts "2008-08-19 13:40:00" cm 125)) `(obj ((+Bauch) ts "2008-08-20 15:19:00" cm 127)) `(obj ((+Bauch) ts "2008-08-24 21:42:00" cm 124)) `(obj ((+Bauch) ts "2008-08-28 15:53:00" cm 130)) `(obj ((+Bauch) ts "2008-08-29 22:54:00" cm 133)) `(obj ((+Bauch) ts "2008-08-30 23:21:00" cm 135)) `(obj ((+Bauch) ts "2008-08-31 13:33:00" cm 134)) `(obj ((+Bauch) ts "2008-09-13 16:22:00" cm 129)) `(obj ((+Bauch) ts "2008-09-06 11:14:00" cm 133)) `(obj ((+Bauch) ts "2009-01-10 23:25:00" cm 132)) `(obj ((+Bauch) ts "2009-01-13 22:36:00" cm 133)) `(obj ((+Bauch) ts "2009-01-18 21:16:00" cm 133)) `(obj ((+Bauch) ts "2009-01-19 20:07:00" cm 136)) `(obj ((+Bauch) ts "2009-01-22 21:40:00" cm 137)) `(obj ((+Bauch) ts "2009-01-25 19:23:00" cm 135)) `(obj ((+Bauch) ts "2009-01-27 09:05:00" cm 133)) `(obj ((+Bauch) ts "2009-01-03 17:25:00" cm 129)) `(obj ((+Bauch) ts "2009-01-31 01:42:00" cm 133)) `(obj ((+Bauch) ts "2009-01-04 21:12:00" cm 132)) `(obj ((+Bauch) ts "2009-01-09 23:06:00" cm 133)) `(obj ((+Bauch) ts "2009-02-22 23:32:00" cm 132)) `(obj ((+Bauch) ts "2009-03-02 21:01:00" cm 134)) `(obj ((+Bauch) ts "2009-03-29 19:32:00" cm 129)) `(obj ((+Bauch) ts "2009-04-13 21:23:00" cm 134)) `(obj ((+Bauch) ts "2009-04-18 20:49:00" cm 130)) `(obj ((+Bauch) ts "2009-04-18 11:51:00" cm 132)) `(obj ((+Bauch) ts "2009-04-02 09:23:00" cm 132)) `(obj ((+Bauch) ts "2009-04-20 21:53:00" cm 136)) `(obj ((+Bauch) ts "2009-04-30 23:38:00" cm 132)) `(obj ((+Bauch) ts "2009-04-06 23:45:00" cm 132)) `(obj ((+Bauch) ts "2009-04-07 00:01:00" cm 132)) `(obj ((+Bauch) ts "2009-05-01 21:43:00" cm 130)) `(obj ((+Bauch) ts "2009-05-11 22:19:00" cm 133)) `(obj ((+Bauch) ts "2009-06-19 19:09:00" cm 131)) `(obj ((+Bauch) ts "2009-06-21 12:42:00" cm 129)) `(obj ((+Bauch) ts "2009-07-03 22:13:00" cm 131)) `(obj ((+Bauch) ts "2009-11-28 13:11:00" cm 132)) `(obj ((+Bauch) ts "2009-11-29 17:47:00" cm 133)) `(obj ((+Bauch) ts "2009-11-30 20:27:00" cm 132)) `(obj ((+Bauch) ts "2009-12-04 19:13:00" cm 134)) `(obj ((+Bauch) ts "2009-12-06 10:05:00" cm 131)) `(obj ((+Bauch) ts "2009-12-07 18:43:00" cm 135)) `(obj ((+Bauch) ts "2009-12-09 07:48:00" cm 131)) `(obj ((+Bauch) ts "2009-12-12 16:24:00" cm 132)) `(obj ((+Bauch) ts "2009-12-15 22:05:00" cm 136)) `(obj ((+Bauch) ts "2009-12-31 20:20:00" cm 129)) `(obj ((+Bauch) ts "2010-01-02 15:54:00" cm 130)) `(obj ((+Bauch) ts "2010-01-09 16:04:00" cm 132)) `(obj ((+Bauch) ts "2010-02-05 23:32:00" cm 134)) `(obj ((+Bauch) ts "2010-02-05 23:32:00" cm 134)) `(obj ((+Bauch) ts "2010-02-11 23:19:00" cm 131)) `(obj ((+Bauch) ts "2010-02-14 20:44:00" cm 135)) `(obj ((+Bauch) ts "2010-02-20 13:51:00" cm 132)) `(obj ((+Bauch) ts "2010-02-22 20:42:00" cm 132)) `(obj ((+Bauch) ts "2010-02-23 20:09:00" cm 133)) `(obj ((+Bauch) ts "2010-03-07 18:36:00" cm 132)) `(obj ((+Bauch) ts "2010-10-12 08:51:00" cm 128)) `(obj ((+Bauch) ts "2010-10-17 19:48:00" cm 133)) `(obj ((+Bauch) ts "2010-11-27 16:16:00" cm 131)) `(obj ((+Bauch) ts "2010-12-20 14:57:00" cm 129)) `(obj ((+Bauch) ts "2010-12-05 12:32:00" cm 129)) `(obj ((+Bauch) ts "2010-03-27 21:39:00" cm 134)) `(obj ((+Bauch) ts "2010-04-16 10:48:00" cm 132)) `(obj ((+Bauch) ts "2010-04-25 13:02:00" cm 132)) `(obj ((+Bauch) ts "2010-05-03 11:55:00" cm 131)) `(obj ((+Bauch) ts "2010-05-08 18:41:00" cm 133)) `(obj ((+Bauch) ts "2010-06-10 13:40:00" cm 128)) `(obj ((+Bauch) ts "2010-06-12 11:55:00" cm 130)) `(obj ((+Bauch) ts "2010-06-19 14:09:00" cm 130)) `(obj ((+Bauch) ts "2010-07-12 16:33:00" cm 127)) `(obj ((+Bauch) ts "2010-07-04 11:42:00" cm 127)) `(obj ((+Bauch) ts "2011-10-01 10:32:00" cm 120)) `(obj ((+Bauch) ts "2011-10-12 17:26:00" cm 125)) `(obj ((+Bauch) ts "2011-10-14 12:26:00" cm 125)) `(obj ((+Bauch) ts "2011-10-19 08:36:00" cm 118)) `(obj ((+Bauch) ts "2011-10-02 21:01:00" cm 128)) `(obj ((+Bauch) ts "2011-10-02 12:57:00" cm 124)) `(obj ((+Bauch) ts "2011-10-20 09:22:00" cm 118)) `(obj ((+Bauch) ts "2011-10-24 10:54:00" cm 121)) `(obj ((+Bauch) ts "2011-10-27 12:55:00" cm 125)) `(obj ((+Bauch) ts "2011-10-28 12:34:00" cm 117)) `(obj ((+Bauch) ts "2011-10-29 14:35:00" cm 124)) `(obj ((+Bauch) ts "2011-10-03 09:07:00" cm 119)) `(obj ((+Bauch) ts "2011-10-07 08:25:00" cm 119)) `(obj ((+Bauch) ts "2011-10-08 10:21:00" cm 118)) `(obj ((+Bauch) ts "2011-10-09 19:04:00" cm 122)) `(obj ((+Bauch) ts "2011-11-11 14:31:00" cm 119)) `(obj ((+Bauch) ts "2011-11-12 14:59:00" cm 120)) `(obj ((+Bauch) ts "2011-11-15 08:57:00" cm 118)) `(obj ((+Bauch) ts "2011-11-02 08:32:00" cm 121)) `(obj ((+Bauch) ts "2011-11-21 13:42:00" cm 124)) `(obj ((+Bauch) ts "2011-11-24 08:59:00" cm 121)) `(obj ((+Bauch) ts "2011-11-07 10:15:00" cm 120)) `(obj ((+Bauch) ts "2011-12-14 08:30:00" cm 123)) `(obj ((+Bauch) ts "2011-12-16 09:06:00" cm 121)) `(obj ((+Bauch) ts "2011-12-03 14:50:00" cm 122)) `(obj ((+Bauch) ts "2011-12-05 08:15:00" cm 122)) `(obj ((+Bauch) ts "2011-12-08 14:01:00" cm 122)) `(obj ((+Bauch) ts "2011-02-12 00:05:00" cm 128)) `(obj ((+Bauch) ts "2011-02-03 08:49:00" cm 130)) `(obj ((+Bauch) ts "2011-03-13 21:14:00" cm 131)) `(obj ((+Bauch) ts "2011-03-14 10:33:00" cm 129)) `(obj ((+Bauch) ts "2011-03-26 11:16:00" cm 129)) `(obj ((+Bauch) ts "2011-03-06 13:24:00" cm 133)) `(obj ((+Bauch) ts "2011-03-09 12:14:00" cm 128)) `(obj ((+Bauch) ts "2011-05-11 21:30:00" cm 128)) `(obj ((+Bauch) ts "2011-05-21 16:41:00" cm 128)) `(obj ((+Bauch) ts "2011-05-22 17:21:00" cm 127)) `(obj ((+Bauch) ts "2011-06-10 11:56:00" cm 126)) `(obj ((+Bauch) ts "2011-06-13 17:28:00" cm 125)) `(obj ((+Bauch) ts "2011-06-13 13:25:00" cm 128)) `(obj ((+Bauch) ts "2011-06-13 09:50:00" cm 125)) `(obj ((+Bauch) ts "2011-06-15 09:48:00" cm 123)) `(obj ((+Bauch) ts "2011-06-16 19:36:00" cm 126)) `(obj ((+Bauch) ts "2011-06-16 11:21:00" cm 125)) `(obj ((+Bauch) ts "2011-06-17 15:03:00" cm 125)) `(obj ((+Bauch) ts "2011-06-18 20:17:00" cm 128)) `(obj ((+Bauch) ts "2011-06-18 18:12:00" cm 126)) `(obj ((+Bauch) ts "2011-06-19 11:07:00" cm 124)) `(obj ((+Bauch) ts "2011-06-02 11:15:00" cm 124)) `(obj ((+Bauch) ts "2011-06-21 12:11:00" cm 129)) `(obj ((+Bauch) ts "2011-06-24 10:35:00" cm 123)) `(obj ((+Bauch) ts "2011-06-26 14:16:00" cm 126)) `(obj ((+Bauch) ts "2011-06-28 08:39:00" cm 123)) `(obj ((+Bauch) ts "2011-06-30 14:51:00" cm 125)) `(obj ((+Bauch) ts "2011-06-05 09:46:00" cm 126)) `(obj ((+Bauch) ts "2011-06-08 16:10:00" cm 124)) `(obj ((+Bauch) ts "2011-07-11 12:52:00" cm 123)) `(obj ((+Bauch) ts "2011-07-15 14:00:00" cm 125)) `(obj ((+Bauch) ts "2011-07-02 12:57:00" cm 125)) `(obj ((+Bauch) ts "2011-07-20 12:26:00" cm 122)) `(obj ((+Bauch) ts "2011-07-31 21:15:00" cm 124)) `(obj ((+Bauch) ts "2011-08-11 12:01:00" cm 134)) `(obj ((+Bauch) ts "2011-08-13 11:12:00" cm 129)) `(obj ((+Bauch) ts "2011-08-14 11:35:00" cm 128)) `(obj ((+Bauch) ts "2011-08-25 09:57:00" cm 123)) `(obj ((+Bauch) ts "2011-08-03 11:10:00" cm 119)) `(obj ((+Bauch) ts "2011-08-30 21:35:00" cm 121)) `(obj ((+Bauch) ts "2011-09-12 11:56:00" cm 125)) `(obj ((+Bauch) ts "2011-09-15 08:01:00" cm 120)) `(obj ((+Bauch) ts "2011-09-18 14:41:00" cm 122)) `(obj ((+Bauch) ts "2011-09-19 13:59:00" cm 123)) `(obj ((+Bauch) ts "2011-09-20 09:21:00" cm 123)) `(obj ((+Bauch) ts "2011-09-22 15:32:00" cm 125)) `(obj ((+Bauch) ts "2011-09-23 17:13:00" cm 120)) `(obj ((+Bauch) ts "2011-09-25 17:24:00" cm 126)) `(obj ((+Bauch) ts "2011-09-27 09:16:00" cm 122)) `(obj ((+Bauch) ts "2011-09-03 11:24:00" cm 122)) `(obj ((+Bauch) ts "2011-09-07 10:59:00" cm 124)) `(obj ((+Bauch) ts "2012-01-02 21:04:00" cm 124)) `(obj ((+Bauch) ts "2012-01-24 20:07:00" cm 123)) `(obj ((+Bauch) ts "2012-01-25 09:11:00" cm 121)) `(obj ((+Bauch) ts "2012-01-29 13:26:00" cm 118)) `(obj ((+Bauch) ts "2012-01-08 11:48:00" cm 122)) `(obj ((+Bauch) ts "2012-10-18 19:14:00" cm 124)) `(obj ((+Bauch) ts "2012-11-13 08:30:00" cm 122)) `(obj ((+Bauch) ts "2012-11-26 11:24:00" cm 123)) `(obj ((+Bauch) ts "2012-11-27 10:47:00" cm 122)) `(obj ((+Bauch) ts "2012-11-30 08:16:00" cm 122)) `(obj ((+Bauch) ts "2012-11-06 08:27:00" cm 123)) `(obj ((+Bauch) ts "2012-11-09 08:50:00" cm 126)) `(obj ((+Bauch) ts "2012-12-29 13:27:00" cm 121)) `(obj ((+Bauch) ts "2012-12-31 11:29:00" cm 120)) `(obj ((+Bauch) ts "2012-12-06 10:08:00" cm 126)) `(obj ((+Bauch) ts "2012-12-06 08:03:00" cm 116)) `(obj ((+Bauch) ts "2012-02-10 09:09:00" cm 121)) `(obj ((+Bauch) ts "2012-02-11 15:13:00" cm 117)) `(obj ((+Bauch) ts "2012-02-21 09:59:00" cm 119)) `(obj ((+Bauch) ts "2012-02-22 08:27:00" cm 118)) `(obj ((+Bauch) ts "2012-02-23 08:45:00" cm 118)) `(obj ((+Bauch) ts "2012-02-03 19:10:00" cm 119)) `(obj ((+Bauch) ts "2012-02-05 21:07:00" cm 119)) `(obj ((+Bauch) ts "2012-02-06 09:06:00" cm 120)) `(obj ((+Bauch) ts "2012-02-07 08:49:00" cm 119)) `(obj ((+Bauch) ts "2012-02-08 09:53:00" cm 118)) `(obj ((+Bauch) ts "2012-03-27 09:29:00" cm 119)) `(obj ((+Bauch) ts "2012-03-07 08:50:00" cm 120)) `(obj ((+Bauch) ts "2012-04-17 08:04:00" cm 122)) `(obj ((+Bauch) ts "2012-04-19 08:43:00" cm 120)) `(obj ((+Bauch) ts "2012-04-02 08:32:00" cm 116)) `(obj ((+Bauch) ts "2012-04-24 15:00:00" cm 119)) `(obj ((+Bauch) ts "2012-04-06 23:21:00" cm 121)) `(obj ((+Bauch) ts "2012-04-07 10:03:00" cm 114)) `(obj ((+Bauch) ts "2012-05-10 08:40:00" cm 123)) `(obj ((+Bauch) ts "2012-05-02 15:27:00" cm 124)) `(obj ((+Bauch) ts "2012-05-04 09:13:00" cm 121)) `(obj ((+Bauch) ts "2012-06-12 07:49:00" cm 119)) `(obj ((+Bauch) ts "2012-06-19 12:04:00" cm 118)) `(obj ((+Bauch) ts "2012-06-20 09:01:00" cm 117)) `(obj ((+Bauch) ts "2012-06-21 14:08:00" cm 119)) `(obj ((+Bauch) ts "2012-06-29 14:13:00" cm 119)) `(obj ((+Bauch) ts "2012-06-30 11:10:00" cm 119)) `(obj ((+Bauch) ts "2012-06-08 09:28:00" cm 125)) `(obj ((+Bauch) ts "2012-07-14 11:09:00" cm 118)) `(obj ((+Bauch) ts "2012-07-19 08:22:00" cm 118)) `(obj ((+Bauch) ts "2012-07-22 12:50:00" cm 116)) `(obj ((+Bauch) ts "2012-07-05 10:42:00" cm 121)) `(obj ((+Bauch) ts "2012-07-07 07:09:00" cm 118)) `(obj ((+Bauch) ts "2012-08-16 22:17:00" cm 121)) `(obj ((+Bauch) ts "2012-08-18 11:23:00" cm 121)) `(obj ((+Bauch) ts "2012-08-18 11:23:00" cm 127)) `(obj ((+Bauch) ts "2013-01-11 10:32:00" cm 119)) `(obj ((+Bauch) ts "2013-01-17 15:21:00" cm 120)) `(obj ((+Bauch) ts "2013-01-22 08:54:00" cm 119)) `(obj ((+Bauch) ts "2013-01-27 10:37:00" cm 118)) `(obj ((+Bauch) ts "2013-01-05 11:58:00" cm 120)) `(obj ((+Bauch) ts "2013-11-29 11:59:00" cm 114)) `(obj ((+Bauch) ts "2013-11-07 07:40:00" cm 113)) `(obj ((+Bauch) ts "2013-12-01 11:29:00" cm 113)) `(obj ((+Bauch) ts "2013-12-11 21:25:00" cm 114)) `(obj ((+Bauch) ts "2013-02-23 10:14:00" cm 117)) `(obj ((+Bauch) ts "2013-03-20 08:25:00" cm 118)) `(obj ((+Bauch) ts "2013-04-06 07:36:00" cm 115)) `(obj ((+Bauch) ts "2013-05-01 08:52:00" cm 114)) `(obj ((+Bauch) ts "2013-05-09 09:40:00" cm 114)) `(obj ((+Bauch) ts "2013-06-10 08:16:00" cm 114)) `(obj ((+Bauch) ts "2013-06-20 20:54:00" cm 118)) `(obj ((+Bauch) ts "2013-08-24 17:58:00" cm 121)) `(obj ((+Bauch) ts "2013-09-13 09:30:00" cm 114)) `(obj ((+Bauch) ts "2014-01-03 13:22:00" cm 116))) )
(obj ((+Geek) nick "cyraxx")
measures (`(obj ((+Bauch) ts "2010-03-07 18:40:00" cm 102)) `(obj ((+Bauch) ts "2010-05-27 11:44:00" cm 98)) `(obj ((+Bauch) ts "2011-06-26 14:34:00" cm 102)) `(obj ((+Bauch) ts "2011-07-08 12:48:00" cm 104)) `(obj ((+Bauch) ts "2012-03-31 21:30:00" cm 105))) )
(obj ((+Geek) nick "cyrx")
measures (`(obj ((+Bauch) ts "2008-10-11 12:32:00" cm 95)) `(obj ((+Bauch) ts "2008-10-11 00:28:00" cm 99)) `(obj ((+Bauch) ts "2008-10-13 21:53:00" cm 96)) `(obj ((+Bauch) ts "2008-10-14 22:02:00" cm 98)) `(obj ((+Bauch) ts "2008-10-21 20:32:00" cm 96)) `(obj ((+Bauch) ts "2008-10-22 22:14:00" cm 95)) `(obj ((+Bauch) ts "2008-10-22 21:25:00" cm 95)) `(obj ((+Bauch) ts "2008-10-24 01:13:00" cm 99)) `(obj ((+Bauch) ts "2008-10-26 20:03:00" cm 99)) `(obj ((+Bauch) ts "2008-10-26 19:00:00" cm 98)) `(obj ((+Bauch) ts "2008-10-09 23:23:00" cm 97)) `(obj ((+Bauch) ts "2008-11-12 21:08:00" cm 97)) `(obj ((+Bauch) ts "2008-11-17 22:01:00" cm 96)) `(obj ((+Bauch) ts "2008-11-22 23:34:00" cm 97)) `(obj ((+Bauch) ts "2008-11-28 20:53:00" cm 98)) `(obj ((+Bauch) ts "2008-11-04 21:54:00" cm 96)) `(obj ((+Bauch) ts "2008-11-07 17:24:00" cm 95)) `(obj ((+Bauch) ts "2008-11-08 10:08:00" cm 94)) `(obj ((+Bauch) ts "2008-11-09 01:35:00" cm 96)) `(obj ((+Bauch) ts "2008-12-10 21:43:00" cm 100)) `(obj ((+Bauch) ts "2008-12-13 16:08:00" cm 97)) `(obj ((+Bauch) ts "2008-12-24 13:06:00" cm 98)) `(obj ((+Bauch) ts "2008-12-25 22:27:00" cm 99)) `(obj ((+Bauch) ts "2008-12-31 19:47:00" cm 98)) `(obj ((+Bauch) ts "2008-12-05 22:09:00" cm 99)) `(obj ((+Bauch) ts "2008-12-07 21:58:00" cm 98)) `(obj ((+Bauch) ts "2009-01-02 23:10:00" cm 99)) `(obj ((+Bauch) ts "2009-01-20 21:56:00" cm 98)) `(obj ((+Bauch) ts "2009-01-09 23:06:00" cm 99)) `(obj ((+Bauch) ts "2009-02-11 23:04:00" cm 98)) `(obj ((+Bauch) ts "2009-02-25 23:39:00" cm 97)) `(obj ((+Bauch) ts "2009-03-01 14:05:00" cm 98)) `(obj ((+Bauch) ts "2009-03-12 22:55:00" cm 100)) `(obj ((+Bauch) ts "2009-04-06 23:49:00" cm 100)) `(obj ((+Bauch) ts "2009-04-07 00:00:00" cm 100)) `(obj ((+Bauch) ts "2009-12-07 22:02:00" cm 102)) `(obj ((+Bauch) ts "2010-05-27 11:45:00" cm 98))) )
(obj ((+Geek) nick "dherr")
measures (`(obj ((+Bauch) ts "2008-10-23 15:18:00" cm 117)) `(obj ((+Bauch) ts "2008-10-27 23:20:00" cm 121)) `(obj ((+Bauch) ts "2008-10-30 15:52:00" cm 116)) `(obj ((+Bauch) ts "2008-11-13 12:01:00" cm 116)) `(obj ((+Bauch) ts "2008-11-17 12:57:00" cm 120)) `(obj ((+Bauch) ts "2008-11-17 12:57:00" cm 120)) `(obj ((+Bauch) ts "2008-11-19 16:53:00" cm 118)) `(obj ((+Bauch) ts "2008-11-02 17:40:00" cm 121)) `(obj ((+Bauch) ts "2008-11-25 14:09:00" cm 114)) `(obj ((+Bauch) ts "2008-11-26 14:19:00" cm 116)) `(obj ((+Bauch) ts "2008-11-26 00:23:00" cm 115)) `(obj ((+Bauch) ts "2008-11-27 16:37:00" cm 119)) `(obj ((+Bauch) ts "2008-11-27 14:30:00" cm 115)) `(obj ((+Bauch) ts "2008-11-28 16:12:00" cm 115)) `(obj ((+Bauch) ts "2008-11-28 01:29:00" cm 117)) `(obj ((+Bauch) ts "2008-11-29 14:19:00" cm 116)) `(obj ((+Bauch) ts "2008-11-30 15:51:00" cm 117)) `(obj ((+Bauch) ts "2008-12-01 18:02:00" cm 114)) `(obj ((+Bauch) ts "2008-12-15 15:54:00" cm 121)) `(obj ((+Bauch) ts "2008-12-19 15:30:00" cm 119)) `(obj ((+Bauch) ts "2008-12-22 15:32:00" cm 118)) `(obj ((+Bauch) ts "2008-12-04 00:57:00" cm 120)) `(obj ((+Bauch) ts "2008-12-09 18:32:00" cm 121)) `(obj ((+Bauch) ts "2008-12-09 17:18:00" cm 119)) `(obj ((+Bauch) ts "2008-05-10 19:43:00" cm 111)) `(obj ((+Bauch) ts "2008-06-22 15:30:00" cm 114)) `(obj ((+Bauch) ts "2008-06-25 12:12:00" cm 111)) `(obj ((+Bauch) ts "2008-06-26 13:56:00" cm 111)) `(obj ((+Bauch) ts "2008-07-01 11:54:00" cm 116)) `(obj ((+Bauch) ts "2008-07-02 15:12:00" cm 110)) `(obj ((+Bauch) ts "2008-07-04 14:44:00" cm 115)) `(obj ((+Bauch) ts "2008-07-05 13:38:00" cm 112)) `(obj ((+Bauch) ts "2008-08-15 16:33:00" cm 118)) `(obj ((+Bauch) ts "2008-08-19 17:23:00" cm 114)) `(obj ((+Bauch) ts "2008-08-19 13:58:00" cm 116)) `(obj ((+Bauch) ts "2008-08-19 13:56:00" cm 112)) `(obj ((+Bauch) ts "2008-08-02 11:24:00" cm 115)) `(obj ((+Bauch) ts "2008-08-20 11:28:00" cm 117)) `(obj ((+Bauch) ts "2008-09-29 13:24:00" cm 116)) `(obj ((+Bauch) ts "2009-01-15 17:47:00" cm 122)) `(obj ((+Bauch) ts "2009-01-19 14:46:00" cm 118)) `(obj ((+Bauch) ts "2009-01-20 20:00:00" cm 122)) `(obj ((+Bauch) ts "2009-01-25 18:30:00" cm 120)) `(obj ((+Bauch) ts "2009-01-29 16:00:00" cm 118)) `(obj ((+Bauch) ts "2009-01-03 07:33:00" cm 124)) `(obj ((+Bauch) ts "2009-01-09 23:25:00" cm 119)) `(obj ((+Bauch) ts "2009-10-12 12:36:00" cm 122)) `(obj ((+Bauch) ts "2009-02-01 02:38:00" cm 120)) `(obj ((+Bauch) ts "2009-02-20 22:58:00" cm 122)) `(obj ((+Bauch) ts "2009-02-20 12:31:00" cm 119)) `(obj ((+Bauch) ts "2009-02-24 11:42:00" cm 117)) `(obj ((+Bauch) ts "2009-03-01 14:04:00" cm 121)) `(obj ((+Bauch) ts "2009-03-11 11:46:00" cm 123)) `(obj ((+Bauch) ts "2009-03-12 18:45:00" cm 121)) `(obj ((+Bauch) ts "2009-03-13 12:36:00" cm 117)) `(obj ((+Bauch) ts "2009-03-02 11:00:00" cm 119)) `(obj ((+Bauch) ts "2009-03-08 18:11:00" cm 120)) `(obj ((+Bauch) ts "2009-04-06 23:46:00" cm 117)) `(obj ((+Bauch) ts "2009-04-07 11:30:00" cm 126)) `(obj ((+Bauch) ts "2009-04-07 01:51:00" cm 126)) `(obj ((+Bauch) ts "2009-04-07 00:00:00" cm 117)) `(obj ((+Bauch) ts "2009-07-19 17:18:00" cm 120)) `(obj ((+Bauch) ts "2009-09-26 16:42:00" cm 122)) `(obj ((+Bauch) ts "2009-09-29 16:19:00" cm 122)) `(obj ((+Bauch) ts "2010-03-12 14:57:00" cm 127)) `(obj ((+Bauch) ts "2010-03-15 12:45:00" cm 125)) `(obj ((+Bauch) ts "2009-11-28 20:40:00" cm 123)) `(obj ((+Bauch) ts "2009-11-28 13:02:00" cm 126)) `(obj ((+Bauch) ts "2009-11-29 16:42:00" cm 119)) `(obj ((+Bauch) ts "2009-11-30 12:02:00" cm 118)) `(obj ((+Bauch) ts "2009-12-07 21:53:00" cm 123)) `(obj ((+Bauch) ts "2009-12-08 16:03:00" cm 122)) `(obj ((+Bauch) ts "2009-12-09 14:33:00" cm 120)) `(obj ((+Bauch) ts "2009-12-09 02:10:00" cm 126)) `(obj ((+Bauch) ts "2009-12-11 14:08:00" cm 119)) `(obj ((+Bauch) ts "2009-12-19 03:50:00" cm 122)) `(obj ((+Bauch) ts "2009-12-22 14:19:00" cm 120)) `(obj ((+Bauch) ts "2009-12-28 11:37:00" cm 123)) `(obj ((+Bauch) ts "2010-01-02 16:01:00" cm 123)) `(obj ((+Bauch) ts "2010-01-09 16:05:00" cm 126)) `(obj ((+Bauch) ts "2010-01-21 14:13:00" cm 126)) `(obj ((+Bauch) ts "2010-01-27 14:56:00" cm 127)) `(obj ((+Bauch) ts "2010-02-04 15:37:00" cm 128)) `(obj ((+Bauch) ts "2010-02-10 12:04:00" cm 129)) `(obj ((+Bauch) ts "2010-02-11 23:17:00" cm 124)) `(obj ((+Bauch) ts "2010-02-17 13:25:00" cm 123)) `(obj ((+Bauch) ts "2010-02-23 22:52:00" cm 124)) `(obj ((+Bauch) ts "2010-03-03 07:16:00" cm 124)) `(obj ((+Bauch) ts "2010-10-11 16:26:00" cm 128)) `(obj ((+Bauch) ts "2010-10-17 19:44:00" cm 132)) `(obj ((+Bauch) ts "2010-10-19 21:45:00" cm 128)) `(obj ((+Bauch) ts "2010-10-04 13:29:00" cm 128)) `(obj ((+Bauch) ts "2010-11-10 11:28:00" cm 125)) `(obj ((+Bauch) ts "2010-11-02 14:29:00" cm 126)) `(obj ((+Bauch) ts "2010-11-03 21:57:00" cm 129)) `(obj ((+Bauch) ts "2010-11-06 09:56:00" cm 128)) `(obj ((+Bauch) ts "2010-12-08 12:04:00" cm 130)) `(obj ((+Bauch) ts "2010-04-15 15:05:00" cm 127)) `(obj ((+Bauch) ts "2010-04-16 15:41:00" cm 130)) `(obj ((+Bauch) ts "2010-04-23 11:34:00" cm 128)) `(obj ((+Bauch) ts "2010-04-28 11:15:00" cm 127)) `(obj ((+Bauch) ts "2010-04-04 13:24:00" cm 129)) `(obj ((+Bauch) ts "2010-05-27 11:43:00" cm 127)) `(obj ((+Bauch) ts "2010-05-05 17:36:00" cm 126)) `(obj ((+Bauch) ts "2010-05-08 18:48:00" cm 125)) `(obj ((+Bauch) ts "2010-06-10 16:08:00" cm 129)) `(obj ((+Bauch) ts "2010-06-14 13:43:00" cm 128)) `(obj ((+Bauch) ts "2010-06-24 06:03:00" cm 126)) `(obj ((+Bauch) ts "2010-06-03 11:59:00" cm 129)) `(obj ((+Bauch) ts "2010-06-06 00:00:00" cm 129)) `(obj ((+Bauch) ts "2010-07-01 23:39:00" cm 127)) `(obj ((+Bauch) ts "2010-07-01 08:43:00" cm 127)) `(obj ((+Bauch) ts "2010-07-11 16:40:00" cm 124)) `(obj ((+Bauch) ts "2010-07-13 20:56:00" cm 125)) `(obj ((+Bauch) ts "2010-07-15 10:52:00" cm 126)) `(obj ((+Bauch) ts "2010-07-15 10:35:00" cm 124)) `(obj ((+Bauch) ts "2010-07-17 13:23:00" cm 127)) `(obj ((+Bauch) ts "2010-07-05 12:04:00" cm 126)) `(obj ((+Bauch) ts "2010-09-30 05:52:00" cm 129)) `(obj ((+Bauch) ts "2011-01-10 10:07:00" cm 127)) `(obj ((+Bauch) ts "2011-01-11 13:02:00" cm 126)) `(obj ((+Bauch) ts "2011-01-14 22:00:00" cm 128)) `(obj ((+Bauch) ts "2011-01-03 11:49:00" cm 133)) `(obj ((+Bauch) ts "2011-01-06 13:41:00" cm 128)) `(obj ((+Bauch) ts "2011-10-01 20:10:00" cm 126)) `(obj ((+Bauch) ts "2011-10-10 08:36:00" cm 126)) `(obj ((+Bauch) ts "2011-10-11 08:59:00" cm 130)) `(obj ((+Bauch) ts "2011-10-13 22:00:00" cm 129)) `(obj ((+Bauch) ts "2011-10-13 08:38:00" cm 128)) `(obj ((+Bauch) ts "2011-10-16 18:53:00" cm 133)) `(obj ((+Bauch) ts "2011-10-17 21:37:00" cm 130)) `(obj ((+Bauch) ts "2011-10-18 08:01:00" cm 133)) `(obj ((+Bauch) ts "2011-10-20 09:23:00" cm 130)) `(obj ((+Bauch) ts "2011-10-24 15:45:00" cm 127)) `(obj ((+Bauch) ts "2011-10-25 07:32:00" cm 129)) `(obj ((+Bauch) ts "2011-10-29 15:16:00" cm 126)) `(obj ((+Bauch) ts "2011-10-03 14:15:00" cm 124)) `(obj ((+Bauch) ts "2011-10-06 08:26:00" cm 128)) `(obj ((+Bauch) ts "2011-10-07 07:22:00" cm 131)) `(obj ((+Bauch) ts "2011-11-14 11:45:00" cm 127)) `(obj ((+Bauch) ts "2011-11-17 09:18:00" cm 131)) `(obj ((+Bauch) ts "2011-11-19 21:53:00" cm 129)) `(obj ((+Bauch) ts "2011-11-24 10:28:00" cm 129)) `(obj ((+Bauch) ts "2011-11-30 14:11:00" cm 127)) `(obj ((+Bauch) ts "2011-11-04 08:32:00" cm 132)) `(obj ((+Bauch) ts "2011-11-06 15:58:00" cm 127)) `(obj ((+Bauch) ts "2011-11-07 11:49:00" cm 130)) `(obj ((+Bauch) ts "2011-11-07 10:42:00" cm 126)) `(obj ((+Bauch) ts "2011-12-14 08:28:00" cm 130)) `(obj ((+Bauch) ts "2011-12-16 08:39:00" cm 129)) `(obj ((+Bauch) ts "2011-12-18 13:38:00" cm 127)) `(obj ((+Bauch) ts "2011-12-03 18:46:00" cm 129)) `(obj ((+Bauch) ts "2011-12-05 10:17:00" cm 128)) `(obj ((+Bauch) ts "2011-02-01 11:17:00" cm 127)) `(obj ((+Bauch) ts "2011-02-12 00:11:00" cm 131)) `(obj ((+Bauch) ts "2011-02-16 08:41:00" cm 129)) `(obj ((+Bauch) ts "2011-02-08 13:22:00" cm 127)) `(obj ((+Bauch) ts "2011-03-11 15:36:00" cm 130)) `(obj ((+Bauch) ts "2011-03-13 21:15:00" cm 132)) `(obj ((+Bauch) ts "2011-03-21 15:04:00" cm 127)) `(obj ((+Bauch) ts "2011-03-23 16:09:00" cm 131)) `(obj ((+Bauch) ts "2011-03-30 09:43:00" cm 131)) `(obj ((+Bauch) ts "2011-03-04 10:43:00" cm 128)) `(obj ((+Bauch) ts "2011-04-12 16:26:00" cm 131)) `(obj ((+Bauch) ts "2011-04-21 14:12:00" cm 130)) `(obj ((+Bauch) ts "2011-04-26 13:33:00" cm 128)) `(obj ((+Bauch) ts "2011-05-21 16:53:00" cm 130)) `(obj ((+Bauch) ts "2011-05-28 22:35:00" cm 132)) `(obj ((+Bauch) ts "2011-06-13 19:44:00" cm 131)) `(obj ((+Bauch) ts "2011-06-15 14:48:00" cm 132)) `(obj ((+Bauch) ts "2011-06-15 05:05:00" cm 130)) `(obj ((+Bauch) ts "2011-06-17 12:29:00" cm 130)) `(obj ((+Bauch) ts "2011-06-19 15:55:00" cm 131)) `(obj ((+Bauch) ts "2011-06-22 15:52:00" cm 129)) `(obj ((+Bauch) ts "2011-06-22 13:46:00" cm 125)) `(obj ((+Bauch) ts "2011-06-23 13:44:00" cm 129)) `(obj ((+Bauch) ts "2011-06-24 12:39:00" cm 126)) `(obj ((+Bauch) ts "2011-06-25 20:35:00" cm 130)) `(obj ((+Bauch) ts "2011-06-29 10:16:00" cm 126)) `(obj ((+Bauch) ts "2011-07-12 15:04:00" cm 126)) `(obj ((+Bauch) ts "2011-07-14 17:50:00" cm 128)) `(obj ((+Bauch) ts "2011-07-18 15:45:00" cm 128)) `(obj ((+Bauch) ts "2011-07-20 12:04:00" cm 126)) `(obj ((+Bauch) ts "2011-07-31 21:20:00" cm 129)) `(obj ((+Bauch) ts "2011-07-04 12:55:00" cm 129)) `(obj ((+Bauch) ts "2011-07-05 14:06:00" cm 126)) `(obj ((+Bauch) ts "2011-07-06 13:47:00" cm 128)) `(obj ((+Bauch) ts "2011-08-13 11:18:00" cm 126)) `(obj ((+Bauch) ts "2011-09-12 13:34:00" cm 125)) `(obj ((+Bauch) ts "2011-09-19 13:59:00" cm 127)) `(obj ((+Bauch) ts "2011-09-20 08:54:00" cm 125)) `(obj ((+Bauch) ts "2011-09-24 22:28:00" cm 128)) `(obj ((+Bauch) ts "2011-09-27 09:10:00" cm 127)) `(obj ((+Bauch) ts "2011-09-28 22:51:00" cm 130)) `(obj ((+Bauch) ts "2011-09-28 08:02:00" cm 127)) `(obj ((+Bauch) ts "2011-09-29 08:21:00" cm 126)) `(obj ((+Bauch) ts "2011-09-05 11:16:00" cm 129)) `(obj ((+Bauch) ts "2012-01-10 08:34:00" cm 129)) `(obj ((+Bauch) ts "2012-01-10 08:34:00" cm 128)) `(obj ((+Bauch) ts "2012-01-16 07:34:00" cm 133)) `(obj ((+Bauch) ts "2012-01-21 23:46:00" cm 129)) `(obj ((+Bauch) ts "2012-01-23 21:36:00" cm 127)) `(obj ((+Bauch) ts "2012-01-24 07:06:00" cm 128)) `(obj ((+Bauch) ts "2012-01-30 09:16:00" cm 129)) `(obj ((+Bauch) ts "2012-01-08 13:32:00" cm 129)) `(obj ((+Bauch) ts "2012-10-29 08:44:00" cm 129)) `(obj ((+Bauch) ts "2012-10-04 16:38:00" cm 124)) `(obj ((+Bauch) ts "2012-10-05 17:39:00" cm 125)) `(obj ((+Bauch) ts "2012-11-09 08:54:00" cm 128)) `(obj ((+Bauch) ts "2012-02-26 12:24:00" cm 127)) `(obj ((+Bauch) ts "2012-02-27 10:17:00" cm 125)) `(obj ((+Bauch) ts "2012-03-12 12:07:00" cm 128)) `(obj ((+Bauch) ts "2012-03-20 09:34:00" cm 128)) `(obj ((+Bauch) ts "2012-03-06 09:24:00" cm 131)) `(obj ((+Bauch) ts "2012-04-01 19:10:00" cm 126)) `(obj ((+Bauch) ts "2012-04-01 19:10:00" cm 127)) `(obj ((+Bauch) ts "2012-04-10 18:17:00" cm 126)) `(obj ((+Bauch) ts "2012-04-11 10:41:00" cm 127)) `(obj ((+Bauch) ts "2012-04-12 09:16:00" cm 127)) `(obj ((+Bauch) ts "2012-04-22 08:52:00" cm 129)) `(obj ((+Bauch) ts "2012-04-24 14:38:00" cm 125)) `(obj ((+Bauch) ts "2012-05-01 02:38:00" cm 126)) `(obj ((+Bauch) ts "2012-05-22 13:22:00" cm 124)) `(obj ((+Bauch) ts "2012-05-25 10:05:00" cm 124)) `(obj ((+Bauch) ts "2012-05-29 11:26:00" cm 125)) `(obj ((+Bauch) ts "2012-05-03 10:49:00" cm 126)) `(obj ((+Bauch) ts "2012-05-04 10:32:00" cm 127)) `(obj ((+Bauch) ts "2012-05-06 15:46:00" cm 130)) `(obj ((+Bauch) ts "2012-05-09 08:39:00" cm 127)) `(obj ((+Bauch) ts "2012-06-01 12:18:00" cm 124)) `(obj ((+Bauch) ts "2012-06-12 15:54:00" cm 125)) `(obj ((+Bauch) ts "2012-06-12 15:47:00" cm 125)) `(obj ((+Bauch) ts "2012-06-17 18:30:00" cm 128)) `(obj ((+Bauch) ts "2012-06-19 12:24:00" cm 125)) `(obj ((+Bauch) ts "2012-06-20 15:42:00" cm 126)) `(obj ((+Bauch) ts "2012-06-29 15:44:00" cm 125)) `(obj ((+Bauch) ts "2012-06-05 13:43:00" cm 124)) `(obj ((+Bauch) ts "2012-07-17 12:32:00" cm 126)) `(obj ((+Bauch) ts "2012-07-24 17:52:00" cm 125)) `(obj ((+Bauch) ts "2012-07-24 11:22:00" cm 124)) `(obj ((+Bauch) ts "2012-07-27 20:26:00" cm 128)) `(obj ((+Bauch) ts "2012-07-08 20:54:00" cm 128)) `(obj ((+Bauch) ts "2012-08-10 18:51:00" cm 126)) `(obj ((+Bauch) ts "2012-08-22 09:12:00" cm 128)) `(obj ((+Bauch) ts "2012-09-26 09:06:00" cm 124)) `(obj ((+Bauch) ts "2013-01-02 11:10:00" cm 127)) `(obj ((+Bauch) ts "2013-01-21 09:36:00" cm 129)) `(obj ((+Bauch) ts "2013-04-15 14:19:00" cm 126)) `(obj ((+Bauch) ts "2013-04-30 11:16:00" cm 128)) `(obj ((+Bauch) ts "2013-05-14 22:51:00" cm 131)) `(obj ((+Bauch) ts "2013-05-07 08:51:00" cm 129)) `(obj ((+Bauch) ts "2013-05-07 08:49:00" cm 129)) `(obj ((+Bauch) ts "2013-06-08 13:20:00" cm 128)) `(obj ((+Bauch) ts "2013-07-21 18:00:00" cm 130))) )
(obj ((+Geek) nick "frog")
measures (`(obj ((+Bauch) ts "2008-10-05 15:27:00" cm 99)) `(obj ((+Bauch) ts "2011-10-29 00:46:00" cm 100)) `(obj ((+Bauch) ts "2011-02-11 23:55:00" cm 99))) )
(obj ((+Geek) nick "frosch")
measures (`(obj ((+Bauch) ts "2012-07-24 18:00:00" cm 106))) )
(obj ((+Geek) nick "froschli")
measures (`(obj ((+Bauch) ts "2008-10-05 15:28:00" cm 99)) `(obj ((+Bauch) ts "2008-11-05 21:15:00" cm 104)) `(obj ((+Bauch) ts "2008-04-10 20:05:00" cm 105)) `(obj ((+Bauch) ts "2008-08-22 00:24:00" cm 100))) )
(obj ((+Geek) nick "geeks")
measures (`(obj ((+Bauch) ts "2009-02-20 23:42:00" cm 84))) )
(obj ((+Geek) nick "girl")
measures (`(obj ((+Bauch) ts "2009-02-20 23:10:00" cm 84))) )
(obj ((+Geek) nick "iso")
measures (`(obj ((+Bauch) ts "2014-02-10 20:44:15" cm 108)) `(obj ((+Bauch) ts "2014-01-24 18:52:45" cm 109)) `(obj ((+Bauch) ts "2014-01-21 11:29:15" cm 107)) `(obj ((+Bauch) ts "2014-01-17 17:26:49" cm 110)) `(obj ((+Bauch) ts "2014-01-09 10:36:51" cm 107)) `(obj ((+Bauch) ts "2008-12-22 20:17:00" cm 117)) `(obj ((+Bauch) ts "2008-03-29 21:28:00" cm 122)) `(obj ((+Bauch) ts "2008-04-10 16:07:00" cm 119)) `(obj ((+Bauch) ts "2008-04-10 01:19:00" cm 120)) `(obj ((+Bauch) ts "2008-04-11 15:42:00" cm 120)) `(obj ((+Bauch) ts "2008-04-13 22:57:00" cm 120)) `(obj ((+Bauch) ts "2008-04-14 17:10:00" cm 122)) `(obj ((+Bauch) ts "2008-04-15 17:16:00" cm 120)) `(obj ((+Bauch) ts "2008-04-18 22:06:00" cm 122)) `(obj ((+Bauch) ts "2008-04-21 19:53:00" cm 124)) `(obj ((+Bauch) ts "2008-04-23 10:52:00" cm 123)) `(obj ((+Bauch) ts "2008-04-26 10:53:00" cm 122)) `(obj ((+Bauch) ts "2008-04-29 10:39:00" cm 123)) `(obj ((+Bauch) ts "2008-03-29 00:00:00" cm 122)) `(obj ((+Bauch) ts "2008-02-09 00:00:00" cm 120)) `(obj ((+Bauch) ts "2008-01-20 00:00:00" cm 124)) `(obj ((+Bauch) ts "2008-01-11 00:00:00" cm 123)) `(obj ((+Bauch) ts "2008-01-05 00:00:00" cm 123)) `(obj ((+Bauch) ts "2007-12-27 00:00:00" cm 119)) `(obj ((+Bauch) ts "2007-11-11 00:00:00" cm 119)) `(obj ((+Bauch) ts "2008-05-14 10:53:00" cm 122)) `(obj ((+Bauch) ts "2008-05-16 19:55:00" cm 122)) `(obj ((+Bauch) ts "2008-05-19 18:00:00" cm 123)) `(obj ((+Bauch) ts "2008-05-21 10:50:00" cm 123)) `(obj ((+Bauch) ts "2008-05-27 22:58:00" cm 120)) `(obj ((+Bauch) ts "2008-05-07 12:23:00" cm 122)) `(obj ((+Bauch) ts "2008-05-09 16:01:00" cm 124)) `(obj ((+Bauch) ts "2008-06-10 00:22:00" cm 119)) `(obj ((+Bauch) ts "2008-06-12 23:56:00" cm 119)) `(obj ((+Bauch) ts "2008-06-07 16:59:00" cm 119)) `(obj ((+Bauch) ts "2008-07-23 00:43:00" cm 117)) `(obj ((+Bauch) ts "2008-07-26 16:32:00" cm 118)) `(obj ((+Bauch) ts "2008-07-05 13:37:00" cm 118)) `(obj ((+Bauch) ts "2008-08-20 12:55:00" cm 119)) `(obj ((+Bauch) ts "2008-08-24 21:48:00" cm 120)) `(obj ((+Bauch) ts "2008-08-25 13:12:00" cm 119)) `(obj ((+Bauch) ts "2008-08-05 21:57:00" cm 117)) `(obj ((+Bauch) ts "2008-09-01 19:36:00" cm 121)) `(obj ((+Bauch) ts "2008-09-11 11:40:00" cm 122)) `(obj ((+Bauch) ts "2008-09-13 16:23:00" cm 124)) `(obj ((+Bauch) ts "2008-09-18 10:50:00" cm 122)) `(obj ((+Bauch) ts "2008-09-20 21:15:00" cm 124)) `(obj ((+Bauch) ts "2008-09-23 10:31:00" cm 124)) `(obj ((+Bauch) ts "2008-09-26 12:40:00" cm 122)) `(obj ((+Bauch) ts "2008-09-29 13:18:00" cm 123)) `(obj ((+Bauch) ts "2008-09-03 14:15:00" cm 119)) `(obj ((+Bauch) ts "2009-01-11 11:27:00" cm 114)) `(obj ((+Bauch) ts "2009-02-24 11:42:00" cm 113)) `(obj ((+Bauch) ts "2009-02-28 21:06:00" cm 112)) `(obj ((+Bauch) ts "2009-02-07 18:47:00" cm 112)) `(obj ((+Bauch) ts "2009-03-01 14:03:00" cm 114)) `(obj ((+Bauch) ts "2009-03-11 11:56:00" cm 112)) `(obj ((+Bauch) ts "2009-03-13 12:41:00" cm 113)) `(obj ((+Bauch) ts "2009-03-17 10:58:00" cm 112)) `(obj ((+Bauch) ts "2009-03-06 14:03:00" cm 113)) `(obj ((+Bauch) ts "2009-04-11 12:54:00" cm 116)) `(obj ((+Bauch) ts "2009-04-13 15:38:00" cm 115)) `(obj ((+Bauch) ts "2009-04-17 18:44:00" cm 115)) `(obj ((+Bauch) ts "2009-04-06 23:34:00" cm 114)) `(obj ((+Bauch) ts "2009-04-07 20:11:00" cm 116)) `(obj ((+Bauch) ts "2009-04-07 01:31:00" cm 121)) `(obj ((+Bauch) ts "2009-04-07 01:25:00" cm 118)) `(obj ((+Bauch) ts "2009-04-07 00:38:00" cm 116)) `(obj ((+Bauch) ts "2009-05-12 19:59:00" cm 114)) `(obj ((+Bauch) ts "2009-05-26 09:01:00" cm 116)) `(obj ((+Bauch) ts "2009-05-28 23:46:00" cm 118)) `(obj ((+Bauch) ts "2009-05-08 15:03:00" cm 112)) `(obj ((+Bauch) ts "2009-06-21 12:41:00" cm 117)) `(obj ((+Bauch) ts "2009-06-23 20:58:00" cm 115)) `(obj ((+Bauch) ts "2009-07-01 11:10:00" cm 119)) `(obj ((+Bauch) ts "2009-07-19 17:53:00" cm 113)) `(obj ((+Bauch) ts "2009-07-21 23:33:00" cm 113)) `(obj ((+Bauch) ts "2009-12-04 19:12:00" cm 120)) `(obj ((+Bauch) ts "2009-12-06 12:40:00" cm 121)) `(obj ((+Bauch) ts "2009-12-07 22:00:00" cm 120)) `(obj ((+Bauch) ts "2009-12-22 14:31:00" cm 117)) `(obj ((+Bauch) ts "2009-12-31 20:24:00" cm 118)) `(obj ((+Bauch) ts "2010-01-09 16:18:00" cm 119)) `(obj ((+Bauch) ts "2010-01-13 19:28:00" cm 119)) `(obj ((+Bauch) ts "2010-02-04 15:33:00" cm 118)) `(obj ((+Bauch) ts "2010-02-08 14:03:00" cm 119)) `(obj ((+Bauch) ts "2010-02-11 15:20:00" cm 119)) `(obj ((+Bauch) ts "2010-02-15 00:21:00" cm 122)) `(obj ((+Bauch) ts "2010-02-16 08:56:00" cm 119)) `(obj ((+Bauch) ts "2010-02-18 19:55:00" cm 123)) `(obj ((+Bauch) ts "2010-02-20 13:15:00" cm 124)) `(obj ((+Bauch) ts "2010-02-22 20:48:00" cm 123)) `(obj ((+Bauch) ts "2010-02-23 22:49:00" cm 122)) `(obj ((+Bauch) ts "2010-02-26 13:47:00" cm 124)) `(obj ((+Bauch) ts "2010-03-04 20:24:00" cm 123)) `(obj ((+Bauch) ts "2010-03-07 18:25:00" cm 123)) `(obj ((+Bauch) ts "2010-10-12 22:38:00" cm 115)) `(obj ((+Bauch) ts "2010-11-25 17:52:00" cm 115)) `(obj ((+Bauch) ts "2010-11-29 18:53:00" cm 116)) `(obj ((+Bauch) ts "2010-11-03 21:50:00" cm 118)) `(obj ((+Bauch) ts "2010-12-02 13:08:00" cm 115)) `(obj ((+Bauch) ts "2010-12-20 14:57:00" cm 117)) `(obj ((+Bauch) ts "2010-12-22 01:01:00" cm 116)) `(obj ((+Bauch) ts "2010-03-16 22:24:00" cm 122)) `(obj ((+Bauch) ts "2010-03-23 20:40:00" cm 120)) `(obj ((+Bauch) ts "2010-03-26 15:49:00" cm 119)) `(obj ((+Bauch) ts "2010-04-10 16:16:00" cm 117)) `(obj ((+Bauch) ts "2010-04-25 10:06:00" cm 115)) `(obj ((+Bauch) ts "2010-04-29 19:40:00" cm 116)) `(obj ((+Bauch) ts "2010-05-27 11:43:00" cm 115)) `(obj ((+Bauch) ts "2010-05-07 10:06:00" cm 113)) `(obj ((+Bauch) ts "2010-06-12 11:55:00" cm 115)) `(obj ((+Bauch) ts "2010-06-03 12:20:00" cm 113)) `(obj ((+Bauch) ts "2010-06-07 15:05:00" cm 115)) `(obj ((+Bauch) ts "2010-07-14 11:11:00" cm 111)) `(obj ((+Bauch) ts "2010-07-15 10:33:00" cm 110)) `(obj ((+Bauch) ts "2010-07-17 20:00:00" cm 114)) `(obj ((+Bauch) ts "2010-07-07 15:03:00" cm 111)) `(obj ((+Bauch) ts "2011-01-10 10:05:00" cm 115)) `(obj ((+Bauch) ts "2011-01-03 11:47:00" cm 118)) `(obj ((+Bauch) ts "2011-10-11 10:41:00" cm 116)) `(obj ((+Bauch) ts "2011-10-18 09:37:00" cm 115)) `(obj ((+Bauch) ts "2011-10-26 09:06:00" cm 114)) `(obj ((+Bauch) ts "2011-10-28 13:53:00" cm 115)) `(obj ((+Bauch) ts "2011-10-03 19:13:00" cm 113)) `(obj ((+Bauch) ts "2011-10-04 22:13:00" cm 118)) `(obj ((+Bauch) ts "2011-10-05 10:15:00" cm 116)) `(obj ((+Bauch) ts "2011-10-07 11:48:00" cm 115)) `(obj ((+Bauch) ts "2011-11-01 10:39:00" cm 115)) `(obj ((+Bauch) ts "2011-11-10 19:25:00" cm 117)) `(obj ((+Bauch) ts "2011-11-14 11:45:00" cm 114)) `(obj ((+Bauch) ts "2011-11-21 17:06:00" cm 116)) `(obj ((+Bauch) ts "2011-11-30 14:13:00" cm 116)) `(obj ((+Bauch) ts "2011-12-10 18:03:00" cm 117)) `(obj ((+Bauch) ts "2011-12-14 11:05:00" cm 114)) `(obj ((+Bauch) ts "2011-12-29 16:05:00" cm 117)) `(obj ((+Bauch) ts "2011-12-05 10:27:00" cm 113)) `(obj ((+Bauch) ts "2011-02-11 23:54:00" cm 117)) `(obj ((+Bauch) ts "2011-03-14 10:34:00" cm 119)) `(obj ((+Bauch) ts "2011-03-19 16:20:00" cm 116)) `(obj ((+Bauch) ts "2011-03-06 21:36:00" cm 121)) `(obj ((+Bauch) ts "2011-04-22 14:30:00" cm 115)) `(obj ((+Bauch) ts "2011-04-26 13:30:00" cm 113)) `(obj ((+Bauch) ts "2011-04-27 18:25:00" cm 115)) `(obj ((+Bauch) ts "2011-04-29 18:08:00" cm 115)) `(obj ((+Bauch) ts "2011-05-16 18:36:00" cm 115)) `(obj ((+Bauch) ts "2011-05-19 15:59:00" cm 118)) `(obj ((+Bauch) ts "2011-05-02 14:44:00" cm 116)) `(obj ((+Bauch) ts "2011-05-28 22:39:00" cm 117)) `(obj ((+Bauch) ts "2011-05-03 13:47:00" cm 118)) `(obj ((+Bauch) ts "2011-06-10 19:40:00" cm 118)) `(obj ((+Bauch) ts "2011-06-13 13:26:00" cm 116)) `(obj ((+Bauch) ts "2011-06-14 22:17:00" cm 122)) `(obj ((+Bauch) ts "2011-06-14 15:16:00" cm 119)) `(obj ((+Bauch) ts "2011-06-15 13:49:00" cm 115)) `(obj ((+Bauch) ts "2011-06-17 12:20:00" cm 118)) `(obj ((+Bauch) ts "2011-06-17 00:53:00" cm 116)) `(obj ((+Bauch) ts "2011-06-18 21:58:00" cm 121)) `(obj ((+Bauch) ts "2011-06-18 19:05:00" cm 116)) `(obj ((+Bauch) ts "2011-06-02 11:21:00" cm 116)) `(obj ((+Bauch) ts "2011-06-20 00:07:00" cm 117)) `(obj ((+Bauch) ts "2011-06-22 12:30:00" cm 117)) `(obj ((+Bauch) ts "2011-06-23 11:53:00" cm 116)) `(obj ((+Bauch) ts "2011-06-24 15:28:00" cm 115)) `(obj ((+Bauch) ts "2011-06-25 11:20:00" cm 118)) `(obj ((+Bauch) ts "2011-06-26 14:12:00" cm 119)) `(obj ((+Bauch) ts "2011-06-05 06:10:00" cm 117)) `(obj ((+Bauch) ts "2011-07-11 12:51:00" cm 117)) `(obj ((+Bauch) ts "2011-07-12 15:26:00" cm 119)) `(obj ((+Bauch) ts "2011-07-12 12:40:00" cm 118)) `(obj ((+Bauch) ts "2011-07-14 19:49:00" cm 119)) `(obj ((+Bauch) ts "2011-07-15 16:44:00" cm 119)) `(obj ((+Bauch) ts "2011-07-17 22:33:00" cm 119)) `(obj ((+Bauch) ts "2011-07-18 15:29:00" cm 116)) `(obj ((+Bauch) ts "2011-07-20 12:01:00" cm 115)) `(obj ((+Bauch) ts "2011-07-05 15:01:00" cm 118)) `(obj ((+Bauch) ts "2011-07-08 15:31:00" cm 118)) `(obj ((+Bauch) ts "2011-08-11 11:27:00" cm 123)) `(obj ((+Bauch) ts "2011-08-13 11:11:00" cm 119)) `(obj ((+Bauch) ts "2011-08-14 11:34:00" cm 120)) `(obj ((+Bauch) ts "2011-08-25 15:34:00" cm 117)) `(obj ((+Bauch) ts "2011-08-26 12:19:00" cm 117)) `(obj ((+Bauch) ts "2011-08-31 01:09:00" cm 115)) `(obj ((+Bauch) ts "2011-09-12 13:32:00" cm 114)) `(obj ((+Bauch) ts "2011-09-14 16:41:00" cm 117)) `(obj ((+Bauch) ts "2011-09-19 19:36:00" cm 118)) `(obj ((+Bauch) ts "2011-09-02 13:46:00" cm 117)) `(obj ((+Bauch) ts "2011-09-20 18:54:00" cm 116)) `(obj ((+Bauch) ts "2011-09-22 13:04:00" cm 118)) `(obj ((+Bauch) ts "2011-09-24 19:14:00" cm 118)) `(obj ((+Bauch) ts "2011-09-28 15:00:00" cm 116)) `(obj ((+Bauch) ts "2011-09-03 11:28:00" cm 116)) `(obj ((+Bauch) ts "2011-09-05 14:32:00" cm 116)) `(obj ((+Bauch) ts "2012-01-16 16:38:00" cm 121)) `(obj ((+Bauch) ts "2012-01-23 16:16:00" cm 118)) `(obj ((+Bauch) ts "2012-01-24 12:40:00" cm 117)) `(obj ((+Bauch) ts "2012-01-26 11:21:00" cm 115)) `(obj ((+Bauch) ts "2012-01-31 22:10:00" cm 118)) `(obj ((+Bauch) ts "2012-10-18 17:34:00" cm 115)) `(obj ((+Bauch) ts "2012-10-28 19:10:00" cm 118)) `(obj ((+Bauch) ts "2012-10-04 13:03:00" cm 116)) `(obj ((+Bauch) ts "2012-11-19 11:48:00" cm 117)) `(obj ((+Bauch) ts "2012-11-22 13:30:00" cm 117)) `(obj ((+Bauch) ts "2012-11-26 14:14:00" cm 115)) `(obj ((+Bauch) ts "2012-11-28 18:24:00" cm 118)) `(obj ((+Bauch) ts "2012-11-29 19:03:00" cm 116)) `(obj ((+Bauch) ts "2012-11-09 17:35:00" cm 117)) `(obj ((+Bauch) ts "2012-02-01 10:13:00" cm 116)) `(obj ((+Bauch) ts "2012-02-10 13:46:00" cm 114)) `(obj ((+Bauch) ts "2012-02-11 15:48:00" cm 115)) `(obj ((+Bauch) ts "2012-02-05 10:43:00" cm 117)) `(obj ((+Bauch) ts "2012-02-06 18:34:00" cm 117)) `(obj ((+Bauch) ts "2012-02-08 11:10:00" cm 116)) `(obj ((+Bauch) ts "2012-03-12 12:10:00" cm 114)) `(obj ((+Bauch) ts "2012-03-14 11:23:00" cm 115)) `(obj ((+Bauch) ts "2012-03-19 12:55:00" cm 115)) `(obj ((+Bauch) ts "2012-03-23 13:14:00" cm 117)) `(obj ((+Bauch) ts "2012-03-26 12:49:00" cm 115)) `(obj ((+Bauch) ts "2012-03-27 10:37:00" cm 116)) `(obj ((+Bauch) ts "2012-03-28 09:09:00" cm 116)) `(obj ((+Bauch) ts "2012-03-31 19:24:00" cm 116)) `(obj ((+Bauch) ts "2012-03-05 11:21:00" cm 113)) `(obj ((+Bauch) ts "2012-03-07 15:04:00" cm 114)) `(obj ((+Bauch) ts "2012-04-01 13:07:00" cm 117)) `(obj ((+Bauch) ts "2012-04-10 06:53:00" cm 113)) `(obj ((+Bauch) ts "2012-04-14 11:39:00" cm 112)) `(obj ((+Bauch) ts "2012-04-18 10:14:00" cm 113)) `(obj ((+Bauch) ts "2012-04-19 17:18:00" cm 115)) `(obj ((+Bauch) ts "2012-04-02 09:36:00" cm 115)) `(obj ((+Bauch) ts "2012-04-23 12:05:00" cm 113)) `(obj ((+Bauch) ts "2012-04-03 09:55:00" cm 114)) `(obj ((+Bauch) ts "2012-04-04 10:55:00" cm 113)) `(obj ((+Bauch) ts "2012-04-06 12:00:00" cm 112)) `(obj ((+Bauch) ts "2012-04-07 15:17:00" cm 112)) `(obj ((+Bauch) ts "2012-05-13 23:55:00" cm 115)) `(obj ((+Bauch) ts "2012-05-15 15:22:00" cm 113)) `(obj ((+Bauch) ts "2012-05-16 14:09:00" cm 114)) `(obj ((+Bauch) ts "2012-05-02 14:30:00" cm 115)) `(obj ((+Bauch) ts "2012-05-23 15:31:00" cm 114)) `(obj ((+Bauch) ts "2012-05-04 11:29:00" cm 111)) `(obj ((+Bauch) ts "2012-05-05 14:47:00" cm 113)) `(obj ((+Bauch) ts "2012-06-19 23:11:00" cm 116)) `(obj ((+Bauch) ts "2012-06-20 18:21:00" cm 114)) `(obj ((+Bauch) ts "2012-06-21 13:52:00" cm 113)) `(obj ((+Bauch) ts "2012-06-04 16:04:00" cm 114)) `(obj ((+Bauch) ts "2012-06-06 12:53:00" cm 112)) `(obj ((+Bauch) ts "2012-06-07 15:10:00" cm 115)) `(obj ((+Bauch) ts "2012-06-08 10:40:00" cm 113)) `(obj ((+Bauch) ts "2012-06-09 10:16:00" cm 113)) `(obj ((+Bauch) ts "2012-07-19 08:26:00" cm 111)) `(obj ((+Bauch) ts "2012-07-19 08:26:00" cm 112)) `(obj ((+Bauch) ts "2012-07-21 10:09:00" cm 112)) `(obj ((+Bauch) ts "2012-07-22 12:44:00" cm 111)) `(obj ((+Bauch) ts "2012-07-24 17:50:00" cm 111)) `(obj ((+Bauch) ts "2012-07-28 14:23:00" cm 114)) `(obj ((+Bauch) ts "2012-07-05 19:11:00" cm 113)) `(obj ((+Bauch) ts "2012-07-09 14:10:00" cm 112)) `(obj ((+Bauch) ts "2012-08-01 12:51:00" cm 114)) `(obj ((+Bauch) ts "2012-08-21 14:53:00" cm 112)) `(obj ((+Bauch) ts "2012-08-26 16:13:00" cm 111)) `(obj ((+Bauch) ts "2012-08-29 10:23:00" cm 113)) `(obj ((+Bauch) ts "2012-08-06 13:07:00" cm 112)) `(obj ((+Bauch) ts "2012-09-10 14:14:00" cm 115)) `(obj ((+Bauch) ts "2012-09-14 15:21:00" cm 114)) `(obj ((+Bauch) ts "2012-09-28 11:48:00" cm 113)) `(obj ((+Bauch) ts "2012-09-05 11:32:00" cm 110)) `(obj ((+Bauch) ts "2013-01-12 21:18:00" cm 116)) `(obj ((+Bauch) ts "2013-01-17 15:11:00" cm 118)) `(obj ((+Bauch) ts "2013-01-20 11:52:00" cm 115)) `(obj ((+Bauch) ts "2013-01-22 12:12:00" cm 117)) `(obj ((+Bauch) ts "2013-01-23 08:37:00" cm 116)) `(obj ((+Bauch) ts "2013-01-25 08:41:00" cm 116)) `(obj ((+Bauch) ts "2013-01-28 12:50:00" cm 116)) `(obj ((+Bauch) ts "2013-01-07 11:04:00" cm 117)) `(obj ((+Bauch) ts "2013-10-28 17:13:00" cm 118)) `(obj ((+Bauch) ts "2013-11-01 13:26:00" cm 116)) `(obj ((+Bauch) ts "2013-11-11 10:43:00" cm 115)) `(obj ((+Bauch) ts "2013-11-13 09:47:00" cm 110)) `(obj ((+Bauch) ts "2013-11-14 10:31:00" cm 114)) `(obj ((+Bauch) ts "2013-11-02 11:13:00" cm 113)) `(obj ((+Bauch) ts "2013-11-21 21:10:00" cm 112)) `(obj ((+Bauch) ts "2013-11-25 10:59:00" cm 111)) `(obj ((+Bauch) ts "2013-11-26 14:34:00" cm 114)) `(obj ((+Bauch) ts "2013-11-28 11:11:00" cm 109)) `(obj ((+Bauch) ts "2013-11-04 10:56:00" cm 116)) `(obj ((+Bauch) ts "2013-11-05 11:38:00" cm 115)) `(obj ((+Bauch) ts "2013-11-06 17:45:00" cm 117)) `(obj ((+Bauch) ts "2013-11-07 08:00:00" cm 113)) `(obj ((+Bauch) ts "2013-12-03 20:19:00" cm 113)) `(obj ((+Bauch) ts "2013-12-05 13:16:00" cm 110)) `(obj ((+Bauch) ts "2013-12-09 10:16:00" cm 109)) `(obj ((+Bauch) ts "2013-02-11 18:25:00" cm 115)) `(obj ((+Bauch) ts "2013-04-10 10:02:00" cm 116)) `(obj ((+Bauch) ts "2013-04-15 14:18:00" cm 116)) `(obj ((+Bauch) ts "2013-04-22 13:05:00" cm 118)) `(obj ((+Bauch) ts "2013-04-26 10:21:00" cm 117)) `(obj ((+Bauch) ts "2013-04-30 09:32:00" cm 115)) `(obj ((+Bauch) ts "2013-04-05 10:18:00" cm 119)) `(obj ((+Bauch) ts "2013-04-09 11:03:00" cm 115)) `(obj ((+Bauch) ts "2013-05-10 08:39:00" cm 112)) `(obj ((+Bauch) ts "2013-05-14 16:53:00" cm 113)) `(obj ((+Bauch) ts "2013-05-16 10:17:00" cm 113)) `(obj ((+Bauch) ts "2013-05-19 16:39:00" cm 114)) `(obj ((+Bauch) ts "2013-05-02 08:12:00" cm 115)) `(obj ((+Bauch) ts "2013-05-29 09:34:00" cm 112)) `(obj ((+Bauch) ts "2013-05-04 11:27:00" cm 117)) `(obj ((+Bauch) ts "2013-05-06 15:18:00" cm 115)) `(obj ((+Bauch) ts "2013-05-07 08:49:00" cm 114)) `(obj ((+Bauch) ts "2013-05-08 08:51:00" cm 113)) `(obj ((+Bauch) ts "2013-05-09 10:02:00" cm 113)) `(obj ((+Bauch) ts "2013-06-03 11:30:00" cm 112)) `(obj ((+Bauch) ts "2013-06-04 16:01:00" cm 112)) `(obj ((+Bauch) ts "2013-06-08 13:14:00" cm 114)) `(obj ((+Bauch) ts "2013-08-14 10:52:00" cm 112)) `(obj ((+Bauch) ts "2013-08-21 13:43:00" cm 115)) `(obj ((+Bauch) ts "2013-08-24 15:59:00" cm 114))) )
(obj ((+Geek) nick "jANAb0t")
measures (`(obj ((+Bauch) ts "2008-11-01 21:16:00" cm 60)) `(obj ((+Bauch) ts "2008-11-13 11:29:00" cm 62)) `(obj ((+Bauch) ts "2008-11-04 12:44:00" cm 61))) )
(obj ((+Geek) nick "konto")
measures (`(obj ((+Bauch) ts "2009-04-11 13:00:00" cm 49)) `(obj ((+Bauch) ts "2009-04-09 14:26:00" cm 51))) )
(obj ((+Geek) nick "losso")
measures (`(obj ((+Bauch) ts "2008-10-23 22:14:00" cm 153)) `(obj ((+Bauch) ts "2008-10-24 00:24:00" cm 154)) `(obj ((+Bauch) ts "2008-07-12 19:43:00" cm 147)) `(obj ((+Bauch) ts "2009-02-14 00:01:00" cm 146)) `(obj ((+Bauch) ts "2009-02-20 23:01:00" cm 146)) `(obj ((+Bauch) ts "2009-03-13 21:31:00" cm 144)) `(obj ((+Bauch) ts "2009-04-06 23:46:00" cm 144)) `(obj ((+Bauch) ts "2009-04-07 00:01:00" cm 133)) `(obj ((+Bauch) ts "2009-05-16 03:48:00" cm 142)) `(obj ((+Bauch) ts "2009-05-16 03:32:00" cm 145)) `(obj ((+Bauch) ts "2009-07-19 22:39:00" cm 144)) `(obj ((+Bauch) ts "2011-08-11 12:04:00" cm 161)) `(obj ((+Bauch) ts "2012-07-24 18:01:00" cm 171))) )
(obj ((+Geek) nick "malte17")
measures (`(obj ((+Bauch) ts "2012-10-11 16:10:00" cm 121)) `(obj ((+Bauch) ts "2012-11-17 12:42:00" cm 127)) `(obj ((+Bauch) ts "2012-11-06 16:58:00" cm 114)) `(obj ((+Bauch) ts "2012-03-12 17:44:00" cm 115)) `(obj ((+Bauch) ts "2012-03-16 15:48:00" cm 119)) `(obj ((+Bauch) ts "2012-03-27 12:07:00" cm 114)) `(obj ((+Bauch) ts "2012-04-03 21:57:00" cm 114)) `(obj ((+Bauch) ts "2012-05-11 20:02:00" cm 112)) `(obj ((+Bauch) ts "2012-09-14 11:15:00" cm 118)) `(obj ((+Bauch) ts "2012-09-15 21:49:00" cm 119)) `(obj ((+Bauch) ts "2013-02-07 10:29:00" cm 114)) `(obj ((+Bauch) ts "2013-03-21 19:31:00" cm 112)) `(obj ((+Bauch) ts "2013-04-12 18:14:00" cm 115)) `(obj ((+Bauch) ts "2013-05-30 09:37:00" cm 127)) `(obj ((+Bauch) ts "2013-05-09 11:24:00" cm 126))) )
(obj ((+Geek) nick "pesco")
measures (`(obj ((+Bauch) ts "2008-10-10 11:35:00" cm 95)) `(obj ((+Bauch) ts "2008-10-12 13:38:00" cm 95)) `(obj ((+Bauch) ts "2008-10-12 13:38:00" cm 95)) `(obj ((+Bauch) ts "2008-10-12 13:38:00" cm 95)) `(obj ((+Bauch) ts "2008-10-12 13:34:00" cm 95)) `(obj ((+Bauch) ts "2008-10-18 11:41:00" cm 94)) `(obj ((+Bauch) ts "2008-10-18 11:40:00" cm 93)) `(obj ((+Bauch) ts "2008-10-21 20:53:00" cm 97)) `(obj ((+Bauch) ts "2008-10-22 11:56:00" cm 96)) `(obj ((+Bauch) ts "2008-10-31 17:12:00" cm 96)) `(obj ((+Bauch) ts "2008-11-14 15:42:00" cm 95)) `(obj ((+Bauch) ts "2008-11-20 16:15:00" cm 96)) `(obj ((+Bauch) ts "2008-11-21 15:37:00" cm 95)) `(obj ((+Bauch) ts "2008-11-27 16:23:00" cm 95)) `(obj ((+Bauch) ts "2008-11-04 16:05:00" cm 96)) `(obj ((+Bauch) ts "2008-11-06 09:13:00" cm 94)) `(obj ((+Bauch) ts "2008-11-07 10:08:00" cm 94)) `(obj ((+Bauch) ts "2008-11-08 14:58:00" cm 95)) `(obj ((+Bauch) ts "2008-12-20 12:08:00" cm 94)) `(obj ((+Bauch) ts "2008-05-11 21:35:00" cm 99)) `(obj ((+Bauch) ts "2008-05-12 19:04:00" cm 101)) `(obj ((+Bauch) ts "2008-05-12 18:19:00" cm 100)) `(obj ((+Bauch) ts "2008-05-12 14:12:00" cm 101)) `(obj ((+Bauch) ts "2008-05-13 14:03:00" cm 100)) `(obj ((+Bauch) ts "2008-05-14 10:52:00" cm 98)) `(obj ((+Bauch) ts "2008-05-17 08:28:00" cm 98)) `(obj ((+Bauch) ts "2008-05-18 10:57:00" cm 96)) `(obj ((+Bauch) ts "2008-05-19 17:59:00" cm 99)) `(obj ((+Bauch) ts "2008-05-26 12:27:00" cm 96)) `(obj ((+Bauch) ts "2008-05-28 13:49:00" cm 97)) `(obj ((+Bauch) ts "2008-05-29 09:49:00" cm 97)) `(obj ((+Bauch) ts "2008-05-09 15:05:00" cm 99)) `(obj ((+Bauch) ts "2008-05-09 14:49:00" cm 100)) `(obj ((+Bauch) ts "2008-06-01 12:42:00" cm 96)) `(obj ((+Bauch) ts "2008-06-10 18:18:00" cm 96)) `(obj ((+Bauch) ts "2008-06-14 23:15:00" cm 96)) `(obj ((+Bauch) ts "2008-06-19 10:38:00" cm 95)) `(obj ((+Bauch) ts "2008-06-25 09:12:00" cm 94)) `(obj ((+Bauch) ts "2008-06-05 16:10:00" cm 94)) `(obj ((+Bauch) ts "2008-06-05 15:04:00" cm 97)) `(obj ((+Bauch) ts "2008-06-06 16:58:00" cm 96)) `(obj ((+Bauch) ts "2008-06-07 16:52:00" cm 95)) `(obj ((+Bauch) ts "2008-06-08 14:12:00" cm 95)) `(obj ((+Bauch) ts "2008-06-09 10:15:00" cm 94)) `(obj ((+Bauch) ts "2008-07-02 15:08:00" cm 95)) `(obj ((+Bauch) ts "2008-07-26 10:42:00" cm 98)) `(obj ((+Bauch) ts "2008-07-28 07:28:00" cm 96)) `(obj ((+Bauch) ts "2008-07-29 12:18:00" cm 96)) `(obj ((+Bauch) ts "2008-07-31 09:38:00" cm 96)) `(obj ((+Bauch) ts "2008-07-05 13:38:00" cm 96)) `(obj ((+Bauch) ts "2008-07-06 15:58:00" cm 95)) `(obj ((+Bauch) ts "2008-07-09 10:50:00" cm 95)) `(obj ((+Bauch) ts "2008-08-13 14:19:00" cm 96)) `(obj ((+Bauch) ts "2008-08-19 17:23:00" cm 96)) `(obj ((+Bauch) ts "2008-08-02 10:16:00" cm 95)) `(obj ((+Bauch) ts "2008-08-21 20:08:00" cm 95)) `(obj ((+Bauch) ts "2008-08-31 14:00:00" cm 97)) `(obj ((+Bauch) ts "2008-09-01 13:56:00" cm 96)) `(obj ((+Bauch) ts "2008-09-18 11:18:00" cm 96)) `(obj ((+Bauch) ts "2008-09-03 14:18:00" cm 97)) `(obj ((+Bauch) ts "2009-01-10 23:23:00" cm 95)) `(obj ((+Bauch) ts "2009-02-12 16:45:00" cm 98)) `(obj ((+Bauch) ts "2009-02-02 15:00:00" cm 97)) `(obj ((+Bauch) ts "2009-03-11 12:51:00" cm 97)) `(obj ((+Bauch) ts "2009-04-24 09:25:00" cm 96)) `(obj ((+Bauch) ts "2009-04-30 15:38:00" cm 96)) `(obj ((+Bauch) ts "2009-04-06 23:59:00" cm 96)) `(obj ((+Bauch) ts "2009-04-06 23:54:00" cm 96)) `(obj ((+Bauch) ts "2009-04-06 23:49:00" cm 97)) `(obj ((+Bauch) ts "2009-04-07 00:00:00" cm 96)) `(obj ((+Bauch) ts "2009-04-08 09:49:00" cm 95)) `(obj ((+Bauch) ts "2009-05-01 21:53:00" cm 99)) `(obj ((+Bauch) ts "2009-05-10 16:03:00" cm 96)) `(obj ((+Bauch) ts "2009-05-12 09:35:00" cm 96)) `(obj ((+Bauch) ts "2009-05-02 10:07:00" cm 97)) `(obj ((+Bauch) ts "2009-05-02 09:14:00" cm 98)) `(obj ((+Bauch) ts "2009-05-26 09:30:00" cm 95)) `(obj ((+Bauch) ts "2009-05-04 09:55:00" cm 96)) `(obj ((+Bauch) ts "2009-05-06 14:55:00" cm 98)) `(obj ((+Bauch) ts "2009-06-03 10:00:00" cm 95)) `(obj ((+Bauch) ts "2009-06-04 10:08:00" cm 95)) `(obj ((+Bauch) ts "2009-06-06 14:43:00" cm 95)) `(obj ((+Bauch) ts "2009-07-01 08:51:00" cm 94)) `(obj ((+Bauch) ts "2009-07-10 09:13:00" cm 93)) `(obj ((+Bauch) ts "2009-08-18 09:12:00" cm 93)) `(obj ((+Bauch) ts "2010-01-09 16:18:00" cm 95)) `(obj ((+Bauch) ts "2010-10-17 20:16:00" cm 97)) `(obj ((+Bauch) ts "2010-07-15 11:37:00" cm 95)) `(obj ((+Bauch) ts "2010-07-08 19:00:00" cm 97)) `(obj ((+Bauch) ts "2011-09-08 10:56:00" cm 95))) )
(obj ((+Geek) nick "pope")
measures (`(obj ((+Bauch) ts "2008-01-11 00:00:00" cm 123)) `(obj ((+Bauch) ts "2012-05-03 14:09:00" cm 123))) )
(obj ((+Geek) nick "r-hold")
measures (`(obj ((+Bauch) ts "2009-02-20 12:37:00" cm 133))) )
(obj ((+Geek) nick "rhold")
measures (`(obj ((+Bauch) ts "2009-03-13 22:52:00" cm 118)) `(obj ((+Bauch) ts "2009-04-06 23:48:00" cm 118)) `(obj ((+Bauch) ts "2009-04-07 00:06:00" cm 118))) )
(obj ((+Geek) nick "schnaebi")
measures (`(obj ((+Bauch) ts "2011-03-09 16:59:00" cm 1024))) )
(obj ((+Geek) nick "tekto")
measures (`(obj ((+Bauch) ts "2014-02-10 20:50:42" cm 132)) `(obj ((+Bauch) ts "2008-10-24 00:41:00" cm 122)) `(obj ((+Bauch) ts "2008-10-05 15:33:00" cm 118)) `(obj ((+Bauch) ts "2008-10-09 15:50:00" cm 109)) `(obj ((+Bauch) ts "2008-11-01 23:44:00" cm 120)) `(obj ((+Bauch) ts "2008-11-12 17:06:00" cm 119)) `(obj ((+Bauch) ts "2008-11-13 11:25:00" cm 120)) `(obj ((+Bauch) ts "2008-11-14 16:34:00" cm 120)) `(obj ((+Bauch) ts "2008-11-17 13:08:00" cm 122)) `(obj ((+Bauch) ts "2008-11-02 15:36:00" cm 119)) `(obj ((+Bauch) ts "2008-11-02 15:36:00" cm 110)) `(obj ((+Bauch) ts "2008-11-02 10:03:00" cm 119)) `(obj ((+Bauch) ts "2008-11-24 13:57:00" cm 119)) `(obj ((+Bauch) ts "2008-11-04 21:40:00" cm 119)) `(obj ((+Bauch) ts "2008-11-05 22:36:00" cm 123)) `(obj ((+Bauch) ts "2008-11-05 21:26:00" cm 123)) `(obj ((+Bauch) ts "2008-11-09 18:38:00" cm 119)) `(obj ((+Bauch) ts "2008-08-15 16:32:00" cm 110)) `(obj ((+Bauch) ts "2008-08-20 11:59:00" cm 107)) `(obj ((+Bauch) ts "2008-08-03 18:35:00" cm 109)) `(obj ((+Bauch) ts "2008-08-05 19:52:00" cm 107)) `(obj ((+Bauch) ts "2008-09-02 18:55:00" cm 109)) `(obj ((+Bauch) ts "2008-09-03 14:15:00" cm 110)) `(obj ((+Bauch) ts "2009-01-04 21:23:00" cm 118)) `(obj ((+Bauch) ts "2009-10-15 12:16:00" cm 121)) `(obj ((+Bauch) ts "2009-03-13 23:04:00" cm 114)) `(obj ((+Bauch) ts "2009-03-14 19:11:00" cm 114)) `(obj ((+Bauch) ts "2009-04-06 23:45:00" cm 113)) `(obj ((+Bauch) ts "2009-04-07 00:01:00" cm 113)) `(obj ((+Bauch) ts "2009-05-01 21:38:00" cm 117)) `(obj ((+Bauch) ts "2009-05-16 03:51:00" cm 122)) `(obj ((+Bauch) ts "2009-05-16 03:35:00" cm 122)) `(obj ((+Bauch) ts "2009-06-22 13:11:00" cm 121)) `(obj ((+Bauch) ts "2009-06-23 13:06:00" cm 124)) `(obj ((+Bauch) ts "2009-07-15 15:04:00" cm 123)) `(obj ((+Bauch) ts "2009-07-16 22:42:00" cm 124)) `(obj ((+Bauch) ts "2009-07-16 22:41:00" cm 123)) `(obj ((+Bauch) ts "2009-07-17 15:00:00" cm 123)) `(obj ((+Bauch) ts "2009-07-19 23:02:00" cm 124)) `(obj ((+Bauch) ts "2009-07-03 22:11:00" cm 123)) `(obj ((+Bauch) ts "2009-08-18 05:41:00" cm 125)) `(obj ((+Bauch) ts "2009-09-18 16:20:00" cm 122)) `(obj ((+Bauch) ts "2009-09-09 12:17:00" cm 123)) `(obj ((+Bauch) ts "2009-12-09 15:15:00" cm 120)) `(obj ((+Bauch) ts "2010-02-12 11:52:00" cm 124)) `(obj ((+Bauch) ts "2010-02-20 15:49:00" cm 124)) `(obj ((+Bauch) ts "2010-11-17 16:11:00" cm 123)) `(obj ((+Bauch) ts "2010-11-20 17:16:00" cm 124)) `(obj ((+Bauch) ts "2010-04-12 22:25:00" cm 126)) `(obj ((+Bauch) ts "2010-04-13 12:06:00" cm 124)) `(obj ((+Bauch) ts "2010-06-26 13:35:00" cm 122)) `(obj ((+Bauch) ts "2011-10-11 11:04:00" cm 122)) `(obj ((+Bauch) ts "2011-10-20 03:42:00" cm 122)) `(obj ((+Bauch) ts "2011-10-25 07:25:00" cm 122)) `(obj ((+Bauch) ts "2011-10-26 07:14:00" cm 121)) `(obj ((+Bauch) ts "2011-05-22 18:12:00" cm 126)) `(obj ((+Bauch) ts "2011-06-13 17:54:00" cm 126)) `(obj ((+Bauch) ts "2011-06-16 20:16:00" cm 126)) `(obj ((+Bauch) ts "2011-06-17 12:36:00" cm 124)) `(obj ((+Bauch) ts "2011-07-14 16:36:00" cm 138)) `(obj ((+Bauch) ts "2011-07-18 16:22:00" cm 127)) `(obj ((+Bauch) ts "2011-07-25 12:05:00" cm 126)) `(obj ((+Bauch) ts "2011-08-13 11:13:00" cm 127)) `(obj ((+Bauch) ts "2011-09-02 23:04:00" cm 126)) `(obj ((+Bauch) ts "2011-09-26 16:52:00" cm 125)) `(obj ((+Bauch) ts "2011-09-28 09:45:00" cm 123)) `(obj ((+Bauch) ts "2012-10-17 13:38:00" cm 126)) `(obj ((+Bauch) ts "2012-10-28 20:42:00" cm 127)) `(obj ((+Bauch) ts "2012-10-04 13:01:00" cm 124)) `(obj ((+Bauch) ts "2012-07-24 18:03:00" cm 126)) `(obj ((+Bauch) ts "2012-07-27 17:23:00" cm 127)) `(obj ((+Bauch) ts "2012-08-18 11:23:00" cm 127)) `(obj ((+Bauch) ts "2013-05-17 05:08:00" cm 128)) `(obj ((+Bauch) ts "2013-05-20 09:34:00" cm 126))) )
(obj ((+Geek) nick "wanderer")
measures (`(obj ((+Bauch) ts "2009-11-29 16:42:00" cm 119))) )
# Nsis
(obj ((+Nsi) nsi "$$$")
description "Guess what!" )
(obj ((+Nsi) nsi "0BCK")
description "0 Bock auf nix" )
(obj ((+Nsi) nsi "10F")
description "10Forward" )
(obj ((+Nsi) nsi "1A")
description "Die letzte Neuanschaffung des geeks ist 1A" )
(obj ((+Nsi) nsi "30")
description "the geek is is preparing to grow senile, boring and obnoxious" )
(obj ((+Nsi) nsi "3WAH")
description "TripleWAH" )
(obj ((+Nsi) nsi "3WSH")
description "TRIPLEWASH! (wie bereits mehrfach erwähnt)" )
(obj ((+Nsi) nsi "3p")
description "tripple puh" )
(obj ((+Nsi) nsi "4GB")
description "geek has 4gb of ram" )
(obj ((+Nsi) nsi "4STR")
description "Residiere im 4 Sterne Hotel" )
(obj ((+Nsi) nsi "5TANMP")
description "geeks is listening to \"five themes and no masterplan\" on dauer-repeat" )
(obj ((+Nsi) nsi "9-04")
description "Jaunty Jackalope" )
(obj ((+Nsi) nsi "AAE")
description "AT Aussen Einsatz" )
(obj ((+Nsi) nsi "AAPF")
description "AT+APF" )
(obj ((+Nsi) nsi "AAS")
description "Agressive Alpine Skiing (Megamix)" )
(obj ((+Nsi) nsi "AAT")
description "Alibi-AT" )
(obj ((+Nsi) nsi "AB")
description "Abendbrot" )
(obj ((+Nsi) nsi "ABB")
description "ABendBrot" )
(obj ((+Nsi) nsi "ABW")
description "facebook &z" )
(obj ((+Nsi) nsi "ACA")
description "After CAF" )
(obj ((+Nsi) nsi "ACOD")
description "(Privat-) CODE @AT" )
(obj ((+Nsi) nsi "ACOK")
description "AT+COOK" )
(obj ((+Nsi) nsi "ACT")
description "Sailing on the wide accountan-cy..." )
(obj ((+Nsi) nsi "ADM")
description "The geek is currently doing some server administration work - something every geek has to do from time to time." )
(obj ((+Nsi) nsi "ADSN")
description "schoenes deluxe sn mit kunden oder so" )
(obj ((+Nsi) nsi "AEA")
description "Anonyme EIS Abstinenzler" )
(obj ((+Nsi) nsi "AFB")
description "AT+FB" )
(obj ((+Nsi) nsi "AFC")
description "geek is currently away from city" )
(obj ((+Nsi) nsi "AFE")
description "Away from everything" )
(obj ((+Nsi) nsi "AFF")
description "Away from EFnet" )
(obj ((+Nsi) nsi "AFJ")
description "Away from #juelich. The Geek will not respond to !ring" )
(obj ((+Nsi) nsi "AFK")
description "Autonomer FreiheitsKampf" )
(obj ((+Nsi) nsi "AFP")
description "Away from Pad" )
(obj ((+Nsi) nsi "AFRN")
description "AT+FORN" )
(obj ((+Nsi) nsi "AFT")
description "Away From Tekto" )
(obj ((+Nsi) nsi "AFUL")
description "AT+FUL (meist nach XSN)" )
(obj ((+Nsi) nsi "AG")
description "antigeek" )
(obj ((+Nsi) nsi "AGDM")
description "Allein Gegen Die Mafia" )
(obj ((+Nsi) nsi "AICAF")
description "Amaretto im CAF" )
(obj ((+Nsi) nsi "AK")
description "at keyboard" )
(obj ((+Nsi) nsi "AKS")
description "Geek bringt krams zur altkleidersammlung (too small)" )
(obj ((+Nsi) nsi "AKUK")
description "AT+KuK" )
(obj ((+Nsi) nsi "AKW")
description "AK Wandsbek" )
(obj ((+Nsi) nsi "AKuK")
description "AT + KuK" )
(obj ((+Nsi) nsi "ALDO")
description "ALl things DOne - geek has completed all GTD and is ein freier mann" )
(obj ((+Nsi) nsi "ALOAH")
description "ALOne A Home" )
(obj ((+Nsi) nsi "AM")
description "Arvato Mobile, so eine Art AT, aber etwas weniger als ein MJ" )
(obj ((+Nsi) nsi "AML")
description "Amoklaufen" )
(obj ((+Nsi) nsi "AMT")
description "the geek is having fun at the amt" )
(obj ((+Nsi) nsi "ANAR")
description "ANARcho" )
(obj ((+Nsi) nsi "ANH")
description "AT+Nethack" )
(obj ((+Nsi) nsi "AOF")
description "Aor of Fugue: Music for concentrated AT" )
(obj ((+Nsi) nsi "AOH")
description "aufs ohr hauen" )
(obj ((+Nsi) nsi "AP")
description "Alsterperle" )
(obj ((+Nsi) nsi "APAK")
description "Geek hat unnötigen Stuff gekauft (z.B. bei eBay oder Amazon), den er jetzt auspacken und benutzen muss" )
(obj ((+Nsi) nsi "APF")
description "eating an APFel" )
(obj ((+Nsi) nsi "APIL")
description "AT+PILL" )
(obj ((+Nsi) nsi "APLY")
description "AT+PLAY" )
(obj ((+Nsi) nsi "APS")
description "alsterperlen-sfi" )
(obj ((+Nsi) nsi "AQUA")
description "the geek is consuming delicious water (in order to survive)" )
(obj ((+Nsi) nsi "ARCH")
description "ArchLinux &z" )
(obj ((+Nsi) nsi "ARI")
description "(armer Ritter), \"HFT\" (Healthy French Toast) oder \"POF\" (Pofesen)" )
(obj ((+Nsi) nsi "ARR")
description "Arrrrrrgh!" )
(obj ((+Nsi) nsi "ARSR")
description "AT+RSR" )
(obj ((+Nsi) nsi "AS")
description "Appelschorle (lecker)" )
(obj ((+Nsi) nsi "ASFC")
description "Ashhamed for cyrx" )
(obj ((+Nsi) nsi "ASFI:")
description "geek macht alleine SFI" )
(obj ((+Nsi) nsi "ASN")
description "AFK wegen SN" )
(obj ((+Nsi) nsi "ASP")
description "Geek macht sich Spargel" )
(obj ((+Nsi) nsi "ASS")
description "Medicine against ILL" )
(obj ((+Nsi) nsi "AST")
description "Der Geek liest eigentlich nur SPON" )
(obj ((+Nsi) nsi "AT")
description "At work: The geek is currently prostituting himself for profit. He can only talk to you if his pimp is not near." )
(obj ((+Nsi) nsi "AT+PLAY") )
(obj ((+Nsi) nsi "AT@GRL~") )
(obj ((+Nsi) nsi "AT@~grl") )
(obj ((+Nsi) nsi "ATAT")
description "SuperAT" )
(obj ((+Nsi) nsi "ATATA")
description "ATATAT" )
(obj ((+Nsi) nsi "ATCO")
description "AT+COOK" )
(obj ((+Nsi) nsi "ATEA")
description "AT+TEA" )
(obj ((+Nsi) nsi "ATF")
description "AT+FUL" )
(obj ((+Nsi) nsi "ATH")
description "AT+HGR" )
(obj ((+Nsi) nsi "ATPZ")
description "AT+PZA" )
(obj ((+Nsi) nsi "ATSF")
description "= AT + SFI" )
(obj ((+Nsi) nsi "ATW")
description "Way from AT" )
(obj ((+Nsi) nsi "ATWP")
description "AT mit WärmePflaster" )
(obj ((+Nsi) nsi "ATZO")
description "AT+ZORN (auf AT)" )
(obj ((+Nsi) nsi "AUA")
description "Geek sustains or suffers from pains" )
(obj ((+Nsi) nsi "AUG")
description "schoen' Kasten AUGustiner" )
(obj ((+Nsi) nsi "AUS")
description "Geek macht mal den Rechner AUS" )
(obj ((+Nsi) nsi "AVL")
description "Alstervorland (am Mittag)" )
(obj ((+Nsi) nsi "AVT")
description "AstroTV" )
(obj ((+Nsi) nsi "AX")
description "The missing chars" )
(obj ((+Nsi) nsi "AZDG")
description "Aguirre Zorn des Gottes" )
(obj ((+Nsi) nsi "AZH")
description "Alleine zu hause" )
(obj ((+Nsi) nsi "AZT")
description "Arzttour" )
(obj ((+Nsi) nsi "Anonyme")
description "EIS Abstinenzler" )
(obj ((+Nsi) nsi "B")
description "the geek is heading to capital city" )
(obj ((+Nsi) nsi "BA9R")
description "Bock auf 90er Jahre Rollenspiele" )
(obj ((+Nsi) nsi "BAA")
description "Bock auf Amiga" )
(obj ((+Nsi) nsi "BAAS")
description "Bock auf Aprilscherz mit bunten Bildchen, bitte kein Text" )
(obj ((+Nsi) nsi "BAAT")
description "BauZ + AT" )
(obj ((+Nsi) nsi "BAB")
description "Bock-auf-Bettpfanne" )
(obj ((+Nsi) nsi "BABJ")
description "Bock auf BullerJahn" )
(obj ((+Nsi) nsi "BABK")
description "Bock auf BurgerKing" )
(obj ((+Nsi) nsi "BABQ")
description "Bock auf BQL" )
(obj ((+Nsi) nsi "BABR")
description "bock auf brunch" )
(obj ((+Nsi) nsi "BABW")
description "Bock auf BilloWurst" )
(obj ((+Nsi) nsi "BABX")
description "Bock Auf BTX" )
(obj ((+Nsi) nsi "BACD")
description "Bock auf Codein" )
(obj ((+Nsi) nsi "BACO")
description "Bock auf Cola" )
(obj ((+Nsi) nsi "BAD")
description "Bock auf Dackel (Das kannst du ja wohl denken!)" )
(obj ((+Nsi) nsi "BADUO")
description "Bock auf Doudingso" )
(obj ((+Nsi) nsi "BAES")
description "Bock auf Eis!" )
(obj ((+Nsi) nsi "BAF")
description "Bock Auf Fisch" )
(obj ((+Nsi) nsi "BAFA")
description "Bock Auf FA" )
(obj ((+Nsi) nsi "BAFF")
description "Bock auf Fast Food" )
(obj ((+Nsi) nsi "BAFK")
description "Bock auf Frischkäse" )
(obj ((+Nsi) nsi "BAFR")
description "Bock auf Franz Inc." )
(obj ((+Nsi) nsi "BAFT")
description "Bock AUf Frühlingstopf" )
(obj ((+Nsi) nsi "BAG")
description "bock auf GRL" )
(obj ((+Nsi) nsi "BAH")
description "Bock auf Huhn" )
(obj ((+Nsi) nsi "BAHN")
description "sänk ju for träwelling wiss deusche reichsbahn" )
(obj ((+Nsi) nsi "BAHR")
description "Bock auf Hobel Rasur" )
(obj ((+Nsi) nsi "BAHT")
description "Bock auf Hunchentoot" )
(obj ((+Nsi) nsi "BAJU")
description "Bajuwarenbonk" )
(obj ((+Nsi) nsi "BAK")
description "Bock-auf-Kreta" )
(obj ((+Nsi) nsi "BAKE")
description "geek backt [kuchen, vermutlich]" )
(obj ((+Nsi) nsi "BAKR")
description "Bock Auf Knight Rider" )
(obj ((+Nsi) nsi "BAKS")
description "Bock auf Krankenschwester" )
(obj ((+Nsi) nsi "BAL")
description "Bock auf Labs" )
(obj ((+Nsi) nsi "BAM")
description "Bock Auf Mop" )
(obj ((+Nsi) nsi "BAMC")
description "Bock AUf MonCheri" )
(obj ((+Nsi) nsi "BAMK")
description "Bock Auf Mehr Knoblauch" )
(obj ((+Nsi) nsi "BAMSL")
description "Bock auf Müsli" )
(obj ((+Nsi) nsi "BAN")
description "Bock auf NAP" )
(obj ((+Nsi) nsi "BANA")
description "bananana" )
(obj ((+Nsi) nsi "BANH")
description "Bock auf Nethack" )
(obj ((+Nsi) nsi "BAO")
description "Bock auf Orgie" )
(obj ((+Nsi) nsi "BAOC")
description "Bock auf Ocaml" )
(obj ((+Nsi) nsi "BAOS")
description "Bock Auf OldSkool" )
(obj ((+Nsi) nsi "BAP")
description "Bock Auf Populus" )
(obj ((+Nsi) nsi "BAP3")
description "Bock Auf PSK31" )
(obj ((+Nsi) nsi "BAPD")
description "Bock auf PDP11 oder anderen retrokack z.B. http://www.pdp8.net/ oder http://lispm.dyndns.org/" )
(obj ((+Nsi) nsi "BAPM")
description "Bock auf PIM" )
(obj ((+Nsi) nsi "BAR")
description "Bock auf RAD" )
(obj ((+Nsi) nsi "BARB")
description "Bock auf Rote Bohnen" )
(obj ((+Nsi) nsi "BARH")
description "Bock Auf RehRücken" )
(obj ((+Nsi) nsi "BART")
description "Bock Auf Railroad Tycoon" )
(obj ((+Nsi) nsi "BAS")
description "Bock Auf Schoko" )
(obj ((+Nsi) nsi "BASB")
description "Bock Auf SchokoBonks" )
(obj ((+Nsi) nsi "BASC")
description "Bock AUf ScreenCast" )
(obj ((+Nsi) nsi "BASCHR")
description "bock auf schrank" )
(obj ((+Nsi) nsi "BASF")
description "Bock Auf Science Fiction" )
(obj ((+Nsi) nsi "BASH")
description "Bock Auf SHV" )
(obj ((+Nsi) nsi "BASP")
description "Bock auf SHP" )
(obj ((+Nsi) nsi "BASU")
description "Bock AUf SowjetUnion" )
(obj ((+Nsi) nsi "BAT")
description "Bett-AT" )
(obj ((+Nsi) nsi "BATK")
description "Bock auf Tostikaas" )
(obj ((+Nsi) nsi "BATR")
description "Bock Auf TRIP" )
(obj ((+Nsi) nsi "BATX")
description "Bock auf TELEX" )
(obj ((+Nsi) nsi "BAU")
description "Geek is imprisoned caused by usage of unregistred NSIs" )
(obj ((+Nsi) nsi "BAWH")
description "Bock auf Weisse Handtücher" )
(obj ((+Nsi) nsi "BAWM")
description "Bock Auf WaldorfMädel" )
(obj ((+Nsi) nsi "BAWO")
description "Bock auf WOPR" )
(obj ((+Nsi) nsi "BAWS")
description "Bock Auf Walfischspeck" )
(obj ((+Nsi) nsi "BAX")
description "Bock auf XML" )
(obj ((+Nsi) nsi "BAXW")
description "Bock auf Extra-Wurst" )
(obj ((+Nsi) nsi "BAZ")
description "Bock auf Ärztin" )
(obj ((+Nsi) nsi "BAZZ")
description "Bock auf ZZZ" )
(obj ((+Nsi) nsi "BBB")
description "Bock auf Breaking Bad" )
(obj ((+Nsi) nsi "BBK")
description "Bock auf Bed mit Krankenschwester" )
(obj ((+Nsi) nsi "BBQ")
description "na da kommst du selbst drauf jawohl" )
(obj ((+Nsi) nsi "BBS")
description "BilligBierSFI" )
(obj ((+Nsi) nsi "BBZ")
description "bett beziehen" )
(obj ((+Nsi) nsi "BCAF")
description "Berliner+CAF" )
(obj ((+Nsi) nsi "BDAT")
description "BDAY+AT" )
(obj ((+Nsi) nsi "BDN")
description "Birthday 'Boedga' Nagel" )
(obj ((+Nsi) nsi "BDRN")
description "Buttermilchdrink" )
(obj ((+Nsi) nsi "BDW")
description "BaDeWanne" )
(obj ((+Nsi) nsi "BED")
description "Bett und zack" )
(obj ((+Nsi) nsi "BETT")
description "BED" )
(obj ((+Nsi) nsi "BF")
description "Geek feiert Bergfest" )
(obj ((+Nsi) nsi "BFB")
description "Bett Frisch Beziehen" )
(obj ((+Nsi) nsi "BFEZ")
description "Badewanne+Film+Eis und ZACK" )
(obj ((+Nsi) nsi "BFSTK")
description "balkon+fstk" )
(obj ((+Nsi) nsi "BGA")
description "Bock auf Geile Aerztin" )
(obj ((+Nsi) nsi "BGD")
description "Bergedoof" )
(obj ((+Nsi) nsi "BGG")
description "Bock auf Geigengrl (oder Violagrl)" )
(obj ((+Nsi) nsi "BH")
description "blockhouse" )
(obj ((+Nsi) nsi "BHD")
description "Bock auf HD" )
(obj ((+Nsi) nsi "BHE")
description "Bindehautentzündung" )
(obj ((+Nsi) nsi "BHH")
description "Bock auf Halben Hahn" )
(obj ((+Nsi) nsi "BHK")
description "Bahnhofskneipe" )
(obj ((+Nsi) nsi "BHR")
description "BonkHauptRechner" )
(obj ((+Nsi) nsi "BHT")
description "bonk is telling hunchentoot-stories" )
(obj ((+Nsi) nsi "BIN")
description "geek residiert in bingen am rhein" )
(obj ((+Nsi) nsi "BIP")
description "Bock auf iPad" )
(obj ((+Nsi) nsi "BIS")
description "Bock auf ISlate" )
(obj ((+Nsi) nsi "BKD")
description "Burgerking-Diät" )
(obj ((+Nsi) nsi "BKS")
description "Bock auf Krankenschwester" )
(obj ((+Nsi) nsi "BKUZ")
description "Baumkuchen und zack!" )
(obj ((+Nsi) nsi "BKW")
description "BitKoin Wohnung" )
(obj ((+Nsi) nsi "BKZZ")
description "BOOK->zZz" )
(obj ((+Nsi) nsi "BKuK")
description "BLKN + Kaffe und Kuchen" )
(obj ((+Nsi) nsi "BLK")
description "->BLKN" )
(obj ((+Nsi) nsi "BLM")
description "Bock auf Labormaus" )
(obj ((+Nsi) nsi "BLST")
description "balisto und zack" )
(obj ((+Nsi) nsi "BM")
description "BonkMode" )
(obj ((+Nsi) nsi "BMSN")
description "SN done, aber Bock auf MSN" )
(obj ((+Nsi) nsi "BMW")
description "brot mit wurst" )
(obj ((+Nsi) nsi "BMWAT")
description "Bob Marley WAT" )
(obj ((+Nsi) nsi "BNB")
description "Burger'n'Bier" )
(obj ((+Nsi) nsi "BNES")
description "Bock auf NES" )
(obj ((+Nsi) nsi "BNF")
description "Backus-Naur-Form" )
(obj ((+Nsi) nsi "BNJ")
description "Banjo. ancient Schokoriegels" )
(obj ((+Nsi) nsi "BNK")
description "bonk emulation" )
(obj ((+Nsi) nsi "BOB")
description "Bonkbesuch" )
(obj ((+Nsi) nsi "BOD")
description "Bock auf ODO" )
(obj ((+Nsi) nsi "BOF")
description "Beer On Ferry" )
(obj ((+Nsi) nsi "BONK")
description "Halb geek, halb mensch. Frickelgeek im Körper eines Sesselgeeks" )
(obj ((+Nsi) nsi "BONKWLK")
description "WLK mit bonk, bevorzugt in COLD und zwingendem Zwischenstopp nach jeweils max 100m (bspw an Glimmweihnständen)" )
(obj ((+Nsi) nsi "BOR")
description "Eigen-Borschtsch" )
(obj ((+Nsi) nsi "BOS")
description "geek hört illegalerweise BOS" )
(obj ((+Nsi) nsi "BOZ")
description "geek is off boßeling" )
(obj ((+Nsi) nsi "BP")
description "breakpoint" )
(obj ((+Nsi) nsi "BPW")
description "Geek bringt Pfand weg" )
(obj ((+Nsi) nsi "BPZ")
description "brille putzen" )
(obj ((+Nsi) nsi "BR0T")
description "das kannst du dir ja wohl denken" )
(obj ((+Nsi) nsi "BRAiD")
description "schnauze!" )
(obj ((+Nsi) nsi "BRD")
description "kackland" )
(obj ((+Nsi) nsi "BRE")
description "men" )
(obj ((+Nsi) nsi "BRG")
description "Boch auf Reederei-GRL" )
(obj ((+Nsi) nsi "BRM")
description "Bicycle-Repair-Man, geek have to flicking his RAD" )
(obj ((+Nsi) nsi "BRNO")
description "Bin in BRNO" )
(obj ((+Nsi) nsi "BRR")
description "Bock auf Rinderroulade" )
(obj ((+Nsi) nsi "BRSL")
description "Bratislava" )
(obj ((+Nsi) nsi "BRSR")
description "BED+RSR" )
(obj ((+Nsi) nsi "BSB")
description "Bock auf Schoko Bons" )
(obj ((+Nsi) nsi "BSF")
description "bauer-sucht-frau" )
(obj ((+Nsi) nsi "BSG")
description "the geek is watching battlestar galactica episodes" )
(obj ((+Nsi) nsi "BSHP")
description "Brötchen holen" )
(obj ((+Nsi) nsi "BSM")
description "Bock auf Sudoku-Mädchen" )
(obj ((+Nsi) nsi "BSN")
description "balkSN" )
(obj ((+Nsi) nsi "BSS")
description "Geek is playing Beneath a Steel Sky." )
(obj ((+Nsi) nsi "BSTL")
description "geek is basteling" )
(obj ((+Nsi) nsi "BSV")
description "Bausparvertrag" )
(obj ((+Nsi) nsi "BTA")
description "Bock-auf-TAI" )
(obj ((+Nsi) nsi "BTR")
description "geek is verbittert. He has tu such an eigengrl." )
(obj ((+Nsi) nsi "BTT")
description "verbittert, verärgert, zornig, genervt, ..." )
(obj ((+Nsi) nsi "BTX")
description "Bett+TAX" )
(obj ((+Nsi) nsi "BTZ")
description "Bonk Time Zone" )
(obj ((+Nsi) nsi "BTZZ")
description "noch einmal wat booten und dann schnell zZZ" )
(obj ((+Nsi) nsi "BUBU")
description "siehe AOH bzw. MH" )
(obj ((+Nsi) nsi "BUD")
description "budapest" )
(obj ((+Nsi) nsi "BUM")
description "erst nochmal im Bett UMdrehen" )
(obj ((+Nsi) nsi "BURN")
description "burnin' optical discs" )
(obj ((+Nsi) nsi "BXX")
description "Bock auf XXX" )
(obj ((+Nsi) nsi "BZH")
description "Bock auf Zahnarzthelferin" )
(obj ((+Nsi) nsi "BZTV")
description "BauZ+TV" )
(obj ((+Nsi) nsi "BZZ")
description "Bonk-ZZZ Emulation" )
(obj ((+Nsi) nsi "BaG")
description "bock auf GRL" )
(obj ((+Nsi) nsi "BaZ")
description "Bock auf zZz" )
(obj ((+Nsi) nsi "BauZ")
description "Badewanne und Zack! (wie bereits MEHRFACH erwähnt)" )
(obj ((+Nsi) nsi "Birnen")
description "Bohnen & Speck" )
(obj ((+Nsi) nsi "Bock")
description "auf BQL" )
(obj ((+Nsi) nsi "BuE")
description "Bacon und Egg" )
(obj ((+Nsi) nsi "BuK")
description "BOOK und Kekse" )
(obj ((+Nsi) nsi "BuZ")
description "Bademantel und Zack!" )
(obj ((+Nsi) nsi "C")
description "Consider" )
(obj ((+Nsi) nsi "C3")
description "C3 vorträge aufholen" )
(obj ((+Nsi) nsi "C6AT")
description "CAF6+AT" )
(obj ((+Nsi) nsi "CACA")
description "CAf+CAke" )
(obj ((+Nsi) nsi "CAF")
description "The geek has decided to commence, or is currently in the process of caffeine intake by means of coffee consumption." )
(obj ((+Nsi) nsi "CAF/Muckefuck.")
description "Die Reste der Reste" )
(obj ((+Nsi) nsi "CAF2")
description "2nd CAF" )
(obj ((+Nsi) nsi "CAF3")
description "3rd CAF" )
(obj ((+Nsi) nsi "CAF4")
description "4th CAF" )
(obj ((+Nsi) nsi "CAF5")
description "derzeitiger bonk-zustand: zerstoert" )
(obj ((+Nsi) nsi "CALM")
description "Bin ganz ruhig -- ruhiger als du" )
(obj ((+Nsi) nsi "CAP")
description "CAF+NAP" )
(obj ((+Nsi) nsi "CAS")
description "(as in SMAS but with Car-prefix) Auto ein/ausräumen" )
(obj ((+Nsi) nsi "CAT")
description "Caf-AT" )
(obj ((+Nsi) nsi "CAX")
description "CAF-X" )
(obj ((+Nsi) nsi "CAZ")
description "CAF+ZZZ" )
(obj ((+Nsi) nsi "CBM")
description "consider bonkmode" )
(obj ((+Nsi) nsi "CBS")
description "consider: Broetchen-SHP" )
(obj ((+Nsi) nsi "CBUZ")
description "Consider BuZ" )
(obj ((+Nsi) nsi "CBaZ")
description "Consider BauZ" )
(obj ((+Nsi) nsi "CCAF")
description "Consider CAF" )
(obj ((+Nsi) nsi "CCBZ")
description "Consider CBuZ" )
(obj ((+Nsi) nsi "CCC")
description "The geek is currently undermining the local hacker scene." )
(obj ((+Nsi) nsi "CCCP")
description "Союз Советских Социалистических Республик" )
(obj ((+Nsi) nsi "CCD")
description "consider COD" )
(obj ((+Nsi) nsi "CCL")
description "COnsider ChemieLabor" )
(obj ((+Nsi) nsi "CCLN")
description "Consider CLN" )
(obj ((+Nsi) nsi "CCO")
description "consider COOK" )
(obj ((+Nsi) nsi "CCR")
description "Geek is listening to Creedence Clearwater Revival" )
(obj ((+Nsi) nsi "CCZZ")
description "Consider CZZ" )
(obj ((+Nsi) nsi "CE")
description " 52.621920,10.078580" )
(obj ((+Nsi) nsi "CEFA")
description "Consider heute mal EarlFA" )
(obj ((+Nsi) nsi "CEI")
description "consider EI" )
(obj ((+Nsi) nsi "CEMFA")
description "Consider ECHT MAL FA!" )
(obj ((+Nsi) nsi "CEO")
description "consider EasyOrder" )
(obj ((+Nsi) nsi "CF")
description "CAF && FP" )
(obj ((+Nsi) nsi "CFA")
description "COnsider FA" )
(obj ((+Nsi) nsi "CFI")
description "consider schoenes FI" )
(obj ((+Nsi) nsi "CFRSR")
description "Consider FRSR" )
(obj ((+Nsi) nsi "CFSN")
description "Consider FSN" )
(obj ((+Nsi) nsi "CFST")
description "Consider FSTK" )
(obj ((+Nsi) nsi "CGTN")
description "Consider GRTN" )
(obj ((+Nsi) nsi "CH4")
description "Consider Hartz 4" )
(obj ((+Nsi) nsi "CHC")
description "Considering HC" )
(obj ((+Nsi) nsi "CHFR")
description "consider HAFR" )
(obj ((+Nsi) nsi "CHK")
description "geek is watching latest Chuck episode" )
(obj ((+Nsi) nsi "CHL")
description "geek is CAF holen" )
(obj ((+Nsi) nsi "CHSZ")
description "Consider HSZZ" )
(obj ((+Nsi) nsi "CHT")
description "Chat" )
(obj ((+Nsi) nsi "CIG")
description "Geek is smoking cigarettes" )
(obj ((+Nsi) nsi "CIN")
description "The geek is going to the movies." )
(obj ((+Nsi) nsi "CITC")
description "Consider ITC" )
(obj ((+Nsi) nsi "CIV")
description "the geek is playiner freeciv" )
(obj ((+Nsi) nsi "CIZ")
description "consider IzZz" )
(obj ((+Nsi) nsi "CK")
description "The gook is actively preparing food; often followed by SN" )
(obj ((+Nsi) nsi "CKCK")
description "Consider KaCK" )
(obj ((+Nsi) nsi "CKuK")
description "consider KuK" )
(obj ((+Nsi) nsi "CLBL")
description "CLN+BLKN" )
(obj ((+Nsi) nsi "CLG")
description "Geek considers LosGehen" )
(obj ((+Nsi) nsi "CLM")
description "Columbo" )
(obj ((+Nsi) nsi "CLMB")
description "Columbo" )
(obj ((+Nsi) nsi "CLN")
description "Geek is performing futile action to his flat. May, but most not, include aseptic techniques." )
(obj ((+Nsi) nsi "CLO")
description "SHP'ing CLOthes for DRS" )
(obj ((+Nsi) nsi "CLR")
description "CLN++, intensive form of cleaning. Imply clearing out sth." )
(obj ((+Nsi) nsi "CMBZ")
description "CLMB + zZz" )
(obj ((+Nsi) nsi "CMC")
description "Club-Mate Cola" )
(obj ((+Nsi) nsi "CMK")
description "consider Mambo Kurt" )
(obj ((+Nsi) nsi "CMS")
description "Chat mit Schwester" )
(obj ((+Nsi) nsi "CMSFI")
description "considerung moar SFI" )
(obj ((+Nsi) nsi "CMW")
description "Geek considers to mach was" )
(obj ((+Nsi) nsi "CMZ")
description "considering MZZ" )
(obj ((+Nsi) nsi "CNFW")
description "City Nord Fest WOchen" )
(obj ((+Nsi) nsi "CNP")
description "considering no-pack" )
(obj ((+Nsi) nsi "CNZZ")
description "Consider No zZz Activities" )
(obj ((+Nsi) nsi "COAT")
description "couch office AT" )
(obj ((+Nsi) nsi "COCK")
description "cocktail und zack" )
(obj ((+Nsi) nsi "COD")
description "Coding" )
(obj ((+Nsi) nsi "COFI")
description "COOK+SFI" )
(obj ((+Nsi) nsi "COIL")
description "COOK+ILL" )
(obj ((+Nsi) nsi "COK2")
description "COOK nach COOK" )
(obj ((+Nsi) nsi "COPS")
description "geek is wathing COPS" )
(obj ((+Nsi) nsi "COZ")
description "COD+ZZZ" )
(obj ((+Nsi) nsi "CPC")
description "consider password change" )
(obj ((+Nsi) nsi "CPG")
description "consider PG" )
(obj ((+Nsi) nsi "CPZ")
description "consider PZA" )
(obj ((+Nsi) nsi "CPZA")
description "COLLECT PZA" )
(obj ((+Nsi) nsi "CRB")
description "considering RB" )
(obj ((+Nsi) nsi "CRK")
description "the geek is smoking crack to get a better understanding of the world and become either chilled or thrilled" )
(obj ((+Nsi) nsi "CRM")
description "ChRoMe" )
(obj ((+Nsi) nsi "CROQ")
description "CROQUE" )
(obj ((+Nsi) nsi "CRQ")
description "Croque" )
(obj ((+Nsi) nsi "CRRY")
description "geek carries stuff" )
(obj ((+Nsi) nsi "CRST")
description "CAF rösten (eigenröstung)" )
(obj ((+Nsi) nsi "CRU")
description "consider RUN" )
(obj ((+Nsi) nsi "CRYW")
description "Currywurst" )
(obj ((+Nsi) nsi "CSB")
description "consider SB" )
(obj ((+Nsi) nsi "CSH")
description "consider shopping" )
(obj ((+Nsi) nsi "CSHP")
description "City-SHo-Pping" )
(obj ((+Nsi) nsi "CSL")
description "cyrx_SUPERLOFT" )
(obj ((+Nsi) nsi "CSN")
description "considering SN" )
(obj ((+Nsi) nsi "CSP")
description "considering ASP" )
(obj ((+Nsi) nsi "CSTP")
description "Consider STUP" )
(obj ((+Nsi) nsi "CSU")
description "consider SUN" )
(obj ((+Nsi) nsi "CTA")
description "consider TAI" )
(obj ((+Nsi) nsi "CTM")
description "CatchTheMillionaire" )
(obj ((+Nsi) nsi "CTY")
description "Shopping down-town (\"ctiy\")" )
(obj ((+Nsi) nsi "CUT")
description "the geek is editing alberne videos" )
(obj ((+Nsi) nsi "CWE")
description "Consider WochenEnde" )
(obj ((+Nsi) nsi "CWSH")
description "Car WSH" )
(obj ((+Nsi) nsi "CWW")
description "Consider WNW" )
(obj ((+Nsi) nsi "CZA")
description "Cyraxx zahlt alles!" )
(obj ((+Nsi) nsi "Cad")
description "Geek drückte unlängst C-ad" )
(obj ((+Nsi) nsi "City")
description "Nord Fest WOchen" )
(obj ((+Nsi) nsi "CzZ")
description "Consider zZz" )
(obj ((+Nsi) nsi "DAB")
description "Drugs an the Brain" )
(obj ((+Nsi) nsi "DABN")
description "Direkt am Platz BENTO" )
(obj ((+Nsi) nsi "DAC")
description "Direkt am Arbeitsplatz CAF" )
(obj ((+Nsi) nsi "DACK")
description "Direkt bei AT am platz COOK" )
(obj ((+Nsi) nsi "DAFSN")
description "DIrekt am Platz Forellen SN" )
(obj ((+Nsi) nsi "DAFSTK")
description "Direkt am Platz FSTK" )
(obj ((+Nsi) nsi "DAKN")
description "Direkt am Platz kacken" )
(obj ((+Nsi) nsi "DALL")
description "Direkt am Tisch Lottern" )
(obj ((+Nsi) nsi "DAN")
description "Geek listens to Dan Deacon" )
(obj ((+Nsi) nsi "DANN")
description "Direkt bei AT am platz Nachtisch SN" )
(obj ((+Nsi) nsi "DAPZ")
description "Pizza direkt am Platz" )
(obj ((+Nsi) nsi "DASN")
description "DIrekt bei AT am Platz SN" )
(obj ((+Nsi) nsi "DAT")
description "direkt am Arbeitsplatz TEA" )
(obj ((+Nsi) nsi "DATF")
description "Doing AT Thinking about FA" )
(obj ((+Nsi) nsi "DATT")
description "Direkt am Arbeitsplatz Tea" )
(obj ((+Nsi) nsi "DAV")
description "The geek is suffering WebDAV" )
(obj ((+Nsi) nsi "DAWF")
description "Doin AT waitin for FA" )
(obj ((+Nsi) nsi "DAZ")
description "Direkt am Platz ZZZ" )
(obj ((+Nsi) nsi "DBG")
description "geek is debugging crappy bot" )
(obj ((+Nsi) nsi "DBS")
description "geek is setting up || using a dedicated bot server" )
(obj ((+Nsi) nsi "DBVF")
description "die besten von ferrero" )
(obj ((+Nsi) nsi "DDH")
description "geek is @dherr" )
(obj ((+Nsi) nsi "DDL")
description "Geek is having a break from real life for finger twitching of one kind or another" )
(obj ((+Nsi) nsi "DDZZ")
description "DonaldDuck->DZzzZ" )
(obj ((+Nsi) nsi "DELE")
description "KRams an andere delegieren" )
(obj ((+Nsi) nsi "DENT")
description "->DNT" )
(obj ((+Nsi) nsi "DESI")
description "Desillusioniert" )
(obj ((+Nsi) nsi "DFA")
description "Düsseldorf FA" )
(obj ((+Nsi) nsi "DFK")
description "the geek is engaging in activities purely aus daffke" )
(obj ((+Nsi) nsi "DFO")
description "Dinner for one" )
(obj ((+Nsi) nsi "DH")
description "Diese Hitze! Puh! Das ist ja nicht auszuhalten." )
(obj ((+Nsi) nsi "DHR")
description "geek hat ddh besuch" )
(obj ((+Nsi) nsi "DIBS")
description "Direkt-im-Bett-Skrupln" )
(obj ((+Nsi) nsi "DICE")
description "esse frogs DELICE's" )
(obj ((+Nsi) nsi "DIN")
description "the geek is out DINing" )
(obj ((+Nsi) nsi "DIY")
description "Do-it-yourself, Heimwerken" )
(obj ((+Nsi) nsi "DJ")
description "doodlejump(dgns0" )
(obj ((+Nsi) nsi "DKIS")
description "Don't call it Schnitzel" )
(obj ((+Nsi) nsi "DKZZ")
description "DOKU-ZzZ" )
(obj ((+Nsi) nsi "DMDASN")
description "Direkt mit dherr am Platz SN" )
(obj ((+Nsi) nsi "DMTG")
description "Day MTG (didk)" )
(obj ((+Nsi) nsi "DNC")
description "The geek is dancing; although not as such specified, current practice shows a bias towards disco-dancing." )
(obj ((+Nsi) nsi "DNP")
description "Dienst nach Plan" )
(obj ((+Nsi) nsi "DNR")
description "Döööööööööööööner" )
(obj ((+Nsi) nsi "DNT")
description "Geek is tortured by a dentist. (But he really likes to go there because of his nice assistents!)" )
(obj ((+Nsi) nsi "DOC")
description "geek is in pursuit of the dr.med." )
(obj ((+Nsi) nsi "DOM")
description "Hartz IV für alle!!!" )
(obj ((+Nsi) nsi "DON")
description "Done. Follows every good GTD, TAX or even UPD" )
(obj ((+Nsi) nsi "DOWN")
description "AT obwohl alles DOWN is" )
(obj ((+Nsi) nsi "DP")
description "Die PARTEI" )
(obj ((+Nsi) nsi "DPLY")
description "Live deployin' shit" )
(obj ((+Nsi) nsi "DPUH")
description "puh*2" )
(obj ((+Nsi) nsi "DPUH=PUH+PUH") )
(obj ((+Nsi) nsi "DRH")
description "Dr. House" )
(obj ((+Nsi) nsi "DRK")
description "Darkness" )
(obj ((+Nsi) nsi "DRNK")
description "welche teil von DRiNK verstehst du nich?" )
(obj ((+Nsi) nsi "DRS")
description "DReSs" )
(obj ((+Nsi) nsi "DRUG")
description "geek is drugged" )
(obj ((+Nsi) nsi "DRY")
description "the geek is handing up the laundry" )
(obj ((+Nsi) nsi "DRZZ")
description "Drunkzz+" )
(obj ((+Nsi) nsi "DSDN")
description "Dresden" )
(obj ((+Nsi) nsi "DSFS")
description "Deluxe Supreme Frühstück mit allem Scheiss (inkl. Ei) (Am Tisch(!!))" )
(obj ((+Nsi) nsi "DSH")
description "Geek ran out of dishes and has to tidy them up." )
(obj ((+Nsi) nsi "DSLS")
description "Doin Seuz Listening SPLbot" )
(obj ((+Nsi) nsi "DSSN")
description "Deluxe Supreme SN mit allem Scheiss (inkl. Espresso) (Am Tisch(!!))" )
(obj ((+Nsi) nsi "DSUP")
description "Doin SeuZ UFFin PUH" )
(obj ((+Nsi) nsi "DSWR")
description "Doing SeuZ Watching Roomba" )
(obj ((+Nsi) nsi "DTHSN")
description "Direkt im Treppenhaus SN" )
(obj ((+Nsi) nsi "DUR")
description "Durst!" )
(obj ((+Nsi) nsi "DXT")
description "geek is catching up on latest dexter episodes" )
(obj ((+Nsi) nsi "DXTR")
description "geek is catching up on latest dexter episodes" )
(obj ((+Nsi) nsi "Dentist") )
(obj ((+Nsi) nsi "Der")
description "geek laesst seine haare schoen machen" )
(obj ((+Nsi) nsi "Dienst")
description "nach Plan" )
(obj ((+Nsi) nsi "Direkt")
description "am Arbeitsplatz CAF" )
(obj ((+Nsi) nsi "Doku")
description "gucken (dokujunkies.org etc)" )
(obj ((+Nsi) nsi "DotC")
description "defender of the crown!" )
(obj ((+Nsi) nsi "EAB")
description "Egg with Bacon" )
(obj ((+Nsi) nsi "EARL")
description "== senile bettflucht" )
(obj ((+Nsi) nsi "EASN")
description "Eigen AT-SN (liebevoll selbst am vortag oder morgens oder just zubereitet)" )
(obj ((+Nsi) nsi "EAT")
description "a.k.a. SN" )
(obj ((+Nsi) nsi "EB")
description "geek is confecting EigenBr0t" )
(obj ((+Nsi) nsi "EB:")
description "geek is confecting EigenBr0t" )
(obj ((+Nsi) nsi "ECAF")
description "EIS+CAF" )
(obj ((+Nsi) nsi "ECG")
description "Epigallocatechingallat" )
(obj ((+Nsi) nsi "EGG")
description "vermutlich dasselbe wie OVO" )
(obj ((+Nsi) nsi "EI2")
description "das kannst Du dir wohl denken!" )
(obj ((+Nsi) nsi "EI3")
description "EI2++" )
(obj ((+Nsi) nsi "EIKP")
description "einkaeufe in den kuehlschrank packen" )
(obj ((+Nsi) nsi "EIS2")
description "der geek isst zwei Eise gleichzeitig, vermuitlich wegen der hitze. manche geeks verwenden diesen NSI als \"zweites Eis\"" )
(obj ((+Nsi) nsi "EIS3")
description "Diabetes mellitus, Risikostufe 3" )
(obj ((+Nsi) nsi "EIS4")