-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
2317 lines (2317 loc) · 182 KB
/
log.txt
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
2008.09.04-10:35:29 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:35:30 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:35:31 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:36:40 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:36:41 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:36:41 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:37:13 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:37:14 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:37:15 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:37:57 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:37:58 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:37:59 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:39:40 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:39:40 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:39:41 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:40:33 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:40:33 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:40:34 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:44:52 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:44:53 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:44:53 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:45:35 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:45:36 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:45:37 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:46:19 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:46:19 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:46:20 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:48:48 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:48:49 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:48:49 findPath(splitZones [], containedZones [a, ab])
2008.09.04-10:49:14 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:49:15 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:49:15 findPath(splitZones [], containedZones [a, ])
2008.09.04-10:49:39 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:49:40 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:49:41 findPath(splitZones [], containedZones [, ab])
2008.09.04-10:50:01 eulerGraphWithPath(a, [O1, O1])
2008.09.04-10:50:02 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-10:50:03 findPath(splitZones [], containedZones [ab])
2008.09.04-12:15:53 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:15:53 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:15:54 findPath(splitZones [], containedZones [ab])
2008.09.04-12:16:42 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:16:42 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:16:43 findPath(splitZones [], containedZones [ab])
2008.09.04-12:17:16 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:17:17 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:17:17 findPath(splitZones [], containedZones [ab])
2008.09.04-12:17:50 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:17:51 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:17:51 findPath(splitZones [], containedZones [ab])
2008.09.04-12:18:48 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:18:48 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:18:49 findPath(splitZones [], containedZones [ab])
2008.09.04-12:19:21 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:19:21 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:19:22 findPath(splitZones [a], containedZones [ab])
2008.09.04-12:20:01 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:20:01 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:20:02 findPath(splitZones [a, O], containedZones [ab])
2008.09.04-12:20:26 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:20:26 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:20:27 findPath(splitZones [a, O], containedZones [ab])
2008.09.04-12:20:56 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:20:56 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:20:57 findPath(splitZones [O], containedZones [ab, a])
2008.09.04-12:28:59 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:29:00 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:29:00 findPath(splitZones [], containedZones [ab, a])
2008.09.04-12:29:52 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:29:52 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:29:53 findPath(splitZones [], containedZones [ab, a])
2008.09.04-12:32:32 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:32:33 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:32:33 findPath(splitZones [], containedZones [ab, a])
2008.09.04-12:39:53 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:39:53 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:39:54 findPath(splitZones [], containedZones [ab, a])
2008.09.04-12:41:29 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:41:29 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:41:30 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O2, O1])
2008.09.04-12:42:16 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:42:16 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:42:17 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O2, O1])
2008.09.04-12:43:24 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:43:24 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:43:25 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:43:40 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:43:40 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:43:41 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:44:22 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:44:23 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:44:23 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:45:02 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:47:07 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:47:08 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:47:09 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:47:25 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:48:24 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:48:24 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:48:25 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:51:04 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:51:05 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:51:05 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:51:27 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:52:12 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:52:12 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:52:13 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:52:29 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:53:49 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:53:49 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:53:50 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:54:04 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:55:00 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:55:00 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:55:01 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:55:15 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:56:09 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:56:09 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:56:10 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:56:20 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-12:57:00 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:57:00 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:57:01 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:57:30 eulerGraphWithPath(a, [O1, O1])
2008.09.04-12:57:31 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-12:57:32 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-12:58:20 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-13:00:24 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:00:24 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:00:25 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:00:38 findPath(splitZones [ab], containedZones [abc, ac])
2008.09.04-13:00:47 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:00:48 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:00:48 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:01:06 findPath(splitZones [], containedZones [c])
2008.09.04-13:02:57 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:02:58 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:02:59 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:03:13 findPath(splitZones [], containedZones [c])
2008.09.04-13:31:39 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:31:39 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:31:41 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:31:48 findPath(splitZones [O], containedZones [a])
2008.09.04-13:34:04 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:34:05 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:34:06 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:34:14 findPath(splitZones [O], containedZones [a])
2008.09.04-13:37:01 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:37:01 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:37:03 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:37:10 findPath(splitZones [O], containedZones [a])
2008.09.04-13:39:20 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:39:20 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:39:22 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:39:29 findPath(splitZones [O], containedZones [a])
2008.09.04-13:43:33 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:43:34 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:43:35 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:43:42 findPath(splitZones [O], containedZones [a])
2008.09.04-13:44:08 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:44:09 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:44:10 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:44:17 findPath(splitZones [O], containedZones [ac])
2008.09.04-13:46:43 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:46:44 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:46:45 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:46:52 findPath(splitZones [O], containedZones [ac])
2008.09.04-13:47:16 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:47:17 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:47:18 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:47:25 findPath(splitZones [O], containedZones [c])
2008.09.04-13:48:01 findPath(splitZones [ab, abc], containedZones [ac])
2008.09.04-13:50:12 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:50:12 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:50:14 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:50:21 findPath(splitZones [O], containedZones [c])
2008.09.04-13:50:36 findPath(splitZones [ab, abc], containedZones [ac])
2008.09.04-13:51:17 findPath(splitZones [, ab, abc, ac, c], containedZones [])
2008.09.04-13:52:08 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:52:09 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:52:10 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:52:17 findPath(splitZones [O], containedZones [c])
2008.09.04-13:52:38 findPath(splitZones [, ab, abc, ac, c], containedZones [])
2008.09.04-13:55:58 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:55:59 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:56:00 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:56:07 findPath(splitZones [O], containedZones [c])
2008.09.04-13:56:30 findPath(splitZones [, ab, abc, ac, c], containedZones [])
2008.09.04-13:57:33 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:57:34 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:57:35 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:57:43 findPath(splitZones [O], containedZones [c])
2008.09.04-13:58:04 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:58:05 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:58:06 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:58:14 findPath(splitZones [O], containedZones [c])
2008.09.04-13:58:34 findPath(splitZones [, ab, abc, ac, c], containedZones [])
2008.09.04-13:59:47 eulerGraphWithPath(a, [O1, O1])
2008.09.04-13:59:47 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-13:59:49 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-13:59:56 findPath(splitZones [O], containedZones [c])
2008.09.04-14:00:10 findPath(splitZones [, ab, abc, ac, c], containedZones [])
2008.09.04-14:02:36 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:02:37 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:02:38 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:02:45 findPath(splitZones [O], containedZones [c])
2008.09.04-14:03:02 findPath(splitZones [, ab, abc, ac, c], containedZones [])
2008.09.04-14:03:20 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:03:20 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:03:22 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:03:29 findPath(splitZones [O], containedZones [c])
2008.09.04-14:03:41 findPath(splitZones [], containedZones [])
2008.09.04-14:04:00 findPath(splitZones [], containedZones [ab, abc, ac, c])
2008.09.04-14:04:54 findPath(splitZones [ab, ac], containedZones [abc])
2008.09.04-14:05:37 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:05:38 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:05:39 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:05:46 findPath(splitZones [O], containedZones [c])
2008.09.04-14:06:12 findPath(splitZones [ab], containedZones [])
2008.09.04-14:06:32 findPath(splitZones [], containedZones [ab, abc, ac])
2008.09.04-14:06:58 findPath(splitZones [, ab, ac, c], containedZones [abc])
2008.09.04-14:07:42 findPath(splitZones [], containedZones [a, ab])
2008.09.04-14:07:58 findPath(splitZones [, ab], containedZones [a])
2008.09.04-14:08:21 findPath(splitZones [], containedZones [a, ab])
2008.09.04-14:08:55 findPath(splitZones [ac, c], containedZones [])
2008.09.04-14:09:25 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:09:25 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:09:27 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:09:34 findPath(splitZones [O], containedZones [c])
2008.09.04-14:09:49 findPath(splitZones [, ab], containedZones [])
2008.09.04-14:10:58 findPath(splitZones [], containedZones [ab, abc, ac, c])
2008.09.04-14:12:44 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:12:45 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:12:46 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:12:53 findPath(splitZones [O], containedZones [c])
2008.09.04-14:13:12 findPath(splitZones [], containedZones [ab])
2008.09.04-14:21:45 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:21:46 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:21:49 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:21:57 findPath(splitZones [O], containedZones [c])
2008.09.04-14:23:04 eulerGraphWithPath(d, [ac, a1, c, abc1, ac])
2008.09.04-14:24:56 findPath(splitZones [, ab, acd], containedZones [abc, ac, cd])
2008.09.04-14:26:19 findPath(splitZones [, abc, ac], containedZones [ab])
2008.09.04-14:27:04 eulerGraphWithPath(a, [O1, O1])
2008.09.04-14:27:05 eulerGraphWithPath(b, [a1, a, a2, a1])
2008.09.04-14:27:06 eulerGraphWithPath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-14:27:13 findPath(splitZones [O], containedZones [c])
2008.09.04-14:27:25 findPath(splitZones [], containedZones [])
2008.09.04-14:28:07 eulerGraphWithPath(d, [O1, O4, ab1, ab, abc1, O1])
2008.09.04-18:34:04 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-18:34:04 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-18:34:06 eulerGraphWithNodePath(c, [O1, ab2, ab, ab1, O3, O4, O1])
2008.09.04-18:34:13 findPath(splitZones [O], containedZones [c])
2008.09.04-18:34:13 eulerGraphWithEdgePath(d, [(O2:c2,), (c2:abc1,c), (a1:abc1,a), (abc2:a1,a), (ab1:abc2,ab), (O4:ab1,), (O4:O3,), (O3:O2,)])
2008.09.04-18:35:39 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-18:35:40 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-18:35:41 findPath(splitZones [O], containedZones [ab])
2008.09.04-18:35:42 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-18:36:42 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-18:36:42 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-18:36:44 findPath(splitZones [O], containedZones [ab])
2008.09.04-18:36:44 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-18:37:02 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-18:37:03 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-18:37:04 findPath(splitZones [O], containedZones [ab])
2008.09.04-18:37:04 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:23:09 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:23:09 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:23:10 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:23:10 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:23:10 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:23:10 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:23:11 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:23:11 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:23:56 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:23:57 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:23:58 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:23:58 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:26:00 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:26:01 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:26:02 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:26:02 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:27:12 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:27:12 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:27:13 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:27:13 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:31:48 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:31:48 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:31:49 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:31:49 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:32:22 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:32:23 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:32:23 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:32:23 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:33:54 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:33:54 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:33:55 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:33:55 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:34:28 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:34:29 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:34:30 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:34:30 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-20:34:50 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-20:34:50 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-20:34:51 findPath(splitZones [O], containedZones [ab])
2008.09.04-20:34:51 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:19:18 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:19:18 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:19:19 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:19:19 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:21:19 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:21:20 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:21:20 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:21:20 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:21:38 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:21:38 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:21:39 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:21:39 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:22:02 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:22:02 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:22:03 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:22:03 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:23:09 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:23:09 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:23:10 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:23:10 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:23:55 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:23:55 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:23:56 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:23:56 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:24:17 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:24:17 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:24:18 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:24:18 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:24:31 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:24:31 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:24:32 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:24:32 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:28:52 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:28:53 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:28:54 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:28:54 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:29:27 findPath(splitZones [, abc], containedZones [a])
2008.09.04-21:30:16 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:30:17 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:30:17 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:30:17 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:33:50 eulerGraphWithNodePath(a, [O1, O1])
2008.09.04-21:33:51 eulerGraphWithNodePath(b, [a1, a, a2, a1])
2008.09.04-21:33:52 findPath(splitZones [O], containedZones [ab])
2008.09.04-21:33:52 eulerGraphWithEdgePath(c, [(O2:ab3,), (ab3:ab1,ab), (b1:ab1,b), (ab2:b1,b), (a1:ab2,a), (O4:a1,), (O1:O4,), (O2:O1,)])
2008.09.04-21:34:10 findPath(splitZones [abc], containedZones [a])
2008.09.04-21:34:10 eulerGraphWithEdgePath(d, [(abc:2,), (ac1:2,ac), (1:ac1,ac), (a1:1,a), (4:a1,a), (4:bc1,bc), (abc:bc1,)])
2008.09.04-21:35:31 findPath(splitZones [], containedZones [])
2008.09.04-21:35:31 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:35:40 findPath(splitZones [, a], containedZones [])
2008.09.04-21:37:32 findPath(splitZones [], containedZones [])
2008.09.04-21:37:32 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:38:16 findPath(splitZones [], containedZones [])
2008.09.04-21:38:16 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:38:23 findPath(splitZones [, a], containedZones [])
2008.09.04-21:38:23 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:41:51 findPath(splitZones [], containedZones [])
2008.09.04-21:41:51 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:41:59 findPath(splitZones [, a], containedZones [])
2008.09.04-21:41:59 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:42:40 findPath(splitZones [], containedZones [])
2008.09.04-21:42:40 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:43:00 findPath(splitZones [, a], containedZones [])
2008.09.04-21:43:00 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:44:44 findPath(splitZones [], containedZones [])
2008.09.04-21:44:44 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:44:49 findPath(splitZones [, a], containedZones [])
2008.09.04-21:44:49 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:46:00 findPath(splitZones [], containedZones [])
2008.09.04-21:46:00 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:46:04 findPath(splitZones [, a], containedZones [])
2008.09.04-21:46:04 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:46:21 findPath(splitZones [], containedZones [])
2008.09.04-21:46:21 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:46:28 findPath(splitZones [, a], containedZones [])
2008.09.04-21:46:28 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:47:21 findPath(splitZones [], containedZones [])
2008.09.04-21:47:21 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:47:24 findPath(splitZones [, a], containedZones [])
2008.09.04-21:47:24 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:48:52 findPath(splitZones [], containedZones [])
2008.09.04-21:48:52 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:48:57 findPath(splitZones [, a], containedZones [])
2008.09.04-21:48:57 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:50:08 findPath(splitZones [], containedZones [])
2008.09.04-21:50:08 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:50:22 findPath(splitZones [, a], containedZones [])
2008.09.04-21:50:22 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:52:40 findPath(splitZones [], containedZones [])
2008.09.04-21:52:40 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:52:44 findPath(splitZones [, a], containedZones [])
2008.09.04-21:52:44 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:53:02 findPath(splitZones [], containedZones [a, ab])
2008.09.04-21:53:02 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab2,b), (ab2:a1,a), (a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.04-21:54:02 findPath(splitZones [], containedZones [])
2008.09.04-21:54:02 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:54:07 findPath(splitZones [, a], containedZones [])
2008.09.04-21:54:07 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:54:57 findPath(splitZones [o], containedZones [])
2008.09.04-21:54:57 eulerGraphWithEdgePath(a, null)
2008.09.04-21:55:03 findPath(splitZones [], containedZones [])
2008.09.04-21:55:03 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-21:55:08 findPath(splitZones [, a], containedZones [])
2008.09.04-21:55:08 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-21:55:15 findPath(splitZones [], containedZones [a, ab])
2008.09.04-21:55:15 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab2,b), (ab2:a1,a), (a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.04-22:02:14 findPath(splitZones [], containedZones [])
2008.09.04-22:02:15 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:02:35 findPath(splitZones [, a], containedZones [])
2008.09.04-22:02:35 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:03:06 findPath(splitZones [], containedZones [])
2008.09.04-22:03:06 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:03:14 findPath(splitZones [, a], containedZones [])
2008.09.04-22:03:14 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:03:34 findPath(splitZones [], containedZones [a, ab])
2008.09.04-22:03:34 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab1,b), (ab1:a1,a), (a1:ab2,a), (ab2:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.04-22:06:39 findPath(splitZones [ac], containedZones [])
2008.09.04-22:06:39 eulerGraphWithEdgePath(d, [(ac:b2,), (b2:abc2,b), (a1:abc2,a), (ac1:a1,a), (ac2:ac1,ac), (abc1:ac2,ac), (ac:abc1,)])
2008.09.04-22:10:29 findPath(splitZones [], containedZones [])
2008.09.04-22:10:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:10:53 findPath(splitZones [a], containedZones [])
2008.09.04-22:10:53 eulerGraphWithEdgePath(b, [(a:a1,), (a1:a2,a), (a:a2,)])
2008.09.04-22:12:11 findPath(splitZones [], containedZones [])
2008.09.04-22:12:11 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:12:28 findPath(splitZones [, a], containedZones [])
2008.09.04-22:12:28 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:13:20 findPath(splitZones [, b], containedZones [])
2008.09.04-22:13:20 eulerGraphWithEdgePath(c, [(b:b2,), (b2:ab1,b), (a2:ab1,a), (O4:a2,), (O4:O3,), (O3:O2,), (O2:O1,), (O1:ab2,), (a1:ab2,a), (b:a1,)])
2008.09.04-22:15:09 findPath(splitZones [, c], containedZones [])
2008.09.04-22:15:09 eulerGraphWithEdgePath(d, [(c:c2,), (c2:abc1,c), (abc1:a2,a), (O4:a2,), (O1:O4,), (O2:O1,), (O3:O2,), (O3:ac2,), (ac2:ac4,ac), (ac4:abc2,ac), (bc2:abc2,bc), (bc1:bc2,bc), (b1:bc1,b), (c:b1,)])
2008.09.04-22:21:56 findPath(splitZones [], containedZones [])
2008.09.04-22:21:56 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:22:09 findPath(splitZones [, a], containedZones [])
2008.09.04-22:22:09 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:22:27 findPath(splitZones [, a], containedZones [])
2008.09.04-22:22:27 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:b1,b), (b1:ab1,b), (ab1:b2,b), (O2:b2,), (O2:O1,), (O1:O4,), (O4:a2,), (a:a2,)])
2008.09.04-22:24:47 findPath(splitZones [], containedZones [])
2008.09.04-22:24:47 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:24:52 findPath(splitZones [, a], containedZones [])
2008.09.04-22:24:52 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:25:33 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.04-22:25:33 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:a1,a), (b:a1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:ab1,), (ab:ab1,), (ab:b1,), (a:b1,)])
2008.09.04-22:31:03 findPath(splitZones [], containedZones [])
2008.09.04-22:31:03 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:31:29 findPath(splitZones [], containedZones [a])
2008.09.04-22:31:29 eulerGraphWithEdgePath(b, [(O2:a2,), (a2:a1,a), (O1:a1,), (O1:O2,)])
2008.09.04-22:32:31 findPath(splitZones [], containedZones [])
2008.09.04-22:32:31 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:32:44 findPath(splitZones [], containedZones [a])
2008.09.04-22:32:44 eulerGraphWithEdgePath(b, [(O2:a2,), (a2:a1,a), (O1:a1,), (O1:O2,)])
2008.09.04-22:33:00 findPath(splitZones [], containedZones [])
2008.09.04-22:33:00 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:33:33 findPath(splitZones [], containedZones [a])
2008.09.04-22:33:33 eulerGraphWithEdgePath(b, [(O2:a2,), (a2:a1,a), (O1:a1,), (O1:O2,)])
2008.09.04-22:34:05 findPath(splitZones [], containedZones [a, b])
2008.09.04-22:34:05 eulerGraphWithEdgePath(c, [(O2:b1,), (b1:ab1,b), (a1:ab1,a), (ab2:a1,a), (O1:ab2,), (O2:O1,)])
2008.09.04-22:40:05 findPath(splitZones [], containedZones [])
2008.09.04-22:40:05 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:40:42 findPath(splitZones [, a], containedZones [])
2008.09.04-22:40:42 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:41:13 findPath(splitZones [], containedZones [a, ab])
2008.09.04-22:41:13 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab1,b), (ab1:a1,a), (a1:ab2,a), (ab2:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.04-22:43:24 findPath(splitZones [], containedZones [])
2008.09.04-22:43:24 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:43:35 findPath(splitZones [, a], containedZones [])
2008.09.04-22:43:35 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:43:59 findPath(splitZones [], containedZones [a, ab])
2008.09.04-22:43:59 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab2,b), (ab2:a1,a), (a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.04-22:48:17 findPath(splitZones [], containedZones [])
2008.09.04-22:48:17 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:48:31 findPath(splitZones [, a], containedZones [])
2008.09.04-22:48:31 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:48:51 findPath(splitZones [], containedZones [a, ab])
2008.09.04-22:48:51 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab2,b), (ab2:a1,a), (a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.04-22:49:39 findPath(splitZones [], containedZones [])
2008.09.04-22:49:39 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.04-22:49:48 findPath(splitZones [, a], containedZones [])
2008.09.04-22:49:48 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.04-22:50:03 findPath(splitZones [], containedZones [a, ab])
2008.09.04-22:50:03 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab1,b), (ab1:a1,a), (a1:ab2,a), (ab2:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.05-08:30:46 findPath(splitZones [O], containedZones [])
2008.09.05-08:30:46 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:31:00 eulerGraphWithNodePath(b, [null, a])
2008.09.05-08:31:07 findPath(splitZones [, a], containedZones [])
2008.09.05-08:31:07 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:33:41 findPath(splitZones [O], containedZones [])
2008.09.05-08:33:41 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:33:47 findPath(splitZones [, a], containedZones [])
2008.09.05-08:33:47 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:34:12 findPath(splitZones [], containedZones [a, ab])
2008.09.05-08:34:12 eulerGraphWithEdgePath(c, [(O2:b2,), (b2:ab1,b), (ab1:a1,a), (a1:ab2,a), (ab2:a2,a), (O4:a2,), (O4:O3,), (O3:O2,)])
2008.09.05-08:39:15 findPath(splitZones [O], containedZones [])
2008.09.05-08:39:15 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:39:21 findPath(splitZones [, a], containedZones [])
2008.09.05-08:40:25 findPath(splitZones [O], containedZones [])
2008.09.05-08:40:25 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:40:33 eulerGraphWithNodePath(b, [null, a])
2008.09.05-08:40:43 findPath(splitZones [, a], containedZones [])
2008.09.05-08:40:43 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:40:55 findPath(splitZones [], containedZones [a, ab])
2008.09.05-08:40:55 eulerGraphWithEdgePath(c, [(a1:ab2,a), (ab2:a2,a), (O4:a2,), (O4:O3,), (O3:ab1,), (ab1:a1,a)])
2008.09.05-08:42:21 findPath(splitZones [O], containedZones [])
2008.09.05-08:42:21 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:42:28 eulerGraphWithNodePath(b, [a, null])
2008.09.05-08:42:35 findPath(splitZones [, a], containedZones [])
2008.09.05-08:42:35 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:42:52 findPath(splitZones [], containedZones [a, ab])
2008.09.05-08:42:52 eulerGraphWithEdgePath(c, [(a1:ab2,a), (ab2:a2,a), (O4:a2,), (O4:O3,), (O3:ab1,), (ab1:a1,a)])
2008.09.05-08:46:49 findPath(splitZones [O], containedZones [])
2008.09.05-08:46:49 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:46:58 findPath(splitZones [O], containedZones [])
2008.09.05-08:46:58 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:46:58 findPath(splitZones [O], containedZones [a])
2008.09.05-08:46:58 eulerGraphWithEdgePath(b, [(O2:O1,), (O1:O2,)])
2008.09.05-08:47:56 findPath(splitZones [O], containedZones [])
2008.09.05-08:47:56 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:47:57 findPath(splitZones [a, O], containedZones [])
2008.09.05-08:47:57 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:48:00 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-08:48:01 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-08:53:57 findPath(splitZones [O], containedZones [])
2008.09.05-08:53:57 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:53:57 findPath(splitZones [a, O], containedZones [])
2008.09.05-08:53:57 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:54:00 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-08:54:00 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-08:55:58 findPath(splitZones [O], containedZones [])
2008.09.05-08:55:58 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:55:58 findPath(splitZones [a, O], containedZones [])
2008.09.05-08:55:58 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:56:24 findPath(splitZones [O], containedZones [])
2008.09.05-08:56:24 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:56:24 findPath(splitZones [a, O], containedZones [])
2008.09.05-08:56:24 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:56:27 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-08:56:27 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-08:59:00 findPath(splitZones [O], containedZones [])
2008.09.05-08:59:00 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:59:00 findPath(splitZones [a, O], containedZones [])
2008.09.05-08:59:00 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:59:03 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-08:59:03 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-08:59:22 findPath(splitZones [O], containedZones [])
2008.09.05-08:59:22 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-08:59:22 findPath(splitZones [a, O], containedZones [])
2008.09.05-08:59:22 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-08:59:25 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-08:59:25 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-09:00:13 findPath(splitZones [O], containedZones [])
2008.09.05-09:00:13 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:00:13 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:00:13 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:00:16 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-09:00:16 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-09:01:27 findPath(splitZones [O], containedZones [])
2008.09.05-09:01:27 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:01:27 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:01:27 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:01:30 findPath(splitZones [O], containedZones [a, ab])
2008.09.05-09:01:30 eulerGraphWithEdgePath(c, [(a1:ab1,a), (ab1:a2,a), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-09:02:55 findPath(splitZones [O], containedZones [])
2008.09.05-09:02:55 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:02:56 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:02:56 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:02:59 findPath(splitZones [O], containedZones [ac, ab])
2008.09.05-09:02:59 eulerGraphWithEdgePath(c, null)
2008.09.05-09:03:21 findPath(splitZones [O], containedZones [])
2008.09.05-09:03:21 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:03:21 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:03:21 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:03:24 findPath(splitZones [O], containedZones [ac, b])
2008.09.05-09:03:24 eulerGraphWithEdgePath(c, null)
2008.09.05-09:03:42 findPath(splitZones [O], containedZones [])
2008.09.05-09:03:42 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:03:42 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:03:42 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:03:45 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-09:03:45 eulerGraphWithEdgePath(c, [(b1:ab1,b), (ab1:b2,b), (O2:b2,), (O3:O2,), (O3:ab2,), (ab2:b1,b)])
2008.09.05-09:31:15 findPath(splitZones [O], containedZones [])
2008.09.05-09:31:15 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:31:15 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:31:15 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:31:18 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-09:31:18 eulerGraphWithEdgePath(c, [(b1:ab1,b), (ab1:a2,a), (O4:a2,), (O1:O4,), (O2:O1,), (O2:b2,), (b2:ab2,b), (ab2:b1,b)])
2008.09.05-09:32:13 findPath(splitZones [O], containedZones [])
2008.09.05-09:32:13 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:32:13 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:32:13 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:32:17 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-09:32:17 eulerGraphWithEdgePath(c, [(b1:ab2,b), (ab2:a2,a), (O4:a2,), (O1:O4,), (O2:O1,), (O2:b2,), (b2:ab1,b), (ab1:b1,b)])
2008.09.05-09:36:05 findPath(splitZones [O], containedZones [])
2008.09.05-09:36:05 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:36:05 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:36:05 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:36:09 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-09:36:09 eulerGraphWithEdgePath(c, [(b1:ab2,b), (ab2:a2,a), (O4:a2,), (O1:O4,), (O2:O1,), (O2:b2,), (b2:ab1,b), (ab1:b1,b)])
2008.09.05-09:37:20 findPath(splitZones [O], containedZones [])
2008.09.05-09:37:20 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:37:21 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:37:21 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:37:25 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-09:37:25 eulerGraphWithEdgePath(c, [(b1:ab2,b), (ab2:a2,a), (O4:a2,), (O1:O4,), (O2:O1,), (O2:b2,), (b2:ab1,b), (ab1:b1,b)])
2008.09.05-09:38:31 findPath(splitZones [O], containedZones [])
2008.09.05-09:38:31 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:38:31 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:38:31 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:38:34 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-09:38:34 eulerGraphWithEdgePath(c, [(b1:ab2,b), (ab2:a2,a), (O4:a2,), (O1:O4,), (O2:O1,), (O2:b2,), (b2:ab1,b), (ab1:b1,b)])
2008.09.05-09:39:03 findPath(splitZones [], containedZones [])
2008.09.05-09:39:03 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab1,a), (b2:ab1,b), (ab2:b2,b), (O1:ab2,), (O2:O1,), (O3:O2,), (O4:O3,)])
2008.09.05-09:40:54 findPath(splitZones [O], containedZones [])
2008.09.05-09:41:12 findPath(splitZones [O], containedZones [])
2008.09.05-09:41:18 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:41:18 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:41:21 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:41:33 findPath(splitZones [], containedZones [])
2008.09.05-09:43:03 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab1,a), (b2:ab1,b), (ab2:b2,b), (O1:ab2,), (O2:O1,), (O3:O2,), (O4:O3,)])
2008.09.05-09:43:17 findPath(splitZones [O], containedZones [])
2008.09.05-09:43:17 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:43:18 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:43:18 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:44:38 findPath(splitZones [O], containedZones [])
2008.09.05-09:44:38 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:44:38 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:44:38 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:44:50 findPath(splitZones [], containedZones [])
2008.09.05-09:44:50 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab2,a), (b2:ab2,b), (ab1:b2,b), (O1:ab1,), (O2:O1,), (O3:O2,), (O4:O3,)])
2008.09.05-09:47:09 findPath(splitZones [O], containedZones [])
2008.09.05-09:47:09 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:47:09 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:47:10 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:47:47 findPath(splitZones [O], containedZones [])
2008.09.05-09:47:47 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:47:47 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:47:47 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:47:56 findPath(splitZones [], containedZones [])
2008.09.05-09:47:56 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab1,a), (b2:ab1,b), (ab2:b2,b), (O1:ab2,), (O2:O1,), (O3:O2,), (O4:O3,)])
2008.09.05-09:49:58 findPath(splitZones [O], containedZones [])
2008.09.05-09:49:58 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:49:58 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:49:58 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:50:10 findPath(splitZones [], containedZones [])
2008.09.05-09:50:11 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab2,a), (b2:ab2,b), (ab1:b2,b), (O1:ab1,), (O2:O1,), (O3:O2,), (O4:O3,)])
2008.09.05-09:53:18 findPath(splitZones [O], containedZones [])
2008.09.05-09:53:18 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:53:18 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:53:18 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:53:30 findPath(splitZones [], containedZones [])
2008.09.05-09:53:30 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab2,a), (b2:ab2,b), (ab1:b2,b), (O1:ab1,), (O2:O1,), (O3:O2,), (O4:O3,)])
2008.09.05-09:57:10 findPath(splitZones [O], containedZones [])
2008.09.05-09:57:10 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:57:10 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:57:10 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:57:20 findPath(splitZones [], containedZones [])
2008.09.05-09:57:20 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab1,a), (O3:ab1,), (O4:O3,)])
2008.09.05-09:57:42 findPath(splitZones [O], containedZones [])
2008.09.05-09:57:42 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:57:43 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:57:43 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:57:55 findPath(splitZones [a, ab], containedZones [])
2008.09.05-09:57:55 eulerGraphWithEdgePath(c, [(a:ab1,), (ab:ab1,), (ab:b1,), (a:b1,)])
2008.09.05-09:58:29 findPath(splitZones [O], containedZones [])
2008.09.05-09:58:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:58:30 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:58:30 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:58:46 findPath(splitZones [], containedZones [a, ab, b])
2008.09.05-09:58:46 eulerGraphWithEdgePath(c, [(a2:ab1,a), (b2:ab1,b), (ab2:b2,b), (ab2:a2,a)])
2008.09.05-09:59:12 findPath(splitZones [O], containedZones [])
2008.09.05-09:59:12 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:59:12 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:59:12 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-09:59:35 findPath(splitZones [], containedZones [a, ab, b])
2008.09.05-09:59:35 eulerGraphWithEdgePath(c, [(O4:O3,), (O3:O2,), (O2:O1,), (O1:O4,)])
2008.09.05-09:59:49 findPath(splitZones [O], containedZones [])
2008.09.05-09:59:49 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-09:59:49 findPath(splitZones [a, O], containedZones [])
2008.09.05-09:59:49 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-10:00:15 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.05-10:00:15 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:ab2,), (ab:ab2,), (ab:b1,), (a:b1,)])
2008.09.05-10:02:57 findPath(splitZones [O], containedZones [])
2008.09.05-10:02:57 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-10:02:57 findPath(splitZones [a, O], containedZones [])
2008.09.05-10:02:57 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-10:03:10 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.05-10:03:10 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:ab2,), (ab:ab2,), (ab:b1,), (a:b1,)])
2008.09.05-12:16:55 findPath(splitZones [O], containedZones [])
2008.09.05-12:16:55 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-12:16:55 findPath(splitZones [a, O], containedZones [])
2008.09.05-12:16:55 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-12:17:38 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.05-12:17:38 eulerGraphWithEdgePath(c, [(a:b1,), (ab:b1,), (ab:a1,), (b:a1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:O4,), (O4:a2,), (a:a2,)])
2008.09.05-12:22:25 findPath(splitZones [O], containedZones [])
2008.09.05-12:22:25 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-12:22:25 findPath(splitZones [a, O], containedZones [])
2008.09.05-12:22:25 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-12:22:37 findPath(splitZones [], containedZones [])
2008.09.05-12:22:37 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab1,a), (O3:ab1,), (O4:O3,)])
2008.09.05-13:06:58 findPath(splitZones [O], containedZones [])
2008.09.05-13:06:59 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:17:30 findPath(splitZones [O], containedZones [])
2008.09.05-13:17:30 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:18:11 findPath(splitZones [O], containedZones [])
2008.09.05-13:18:11 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:18:29 findPath(splitZones [O], containedZones [])
2008.09.05-13:18:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:19:17 findPath(splitZones [O], containedZones [])
2008.09.05-13:19:17 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:20:07 findPath(splitZones [O], containedZones [])
2008.09.05-13:20:07 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:22:14 findPath(splitZones [O], containedZones [])
2008.09.05-13:22:14 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:23:29 findPath(splitZones [O], containedZones [])
2008.09.05-13:23:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:54:38 findPath(splitZones [O], containedZones [])
2008.09.05-13:54:38 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:56:38 findPath(splitZones [O], containedZones [])
2008.09.05-13:56:38 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:57:49 findPath(splitZones [O], containedZones [])
2008.09.05-13:57:49 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-13:58:17 findPath(splitZones [O], containedZones [])
2008.09.05-13:58:17 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:16:29 findPath(splitZones [O], containedZones [])
2008.09.05-15:16:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:16:41 findPath(splitZones [, a], containedZones [])
2008.09.05-15:16:41 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:17:03 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.05-15:17:03 eulerGraphWithEdgePath(c, [(a:b1,), (ab:b1,), (ab:a1,), (b:a1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:O4,), (O4:a2,), (a:a2,)])
2008.09.05-15:19:29 findPath(splitZones [O], containedZones [])
2008.09.05-15:19:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:19:37 findPath(splitZones [O], containedZones [])
2008.09.05-15:19:37 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:20:15 findPath(splitZones [O], containedZones [])
2008.09.05-15:20:15 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:20:16 findPath(splitZones [a, O], containedZones [])
2008.09.05-15:20:16 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:20:19 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-15:20:19 eulerGraphWithEdgePath(c, [(b1:ab1,b), (O1:ab1,), (O2:O1,), (O3:O2,), (O3:ab2,), (ab2:b1,b)])
2008.09.05-15:31:58 findPath(splitZones [O], containedZones [])
2008.09.05-15:31:58 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:31:58 findPath(splitZones [a, O], containedZones [])
2008.09.05-15:31:58 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:32:01 findPath(splitZones [O], containedZones [ab, b])
2008.09.05-15:32:01 eulerGraphWithEdgePath(c, [(b1:ab1,b), (O1:ab1,), (O2:O1,), (O3:O2,), (O3:ab2,), (ab2:b1,b)])
2008.09.05-15:32:23 findPath(splitZones [, a, ab], containedZones [bc])
2008.09.05-15:32:23 eulerGraphWithEdgePath(c, null)
2008.09.05-15:33:39 findPath(splitZones [O], containedZones [])
2008.09.05-15:33:39 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:33:49 findPath(splitZones [], containedZones [a])
2008.09.05-15:33:49 eulerGraphWithEdgePath(b, [(O2:O1,), (O1:O2,)])
2008.09.05-15:35:07 findPath(splitZones [O], containedZones [])
2008.09.05-15:35:07 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:35:16 findPath(splitZones [, a], containedZones [])
2008.09.05-15:35:16 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:35:46 findPath(splitZones [], containedZones [a, ab])
2008.09.05-15:35:46 eulerGraphWithEdgePath(c, [(a1:ab1,a), (O1:ab1,), (O1:O4,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-15:36:27 findPath(splitZones [ac, c], containedZones [abc, b])
2008.09.05-15:36:27 eulerGraphWithEdgePath(d, [(b2:abc2,b), (c:abc2,), (c:a1,), (ac:a1,), (ac:abc1,), (abc1:b2,b)])
2008.09.05-15:37:40 findPath(splitZones [c, cd], containedZones [acd])
2008.09.05-15:37:41 eulerGraphWithEdgePath(e, [(b1:abcd2,b), (c:abcd2,), (c:d1,), (cd:d1,), (cd:ad1,), (ad1:d2,d), (d2:abcd1,d), (abcd1:b1,b)])
2008.09.05-15:39:47 findPath(splitZones [O], containedZones [])
2008.09.05-15:39:47 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:39:52 findPath(splitZones [, a], containedZones [])
2008.09.05-15:39:52 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:40:06 findPath(splitZones [], containedZones [a, ab])
2008.09.05-15:40:06 eulerGraphWithEdgePath(c, [(a1:ab1,a), (O1:ab1,), (O1:O4,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.05-15:40:36 findPath(splitZones [ac, c], containedZones [abc])
2008.09.05-15:40:36 eulerGraphWithEdgePath(d, [(ac1:abc2,ac), (c:abc2,), (c:a1,), (ac:a1,), (ac:abc1,), (abc1:ac1,ac)])
2008.09.05-15:40:43 findPath(splitZones [ac, c], containedZones [abc])
2008.09.05-15:40:43 eulerGraphWithEdgePath(d, [(ac1:abc2,ac), (ac:abc2,), (ac:a1,), (c:a1,), (c:abc1,), (abc1:ac1,ac)])
2008.09.05-15:46:22 findPath(splitZones [O], containedZones [])
2008.09.05-15:46:22 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:46:33 findPath(splitZones [, a], containedZones [])
2008.09.05-15:46:33 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:46:51 findPath(splitZones [a, ab], containedZones [b])
2008.09.05-15:46:51 eulerGraphWithEdgePath(c, [(b2:ab2,b), (a:ab2,), (a:b1,), (ab:b1,), (ab:ab1,), (ab1:b2,b)])
2008.09.05-15:49:37 findPath(splitZones [O], containedZones [])
2008.09.05-15:49:37 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-15:49:38 findPath(splitZones [a, O], containedZones [])
2008.09.05-15:49:38 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-15:49:41 findPath(splitZones [a, ab], containedZones [b])
2008.09.05-15:49:41 eulerGraphWithEdgePath(c, [(b2:ab1,b), (a:ab1,), (a:b1,), (ab:b1,), (ab:ab2,), (ab2:b2,b)])
2008.09.05-17:00:30 findPath(splitZones [O], containedZones [])
2008.09.05-17:00:30 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-17:00:31 findPath(splitZones [a, O], containedZones [])
2008.09.05-17:00:31 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-17:00:38 findPath(splitZones [a, ab], containedZones [b])
2008.09.05-17:00:38 eulerGraphWithEdgePath(c, [(b2:ab1,b), (a:ab1,), (a:b1,), (ab:b1,), (ab:ab2,), (ab2:b2,b)])
2008.09.05-17:04:09 findPath(splitZones [O], containedZones [])
2008.09.05-17:04:09 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-17:04:10 findPath(splitZones [a, O], containedZones [])
2008.09.05-17:04:10 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-17:04:15 findPath(splitZones [a, ab], containedZones [b])
2008.09.05-17:04:15 eulerGraphWithEdgePath(c, [(b2:ab2,b), (a:ab2,), (a:b1,), (ab:b1,), (ab:ab1,), (ab1:b2,b)])
2008.09.05-17:14:40 findPath(splitZones [O], containedZones [])
2008.09.05-17:14:41 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-17:14:41 findPath(splitZones [a, O], containedZones [])
2008.09.05-17:14:41 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-17:14:47 findPath(splitZones [a, ab], containedZones [b])
2008.09.05-17:14:47 eulerGraphWithEdgePath(c, [(b2:ab1,b), (a:ab1,), (a:b1,), (ab:b1,), (ab:ab2,), (ab2:b2,b)])
2008.09.05-17:15:06 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.05-17:15:06 eulerGraphWithEdgePath(c, [(a:b1,), (ab:b1,), (ab:a1,), (b:a1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:O4,), (O4:a2,), (a:a2,)])
2008.09.05-17:17:01 findPath(splitZones [O], containedZones [])
2008.09.05-17:17:01 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-17:17:15 findPath(splitZones [], containedZones [a])
2008.09.05-17:17:15 eulerGraphWithEdgePath(b, [(O2:O1,), (O1:O2,)])
2008.09.05-17:17:15 findPath(splitZones [O], containedZones [a])
2008.09.05-17:17:15 eulerGraphWithEdgePath(b, [(O1:O2,), (O2:O1,)])
2008.09.05-17:17:15 findPath(splitZones [O], containedZones [a])
2008.09.05-17:17:15 eulerGraphWithEdgePath(b, [(O2:a2,), (a2:a1,a), (O1:a1,), (O1:O2,)])
2008.09.05-17:18:40 findPath(splitZones [, a], containedZones [])
2008.09.05-17:18:40 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-17:19:00 findPath(splitZones [a, ab], containedZones [])
2008.09.05-17:19:00 eulerGraphWithEdgePath(c, [(a:ab1,), (ab:ab1,), (ab:b1,), (a:b1,)])
2008.09.05-17:19:58 findPath(splitZones [, abc, ac], containedZones [])
2008.09.05-17:21:44 findPath(splitZones [a], containedZones [])
2008.09.05-17:21:44 eulerGraphWithEdgePath(d, [(a:bc1,), (bc1:b2,b), (a:b2,)])
2008.09.05-17:24:01 findPath(splitZones [abc, ad], containedZones [ac])
2008.09.05-17:25:38 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:25:39 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (abc:bcd1,), (abc:abc1,), (a:abc1,)])
2008.09.05-17:25:57 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:25:58 eulerGraphWithEdgePath(e, [(a:abc1,), (abc:abc1,), (abc:bcd1,), (ad:bcd1,), (ad:d1,), (a:d1,)])
2008.09.05-17:26:15 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:26:16 eulerGraphWithEdgePath(e, [(a:a2,), (a2:abc1,a), (abc:abc1,), (abc:bcd1,), (ad:bcd1,), (ad:d1,), (a:d1,)])
2008.09.05-17:26:28 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:26:29 eulerGraphWithEdgePath(e, [(a:c1,), (c1:abc1,c), (abc:abc1,), (abc:bcd1,), (ad:bcd1,), (ad:d1,), (a:d1,)])
2008.09.05-17:26:49 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:26:50 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (bcd1:b2,b), (abc:b2,), (abc:abc1,), (a:abc1,)])
2008.09.05-17:27:12 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:27:13 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (c2:bcd1,c), (abc:c2,), (abc:abc1,), (a:abc1,)])
2008.09.05-17:27:31 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:27:32 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (abc:bcd1,), (abc:b2,), (b2:abc1,b), (a:abc1,)])
2008.09.05-17:27:50 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:27:51 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (abc:bcd1,), (abc:abc1,), (a2:abc1,a), (a:a2,)])
2008.09.05-17:28:04 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:28:05 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (abc:bcd1,), (abc:abc1,), (c1:abc1,c), (a:c1,)])
2008.09.05-17:28:24 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:28:25 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bcd1,), (abc:bcd1,), (abc:c2,), (abc1:c2,c), (a:abc1,)])
2008.09.05-17:28:43 findPath(splitZones [a, abc, ad], containedZones [ac])
2008.09.05-17:28:44 eulerGraphWithEdgePath(e, [(a:d1,), (ad:d1,), (ad:bd2,), (bcd1:bd2,bd), (abc:bcd1,), (abc:abc1,), (a:abc1,)])
2008.09.05-17:54:16 findPath(splitZones [O], containedZones [])
2008.09.05-17:54:16 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-17:54:30 findPath(splitZones [, a], containedZones [])
2008.09.05-17:54:30 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-17:54:49 findPath(splitZones [, a, ab, b], containedZones [])
2008.09.05-17:54:50 eulerGraphWithEdgePath(c, [(a:b1,), (ab:b1,), (ab:a1,), (b:a1,), (b:b2,), (O2:b2,), (O2:O1,), (O1:O4,), (O4:a2,), (a:a2,)])
2008.09.05-17:55:51 findPath(splitZones [a, ab, abc, ac], containedZones [])
2008.09.05-17:58:04 eulerGraphWithEdgePath(d, [(a:b1,), (ab:b1,), (ab:c3,), (abc:c3,), (abc:b2,), (ac:b2,), (ac:c2,), (a:c2,)])
2008.09.05-20:18:00 findPath(splitZones [O], containedZones [])
2008.09.05-20:18:00 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-20:19:29 findPath(splitZones [O], containedZones [])
2008.09.05-20:19:29 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-20:19:39 findPath(splitZones [O], containedZones [])
2008.09.05-20:19:39 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-20:19:51 findPath(splitZones [, a], containedZones [])
2008.09.05-20:19:51 eulerGraphWithEdgePath(b, [(a:a1,), (O1:a1,), (O1:O2,), (O2:a2,), (a:a2,)])
2008.09.05-20:20:24 findPath(splitZones [, a, ab], containedZones [])
2008.09.05-20:20:24 eulerGraphWithEdgePath(c, [(a:b1,), (ab:b1,), (ab:ab2,), (O3:ab2,), (O4:O3,), (O4:a2,), (a:a2,)])
2008.09.05-20:22:30 findPath(splitZones [ab], containedZones [a, b])
2008.09.05-20:22:39 findPath(splitZones [ab], containedZones [O, a])
2008.09.05-20:22:44 findPath(splitZones [, ab], containedZones [a])
2008.09.05-20:22:44 eulerGraphWithEdgePath(c, [(ab:ab2,), (O3:ab2,), (O4:O3,), (O1:O4,), (O1:ab1,), (ab:ab1,)])
2008.09.05-20:23:48 findPath(splitZones [O], containedZones [])
2008.09.05-20:23:48 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-20:25:19 findPath(splitZones [O], containedZones [])
2008.09.05-20:25:19 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.05-20:25:20 findPath(splitZones [O, a], containedZones [])
2008.09.05-20:25:20 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2008.09.06-00:01:14 findPath(splitZones [O], containedZones [])
2008.09.06-00:01:14 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.06-00:01:15 findPath(splitZones [O, a], containedZones [])
2008.09.06-00:01:15 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2008.09.06-00:01:39 findPath(splitZones [, a], containedZones [])
2008.09.06-00:01:39 eulerGraphWithEdgePath(c, [(a:ab2,), (O3:ab2,), (O4:O3,), (O4:a2,), (a:a2,)])
2008.09.06-00:02:32 findPath(splitZones [, a], containedZones [ab, b])
2008.09.06-00:02:32 eulerGraphWithEdgePath(d, [(a:a1,), (O6:a1,), (O1:O6,), (O2:O1,), (O3:O2,), (O3:abc1,), (a:abc1,)])
2008.09.06-00:02:49 findPath(splitZones [a, O], containedZones [ab, b])
2008.09.06-00:02:50 eulerGraphWithEdgePath(d, [(a:abc1,), (O3:abc1,), (O3:O2,), (O2:O1,), (O1:O6,), (O6:a1,), (a:a1,)])
2008.09.06-00:03:07 findPath(splitZones [a, O], containedZones [ab, b])
2008.09.06-00:03:07 eulerGraphWithEdgePath(d, [(a:a1,), (O6:a1,), (O1:O6,), (O2:O1,), (O2:b2,), (abc1:b2,b), (a:abc1,)])
2008.09.19-12:36:42 findPath(splitZones [O], containedZones []) comparator TCL
2008.09.19-12:36:42 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.19-12:36:43 findPath(splitZones [O, a], containedZones []) comparator TCL
2008.09.19-12:36:43 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2008.09.19-12:38:20 findPath(splitZones [, a], containedZones [ab]) comparator CTL
2008.09.19-12:38:20 eulerGraphWithEdgePath(c, [(a1:ab1,a), (a:ab1,), (a:a2,), (O4:a2,), (O4:O3,), (O3:ab2,), (ab2:a1,a)])
2008.09.19-18:23:03 findPath(splitZones [O], containedZones []) comparator TCL
2008.09.19-18:23:03 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.19-18:23:04 findPath(splitZones [O, a], containedZones []) comparator TCL
2008.09.19-18:23:04 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2008.09.19-18:23:11 findPath(splitZones [O], containedZones []) comparator TCL
2008.09.19-18:23:11 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.09.19-18:23:12 findPath(splitZones [O, a], containedZones []) comparator TCL
2008.09.19-18:23:12 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2008.10.06-19:04:03 findPath(splitZones [O], containedZones []) comparator TCL
2008.10.06-19:04:04 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.10.06-19:04:04 findPath(splitZones [O, a], containedZones []) comparator TCL
2008.10.06-19:04:04 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2008.10.06-19:04:50 findPath(splitZones [O], containedZones []) comparator TCL
2008.10.06-19:04:50 eulerGraphWithEdgePath(a, [(O1:O1,)])
2008.10.06-19:04:51 findPath(splitZones [O, a], containedZones []) comparator TCL
2008.10.06-19:04:51 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-14:38:07 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-14:38:07 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-14:38:08 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-14:38:08 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-14:38:25 findPath(splitZones [a, b], containedZones [ab]) comparator TCL
2009.01.21-14:38:25 eulerGraphWithEdgePath(c, [(a:ab2,), (b:ab2,), (b:ab1,), (a:ab1,)])
2009.01.21-14:38:28 findPath(splitZones [a, b], containedZones [ab]) comparator TCL
2009.01.21-14:38:28 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:ab2,), (a:ab2,)])
2009.01.21-14:38:30 findPath(splitZones [a, b], containedZones [ab]) comparator TCL
2009.01.21-14:38:30 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:a1,a), (b:a1,), (b:ab1,), (a:ab1,)])
2009.01.21-18:41:57 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-18:41:57 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-18:41:58 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-18:41:58 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-18:42:13 findPath(splitZones [a, b], containedZones [ab]) comparator TCL
2009.01.21-18:42:13 eulerGraphWithEdgePath(c, [(a:ab2,), (b:ab2,), (b:ab1,), (a:ab1,)])
2009.01.21-18:42:17 findPath(splitZones [a, b], containedZones [ab]) comparator TCL
2009.01.21-18:42:17 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:ab2,), (a:ab2,)])
2009.01.21-18:42:19 findPath(splitZones [a, b], containedZones [ab]) comparator TCL
2009.01.21-18:42:19 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:a1,a), (b:a1,), (b:ab1,), (a:ab1,)])
2009.01.21-18:46:19 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-18:46:19 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-18:46:19 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-18:46:19 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-18:46:32 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:46:32 eulerGraphWithEdgePath(c, [(a:ab2,), (b:ab2,), (b:ab1,), (a:ab1,)])
2009.01.21-18:46:34 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:46:34 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:ab2,), (a:ab2,)])
2009.01.21-18:46:37 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:46:37 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:a1,a), (b:a1,), (b:ab1,), (a:ab1,)])
2009.01.21-18:49:20 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-18:49:20 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-18:49:20 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-18:49:20 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-18:49:31 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:49:31 eulerGraphWithEdgePath(c, [(a:ab2,), (b:ab2,), (b:ab1,), (a:ab1,)])
2009.01.21-18:49:33 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:49:33 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:ab2,), (a:ab2,)])
2009.01.21-18:49:35 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:49:35 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:a1,a), (b:a1,), (b:ab1,), (a:ab1,)])
2009.01.21-18:54:47 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-18:54:47 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-18:54:48 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-18:54:48 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-18:55:00 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:55:00 eulerGraphWithEdgePath(c, [(a:ab2,), (b:ab2,), (b:ab1,), (a:ab1,)])
2009.01.21-18:55:03 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:55:03 eulerGraphWithEdgePath(c, [(a:ab1,), (b:ab1,), (b:ab2,), (a:ab2,)])
2009.01.21-18:55:06 findPath(splitZones [a, b], containedZones [ab]) comparator CTL
2009.01.21-18:55:06 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:a1,a), (b:a1,), (b:ab1,), (a:ab1,)])
2009.01.21-19:32:05 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-19:32:05 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-19:32:06 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-19:32:06 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-19:32:16 findPath(splitZones [a], containedZones []) comparator CTL
2009.01.21-19:32:16 eulerGraphWithEdgePath(c, [(a:ab2,), (ab2:b1,b), (a:b1,)])
2009.01.21-19:32:38 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.21-19:32:38 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.21-19:32:38 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.21-19:32:38 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.21-19:32:53 findPath(splitZones [], containedZones []) comparator CTL
2009.01.21-19:32:53 eulerGraphWithEdgePath(c, [(O4:a2,), (a2:ab2,a), (O3:ab2,), (O4:O3,)])
2009.01.22-06:28:55 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.22-06:28:55 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.22-06:28:55 findPath(splitZones [O, a], containedZones []) comparator TCL
2009.01.22-06:28:55 eulerGraphWithEdgePath(b, [(O2:a2,), (a:a2,), (a:a1,), (O1:a1,), (O1:O2,)])
2009.01.23-07:23:20 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:23:20 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:46:00 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:46:00 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:46:20 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:46:20 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:47:35 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:47:35 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:47:52 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:47:52 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:48:53 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:48:53 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:49:26 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:49:26 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:49:49 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:49:49 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:49:58 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:49:58 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:50:47 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:50:47 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:53:23 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:53:23 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-07:59:52 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-07:59:52 eulerGraphWithEdgePath(a, [(O1:O1,)])
2009.01.23-08:00:08 findPath(splitZones [O], containedZones []) comparator TCL
2009.01.23-08:00:08 eulerGraphWithEdgePath(a, [(O1:O1,)])