This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
couchdicom_import.log
5038 lines (5038 loc) · 343 KB
/
couchdicom_import.log
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
Attempting to read file 0 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240001
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240001 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240001 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240001 to database; Error: 409 Conflict
Iteration time for file 0 finished in 0.633801 s
Attempting to read file 1 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240002
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240002 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240002 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240002 to database; Error: 409 Conflict
Iteration time for file 1 finished in 0.325194 s
Attempting to read file 2 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240003
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240003 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240003 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240003 to database; Error: 409 Conflict
Iteration time for file 2 finished in 0.306103 s
Attempting to read file 3 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240004
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240004 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240004 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240004 to database; Error: 409 Conflict
Iteration time for file 3 finished in 0.282888 s
Attempting to read file 4 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240005
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240005 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240005 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240005 to database; Error: 409 Conflict
Iteration time for file 4 finished in 0.291251 s
Attempting to read file 5 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240006
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240006 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240006 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240006 to database; Error: 409 Conflict
Iteration time for file 5 finished in 0.307935 s
Attempting to read file 6 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240007
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240007 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240007 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240007 to database; Error: 409 Conflict
Iteration time for file 6 finished in 0.295766 s
Attempting to read file 7 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240008
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240008 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240008 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240008 to database; Error: 409 Conflict
Iteration time for file 7 finished in 0.296943 s
Attempting to read file 8 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240009
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240009 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240009 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240009 to database; Error: 409 Conflict
Iteration time for file 8 finished in 0.322821 s
Attempting to read file 9 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240010
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240010 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240010 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240010 to database; Error: 409 Conflict
Iteration time for file 9 finished in 0.284421 s
Attempting to read file 10 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240011
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240011 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240011 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240011 to database; Error: 409 Conflict
Iteration time for file 10 finished in 0.301816 s
Attempting to read file 11 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240012
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240012 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240012 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240012 to database; Error: 409 Conflict
Iteration time for file 11 finished in 0.29008 s
Attempting to read file 12 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240013
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240013 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240013 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240013 to database; Error: 409 Conflict
Iteration time for file 12 finished in 0.290409 s
Attempting to read file 13 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240014
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240014 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240014 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240014 to database; Error: 409 Conflict
Iteration time for file 13 finished in 0.334692 s
Attempting to read file 14 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240015
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240015 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240015 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240015 to database; Error: 409 Conflict
Iteration time for file 14 finished in 0.320769 s
Attempting to read file 15 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240016
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240016 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240016 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240016 to database; Error: 409 Conflict
Iteration time for file 15 finished in 0.331683 s
Attempting to read file 16 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240017
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240017 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240017 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240017 to database; Error: 409 Conflict
Iteration time for file 16 finished in 0.347159 s
Attempting to read file 17 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240018
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240018 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240018 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240018 to database; Error: 409 Conflict
Iteration time for file 17 finished in 0.286207 s
Attempting to read file 18 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240019
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240019 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240019 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240019 to database; Error: 409 Conflict
Iteration time for file 18 finished in 0.290487 s
Attempting to read file 19 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240020
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240020 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240020 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240020 to database; Error: 409 Conflict
Iteration time for file 19 finished in 0.287664 s
Attempting to read file 20 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240021
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240021 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240021 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240021 to database; Error: 409 Conflict
Iteration time for file 20 finished in 0.307126 s
Attempting to read file 21 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240022
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240022 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240022 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240022 to database; Error: 409 Conflict
Iteration time for file 21 finished in 0.274725 s
Attempting to read file 22 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240023
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240023 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240023 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240023 to database; Error: 409 Conflict
Iteration time for file 22 finished in 0.334197 s
Attempting to read file 23 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240024
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240024 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240024 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240024 to database; Error: 409 Conflict
Iteration time for file 23 finished in 0.271091 s
Attempting to read file 24 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240025
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240025 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240025 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240025 to database; Error: 409 Conflict
Iteration time for file 24 finished in 0.291803 s
Attempting to read file 25 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240026
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240026 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240026 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240026 to database; Error: 409 Conflict
Iteration time for file 25 finished in 0.325803 s
Attempting to read file 26 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240027
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240027 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240027 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240027 to database; Error: 409 Conflict
Iteration time for file 26 finished in 0.336551 s
Attempting to read file 27 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240028
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240028 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240028 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240028 to database; Error: 409 Conflict
Iteration time for file 27 finished in 0.283523 s
Attempting to read file 28 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240029
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240029 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240029 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240029 to database; Error: 409 Conflict
Iteration time for file 28 finished in 0.275356 s
Attempting to read file 29 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240030
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240030 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240030 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240030 to database; Error: 409 Conflict
Iteration time for file 29 finished in 0.270148 s
Attempting to read file 30 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240031
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240031 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240031 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240031 to database; Error: 409 Conflict
Iteration time for file 30 finished in 0.259798 s
Attempting to read file 31 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240032
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240032 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240032 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240032 to database; Error: 409 Conflict
Iteration time for file 31 finished in 0.252613 s
Attempting to read file 32 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240033
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240033 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240033 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240033 to database; Error: 409 Conflict
Iteration time for file 32 finished in 0.270052 s
Attempting to read file 33 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240034
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240034 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240034 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240034 to database; Error: 409 Conflict
Iteration time for file 33 finished in 0.288753 s
Attempting to read file 34 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240035
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240035 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240035 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240035 to database; Error: 409 Conflict
Iteration time for file 34 finished in 0.272963 s
Attempting to read file 35 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240036
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240036 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240036 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240036 to database; Error: 409 Conflict
Iteration time for file 35 finished in 0.293689 s
Attempting to read file 36 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240037
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240037 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240037 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240037 to database; Error: 409 Conflict
Iteration time for file 36 finished in 0.270171 s
Attempting to read file 37 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240038
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240038 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240038 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240038 to database; Error: 409 Conflict
Iteration time for file 37 finished in 0.252809 s
Attempting to read file 38 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240039
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240039 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240039 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240039 to database; Error: 409 Conflict
Iteration time for file 38 finished in 0.25456 s
Attempting to read file 39 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240040
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240040 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240040 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240040 to database; Error: 409 Conflict
Iteration time for file 39 finished in 0.315655 s
Attempting to read file 40 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240041
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240041 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240041 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240041 to database; Error: 409 Conflict
Iteration time for file 40 finished in 0.284912 s
Attempting to read file 41 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240042
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240042 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240042 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240042 to database; Error: 409 Conflict
Iteration time for file 41 finished in 0.276389 s
Attempting to read file 42 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240043
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240043 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240043 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240043 to database; Error: 409 Conflict
Iteration time for file 42 finished in 0.268905 s
Attempting to read file 43 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240044
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240044 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240044 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240044 to database; Error: 409 Conflict
Iteration time for file 43 finished in 0.268683 s
Attempting to read file 44 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240045
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240045 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240045 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240045 to database; Error: 409 Conflict
Iteration time for file 44 finished in 0.368471 s
Attempting to read file 45 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240046
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240046 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240046 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/3/00240046 to database; Error: 409 Conflict
Iteration time for file 45 finished in 0.306362 s
Attempting to read file 46 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250001
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250001 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250001 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250001 to database; Error: 409 Conflict
Iteration time for file 46 finished in 0.309495 s
Attempting to read file 47 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250002
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250002 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250002 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250002 to database; Error: 409 Conflict
Iteration time for file 47 finished in 0.654109 s
Attempting to read file 48 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250003
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250003 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250003 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250003 to database; Error: 409 Conflict
Iteration time for file 48 finished in 0.481082 s
Attempting to read file 49 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250004
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250004 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250004 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250004 to database; Error: 409 Conflict
Iteration time for file 49 finished in 0.391389 s
Attempting to read file 50 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250005
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250005 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250005 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250005 to database; Error: 409 Conflict
Iteration time for file 50 finished in 0.255531 s
Attempting to read file 51 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250006
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250006 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250006 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250006 to database; Error: 409 Conflict
Iteration time for file 51 finished in 0.27524 s
Attempting to read file 52 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250007
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250007 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250007 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250007 to database; Error: 409 Conflict
Iteration time for file 52 finished in 0.267742 s
Attempting to read file 53 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250008
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250008 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250008 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250008 to database; Error: 409 Conflict
Iteration time for file 53 finished in 0.236394 s
Attempting to read file 54 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250009
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250009 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250009 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250009 to database; Error: 409 Conflict
Iteration time for file 54 finished in 0.356519 s
Attempting to read file 55 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250010
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250010 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250010 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250010 to database; Error: 409 Conflict
Iteration time for file 55 finished in 0.282723 s
Attempting to read file 56 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250011
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250011 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250011 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250011 to database; Error: 409 Conflict
Iteration time for file 56 finished in 0.319369 s
Attempting to read file 57 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250012
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250012 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250012 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250012 to database; Error: 409 Conflict
Iteration time for file 57 finished in 0.357467 s
Attempting to read file 58 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250013
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250013 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250013 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250013 to database; Error: 409 Conflict
Iteration time for file 58 finished in 0.252173 s
Attempting to read file 59 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250014
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250014 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250014 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250014 to database; Error: 409 Conflict
Iteration time for file 59 finished in 0.265501 s
Attempting to read file 60 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250015
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250015 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250015 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250015 to database; Error: 409 Conflict
Iteration time for file 60 finished in 0.278886 s
Attempting to read file 61 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250016
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250016 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250016 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250016 to database; Error: 409 Conflict
Iteration time for file 61 finished in 0.259872 s
Attempting to read file 62 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250017
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250017 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250017 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250017 to database; Error: 409 Conflict
Iteration time for file 62 finished in 0.389591 s
Attempting to read file 63 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250018
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250018 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250018 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250018 to database; Error: 409 Conflict
Iteration time for file 63 finished in 0.291986 s
Attempting to read file 64 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250019
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250019 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250019 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250019 to database; Error: 409 Conflict
Iteration time for file 64 finished in 0.273845 s
Attempting to read file 65 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250020
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250020 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250020 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250020 to database; Error: 409 Conflict
Iteration time for file 65 finished in 0.309783 s
Attempting to read file 66 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250021
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250021 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250021 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250021 to database; Error: 409 Conflict
Iteration time for file 66 finished in 0.318391 s
Attempting to read file 67 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250022
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250022 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250022 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250022 to database; Error: 409 Conflict
Iteration time for file 67 finished in 0.247777 s
Attempting to read file 68 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250023
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250023 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250023 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250023 to database; Error: 409 Conflict
Iteration time for file 68 finished in 0.281252 s
Attempting to read file 69 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250024
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250024 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250024 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250024 to database; Error: 409 Conflict
Iteration time for file 69 finished in 0.318719 s
Attempting to read file 70 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250025
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250025 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250025 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250025 to database; Error: 409 Conflict
Iteration time for file 70 finished in 0.252962 s
Attempting to read file 71 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250026
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250026 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250026 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250026 to database; Error: 409 Conflict
Iteration time for file 71 finished in 0.281033 s
Attempting to read file 72 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250027
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250027 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250027 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250027 to database; Error: 409 Conflict
Iteration time for file 72 finished in 0.294631 s
Attempting to read file 73 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250028
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250028 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250028 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250028 to database; Error: 409 Conflict
Iteration time for file 73 finished in 0.244261 s
Attempting to read file 74 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250029
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250029 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250029 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250029 to database; Error: 409 Conflict
Iteration time for file 74 finished in 0.281069 s
Attempting to read file 75 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250030
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250030 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250030 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250030 to database; Error: 409 Conflict
Iteration time for file 75 finished in 0.33066 s
Attempting to read file 76 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250031
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250031 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250031 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250031 to database; Error: 409 Conflict
Iteration time for file 76 finished in 0.25537 s
Attempting to read file 77 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250032
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250032 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250032 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250032 to database; Error: 409 Conflict
Iteration time for file 77 finished in 0.284286 s
Attempting to read file 78 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250033
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250033 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250033 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250033 to database; Error: 409 Conflict
Iteration time for file 78 finished in 0.267902 s
Attempting to read file 79 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250034
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250034 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250034 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250034 to database; Error: 409 Conflict
Iteration time for file 79 finished in 0.337468 s
Attempting to read file 80 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250035
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250035 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250035 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250035 to database; Error: 409 Conflict
Iteration time for file 80 finished in 0.384787 s
Attempting to read file 81 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250036
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250036 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250036 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250036 to database; Error: 409 Conflict
Iteration time for file 81 finished in 0.381834 s
Attempting to read file 82 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250037
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250037 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250037 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250037 to database; Error: 409 Conflict
Iteration time for file 82 finished in 0.326072 s
Attempting to read file 83 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250038
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250038 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250038 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250038 to database; Error: 409 Conflict
Iteration time for file 83 finished in 0.335002 s
Attempting to read file 84 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250039
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250039 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250039 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250039 to database; Error: 409 Conflict
Iteration time for file 84 finished in 0.327148 s
Attempting to read file 85 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250040
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250040 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250040 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250040 to database; Error: 409 Conflict
Iteration time for file 85 finished in 0.269697 s
Attempting to read file 86 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250041
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250041 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250041 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250041 to database; Error: 409 Conflict
Iteration time for file 86 finished in 0.2969 s
Attempting to read file 87 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250042
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250042 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250042 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250042 to database; Error: 409 Conflict
Iteration time for file 87 finished in 0.285128 s
Attempting to read file 88 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250043
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250043 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250043 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250043 to database; Error: 409 Conflict
Iteration time for file 88 finished in 0.287884 s
Attempting to read file 89 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250044
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250044 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250044 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250044 to database; Error: 409 Conflict
Iteration time for file 89 finished in 0.315654 s
Attempting to read file 90 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250045
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250045 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250045 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250045 to database; Error: 409 Conflict
Iteration time for file 90 finished in 0.235869 s
Attempting to read file 91 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250046
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250046 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250046 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/4/00250046 to database; Error: 409 Conflict
Iteration time for file 91 finished in 0.306467 s
Attempting to read file 92 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260001
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260001 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260001 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260001 to database; Error: 409 Conflict
Iteration time for file 92 finished in 0.271347 s
Attempting to read file 93 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260002
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260002 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260002 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260002 to database; Error: 409 Conflict
Iteration time for file 93 finished in 0.429036 s
Attempting to read file 94 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260003
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260003 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260003 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260003 to database; Error: 409 Conflict
Iteration time for file 94 finished in 0.26322 s
Attempting to read file 95 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260004
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260004 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260004 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260004 to database; Error: 409 Conflict
Iteration time for file 95 finished in 0.297124 s
Attempting to read file 96 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260005
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260005 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260005 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260005 to database; Error: 409 Conflict
Iteration time for file 96 finished in 0.292006 s
Attempting to read file 97 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260006
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260006 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260006 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260006 to database; Error: 409 Conflict
Iteration time for file 97 finished in 0.272168 s
Attempting to read file 98 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260007
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260007 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260007 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260007 to database; Error: 409 Conflict
Iteration time for file 98 finished in 0.27378 s
Attempting to read file 99 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260008
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260008 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260008 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260008 to database; Error: 409 Conflict
Iteration time for file 99 finished in 0.249125 s
Attempting to read file 100 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260009
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260009 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260009 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260009 to database; Error: 409 Conflict
Iteration time for file 100 finished in 0.275212 s
Attempting to read file 101 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260010
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260010 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260010 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260010 to database; Error: 409 Conflict
Iteration time for file 101 finished in 0.299372 s
Attempting to read file 102 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260011
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260011 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260011 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260011 to database; Error: 409 Conflict
Iteration time for file 102 finished in 0.327187 s
Attempting to read file 103 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260012
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260012 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260012 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260012 to database; Error: 409 Conflict
Iteration time for file 103 finished in 0.261537 s
Attempting to read file 104 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260013
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260013 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260013 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260013 to database; Error: 409 Conflict
Iteration time for file 104 finished in 0.329929 s
Attempting to read file 105 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260014
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260014 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260014 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260014 to database; Error: 409 Conflict
Iteration time for file 105 finished in 0.239002 s
Attempting to read file 106 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260015
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260015 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260015 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260015 to database; Error: 409 Conflict
Iteration time for file 106 finished in 0.298745 s
Attempting to read file 107 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260016
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260016 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260016 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260016 to database; Error: 409 Conflict
Iteration time for file 107 finished in 0.262973 s
Attempting to read file 108 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260017
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260017 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260017 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260017 to database; Error: 409 Conflict
Iteration time for file 108 finished in 0.372133 s
Attempting to read file 109 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260018
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260018 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260018 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260018 to database; Error: 409 Conflict
Iteration time for file 109 finished in 0.278298 s
Attempting to read file 110 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260019
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260019 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260019 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260019 to database; Error: 409 Conflict
Iteration time for file 110 finished in 0.341824 s
Attempting to read file 111 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260020
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260020 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260020 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260020 to database; Error: 409 Conflict
Iteration time for file 111 finished in 0.255248 s
Attempting to read file 112 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260021
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260021 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260021 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260021 to database; Error: 409 Conflict
Iteration time for file 112 finished in 0.290416 s
Attempting to read file 113 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260022
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260022 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260022 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260022 to database; Error: 409 Conflict
Iteration time for file 113 finished in 0.291581 s
Attempting to read file 114 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260023
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260023 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260023 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260023 to database; Error: 409 Conflict
Iteration time for file 114 finished in 0.339087 s
Attempting to read file 115 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260024
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260024 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260024 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260024 to database; Error: 409 Conflict
Iteration time for file 115 finished in 0.293455 s
Attempting to read file 116 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260025
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260025 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260025 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260025 to database; Error: 409 Conflict
Iteration time for file 116 finished in 0.328373 s
Attempting to read file 117 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260026
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260026 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260026 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260026 to database; Error: 409 Conflict
Iteration time for file 117 finished in 0.271256 s
Attempting to read file 118 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260027
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260027 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260027 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260027 to database; Error: 409 Conflict
Iteration time for file 118 finished in 0.303172 s
Attempting to read file 119 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260028
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260028 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260028 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260028 to database; Error: 409 Conflict
Iteration time for file 119 finished in 0.275802 s
Attempting to read file 120 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260029
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260029 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260029 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260029 to database; Error: 409 Conflict
Iteration time for file 120 finished in 0.297243 s
Attempting to read file 121 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260030
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260030 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260030 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260030 to database; Error: 409 Conflict
Iteration time for file 121 finished in 0.237933 s
Attempting to read file 122 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260031
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260031 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260031 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260031 to database; Error: 409 Conflict
Iteration time for file 122 finished in 0.323105 s
Attempting to read file 123 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260032
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260032 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260032 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260032 to database; Error: 409 Conflict
Iteration time for file 123 finished in 0.31893 s
Attempting to read file 124 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260033
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260033 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260033 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260033 to database; Error: 409 Conflict
Iteration time for file 124 finished in 0.282125 s
Attempting to read file 125 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260034
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260034 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260034 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260034 to database; Error: 409 Conflict
Iteration time for file 125 finished in 0.268835 s
Attempting to read file 126 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260035
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260035 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260035 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260035 to database; Error: 409 Conflict
Iteration time for file 126 finished in 0.291207 s
Attempting to read file 127 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260036
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260036 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260036 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260036 to database; Error: 409 Conflict
Iteration time for file 127 finished in 0.265713 s
Attempting to read file 128 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260037
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260037 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260037 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260037 to database; Error: 409 Conflict
Iteration time for file 128 finished in 0.300704 s
Attempting to read file 129 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260038
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260038 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260038 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260038 to database; Error: 409 Conflict
Iteration time for file 129 finished in 0.248065 s
Attempting to read file 130 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260039
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260039 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260039 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260039 to database; Error: 409 Conflict
Iteration time for file 130 finished in 0.325813 s
Attempting to read file 131 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260040
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260040 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260040 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260040 to database; Error: 409 Conflict
Iteration time for file 131 finished in 0.250428 s
Attempting to read file 132 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260041
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260041 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260041 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260041 to database; Error: 409 Conflict
Iteration time for file 132 finished in 0.306838 s
Attempting to read file 133 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260042
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260042 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260042 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260042 to database; Error: 409 Conflict
Iteration time for file 133 finished in 0.275895 s
Attempting to read file 134 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260043
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260043 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260043 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260043 to database; Error: 409 Conflict
Iteration time for file 134 finished in 0.335296 s
Attempting to read file 135 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260044
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260044 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260044 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260044 to database; Error: 409 Conflict
Iteration time for file 135 finished in 0.270646 s
Attempting to read file 136 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260045
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260045 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260045 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260045 to database; Error: 409 Conflict
Iteration time for file 136 finished in 0.476249 s
Attempting to read file 137 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260046
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260046 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260046 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260046 to database; Error: 409 Conflict
Iteration time for file 137 finished in 0.245899 s
Attempting to read file 138 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260047
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260047 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260047 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260047 to database; Error: 409 Conflict
Iteration time for file 138 finished in 0.269453 s
Attempting to read file 139 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260048
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260048 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260048 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260048 to database; Error: 409 Conflict
Iteration time for file 139 finished in 0.264224 s
Attempting to read file 140 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260049
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260049 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260049 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260049 to database; Error: 409 Conflict
Iteration time for file 140 finished in 0.297414 s
Attempting to read file 141 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260050
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260050 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260050 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260050 to database; Error: 409 Conflict
Iteration time for file 141 finished in 0.241101 s
Attempting to read file 142 ...
The DICOM file has been successfully parsed.
Successfully read file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260051
Attempting to load pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260051 ...
Pixel data for file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260051 read successfully
Could not save file /Users/simonmd/Desktop/DATASETS/BOUVIER/1/5/00260051 to database; Error: 409 Conflict