Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pipeline.svg 69 KB

You have to be logged in to leave a comment. Sign In
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
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <!-- Generated by graphviz version 2.38.0 (20140413.2041)
  5. -->
  6. <!-- Title: %3 Pages: 1 -->
  7. <svg width="5218pt" height="1124pt"
  8. viewBox="0.00 0.00 5217.92 1124.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  9. <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1120)">
  10. <title>%3</title>
  11. <polygon fill="white" stroke="none" points="-4,4 -4,-1120 5213.92,-1120 5213.92,4 -4,4"/>
  12. <!-- integrate/author&#45;info.status.dvc -->
  13. <g id="node1" class="node"><title>integrate/author&#45;info.status.dvc</title>
  14. <ellipse fill="none" stroke="black" cx="2632.29" cy="-90" rx="122.678" ry="18"/>
  15. <text text-anchor="middle" x="2632.29" y="-86.3" font-family="Times New Roman,serif" font-size="14.00">integrate/author&#45;info.status.dvc</text>
  16. </g>
  17. <!-- Dvcfile -->
  18. <g id="node2" class="node"><title>Dvcfile</title>
  19. <ellipse fill="none" stroke="black" cx="2632.29" cy="-18" rx="36.2938" ry="18"/>
  20. <text text-anchor="middle" x="2632.29" y="-14.3" font-family="Times New Roman,serif" font-size="14.00">Dvcfile</text>
  21. </g>
  22. <!-- integrate/author&#45;info.status.dvc&#45;&gt;Dvcfile -->
  23. <g id="edge1" class="edge"><title>integrate/author&#45;info.status.dvc&#45;&gt;Dvcfile</title>
  24. <path fill="none" stroke="black" d="M2632.29,-71.6966C2632.29,-63.9827 2632.29,-54.7125 2632.29,-46.1124"/>
  25. <polygon fill="black" stroke="black" points="2635.79,-46.1043 2632.29,-36.1043 2628.79,-46.1044 2635.79,-46.1043"/>
  26. </g>
  27. <!-- integrate/author&#45;info.dvc -->
  28. <g id="node3" class="node"><title>integrate/author&#45;info.dvc</title>
  29. <ellipse fill="none" stroke="black" cx="2632.29" cy="-162" rx="99.3824" ry="18"/>
  30. <text text-anchor="middle" x="2632.29" y="-158.3" font-family="Times New Roman,serif" font-size="14.00">integrate/author&#45;info.dvc</text>
  31. </g>
  32. <!-- integrate/author&#45;info.dvc&#45;&gt;integrate/author&#45;info.status.dvc -->
  33. <g id="edge2" class="edge"><title>integrate/author&#45;info.dvc&#45;&gt;integrate/author&#45;info.status.dvc</title>
  34. <path fill="none" stroke="black" d="M2632.29,-143.697C2632.29,-135.983 2632.29,-126.712 2632.29,-118.112"/>
  35. <polygon fill="black" stroke="black" points="2635.79,-118.104 2632.29,-108.104 2628.79,-118.104 2635.79,-118.104"/>
  36. </g>
  37. <!-- schemas/common&#45;schema.status.dvc -->
  38. <g id="node4" class="node"><title>schemas/common&#45;schema.status.dvc</title>
  39. <ellipse fill="none" stroke="black" cx="3686.29" cy="-954" rx="146.474" ry="18"/>
  40. <text text-anchor="middle" x="3686.29" y="-950.3" font-family="Times New Roman,serif" font-size="14.00">schemas/common&#45;schema.status.dvc</text>
  41. </g>
  42. <!-- schemas.dvc -->
  43. <g id="node5" class="node"><title>schemas.dvc</title>
  44. <ellipse fill="none" stroke="black" cx="3599.29" cy="-738" rx="57.6901" ry="18"/>
  45. <text text-anchor="middle" x="3599.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">schemas.dvc</text>
  46. </g>
  47. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  48. <g id="edge3" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  49. <path fill="none" stroke="black" d="M3706.19,-936C3715.75,-926.508 3726.21,-913.823 3731.29,-900 3747.83,-854.943 3758.17,-831.765 3731.29,-792 3715.53,-768.689 3687.65,-755.63 3661.56,-748.314"/>
  50. <polygon fill="black" stroke="black" points="3662.23,-744.874 3651.67,-745.782 3660.49,-751.655 3662.23,-744.874"/>
  51. </g>
  52. <!-- schemas/loc&#45;mds&#45;schema.dvc -->
  53. <g id="node13" class="node"><title>schemas/loc&#45;mds&#45;schema.dvc</title>
  54. <ellipse fill="none" stroke="black" cx="2389.29" cy="-882" rx="120.479" ry="18"/>
  55. <text text-anchor="middle" x="2389.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/loc&#45;mds&#45;schema.dvc</text>
  56. </g>
  57. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/loc&#45;mds&#45;schema.dvc -->
  58. <g id="edge8" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/loc&#45;mds&#45;schema.dvc</title>
  59. <path fill="none" stroke="black" d="M3555.39,-945.935C3303.49,-932.34 2754.7,-902.722 2510.58,-889.546"/>
  60. <polygon fill="black" stroke="black" points="2510.42,-886.033 2500.25,-888.989 2510.05,-893.023 2510.42,-886.033"/>
  61. </g>
  62. <!-- schemas/ol&#45;schema.dvc -->
  63. <g id="node14" class="node"><title>schemas/ol&#45;schema.dvc</title>
  64. <ellipse fill="none" stroke="black" cx="3040.29" cy="-882" rx="97.4827" ry="18"/>
  65. <text text-anchor="middle" x="3040.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/ol&#45;schema.dvc</text>
  66. </g>
  67. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/ol&#45;schema.dvc -->
  68. <g id="edge9" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/ol&#45;schema.dvc</title>
  69. <path fill="none" stroke="black" d="M3580.34,-941.519C3455.65,-928.008 3250.64,-905.794 3132.32,-892.973"/>
  70. <polygon fill="black" stroke="black" points="3132.52,-889.474 3122.2,-891.876 3131.77,-896.433 3132.52,-889.474"/>
  71. </g>
  72. <!-- schemas/az&#45;schema.dvc -->
  73. <g id="node15" class="node"><title>schemas/az&#45;schema.dvc</title>
  74. <ellipse fill="none" stroke="black" cx="4159.29" cy="-882" rx="98.5829" ry="18"/>
  75. <text text-anchor="middle" x="4159.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/az&#45;schema.dvc</text>
  76. </g>
  77. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/az&#45;schema.dvc -->
  78. <g id="edge4" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/az&#45;schema.dvc</title>
  79. <path fill="none" stroke="black" d="M3775.81,-939.751C3861.9,-927.011 3991.03,-907.9 4075.24,-895.438"/>
  80. <polygon fill="black" stroke="black" points="4075.9,-898.879 4085.28,-893.953 4074.87,-891.954 4075.9,-898.879"/>
  81. </g>
  82. <!-- schemas/bx&#45;schema.dvc -->
  83. <g id="node16" class="node"><title>schemas/bx&#45;schema.dvc</title>
  84. <ellipse fill="none" stroke="black" cx="3622.29" cy="-882" rx="100.182" ry="18"/>
  85. <text text-anchor="middle" x="3622.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/bx&#45;schema.dvc</text>
  86. </g>
  87. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/bx&#45;schema.dvc -->
  88. <g id="edge5" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/bx&#45;schema.dvc</title>
  89. <path fill="none" stroke="black" d="M3670.79,-936.055C3662.93,-927.457 3653.24,-916.857 3644.59,-907.397"/>
  90. <polygon fill="black" stroke="black" points="3646.97,-904.808 3637.64,-899.789 3641.8,-909.531 3646.97,-904.808"/>
  91. </g>
  92. <!-- schemas/gr&#45;schema.dvc -->
  93. <g id="node17" class="node"><title>schemas/gr&#45;schema.dvc</title>
  94. <ellipse fill="none" stroke="black" cx="1285.29" cy="-882" rx="98.2828" ry="18"/>
  95. <text text-anchor="middle" x="1285.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/gr&#45;schema.dvc</text>
  96. </g>
  97. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/gr&#45;schema.dvc -->
  98. <g id="edge6" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/gr&#45;schema.dvc</title>
  99. <path fill="none" stroke="black" d="M3543.15,-950.164C3212.31,-943.408 2369.02,-925.039 1664.29,-900 1571.05,-896.687 1464.97,-891.836 1388.79,-888.163"/>
  100. <polygon fill="black" stroke="black" points="1388.88,-884.663 1378.72,-887.676 1388.54,-891.655 1388.88,-884.663"/>
  101. </g>
  102. <!-- schemas/viaf&#45;schema.dvc -->
  103. <g id="node18" class="node"><title>schemas/viaf&#45;schema.dvc</title>
  104. <ellipse fill="none" stroke="black" cx="4418.29" cy="-882" rx="103.982" ry="18"/>
  105. <text text-anchor="middle" x="4418.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/viaf&#45;schema.dvc</text>
  106. </g>
  107. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/viaf&#45;schema.dvc -->
  108. <g id="edge10" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/viaf&#45;schema.dvc</title>
  109. <path fill="none" stroke="black" d="M3802.93,-943.089C3920.29,-932.946 4106.44,-916.389 4267.29,-900 4285.75,-898.119 4305.47,-895.987 4324.36,-893.886"/>
  110. <polygon fill="black" stroke="black" points="4324.91,-897.347 4334.46,-892.757 4324.13,-890.39 4324.91,-897.347"/>
  111. </g>
  112. <!-- schemas/loc&#45;id&#45;schema.dvc -->
  113. <g id="node78" class="node"><title>schemas/loc&#45;id&#45;schema.dvc</title>
  114. <ellipse fill="none" stroke="black" cx="3901.29" cy="-882" rx="111.581" ry="18"/>
  115. <text text-anchor="middle" x="3901.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">schemas/loc&#45;id&#45;schema.dvc</text>
  116. </g>
  117. <!-- schemas/common&#45;schema.status.dvc&#45;&gt;schemas/loc&#45;id&#45;schema.dvc -->
  118. <g id="edge7" class="edge"><title>schemas/common&#45;schema.status.dvc&#45;&gt;schemas/loc&#45;id&#45;schema.dvc</title>
  119. <path fill="none" stroke="black" d="M3735.34,-937.028C3767.72,-926.488 3810.25,-912.64 3844.15,-901.602"/>
  120. <polygon fill="black" stroke="black" points="3845.49,-904.846 3853.92,-898.422 3843.33,-898.19 3845.49,-904.846"/>
  121. </g>
  122. <!-- schemas/loc&#45;mds&#45;schema.status.dvc -->
  123. <g id="node6" class="node"><title>schemas/loc&#45;mds&#45;schema.status.dvc</title>
  124. <ellipse fill="none" stroke="black" cx="2089.29" cy="-810" rx="143.775" ry="18"/>
  125. <text text-anchor="middle" x="2089.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/loc&#45;mds&#45;schema.status.dvc</text>
  126. </g>
  127. <!-- schemas/loc&#45;mds&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  128. <g id="edge11" class="edge"><title>schemas/loc&#45;mds&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  129. <path fill="none" stroke="black" d="M2187.3,-796.833C2205.23,-794.949 2223.8,-793.226 2241.29,-792 2799.26,-752.881 2942.66,-811.006 3499.29,-756 3513.18,-754.627 3528.05,-752.475 3541.97,-750.157"/>
  130. <polygon fill="black" stroke="black" points="3542.65,-753.593 3551.91,-748.449 3541.46,-746.694 3542.65,-753.593"/>
  131. </g>
  132. <!-- import/loc&#45;mds&#45;books.dvc -->
  133. <g id="node41" class="node"><title>import/loc&#45;mds&#45;books.dvc</title>
  134. <ellipse fill="none" stroke="black" cx="2089.29" cy="-738" rx="108.581" ry="18"/>
  135. <text text-anchor="middle" x="2089.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/loc&#45;mds&#45;books.dvc</text>
  136. </g>
  137. <!-- schemas/loc&#45;mds&#45;schema.status.dvc&#45;&gt;import/loc&#45;mds&#45;books.dvc -->
  138. <g id="edge12" class="edge"><title>schemas/loc&#45;mds&#45;schema.status.dvc&#45;&gt;import/loc&#45;mds&#45;books.dvc</title>
  139. <path fill="none" stroke="black" d="M2089.29,-791.697C2089.29,-783.983 2089.29,-774.712 2089.29,-766.112"/>
  140. <polygon fill="black" stroke="black" points="2092.79,-766.104 2089.29,-756.104 2085.79,-766.104 2092.79,-766.104"/>
  141. </g>
  142. <!-- schemas/ol&#45;schema.status.dvc -->
  143. <g id="node7" class="node"><title>schemas/ol&#45;schema.status.dvc</title>
  144. <ellipse fill="none" stroke="black" cx="2923.29" cy="-810" rx="120.779" ry="18"/>
  145. <text text-anchor="middle" x="2923.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/ol&#45;schema.status.dvc</text>
  146. </g>
  147. <!-- schemas/ol&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  148. <g id="edge13" class="edge"><title>schemas/ol&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  149. <path fill="none" stroke="black" d="M3008.22,-797.186C3022.9,-795.322 3038.02,-793.513 3052.29,-792 3250.48,-770.973 3301.52,-780.726 3499.29,-756 3512.79,-754.311 3527.26,-752.093 3540.88,-749.818"/>
  150. <polygon fill="black" stroke="black" points="3541.82,-753.207 3551.09,-748.075 3540.65,-746.306 3541.82,-753.207"/>
  151. </g>
  152. <!-- import/ol&#45;authors.dvc -->
  153. <g id="node44" class="node"><title>import/ol&#45;authors.dvc</title>
  154. <ellipse fill="none" stroke="black" cx="2919.29" cy="-738" rx="89.8845" ry="18"/>
  155. <text text-anchor="middle" x="2919.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/ol&#45;authors.dvc</text>
  156. </g>
  157. <!-- schemas/ol&#45;schema.status.dvc&#45;&gt;import/ol&#45;authors.dvc -->
  158. <g id="edge14" class="edge"><title>schemas/ol&#45;schema.status.dvc&#45;&gt;import/ol&#45;authors.dvc</title>
  159. <path fill="none" stroke="black" d="M2922.3,-791.697C2921.86,-783.983 2921.33,-774.712 2920.84,-766.112"/>
  160. <polygon fill="black" stroke="black" points="2924.33,-765.888 2920.26,-756.104 2917.34,-766.288 2924.33,-765.888"/>
  161. </g>
  162. <!-- import/ol&#45;editions.dvc -->
  163. <g id="node47" class="node"><title>import/ol&#45;editions.dvc</title>
  164. <ellipse fill="none" stroke="black" cx="3164.29" cy="-738" rx="90.9839" ry="18"/>
  165. <text text-anchor="middle" x="3164.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/ol&#45;editions.dvc</text>
  166. </g>
  167. <!-- schemas/ol&#45;schema.status.dvc&#45;&gt;import/ol&#45;editions.dvc -->
  168. <g id="edge15" class="edge"><title>schemas/ol&#45;schema.status.dvc&#45;&gt;import/ol&#45;editions.dvc</title>
  169. <path fill="none" stroke="black" d="M2975.88,-793.725C3014.05,-782.636 3065.73,-767.626 3105.31,-756.13"/>
  170. <polygon fill="black" stroke="black" points="3106.47,-759.438 3115.09,-753.288 3104.51,-752.716 3106.47,-759.438"/>
  171. </g>
  172. <!-- import/ol&#45;works.dvc -->
  173. <g id="node50" class="node"><title>import/ol&#45;works.dvc</title>
  174. <ellipse fill="none" stroke="black" cx="2679.29" cy="-738" rx="85.2851" ry="18"/>
  175. <text text-anchor="middle" x="2679.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/ol&#45;works.dvc</text>
  176. </g>
  177. <!-- schemas/ol&#45;schema.status.dvc&#45;&gt;import/ol&#45;works.dvc -->
  178. <g id="edge16" class="edge"><title>schemas/ol&#45;schema.status.dvc&#45;&gt;import/ol&#45;works.dvc</title>
  179. <path fill="none" stroke="black" d="M2870.34,-793.811C2831.11,-782.555 2777.67,-767.224 2737.28,-755.638"/>
  180. <polygon fill="black" stroke="black" points="2738.15,-752.246 2727.57,-752.853 2736.22,-758.975 2738.15,-752.246"/>
  181. </g>
  182. <!-- schemas/az&#45;schema.status.dvc -->
  183. <g id="node8" class="node"><title>schemas/az&#45;schema.status.dvc</title>
  184. <ellipse fill="none" stroke="black" cx="4188.29" cy="-810" rx="122.379" ry="18"/>
  185. <text text-anchor="middle" x="4188.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/az&#45;schema.status.dvc</text>
  186. </g>
  187. <!-- schemas/az&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  188. <g id="edge17" class="edge"><title>schemas/az&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  189. <path fill="none" stroke="black" d="M4100.58,-797.448C4086.12,-795.592 4071.29,-793.718 4057.29,-792 3916.67,-774.741 3751.57,-756.013 3663.05,-746.097"/>
  190. <polygon fill="black" stroke="black" points="3663.23,-742.595 3652.9,-744.961 3662.45,-749.552 3663.23,-742.595"/>
  191. </g>
  192. <!-- import/az&#45;ratings.dvc -->
  193. <g id="node25" class="node"><title>import/az&#45;ratings.dvc</title>
  194. <ellipse fill="none" stroke="black" cx="4188.29" cy="-738" rx="87.9851" ry="18"/>
  195. <text text-anchor="middle" x="4188.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/az&#45;ratings.dvc</text>
  196. </g>
  197. <!-- schemas/az&#45;schema.status.dvc&#45;&gt;import/az&#45;ratings.dvc -->
  198. <g id="edge18" class="edge"><title>schemas/az&#45;schema.status.dvc&#45;&gt;import/az&#45;ratings.dvc</title>
  199. <path fill="none" stroke="black" d="M4188.29,-791.697C4188.29,-783.983 4188.29,-774.712 4188.29,-766.112"/>
  200. <polygon fill="black" stroke="black" points="4191.79,-766.104 4188.29,-756.104 4184.79,-766.104 4191.79,-766.104"/>
  201. </g>
  202. <!-- schemas/bx&#45;schema.status.dvc -->
  203. <g id="node9" class="node"><title>schemas/bx&#45;schema.status.dvc</title>
  204. <ellipse fill="none" stroke="black" cx="3599.29" cy="-810" rx="123.478" ry="18"/>
  205. <text text-anchor="middle" x="3599.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/bx&#45;schema.status.dvc</text>
  206. </g>
  207. <!-- schemas/bx&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  208. <g id="edge19" class="edge"><title>schemas/bx&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  209. <path fill="none" stroke="black" d="M3599.29,-791.697C3599.29,-783.983 3599.29,-774.712 3599.29,-766.112"/>
  210. <polygon fill="black" stroke="black" points="3602.79,-766.104 3599.29,-756.104 3595.79,-766.104 3602.79,-766.104"/>
  211. </g>
  212. <!-- import/bx&#45;ratings.dvc -->
  213. <g id="node27" class="node"><title>import/bx&#45;ratings.dvc</title>
  214. <ellipse fill="none" stroke="black" cx="3401.29" cy="-738" rx="89.0842" ry="18"/>
  215. <text text-anchor="middle" x="3401.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/bx&#45;ratings.dvc</text>
  216. </g>
  217. <!-- schemas/bx&#45;schema.status.dvc&#45;&gt;import/bx&#45;ratings.dvc -->
  218. <g id="edge20" class="edge"><title>schemas/bx&#45;schema.status.dvc&#45;&gt;import/bx&#45;ratings.dvc</title>
  219. <path fill="none" stroke="black" d="M3554.36,-793.116C3524.27,-782.478 3484.56,-768.442 3453.13,-757.33"/>
  220. <polygon fill="black" stroke="black" points="3454.26,-754.016 3443.67,-753.983 3451.93,-760.616 3454.26,-754.016"/>
  221. </g>
  222. <!-- schemas/gr&#45;schema.status.dvc -->
  223. <g id="node10" class="node"><title>schemas/gr&#45;schema.status.dvc</title>
  224. <ellipse fill="none" stroke="black" cx="1102.29" cy="-810" rx="121.578" ry="18"/>
  225. <text text-anchor="middle" x="1102.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/gr&#45;schema.status.dvc</text>
  226. </g>
  227. <!-- schemas/gr&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  228. <g id="edge21" class="edge"><title>schemas/gr&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  229. <path fill="none" stroke="black" d="M1185.3,-796.788C1201.2,-794.858 1217.73,-793.129 1233.29,-792 2237.88,-719.072 2496.32,-848.674 3499.29,-756 3513.26,-754.709 3528.21,-752.576 3542.19,-750.249"/>
  230. <polygon fill="black" stroke="black" points="3542.91,-753.677 3552.17,-748.529 3541.72,-746.778 3542.91,-753.677"/>
  231. </g>
  232. <!-- import/gr&#45;authors.dvc -->
  233. <g id="node30" class="node"><title>import/gr&#45;authors.dvc</title>
  234. <ellipse fill="none" stroke="black" cx="916.286" cy="-738" rx="90.1842" ry="18"/>
  235. <text text-anchor="middle" x="916.286" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;authors.dvc</text>
  236. </g>
  237. <!-- schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;authors.dvc -->
  238. <g id="edge22" class="edge"><title>schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;authors.dvc</title>
  239. <path fill="none" stroke="black" d="M1060.08,-793.116C1032.25,-782.642 995.666,-768.874 966.364,-757.847"/>
  240. <polygon fill="black" stroke="black" points="967.321,-754.467 956.729,-754.221 964.856,-761.019 967.321,-754.467"/>
  241. </g>
  242. <!-- import/gr&#45;books.dvc -->
  243. <g id="node33" class="node"><title>import/gr&#45;books.dvc</title>
  244. <ellipse fill="none" stroke="black" cx="1111.29" cy="-738" rx="86.3847" ry="18"/>
  245. <text text-anchor="middle" x="1111.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;books.dvc</text>
  246. </g>
  247. <!-- schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;books.dvc -->
  248. <g id="edge23" class="edge"><title>schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;books.dvc</title>
  249. <path fill="none" stroke="black" d="M1104.51,-791.697C1105.5,-783.983 1106.69,-774.712 1107.8,-766.112"/>
  250. <polygon fill="black" stroke="black" points="1111.28,-766.469 1109.09,-756.104 1104.34,-765.576 1111.28,-766.469"/>
  251. </g>
  252. <!-- import/gr&#45;interactions.dvc -->
  253. <g id="node36" class="node"><title>import/gr&#45;interactions.dvc</title>
  254. <ellipse fill="none" stroke="black" cx="703.286" cy="-738" rx="104.782" ry="18"/>
  255. <text text-anchor="middle" x="703.286" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;interactions.dvc</text>
  256. </g>
  257. <!-- schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;interactions.dvc -->
  258. <g id="edge24" class="edge"><title>schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;interactions.dvc</title>
  259. <path fill="none" stroke="black" d="M1027.24,-795.834C957.848,-783.66 855.014,-765.619 783.903,-753.143"/>
  260. <polygon fill="black" stroke="black" points="784.103,-749.625 773.649,-751.344 782.894,-756.52 784.103,-749.625"/>
  261. </g>
  262. <!-- import/gr&#45;works.dvc -->
  263. <g id="node39" class="node"><title>import/gr&#45;works.dvc</title>
  264. <ellipse fill="none" stroke="black" cx="1395.29" cy="-738" rx="85.5853" ry="18"/>
  265. <text text-anchor="middle" x="1395.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;works.dvc</text>
  266. </g>
  267. <!-- schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;works.dvc -->
  268. <g id="edge25" class="edge"><title>schemas/gr&#45;schema.status.dvc&#45;&gt;import/gr&#45;works.dvc</title>
  269. <path fill="none" stroke="black" d="M1163.35,-794.411C1212.31,-782.715 1280.82,-766.346 1330.69,-754.433"/>
  270. <polygon fill="black" stroke="black" points="1331.8,-757.765 1340.72,-752.037 1330.18,-750.957 1331.8,-757.765"/>
  271. </g>
  272. <!-- schemas/viaf&#45;schema.status.dvc -->
  273. <g id="node11" class="node"><title>schemas/viaf&#45;schema.status.dvc</title>
  274. <ellipse fill="none" stroke="black" cx="4456.29" cy="-810" rx="127.277" ry="18"/>
  275. <text text-anchor="middle" x="4456.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/viaf&#45;schema.status.dvc</text>
  276. </g>
  277. <!-- schemas/viaf&#45;schema.status.dvc&#45;&gt;schemas.dvc -->
  278. <g id="edge26" class="edge"><title>schemas/viaf&#45;schema.status.dvc&#45;&gt;schemas.dvc</title>
  279. <path fill="none" stroke="black" d="M4366.45,-797.201C4350.75,-795.324 4334.55,-793.508 4319.29,-792 4079.37,-768.3 3793.53,-750.294 3666.2,-742.805"/>
  280. <polygon fill="black" stroke="black" points="3666.03,-739.289 3655.84,-742.199 3665.62,-746.277 3666.03,-739.289"/>
  281. </g>
  282. <!-- import/viaf.dvc -->
  283. <g id="node53" class="node"><title>import/viaf.dvc</title>
  284. <ellipse fill="none" stroke="black" cx="4456.29" cy="-738" rx="66.0889" ry="18"/>
  285. <text text-anchor="middle" x="4456.29" y="-734.3" font-family="Times New Roman,serif" font-size="14.00">import/viaf.dvc</text>
  286. </g>
  287. <!-- schemas/viaf&#45;schema.status.dvc&#45;&gt;import/viaf.dvc -->
  288. <g id="edge27" class="edge"><title>schemas/viaf&#45;schema.status.dvc&#45;&gt;import/viaf.dvc</title>
  289. <path fill="none" stroke="black" d="M4456.29,-791.697C4456.29,-783.983 4456.29,-774.712 4456.29,-766.112"/>
  290. <polygon fill="black" stroke="black" points="4459.79,-766.104 4456.29,-756.104 4452.79,-766.104 4459.79,-766.104"/>
  291. </g>
  292. <!-- schemas/common&#45;schema.dvc -->
  293. <g id="node12" class="node"><title>schemas/common&#45;schema.dvc</title>
  294. <ellipse fill="none" stroke="black" cx="3686.29" cy="-1026" rx="122.678" ry="18"/>
  295. <text text-anchor="middle" x="3686.29" y="-1022.3" font-family="Times New Roman,serif" font-size="14.00">schemas/common&#45;schema.dvc</text>
  296. </g>
  297. <!-- schemas/common&#45;schema.dvc&#45;&gt;schemas/common&#45;schema.status.dvc -->
  298. <g id="edge28" class="edge"><title>schemas/common&#45;schema.dvc&#45;&gt;schemas/common&#45;schema.status.dvc</title>
  299. <path fill="none" stroke="black" d="M3686.29,-1007.7C3686.29,-999.983 3686.29,-990.712 3686.29,-982.112"/>
  300. <polygon fill="black" stroke="black" points="3689.79,-982.104 3686.29,-972.104 3682.79,-982.104 3689.79,-982.104"/>
  301. </g>
  302. <!-- schemas/loc&#45;mds&#45;schema.dvc&#45;&gt;schemas/loc&#45;mds&#45;schema.status.dvc -->
  303. <g id="edge29" class="edge"><title>schemas/loc&#45;mds&#45;schema.dvc&#45;&gt;schemas/loc&#45;mds&#45;schema.status.dvc</title>
  304. <path fill="none" stroke="black" d="M2327.13,-866.496C2279.66,-855.421 2214.08,-840.118 2163.8,-828.386"/>
  305. <polygon fill="black" stroke="black" points="2164.49,-824.954 2153.96,-826.09 2162.9,-831.771 2164.49,-824.954"/>
  306. </g>
  307. <!-- schemas/ol&#45;schema.dvc&#45;&gt;schemas/ol&#45;schema.status.dvc -->
  308. <g id="edge30" class="edge"><title>schemas/ol&#45;schema.dvc&#45;&gt;schemas/ol&#45;schema.status.dvc</title>
  309. <path fill="none" stroke="black" d="M3012.85,-864.588C2996.98,-855.091 2976.81,-843.02 2959.62,-832.741"/>
  310. <polygon fill="black" stroke="black" points="2961.33,-829.682 2950.95,-827.552 2957.74,-835.689 2961.33,-829.682"/>
  311. </g>
  312. <!-- schemas/az&#45;schema.dvc&#45;&gt;schemas/az&#45;schema.status.dvc -->
  313. <g id="edge31" class="edge"><title>schemas/az&#45;schema.dvc&#45;&gt;schemas/az&#45;schema.status.dvc</title>
  314. <path fill="none" stroke="black" d="M4166.45,-863.697C4169.72,-855.813 4173.66,-846.304 4177.29,-837.546"/>
  315. <polygon fill="black" stroke="black" points="4180.61,-838.683 4181.2,-828.104 4174.14,-836.003 4180.61,-838.683"/>
  316. </g>
  317. <!-- schemas/bx&#45;schema.dvc&#45;&gt;schemas/bx&#45;schema.status.dvc -->
  318. <g id="edge32" class="edge"><title>schemas/bx&#45;schema.dvc&#45;&gt;schemas/bx&#45;schema.status.dvc</title>
  319. <path fill="none" stroke="black" d="M3616.6,-863.697C3614.04,-855.898 3610.95,-846.509 3608.1,-837.829"/>
  320. <polygon fill="black" stroke="black" points="3611.35,-836.512 3604.91,-828.104 3604.7,-838.697 3611.35,-836.512"/>
  321. </g>
  322. <!-- schemas/gr&#45;schema.dvc&#45;&gt;schemas/gr&#45;schema.status.dvc -->
  323. <g id="edge33" class="edge"><title>schemas/gr&#45;schema.dvc&#45;&gt;schemas/gr&#45;schema.status.dvc</title>
  324. <path fill="none" stroke="black" d="M1244.67,-865.465C1217.8,-855.187 1182.35,-841.627 1153.55,-830.608"/>
  325. <polygon fill="black" stroke="black" points="1154.65,-827.281 1144.05,-826.977 1152.14,-833.819 1154.65,-827.281"/>
  326. </g>
  327. <!-- schemas/viaf&#45;schema.dvc&#45;&gt;schemas/viaf&#45;schema.status.dvc -->
  328. <g id="edge34" class="edge"><title>schemas/viaf&#45;schema.dvc&#45;&gt;schemas/viaf&#45;schema.status.dvc</title>
  329. <path fill="none" stroke="black" d="M4427.48,-864.055C4431.85,-856.007 4437.17,-846.205 4442.05,-837.226"/>
  330. <polygon fill="black" stroke="black" points="4445.21,-838.734 4446.91,-828.275 4439.06,-835.394 4445.21,-838.734"/>
  331. </g>
  332. <!-- data/BX&#45;CSV&#45;Dump.zip.dvc -->
  333. <g id="node19" class="node"><title>data/BX&#45;CSV&#45;Dump.zip.dvc</title>
  334. <ellipse fill="none" stroke="black" cx="3388.29" cy="-882" rx="116.18" ry="18"/>
  335. <text text-anchor="middle" x="3388.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">data/BX&#45;CSV&#45;Dump.zip.dvc</text>
  336. </g>
  337. <!-- data/BX.dvc -->
  338. <g id="node20" class="node"><title>data/BX.dvc</title>
  339. <ellipse fill="none" stroke="black" cx="3401.29" cy="-810" rx="56.59" ry="18"/>
  340. <text text-anchor="middle" x="3401.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/BX.dvc</text>
  341. </g>
  342. <!-- data/BX&#45;CSV&#45;Dump.zip.dvc&#45;&gt;data/BX.dvc -->
  343. <g id="edge35" class="edge"><title>data/BX&#45;CSV&#45;Dump.zip.dvc&#45;&gt;data/BX.dvc</title>
  344. <path fill="none" stroke="black" d="M3391.5,-863.697C3392.93,-855.983 3394.65,-846.712 3396.25,-838.112"/>
  345. <polygon fill="black" stroke="black" points="3399.72,-838.575 3398.11,-828.104 3392.84,-837.297 3399.72,-838.575"/>
  346. </g>
  347. <!-- data/BX.dvc&#45;&gt;import/bx&#45;ratings.dvc -->
  348. <g id="edge36" class="edge"><title>data/BX.dvc&#45;&gt;import/bx&#45;ratings.dvc</title>
  349. <path fill="none" stroke="black" d="M3401.29,-791.697C3401.29,-783.983 3401.29,-774.712 3401.29,-766.112"/>
  350. <polygon fill="black" stroke="black" points="3404.79,-766.104 3401.29,-756.104 3397.79,-766.104 3404.79,-766.104"/>
  351. </g>
  352. <!-- data/loc&#45;listings.dvc -->
  353. <g id="node21" class="node"><title>data/loc&#45;listings.dvc</title>
  354. <ellipse fill="none" stroke="black" cx="1756.29" cy="-882" rx="83.3857" ry="18"/>
  355. <text text-anchor="middle" x="1756.29" y="-878.3" font-family="Times New Roman,serif" font-size="14.00">data/loc&#45;listings.dvc</text>
  356. </g>
  357. <!-- data/loc&#45;books.dvc -->
  358. <g id="node22" class="node"><title>data/loc&#45;books.dvc</title>
  359. <ellipse fill="none" stroke="black" cx="1666.29" cy="-810" rx="81.4863" ry="18"/>
  360. <text text-anchor="middle" x="1666.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/loc&#45;books.dvc</text>
  361. </g>
  362. <!-- data/loc&#45;listings.dvc&#45;&gt;data/loc&#45;books.dvc -->
  363. <g id="edge37" class="edge"><title>data/loc&#45;listings.dvc&#45;&gt;data/loc&#45;books.dvc</title>
  364. <path fill="none" stroke="black" d="M1734.96,-864.411C1723.19,-855.257 1708.4,-843.755 1695.56,-833.772"/>
  365. <polygon fill="black" stroke="black" points="1697.5,-830.847 1687.46,-827.47 1693.21,-836.372 1697.5,-830.847"/>
  366. </g>
  367. <!-- data/loc&#45;names.dvc -->
  368. <g id="node23" class="node"><title>data/loc&#45;names.dvc</title>
  369. <ellipse fill="none" stroke="black" cx="1846.29" cy="-810" rx="81.4863" ry="18"/>
  370. <text text-anchor="middle" x="1846.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/loc&#45;names.dvc</text>
  371. </g>
  372. <!-- data/loc&#45;listings.dvc&#45;&gt;data/loc&#45;names.dvc -->
  373. <g id="edge38" class="edge"><title>data/loc&#45;listings.dvc&#45;&gt;data/loc&#45;names.dvc</title>
  374. <path fill="none" stroke="black" d="M1777.61,-864.411C1789.38,-855.257 1804.17,-843.755 1817.01,-833.772"/>
  375. <polygon fill="black" stroke="black" points="1819.37,-836.372 1825.11,-827.47 1815.07,-830.847 1819.37,-836.372"/>
  376. </g>
  377. <!-- data/loc&#45;books.dvc&#45;&gt;import/loc&#45;mds&#45;books.dvc -->
  378. <g id="edge39" class="edge"><title>data/loc&#45;books.dvc&#45;&gt;import/loc&#45;mds&#45;books.dvc</title>
  379. <path fill="none" stroke="black" d="M1725.3,-797.6C1735.62,-795.679 1746.26,-793.744 1756.29,-792 1839.4,-777.54 1934.45,-762.566 2001.67,-752.238"/>
  380. <polygon fill="black" stroke="black" points="2002.45,-755.66 2011.8,-750.685 2001.39,-748.741 2002.45,-755.66"/>
  381. </g>
  382. <!-- data/ratings_Books.csv.dvc -->
  383. <g id="node24" class="node"><title>data/ratings_Books.csv.dvc</title>
  384. <ellipse fill="none" stroke="black" cx="4714.29" cy="-810" rx="112.38" ry="18"/>
  385. <text text-anchor="middle" x="4714.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/ratings_Books.csv.dvc</text>
  386. </g>
  387. <!-- data/ratings_Books.csv.dvc&#45;&gt;import/az&#45;ratings.dvc -->
  388. <g id="edge40" class="edge"><title>data/ratings_Books.csv.dvc&#45;&gt;import/az&#45;ratings.dvc</title>
  389. <path fill="none" stroke="black" d="M4632.92,-797.57C4619.36,-795.691 4605.43,-793.777 4592.29,-792 4481.03,-776.951 4352.44,-760.19 4270.77,-749.625"/>
  390. <polygon fill="black" stroke="black" points="4270.93,-746.115 4260.56,-748.304 4270.03,-753.058 4270.93,-746.115"/>
  391. </g>
  392. <!-- import/az&#45;ratings.status.dvc -->
  393. <g id="node26" class="node"><title>import/az&#45;ratings.status.dvc</title>
  394. <ellipse fill="none" stroke="black" cx="3490.29" cy="-594" rx="111.28" ry="18"/>
  395. <text text-anchor="middle" x="3490.29" y="-590.3" font-family="Times New Roman,serif" font-size="14.00">import/az&#45;ratings.status.dvc</text>
  396. </g>
  397. <!-- import/az&#45;ratings.dvc&#45;&gt;import/az&#45;ratings.status.dvc -->
  398. <g id="edge41" class="edge"><title>import/az&#45;ratings.dvc&#45;&gt;import/az&#45;ratings.status.dvc</title>
  399. <path fill="none" stroke="black" d="M4128.17,-724.77C4001.39,-698.977 3706.78,-639.044 3566.8,-610.565"/>
  400. <polygon fill="black" stroke="black" points="3567.08,-607.051 3556.58,-608.487 3565.68,-613.911 3567.08,-607.051"/>
  401. </g>
  402. <!-- index/az&#45;index.dvc -->
  403. <g id="node55" class="node"><title>index/az&#45;index.dvc</title>
  404. <ellipse fill="none" stroke="black" cx="2989.29" cy="-306" rx="79.0865" ry="18"/>
  405. <text text-anchor="middle" x="2989.29" y="-302.3" font-family="Times New Roman,serif" font-size="14.00">index/az&#45;index.dvc</text>
  406. </g>
  407. <!-- import/az&#45;ratings.status.dvc&#45;&gt;index/az&#45;index.dvc -->
  408. <g id="edge42" class="edge"><title>import/az&#45;ratings.status.dvc&#45;&gt;index/az&#45;index.dvc</title>
  409. <path fill="none" stroke="black" d="M3490.37,-575.866C3489.59,-532.074 3480.92,-415.592 3413.29,-360 3363.76,-319.288 3187.81,-309.391 3078.74,-307.257"/>
  410. <polygon fill="black" stroke="black" points="3078.79,-303.757 3068.73,-307.079 3078.66,-310.756 3078.79,-303.757"/>
  411. </g>
  412. <!-- import/bx&#45;ratings.status.dvc -->
  413. <g id="node28" class="node"><title>import/bx&#45;ratings.status.dvc</title>
  414. <ellipse fill="none" stroke="black" cx="3292.29" cy="-378" rx="112.38" ry="18"/>
  415. <text text-anchor="middle" x="3292.29" y="-374.3" font-family="Times New Roman,serif" font-size="14.00">import/bx&#45;ratings.status.dvc</text>
  416. </g>
  417. <!-- import/bx&#45;ratings.dvc&#45;&gt;import/bx&#45;ratings.status.dvc -->
  418. <g id="edge43" class="edge"><title>import/bx&#45;ratings.dvc&#45;&gt;import/bx&#45;ratings.status.dvc</title>
  419. <path fill="none" stroke="black" d="M3390.93,-719.759C3376.28,-693.704 3351.29,-642.307 3351.29,-595 3351.29,-595 3351.29,-595 3351.29,-521 3351.29,-477.588 3327.48,-432.03 3310.11,-404.57"/>
  420. <polygon fill="black" stroke="black" points="3312.9,-402.446 3304.51,-395.981 3307.04,-406.269 3312.9,-402.446"/>
  421. </g>
  422. <!-- index/bx&#45;index.dvc -->
  423. <g id="node59" class="node"><title>index/bx&#45;index.dvc</title>
  424. <ellipse fill="none" stroke="black" cx="2788.29" cy="-306" rx="80.6858" ry="18"/>
  425. <text text-anchor="middle" x="2788.29" y="-302.3" font-family="Times New Roman,serif" font-size="14.00">index/bx&#45;index.dvc</text>
  426. </g>
  427. <!-- import/bx&#45;ratings.status.dvc&#45;&gt;index/bx&#45;index.dvc -->
  428. <g id="edge44" class="edge"><title>import/bx&#45;ratings.status.dvc&#45;&gt;index/bx&#45;index.dvc</title>
  429. <path fill="none" stroke="black" d="M3208.34,-365.981C3129.13,-355.498 3007.07,-339.126 2901.29,-324 2888.89,-322.227 2875.73,-320.295 2862.95,-318.39"/>
  430. <polygon fill="black" stroke="black" points="2863.21,-314.89 2852.8,-316.872 2862.17,-321.813 2863.21,-314.89"/>
  431. </g>
  432. <!-- data/goodreads_book_authors.json.gz.dvc -->
  433. <g id="node29" class="node"><title>data/goodreads_book_authors.json.gz.dvc</title>
  434. <ellipse fill="none" stroke="black" cx="499.286" cy="-810" rx="167.07" ry="18"/>
  435. <text text-anchor="middle" x="499.286" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/goodreads_book_authors.json.gz.dvc</text>
  436. </g>
  437. <!-- data/goodreads_book_authors.json.gz.dvc&#45;&gt;import/gr&#45;authors.dvc -->
  438. <g id="edge45" class="edge"><title>data/goodreads_book_authors.json.gz.dvc&#45;&gt;import/gr&#45;authors.dvc</title>
  439. <path fill="none" stroke="black" d="M586.362,-794.606C650.28,-784.011 739.198,-769.212 817.286,-756 824.782,-754.732 832.596,-753.403 840.402,-752.07"/>
  440. <polygon fill="black" stroke="black" points="840.993,-755.519 850.261,-750.384 839.814,-748.62 840.993,-755.519"/>
  441. </g>
  442. <!-- import/gr&#45;authors.status.dvc -->
  443. <g id="node31" class="node"><title>import/gr&#45;authors.status.dvc</title>
  444. <ellipse fill="none" stroke="black" cx="916.286" cy="-666" rx="113.98" ry="18"/>
  445. <text text-anchor="middle" x="916.286" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;authors.status.dvc</text>
  446. </g>
  447. <!-- import/gr&#45;authors.dvc&#45;&gt;import/gr&#45;authors.status.dvc -->
  448. <g id="edge46" class="edge"><title>import/gr&#45;authors.dvc&#45;&gt;import/gr&#45;authors.status.dvc</title>
  449. <path fill="none" stroke="black" d="M916.286,-719.697C916.286,-711.983 916.286,-702.712 916.286,-694.112"/>
  450. <polygon fill="black" stroke="black" points="919.786,-694.104 916.286,-684.104 912.786,-694.104 919.786,-694.104"/>
  451. </g>
  452. <!-- index/gr&#45;index&#45;books.dvc -->
  453. <g id="node61" class="node"><title>index/gr&#45;index&#45;books.dvc</title>
  454. <ellipse fill="none" stroke="black" cx="1276.29" cy="-594" rx="104.782" ry="18"/>
  455. <text text-anchor="middle" x="1276.29" y="-590.3" font-family="Times New Roman,serif" font-size="14.00">index/gr&#45;index&#45;books.dvc</text>
  456. </g>
  457. <!-- import/gr&#45;authors.status.dvc&#45;&gt;index/gr&#45;index&#45;books.dvc -->
  458. <g id="edge47" class="edge"><title>import/gr&#45;authors.status.dvc&#45;&gt;index/gr&#45;index&#45;books.dvc</title>
  459. <path fill="none" stroke="black" d="M985.272,-651.586C1046.61,-639.66 1136.16,-622.247 1199.7,-609.892"/>
  460. <polygon fill="black" stroke="black" points="1200.52,-613.299 1209.66,-607.954 1199.18,-606.428 1200.52,-613.299"/>
  461. </g>
  462. <!-- data/goodreads_books.json.gz.dvc -->
  463. <g id="node32" class="node"><title>data/goodreads_books.json.gz.dvc</title>
  464. <ellipse fill="none" stroke="black" cx="823.286" cy="-810" rx="139.175" ry="18"/>
  465. <text text-anchor="middle" x="823.286" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/goodreads_books.json.gz.dvc</text>
  466. </g>
  467. <!-- data/goodreads_books.json.gz.dvc&#45;&gt;import/gr&#45;books.dvc -->
  468. <g id="edge48" class="edge"><title>data/goodreads_books.json.gz.dvc&#45;&gt;import/gr&#45;books.dvc</title>
  469. <path fill="none" stroke="black" d="M885.778,-793.811C933.503,-782.211 999.038,-766.282 1047.16,-754.586"/>
  470. <polygon fill="black" stroke="black" points="1048.26,-757.92 1057.16,-752.157 1046.61,-751.118 1048.26,-757.92"/>
  471. </g>
  472. <!-- import/gr&#45;books.status.dvc -->
  473. <g id="node34" class="node"><title>import/gr&#45;books.status.dvc</title>
  474. <ellipse fill="none" stroke="black" cx="1158.29" cy="-666" rx="109.681" ry="18"/>
  475. <text text-anchor="middle" x="1158.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;books.status.dvc</text>
  476. </g>
  477. <!-- import/gr&#45;books.dvc&#45;&gt;import/gr&#45;books.status.dvc -->
  478. <g id="edge49" class="edge"><title>import/gr&#45;books.dvc&#45;&gt;import/gr&#45;books.status.dvc</title>
  479. <path fill="none" stroke="black" d="M1122.66,-720.055C1128.18,-711.837 1134.93,-701.791 1141.06,-692.66"/>
  480. <polygon fill="black" stroke="black" points="1144.02,-694.529 1146.69,-684.275 1138.21,-690.626 1144.02,-694.529"/>
  481. </g>
  482. <!-- import/gr&#45;books.status.dvc&#45;&gt;index/gr&#45;index&#45;books.dvc -->
  483. <g id="edge50" class="edge"><title>import/gr&#45;books.status.dvc&#45;&gt;index/gr&#45;index&#45;books.dvc</title>
  484. <path fill="none" stroke="black" d="M1186.25,-648.411C1202.27,-638.909 1222.55,-626.876 1239.81,-616.637"/>
  485. <polygon fill="black" stroke="black" points="1241.71,-619.582 1248.52,-611.47 1238.14,-613.562 1241.71,-619.582"/>
  486. </g>
  487. <!-- data/goodreads_interactions.json.gz.dvc -->
  488. <g id="node35" class="node"><title>data/goodreads_interactions.json.gz.dvc</title>
  489. <ellipse fill="none" stroke="black" cx="157.286" cy="-810" rx="157.072" ry="18"/>
  490. <text text-anchor="middle" x="157.286" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/goodreads_interactions.json.gz.dvc</text>
  491. </g>
  492. <!-- data/goodreads_interactions.json.gz.dvc&#45;&gt;import/gr&#45;interactions.dvc -->
  493. <g id="edge51" class="edge"><title>data/goodreads_interactions.json.gz.dvc&#45;&gt;import/gr&#45;interactions.dvc</title>
  494. <path fill="none" stroke="black" d="M257.749,-796.12C359.038,-783.134 514.02,-763.265 611.932,-750.712"/>
  495. <polygon fill="black" stroke="black" points="612.635,-754.151 622.108,-749.407 611.744,-747.208 612.635,-754.151"/>
  496. </g>
  497. <!-- import/gr&#45;interactions.status.dvc -->
  498. <g id="node37" class="node"><title>import/gr&#45;interactions.status.dvc</title>
  499. <ellipse fill="none" stroke="black" cx="1306.29" cy="-522" rx="128.077" ry="18"/>
  500. <text text-anchor="middle" x="1306.29" y="-518.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;interactions.status.dvc</text>
  501. </g>
  502. <!-- import/gr&#45;interactions.dvc&#45;&gt;import/gr&#45;interactions.status.dvc -->
  503. <g id="edge52" class="edge"><title>import/gr&#45;interactions.dvc&#45;&gt;import/gr&#45;interactions.status.dvc</title>
  504. <path fill="none" stroke="black" d="M715.891,-719.784C731.686,-699.487 760.672,-666.218 793.286,-648 918.33,-578.153 1081.84,-547.002 1190.27,-533.331"/>
  505. <polygon fill="black" stroke="black" points="1190.77,-536.797 1200.26,-532.101 1189.91,-529.849 1190.77,-536.797"/>
  506. </g>
  507. <!-- index/gr&#45;index&#45;ratings.dvc -->
  508. <g id="node63" class="node"><title>index/gr&#45;index&#45;ratings.dvc</title>
  509. <ellipse fill="none" stroke="black" cx="2270.29" cy="-306" rx="105.082" ry="18"/>
  510. <text text-anchor="middle" x="2270.29" y="-302.3" font-family="Times New Roman,serif" font-size="14.00">index/gr&#45;index&#45;ratings.dvc</text>
  511. </g>
  512. <!-- import/gr&#45;interactions.status.dvc&#45;&gt;index/gr&#45;index&#45;ratings.dvc -->
  513. <g id="edge53" class="edge"><title>import/gr&#45;interactions.status.dvc&#45;&gt;index/gr&#45;index&#45;ratings.dvc</title>
  514. <path fill="none" stroke="black" d="M1371.79,-506.459C1545.74,-467.843 2018.3,-362.938 2198.85,-322.858"/>
  515. <polygon fill="black" stroke="black" points="2199.77,-326.24 2208.77,-320.656 2198.25,-319.406 2199.77,-326.24"/>
  516. </g>
  517. <!-- data/goodreads_book_works.json.gz.dvc -->
  518. <g id="node38" class="node"><title>data/goodreads_book_works.json.gz.dvc</title>
  519. <ellipse fill="none" stroke="black" cx="1404.29" cy="-810" rx="162.471" ry="18"/>
  520. <text text-anchor="middle" x="1404.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/goodreads_book_works.json.gz.dvc</text>
  521. </g>
  522. <!-- data/goodreads_book_works.json.gz.dvc&#45;&gt;import/gr&#45;works.dvc -->
  523. <g id="edge54" class="edge"><title>data/goodreads_book_works.json.gz.dvc&#45;&gt;import/gr&#45;works.dvc</title>
  524. <path fill="none" stroke="black" d="M1402.06,-791.697C1401.07,-783.983 1399.88,-774.712 1398.77,-766.112"/>
  525. <polygon fill="black" stroke="black" points="1402.23,-765.576 1397.49,-756.104 1395.29,-766.469 1402.23,-765.576"/>
  526. </g>
  527. <!-- import/gr&#45;works.status.dvc -->
  528. <g id="node40" class="node"><title>import/gr&#45;works.status.dvc</title>
  529. <ellipse fill="none" stroke="black" cx="1395.29" cy="-666" rx="109.381" ry="18"/>
  530. <text text-anchor="middle" x="1395.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/gr&#45;works.status.dvc</text>
  531. </g>
  532. <!-- import/gr&#45;works.dvc&#45;&gt;import/gr&#45;works.status.dvc -->
  533. <g id="edge55" class="edge"><title>import/gr&#45;works.dvc&#45;&gt;import/gr&#45;works.status.dvc</title>
  534. <path fill="none" stroke="black" d="M1395.29,-719.697C1395.29,-711.983 1395.29,-702.712 1395.29,-694.112"/>
  535. <polygon fill="black" stroke="black" points="1398.79,-694.104 1395.29,-684.104 1391.79,-694.104 1398.79,-694.104"/>
  536. </g>
  537. <!-- import/gr&#45;works.status.dvc&#45;&gt;index/gr&#45;index&#45;books.dvc -->
  538. <g id="edge56" class="edge"><title>import/gr&#45;works.status.dvc&#45;&gt;index/gr&#45;index&#45;books.dvc</title>
  539. <path fill="none" stroke="black" d="M1367.39,-648.588C1351.24,-639.091 1330.72,-627.02 1313.25,-616.741"/>
  540. <polygon fill="black" stroke="black" points="1314.82,-613.605 1304.42,-611.552 1311.27,-619.639 1314.82,-613.605"/>
  541. </g>
  542. <!-- import/loc&#45;mds&#45;books.status.dvc -->
  543. <g id="node42" class="node"><title>import/loc&#45;mds&#45;books.status.dvc</title>
  544. <ellipse fill="none" stroke="black" cx="2093.29" cy="-666" rx="131.877" ry="18"/>
  545. <text text-anchor="middle" x="2093.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/loc&#45;mds&#45;books.status.dvc</text>
  546. </g>
  547. <!-- import/loc&#45;mds&#45;books.dvc&#45;&gt;import/loc&#45;mds&#45;books.status.dvc -->
  548. <g id="edge57" class="edge"><title>import/loc&#45;mds&#45;books.dvc&#45;&gt;import/loc&#45;mds&#45;books.status.dvc</title>
  549. <path fill="none" stroke="black" d="M2090.27,-719.697C2090.72,-711.983 2091.25,-702.712 2091.74,-694.112"/>
  550. <polygon fill="black" stroke="black" points="2095.23,-694.288 2092.31,-684.104 2088.24,-693.888 2095.23,-694.288"/>
  551. </g>
  552. <!-- index/loc&#45;mds&#45;index&#45;books.dvc -->
  553. <g id="node65" class="node"><title>index/loc&#45;mds&#45;index&#45;books.dvc</title>
  554. <ellipse fill="none" stroke="black" cx="2187.29" cy="-594" rx="126.978" ry="18"/>
  555. <text text-anchor="middle" x="2187.29" y="-590.3" font-family="Times New Roman,serif" font-size="14.00">index/loc&#45;mds&#45;index&#45;books.dvc</text>
  556. </g>
  557. <!-- import/loc&#45;mds&#45;books.status.dvc&#45;&gt;index/loc&#45;mds&#45;index&#45;books.dvc -->
  558. <g id="edge58" class="edge"><title>import/loc&#45;mds&#45;books.status.dvc&#45;&gt;index/loc&#45;mds&#45;index&#45;books.dvc</title>
  559. <path fill="none" stroke="black" d="M2116.04,-648.055C2128.16,-639.027 2143.25,-627.792 2156.42,-617.987"/>
  560. <polygon fill="black" stroke="black" points="2158.81,-620.569 2164.74,-611.789 2154.63,-614.955 2158.81,-620.569"/>
  561. </g>
  562. <!-- data/ol_dump_authors.txt.gz.dvc -->
  563. <g id="node43" class="node"><title>data/ol_dump_authors.txt.gz.dvc</title>
  564. <ellipse fill="none" stroke="black" cx="2653.29" cy="-810" rx="131.077" ry="18"/>
  565. <text text-anchor="middle" x="2653.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/ol_dump_authors.txt.gz.dvc</text>
  566. </g>
  567. <!-- data/ol_dump_authors.txt.gz.dvc&#45;&gt;import/ol&#45;authors.dvc -->
  568. <g id="edge59" class="edge"><title>data/ol_dump_authors.txt.gz.dvc&#45;&gt;import/ol&#45;authors.dvc</title>
  569. <path fill="none" stroke="black" d="M2711,-793.811C2754.19,-782.447 2813.16,-766.927 2857.33,-755.303"/>
  570. <polygon fill="black" stroke="black" points="2858.31,-758.666 2867.09,-752.736 2856.53,-751.896 2858.31,-758.666"/>
  571. </g>
  572. <!-- import/ol&#45;authors.status.dvc -->
  573. <g id="node45" class="node"><title>import/ol&#45;authors.status.dvc</title>
  574. <ellipse fill="none" stroke="black" cx="2919.29" cy="-666" rx="113.18" ry="18"/>
  575. <text text-anchor="middle" x="2919.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/ol&#45;authors.status.dvc</text>
  576. </g>
  577. <!-- import/ol&#45;authors.dvc&#45;&gt;import/ol&#45;authors.status.dvc -->
  578. <g id="edge60" class="edge"><title>import/ol&#45;authors.dvc&#45;&gt;import/ol&#45;authors.status.dvc</title>
  579. <path fill="none" stroke="black" d="M2919.29,-719.697C2919.29,-711.983 2919.29,-702.712 2919.29,-694.112"/>
  580. <polygon fill="black" stroke="black" points="2922.79,-694.104 2919.29,-684.104 2915.79,-694.104 2922.79,-694.104"/>
  581. </g>
  582. <!-- index/ol&#45;index.dvc -->
  583. <g id="node67" class="node"><title>index/ol&#45;index.dvc</title>
  584. <ellipse fill="none" stroke="black" cx="2919.29" cy="-594" rx="77.9862" ry="18"/>
  585. <text text-anchor="middle" x="2919.29" y="-590.3" font-family="Times New Roman,serif" font-size="14.00">index/ol&#45;index.dvc</text>
  586. </g>
  587. <!-- import/ol&#45;authors.status.dvc&#45;&gt;index/ol&#45;index.dvc -->
  588. <g id="edge61" class="edge"><title>import/ol&#45;authors.status.dvc&#45;&gt;index/ol&#45;index.dvc</title>
  589. <path fill="none" stroke="black" d="M2919.29,-647.697C2919.29,-639.983 2919.29,-630.712 2919.29,-622.112"/>
  590. <polygon fill="black" stroke="black" points="2922.79,-622.104 2919.29,-612.104 2915.79,-622.104 2922.79,-622.104"/>
  591. </g>
  592. <!-- data/ol_dump_editions.txt.gz.dvc -->
  593. <g id="node46" class="node"><title>data/ol_dump_editions.txt.gz.dvc</title>
  594. <ellipse fill="none" stroke="black" cx="3194.29" cy="-810" rx="132.677" ry="18"/>
  595. <text text-anchor="middle" x="3194.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/ol_dump_editions.txt.gz.dvc</text>
  596. </g>
  597. <!-- data/ol_dump_editions.txt.gz.dvc&#45;&gt;import/ol&#45;editions.dvc -->
  598. <g id="edge62" class="edge"><title>data/ol_dump_editions.txt.gz.dvc&#45;&gt;import/ol&#45;editions.dvc</title>
  599. <path fill="none" stroke="black" d="M3186.87,-791.697C3183.49,-783.813 3179.42,-774.304 3175.66,-765.546"/>
  600. <polygon fill="black" stroke="black" points="3178.77,-763.917 3171.62,-756.104 3172.34,-766.675 3178.77,-763.917"/>
  601. </g>
  602. <!-- import/ol&#45;editions.status.dvc -->
  603. <g id="node48" class="node"><title>import/ol&#45;editions.status.dvc</title>
  604. <ellipse fill="none" stroke="black" cx="3164.29" cy="-666" rx="114.28" ry="18"/>
  605. <text text-anchor="middle" x="3164.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/ol&#45;editions.status.dvc</text>
  606. </g>
  607. <!-- import/ol&#45;editions.dvc&#45;&gt;import/ol&#45;editions.status.dvc -->
  608. <g id="edge63" class="edge"><title>import/ol&#45;editions.dvc&#45;&gt;import/ol&#45;editions.status.dvc</title>
  609. <path fill="none" stroke="black" d="M3164.29,-719.697C3164.29,-711.983 3164.29,-702.712 3164.29,-694.112"/>
  610. <polygon fill="black" stroke="black" points="3167.79,-694.104 3164.29,-684.104 3160.79,-694.104 3167.79,-694.104"/>
  611. </g>
  612. <!-- import/ol&#45;editions.status.dvc&#45;&gt;index/ol&#45;index.dvc -->
  613. <g id="edge64" class="edge"><title>import/ol&#45;editions.status.dvc&#45;&gt;index/ol&#45;index.dvc</title>
  614. <path fill="none" stroke="black" d="M3111.73,-649.983C3071.85,-638.59 3017.1,-622.947 2976.19,-611.259"/>
  615. <polygon fill="black" stroke="black" points="2976.95,-607.836 2966.37,-608.454 2975.03,-614.566 2976.95,-607.836"/>
  616. </g>
  617. <!-- data/ol_dump_works.txt.gz.dvc -->
  618. <g id="node49" class="node"><title>data/ol_dump_works.txt.gz.dvc</title>
  619. <ellipse fill="none" stroke="black" cx="2377.29" cy="-810" rx="126.978" ry="18"/>
  620. <text text-anchor="middle" x="2377.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/ol_dump_works.txt.gz.dvc</text>
  621. </g>
  622. <!-- data/ol_dump_works.txt.gz.dvc&#45;&gt;import/ol&#45;works.dvc -->
  623. <g id="edge65" class="edge"><title>data/ol_dump_works.txt.gz.dvc&#45;&gt;import/ol&#45;works.dvc</title>
  624. <path fill="none" stroke="black" d="M2440.6,-794.326C2491.51,-782.524 2562.78,-766.004 2614.17,-754.093"/>
  625. <polygon fill="black" stroke="black" points="2615.22,-757.443 2624.17,-751.775 2613.64,-750.623 2615.22,-757.443"/>
  626. </g>
  627. <!-- import/ol&#45;works.status.dvc -->
  628. <g id="node51" class="node"><title>import/ol&#45;works.status.dvc</title>
  629. <ellipse fill="none" stroke="black" cx="2679.29" cy="-666" rx="108.581" ry="18"/>
  630. <text text-anchor="middle" x="2679.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/ol&#45;works.status.dvc</text>
  631. </g>
  632. <!-- import/ol&#45;works.dvc&#45;&gt;import/ol&#45;works.status.dvc -->
  633. <g id="edge66" class="edge"><title>import/ol&#45;works.dvc&#45;&gt;import/ol&#45;works.status.dvc</title>
  634. <path fill="none" stroke="black" d="M2679.29,-719.697C2679.29,-711.983 2679.29,-702.712 2679.29,-694.112"/>
  635. <polygon fill="black" stroke="black" points="2682.79,-694.104 2679.29,-684.104 2675.79,-694.104 2682.79,-694.104"/>
  636. </g>
  637. <!-- import/ol&#45;works.status.dvc&#45;&gt;index/ol&#45;index.dvc -->
  638. <g id="edge67" class="edge"><title>import/ol&#45;works.status.dvc&#45;&gt;index/ol&#45;index.dvc</title>
  639. <path fill="none" stroke="black" d="M2730.48,-650.069C2769.39,-638.718 2822.9,-623.114 2863.01,-611.413"/>
  640. <polygon fill="black" stroke="black" points="2864.03,-614.763 2872.65,-608.603 2862.07,-608.043 2864.03,-614.763"/>
  641. </g>
  642. <!-- data/viaf&#45;20181104&#45;clusters&#45;marc21.xml.gz.dvc -->
  643. <g id="node52" class="node"><title>data/viaf&#45;20181104&#45;clusters&#45;marc21.xml.gz.dvc</title>
  644. <ellipse fill="none" stroke="black" cx="5027.29" cy="-810" rx="182.768" ry="18"/>
  645. <text text-anchor="middle" x="5027.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">data/viaf&#45;20181104&#45;clusters&#45;marc21.xml.gz.dvc</text>
  646. </g>
  647. <!-- data/viaf&#45;20181104&#45;clusters&#45;marc21.xml.gz.dvc&#45;&gt;import/viaf.dvc -->
  648. <g id="edge68" class="edge"><title>data/viaf&#45;20181104&#45;clusters&#45;marc21.xml.gz.dvc&#45;&gt;import/viaf.dvc</title>
  649. <path fill="none" stroke="black" d="M4917.87,-795.586C4802.15,-781.4 4623.11,-759.451 4525.51,-747.486"/>
  650. <polygon fill="black" stroke="black" points="4525.81,-743.997 4515.46,-746.254 4524.96,-750.945 4525.81,-743.997"/>
  651. </g>
  652. <!-- import/viaf.status.dvc -->
  653. <g id="node54" class="node"><title>import/viaf.status.dvc</title>
  654. <ellipse fill="none" stroke="black" cx="4188.29" cy="-666" rx="89.8845" ry="18"/>
  655. <text text-anchor="middle" x="4188.29" y="-662.3" font-family="Times New Roman,serif" font-size="14.00">import/viaf.status.dvc</text>
  656. </g>
  657. <!-- import/viaf.dvc&#45;&gt;import/viaf.status.dvc -->
  658. <g id="edge69" class="edge"><title>import/viaf.dvc&#45;&gt;import/viaf.status.dvc</title>
  659. <path fill="none" stroke="black" d="M4410.22,-724.967C4366.11,-713.447 4299.25,-695.984 4250.45,-683.236"/>
  660. <polygon fill="black" stroke="black" points="4251.19,-679.813 4240.63,-680.672 4249.42,-686.586 4251.19,-679.813"/>
  661. </g>
  662. <!-- index/viaf&#45;index.dvc -->
  663. <g id="node69" class="node"><title>index/viaf&#45;index.dvc</title>
  664. <ellipse fill="none" stroke="black" cx="4027.29" cy="-594" rx="84.485" ry="18"/>
  665. <text text-anchor="middle" x="4027.29" y="-590.3" font-family="Times New Roman,serif" font-size="14.00">index/viaf&#45;index.dvc</text>
  666. </g>
  667. <!-- import/viaf.status.dvc&#45;&gt;index/viaf&#45;index.dvc -->
  668. <g id="edge70" class="edge"><title>import/viaf.status.dvc&#45;&gt;index/viaf&#45;index.dvc</title>
  669. <path fill="none" stroke="black" d="M4152.55,-649.465C4128.81,-639.143 4097.46,-625.509 4072.06,-614.465"/>
  670. <polygon fill="black" stroke="black" points="4073.21,-611.149 4062.64,-610.371 4070.42,-617.568 4073.21,-611.149"/>
  671. </g>
  672. <!-- index/az&#45;index.status.dvc -->
  673. <g id="node58" class="node"><title>index/az&#45;index.status.dvc</title>
  674. <ellipse fill="none" stroke="black" cx="2989.29" cy="-234" rx="102.882" ry="18"/>
  675. <text text-anchor="middle" x="2989.29" y="-230.3" font-family="Times New Roman,serif" font-size="14.00">index/az&#45;index.status.dvc</text>
  676. </g>
  677. <!-- index/az&#45;index.dvc&#45;&gt;index/az&#45;index.status.dvc -->
  678. <g id="edge71" class="edge"><title>index/az&#45;index.dvc&#45;&gt;index/az&#45;index.status.dvc</title>
  679. <path fill="none" stroke="black" d="M2989.29,-287.697C2989.29,-279.983 2989.29,-270.712 2989.29,-262.112"/>
  680. <polygon fill="black" stroke="black" points="2992.79,-262.104 2989.29,-252.104 2985.79,-262.104 2992.79,-262.104"/>
  681. </g>
  682. <!-- integrate/cluster.status.dvc -->
  683. <g id="node56" class="node"><title>integrate/cluster.status.dvc</title>
  684. <ellipse fill="none" stroke="black" cx="2788.29" cy="-378" rx="106.681" ry="18"/>
  685. <text text-anchor="middle" x="2788.29" y="-374.3" font-family="Times New Roman,serif" font-size="14.00">integrate/cluster.status.dvc</text>
  686. </g>
  687. <!-- integrate/cluster.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  688. <g id="edge75" class="edge"><title>integrate/cluster.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  689. <path fill="none" stroke="black" d="M2752.84,-360.97C2735.13,-351.822 2714.15,-339.153 2698.29,-324 2670.65,-297.608 2665.97,-287.282 2651.29,-252 2643.05,-232.217 2638.21,-208.416 2635.48,-190.407"/>
  690. <polygon fill="black" stroke="black" points="2638.91,-189.711 2634.07,-180.289 2631.98,-190.676 2638.91,-189.711"/>
  691. </g>
  692. <!-- integrate/cluster.status.dvc&#45;&gt;index/az&#45;index.dvc -->
  693. <g id="edge72" class="edge"><title>integrate/cluster.status.dvc&#45;&gt;index/az&#45;index.dvc</title>
  694. <path fill="none" stroke="black" d="M2832.89,-361.465C2864.02,-350.624 2905.64,-336.129 2938.12,-324.818"/>
  695. <polygon fill="black" stroke="black" points="2939.59,-328.012 2947.89,-321.418 2937.29,-321.401 2939.59,-328.012"/>
  696. </g>
  697. <!-- integrate/cluster.status.dvc&#45;&gt;index/bx&#45;index.dvc -->
  698. <g id="edge73" class="edge"><title>integrate/cluster.status.dvc&#45;&gt;index/bx&#45;index.dvc</title>
  699. <path fill="none" stroke="black" d="M2788.29,-359.697C2788.29,-351.983 2788.29,-342.712 2788.29,-334.112"/>
  700. <polygon fill="black" stroke="black" points="2791.79,-334.104 2788.29,-324.104 2784.79,-334.104 2791.79,-334.104"/>
  701. </g>
  702. <!-- integrate/cluster.status.dvc&#45;&gt;index/gr&#45;index&#45;ratings.dvc -->
  703. <g id="edge74" class="edge"><title>integrate/cluster.status.dvc&#45;&gt;index/gr&#45;index&#45;ratings.dvc</title>
  704. <path fill="none" stroke="black" d="M2711.25,-365.551C2698.25,-363.664 2684.89,-361.754 2672.29,-360 2565.97,-345.202 2443.69,-329.23 2362.18,-318.732"/>
  705. <polygon fill="black" stroke="black" points="2362.31,-315.22 2351.95,-317.415 2361.42,-322.163 2362.31,-315.22"/>
  706. </g>
  707. <!-- integrate/cluster.dvc -->
  708. <g id="node57" class="node"><title>integrate/cluster.dvc</title>
  709. <ellipse fill="none" stroke="black" cx="2764.29" cy="-450" rx="83.3857" ry="18"/>
  710. <text text-anchor="middle" x="2764.29" y="-446.3" font-family="Times New Roman,serif" font-size="14.00">integrate/cluster.dvc</text>
  711. </g>
  712. <!-- integrate/cluster.dvc&#45;&gt;integrate/cluster.status.dvc -->
  713. <g id="edge76" class="edge"><title>integrate/cluster.dvc&#45;&gt;integrate/cluster.status.dvc</title>
  714. <path fill="none" stroke="black" d="M2770.22,-431.697C2772.89,-423.898 2776.11,-414.509 2779.09,-405.829"/>
  715. <polygon fill="black" stroke="black" points="2782.49,-406.699 2782.42,-396.104 2775.87,-404.429 2782.49,-406.699"/>
  716. </g>
  717. <!-- index/az&#45;index.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  718. <g id="edge77" class="edge"><title>index/az&#45;index.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  719. <path fill="none" stroke="black" d="M2923.39,-220.079C2862.19,-208.08 2771.15,-190.229 2707.21,-177.692"/>
  720. <polygon fill="black" stroke="black" points="2707.68,-174.217 2697.19,-175.727 2706.33,-181.086 2707.68,-174.217"/>
  721. </g>
  722. <!-- index/bx&#45;index.status.dvc -->
  723. <g id="node60" class="node"><title>index/bx&#45;index.status.dvc</title>
  724. <ellipse fill="none" stroke="black" cx="2764.29" cy="-234" rx="103.982" ry="18"/>
  725. <text text-anchor="middle" x="2764.29" y="-230.3" font-family="Times New Roman,serif" font-size="14.00">index/bx&#45;index.status.dvc</text>
  726. </g>
  727. <!-- index/bx&#45;index.dvc&#45;&gt;index/bx&#45;index.status.dvc -->
  728. <g id="edge78" class="edge"><title>index/bx&#45;index.dvc&#45;&gt;index/bx&#45;index.status.dvc</title>
  729. <path fill="none" stroke="black" d="M2782.35,-287.697C2779.68,-279.898 2776.46,-270.509 2773.48,-261.829"/>
  730. <polygon fill="black" stroke="black" points="2776.7,-260.429 2770.15,-252.104 2770.08,-262.699 2776.7,-260.429"/>
  731. </g>
  732. <!-- index/bx&#45;index.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  733. <g id="edge79" class="edge"><title>index/bx&#45;index.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  734. <path fill="none" stroke="black" d="M2733.67,-216.765C2715.26,-207.002 2691.64,-194.474 2671.83,-183.968"/>
  735. <polygon fill="black" stroke="black" points="2673.21,-180.74 2662.74,-179.147 2669.93,-186.925 2673.21,-180.74"/>
  736. </g>
  737. <!-- index/gr&#45;index&#45;books.status.dvc -->
  738. <g id="node62" class="node"><title>index/gr&#45;index&#45;books.status.dvc</title>
  739. <ellipse fill="none" stroke="black" cx="2546.29" cy="-522" rx="128.077" ry="18"/>
  740. <text text-anchor="middle" x="2546.29" y="-518.3" font-family="Times New Roman,serif" font-size="14.00">index/gr&#45;index&#45;books.status.dvc</text>
  741. </g>
  742. <!-- index/gr&#45;index&#45;books.dvc&#45;&gt;index/gr&#45;index&#45;books.status.dvc -->
  743. <g id="edge80" class="edge"><title>index/gr&#45;index&#45;books.dvc&#45;&gt;index/gr&#45;index&#45;books.status.dvc</title>
  744. <path fill="none" stroke="black" d="M1378.19,-589.897C1572.77,-583.574 2010.59,-567.426 2378.29,-540 2397.79,-538.545 2418.54,-536.693 2438.57,-534.751"/>
  745. <polygon fill="black" stroke="black" points="2439.03,-538.222 2448.64,-533.76 2438.35,-531.256 2439.03,-538.222"/>
  746. </g>
  747. <!-- index/gr&#45;index&#45;books.status.dvc&#45;&gt;integrate/cluster.dvc -->
  748. <g id="edge81" class="edge"><title>index/gr&#45;index&#45;books.status.dvc&#45;&gt;integrate/cluster.dvc</title>
  749. <path fill="none" stroke="black" d="M2595.21,-505.291C2629.29,-494.348 2674.76,-479.746 2709.97,-468.442"/>
  750. <polygon fill="black" stroke="black" points="2711.16,-471.736 2719.61,-465.347 2709.02,-465.072 2711.16,-471.736"/>
  751. </g>
  752. <!-- integrate/gr&#45;cluster.dvc -->
  753. <g id="node73" class="node"><title>integrate/gr&#45;cluster.dvc</title>
  754. <ellipse fill="none" stroke="black" cx="2546.29" cy="-450" rx="93.6835" ry="18"/>
  755. <text text-anchor="middle" x="2546.29" y="-446.3" font-family="Times New Roman,serif" font-size="14.00">integrate/gr&#45;cluster.dvc</text>
  756. </g>
  757. <!-- index/gr&#45;index&#45;books.status.dvc&#45;&gt;integrate/gr&#45;cluster.dvc -->
  758. <g id="edge82" class="edge"><title>index/gr&#45;index&#45;books.status.dvc&#45;&gt;integrate/gr&#45;cluster.dvc</title>
  759. <path fill="none" stroke="black" d="M2546.29,-503.697C2546.29,-495.983 2546.29,-486.712 2546.29,-478.112"/>
  760. <polygon fill="black" stroke="black" points="2549.79,-478.104 2546.29,-468.104 2542.79,-478.104 2549.79,-478.104"/>
  761. </g>
  762. <!-- index/gr&#45;index&#45;ratings.status.dvc -->
  763. <g id="node64" class="node"><title>index/gr&#45;index&#45;ratings.status.dvc</title>
  764. <ellipse fill="none" stroke="black" cx="2246.29" cy="-234" rx="128.877" ry="18"/>
  765. <text text-anchor="middle" x="2246.29" y="-230.3" font-family="Times New Roman,serif" font-size="14.00">index/gr&#45;index&#45;ratings.status.dvc</text>
  766. </g>
  767. <!-- index/gr&#45;index&#45;ratings.dvc&#45;&gt;index/gr&#45;index&#45;ratings.status.dvc -->
  768. <g id="edge83" class="edge"><title>index/gr&#45;index&#45;ratings.dvc&#45;&gt;index/gr&#45;index&#45;ratings.status.dvc</title>
  769. <path fill="none" stroke="black" d="M2264.35,-287.697C2261.68,-279.898 2258.46,-270.509 2255.48,-261.829"/>
  770. <polygon fill="black" stroke="black" points="2258.7,-260.429 2252.15,-252.104 2252.08,-262.699 2258.7,-260.429"/>
  771. </g>
  772. <!-- index/gr&#45;index&#45;ratings.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  773. <g id="edge84" class="edge"><title>index/gr&#45;index&#45;ratings.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  774. <path fill="none" stroke="black" d="M2321.63,-219.337C2388.72,-207.17 2486.49,-189.44 2554.36,-177.132"/>
  775. <polygon fill="black" stroke="black" points="2555.35,-180.509 2564.56,-175.281 2554.1,-173.622 2555.35,-180.509"/>
  776. </g>
  777. <!-- index/loc&#45;mds&#45;index&#45;books.status.dvc -->
  778. <g id="node66" class="node"><title>index/loc&#45;mds&#45;index&#45;books.status.dvc</title>
  779. <ellipse fill="none" stroke="black" cx="2219.29" cy="-522" rx="150.273" ry="18"/>
  780. <text text-anchor="middle" x="2219.29" y="-518.3" font-family="Times New Roman,serif" font-size="14.00">index/loc&#45;mds&#45;index&#45;books.status.dvc</text>
  781. </g>
  782. <!-- index/loc&#45;mds&#45;index&#45;books.dvc&#45;&gt;index/loc&#45;mds&#45;index&#45;books.status.dvc -->
  783. <g id="edge85" class="edge"><title>index/loc&#45;mds&#45;index&#45;books.dvc&#45;&gt;index/loc&#45;mds&#45;index&#45;books.status.dvc</title>
  784. <path fill="none" stroke="black" d="M2195.2,-575.697C2198.84,-567.728 2203.24,-558.1 2207.28,-549.264"/>
  785. <polygon fill="black" stroke="black" points="2210.49,-550.654 2211.47,-540.104 2204.13,-547.744 2210.49,-550.654"/>
  786. </g>
  787. <!-- index/loc&#45;mds&#45;index&#45;books.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  788. <g id="edge86" class="edge"><title>index/loc&#45;mds&#45;index&#45;books.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  789. <path fill="none" stroke="black" d="M2268.34,-504.925C2290.49,-496.183 2316.15,-483.875 2336.29,-468 2384.04,-430.355 2379.21,-404.842 2420.29,-360 2481.85,-292.788 2562.62,-221.91 2604.46,-186.311"/>
  790. <polygon fill="black" stroke="black" points="2606.92,-188.809 2612.29,-179.673 2602.4,-183.469 2606.92,-188.809"/>
  791. </g>
  792. <!-- index/loc&#45;mds&#45;index&#45;books.status.dvc&#45;&gt;integrate/cluster.dvc -->
  793. <g id="edge87" class="edge"><title>index/loc&#45;mds&#45;index&#45;books.status.dvc&#45;&gt;integrate/cluster.dvc</title>
  794. <path fill="none" stroke="black" d="M2322.77,-508.955C2409.93,-498.64 2537.85,-483.101 2649.29,-468 2661.83,-466.3 2675.13,-464.412 2688.07,-462.531"/>
  795. <polygon fill="black" stroke="black" points="2688.96,-465.939 2698.34,-461.027 2687.94,-459.012 2688.96,-465.939"/>
  796. </g>
  797. <!-- integrate/loc&#45;mds&#45;cluster.dvc -->
  798. <g id="node72" class="node"><title>integrate/loc&#45;mds&#45;cluster.dvc</title>
  799. <ellipse fill="none" stroke="black" cx="2211.29" cy="-450" rx="116.18" ry="18"/>
  800. <text text-anchor="middle" x="2211.29" y="-446.3" font-family="Times New Roman,serif" font-size="14.00">integrate/loc&#45;mds&#45;cluster.dvc</text>
  801. </g>
  802. <!-- index/loc&#45;mds&#45;index&#45;books.status.dvc&#45;&gt;integrate/loc&#45;mds&#45;cluster.dvc -->
  803. <g id="edge88" class="edge"><title>index/loc&#45;mds&#45;index&#45;books.status.dvc&#45;&gt;integrate/loc&#45;mds&#45;cluster.dvc</title>
  804. <path fill="none" stroke="black" d="M2217.31,-503.697C2216.43,-495.983 2215.37,-486.712 2214.38,-478.112"/>
  805. <polygon fill="black" stroke="black" points="2217.85,-477.642 2213.24,-468.104 2210.9,-478.437 2217.85,-477.642"/>
  806. </g>
  807. <!-- index/ol&#45;index.status.dvc -->
  808. <g id="node68" class="node"><title>index/ol&#45;index.status.dvc</title>
  809. <ellipse fill="none" stroke="black" cx="2919.29" cy="-522" rx="101.282" ry="18"/>
  810. <text text-anchor="middle" x="2919.29" y="-518.3" font-family="Times New Roman,serif" font-size="14.00">index/ol&#45;index.status.dvc</text>
  811. </g>
  812. <!-- index/ol&#45;index.dvc&#45;&gt;index/ol&#45;index.status.dvc -->
  813. <g id="edge89" class="edge"><title>index/ol&#45;index.dvc&#45;&gt;index/ol&#45;index.status.dvc</title>
  814. <path fill="none" stroke="black" d="M2919.29,-575.697C2919.29,-567.983 2919.29,-558.712 2919.29,-550.112"/>
  815. <polygon fill="black" stroke="black" points="2922.79,-550.104 2919.29,-540.104 2915.79,-550.104 2922.79,-550.104"/>
  816. </g>
  817. <!-- index/ol&#45;index.status.dvc&#45;&gt;integrate/cluster.dvc -->
  818. <g id="edge90" class="edge"><title>index/ol&#45;index.status.dvc&#45;&gt;integrate/cluster.dvc</title>
  819. <path fill="none" stroke="black" d="M2884.11,-505.116C2861.48,-494.896 2831.91,-481.538 2807.8,-470.652"/>
  820. <polygon fill="black" stroke="black" points="2809.07,-467.386 2798.52,-466.46 2806.19,-473.766 2809.07,-467.386"/>
  821. </g>
  822. <!-- integrate/ol&#45;cluster.dvc -->
  823. <g id="node75" class="node"><title>integrate/ol&#45;cluster.dvc</title>
  824. <ellipse fill="none" stroke="black" cx="2994.29" cy="-450" rx="92.8835" ry="18"/>
  825. <text text-anchor="middle" x="2994.29" y="-446.3" font-family="Times New Roman,serif" font-size="14.00">integrate/ol&#45;cluster.dvc</text>
  826. </g>
  827. <!-- index/ol&#45;index.status.dvc&#45;&gt;integrate/ol&#45;cluster.dvc -->
  828. <g id="edge91" class="edge"><title>index/ol&#45;index.status.dvc&#45;&gt;integrate/ol&#45;cluster.dvc</title>
  829. <path fill="none" stroke="black" d="M2937.44,-504.055C2946.84,-495.285 2958.47,-484.432 2968.75,-474.831"/>
  830. <polygon fill="black" stroke="black" points="2971.38,-477.171 2976.3,-467.789 2966.6,-472.054 2971.38,-477.171"/>
  831. </g>
  832. <!-- index/viaf&#45;index.status.dvc -->
  833. <g id="node70" class="node"><title>index/viaf&#45;index.status.dvc</title>
  834. <ellipse fill="none" stroke="black" cx="3485.29" cy="-234" rx="107.781" ry="18"/>
  835. <text text-anchor="middle" x="3485.29" y="-230.3" font-family="Times New Roman,serif" font-size="14.00">index/viaf&#45;index.status.dvc</text>
  836. </g>
  837. <!-- index/viaf&#45;index.dvc&#45;&gt;index/viaf&#45;index.status.dvc -->
  838. <g id="edge92" class="edge"><title>index/viaf&#45;index.dvc&#45;&gt;index/viaf&#45;index.status.dvc</title>
  839. <path fill="none" stroke="black" d="M3951.05,-586.036C3869.66,-573.92 3752.29,-540.867 3752.29,-451 3752.29,-451 3752.29,-451 3752.29,-377 3752.29,-297.234 3658.25,-262.132 3581.79,-246.775"/>
  840. <polygon fill="black" stroke="black" points="3582.08,-243.268 3571.6,-244.824 3580.77,-250.143 3582.08,-243.268"/>
  841. </g>
  842. <!-- index/viaf&#45;index.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  843. <g id="edge93" class="edge"><title>index/viaf&#45;index.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  844. <path fill="none" stroke="black" d="M3390.74,-225.241C3228.02,-211.887 2896.57,-184.688 2731,-171.101"/>
  845. <polygon fill="black" stroke="black" points="2731.08,-167.596 2720.83,-170.266 2730.51,-174.572 2731.08,-167.596"/>
  846. </g>
  847. <!-- integrate/loc&#45;mds&#45;cluster.status.dvc -->
  848. <g id="node71" class="node"><title>integrate/loc&#45;mds&#45;cluster.status.dvc</title>
  849. <ellipse fill="none" stroke="black" cx="2007.29" cy="-306" rx="139.976" ry="18"/>
  850. <text text-anchor="middle" x="2007.29" y="-302.3" font-family="Times New Roman,serif" font-size="14.00">integrate/loc&#45;mds&#45;cluster.status.dvc</text>
  851. </g>
  852. <!-- integrate/loc&#45;mds&#45;cluster.status.dvc&#45;&gt;integrate/author&#45;info.dvc -->
  853. <g id="edge94" class="edge"><title>integrate/loc&#45;mds&#45;cluster.status.dvc&#45;&gt;integrate/author&#45;info.dvc</title>
  854. <path fill="none" stroke="black" d="M2020.87,-287.736C2038.52,-266.729 2071.44,-232.081 2108.29,-216 2180.62,-184.428 2393.67,-171.336 2524.77,-166.157"/>
  855. <polygon fill="black" stroke="black" points="2524.99,-169.651 2534.85,-165.768 2524.72,-162.656 2524.99,-169.651"/>
  856. </g>
  857. <!-- integrate/loc&#45;mds&#45;cluster.dvc&#45;&gt;integrate/loc&#45;mds&#45;cluster.status.dvc -->
  858. <g id="edge95" class="edge"><title>integrate/loc&#45;mds&#45;cluster.dvc&#45;&gt;integrate/loc&#45;mds&#45;cluster.status.dvc</title>
  859. <path fill="none" stroke="black" d="M2187.08,-432.153C2150.43,-406.639 2080.77,-358.154 2039.75,-329.6"/>
  860. <polygon fill="black" stroke="black" points="2041.66,-326.665 2031.46,-323.825 2037.66,-332.411 2041.66,-326.665"/>
  861. </g>
  862. <!-- integrate/gr&#45;cluster.status.dvc -->
  863. <g id="node74" class="node"><title>integrate/gr&#45;cluster.status.dvc</title>
  864. <ellipse fill="none" stroke="black" cx="2546.29" cy="-378" rx="116.979" ry="18"/>
  865. <text text-anchor="middle" x="2546.29" y="-374.3" font-family="Times New Roman,serif" font-size="14.00">integrate/gr&#45;cluster.status.dvc</text>
  866. </g>
  867. <!-- integrate/gr&#45;cluster.dvc&#45;&gt;integrate/gr&#45;cluster.status.dvc -->
  868. <g id="edge96" class="edge"><title>integrate/gr&#45;cluster.dvc&#45;&gt;integrate/gr&#45;cluster.status.dvc</title>
  869. <path fill="none" stroke="black" d="M2546.29,-431.697C2546.29,-423.983 2546.29,-414.712 2546.29,-406.112"/>
  870. <polygon fill="black" stroke="black" points="2549.79,-406.104 2546.29,-396.104 2542.79,-406.104 2549.79,-406.104"/>
  871. </g>
  872. <!-- integrate/ol&#45;cluster.status.dvc -->
  873. <g id="node76" class="node"><title>integrate/ol&#45;cluster.status.dvc</title>
  874. <ellipse fill="none" stroke="black" cx="3029.29" cy="-378" rx="116.18" ry="18"/>
  875. <text text-anchor="middle" x="3029.29" y="-374.3" font-family="Times New Roman,serif" font-size="14.00">integrate/ol&#45;cluster.status.dvc</text>
  876. </g>
  877. <!-- integrate/ol&#45;cluster.dvc&#45;&gt;integrate/ol&#45;cluster.status.dvc -->
  878. <g id="edge97" class="edge"><title>integrate/ol&#45;cluster.dvc&#45;&gt;integrate/ol&#45;cluster.status.dvc</title>
  879. <path fill="none" stroke="black" d="M3002.76,-432.055C3006.78,-424.007 3011.68,-414.205 3016.17,-405.226"/>
  880. <polygon fill="black" stroke="black" points="3019.31,-406.785 3020.65,-396.275 3013.05,-403.654 3019.31,-406.785"/>
  881. </g>
  882. <!-- init.status.dvc -->
  883. <g id="node77" class="node"><title>init.status.dvc</title>
  884. <ellipse fill="none" stroke="black" cx="3686.29" cy="-1098" rx="61.1893" ry="18"/>
  885. <text text-anchor="middle" x="3686.29" y="-1094.3" font-family="Times New Roman,serif" font-size="14.00">init.status.dvc</text>
  886. </g>
  887. <!-- init.status.dvc&#45;&gt;schemas/common&#45;schema.dvc -->
  888. <g id="edge98" class="edge"><title>init.status.dvc&#45;&gt;schemas/common&#45;schema.dvc</title>
  889. <path fill="none" stroke="black" d="M3686.29,-1079.7C3686.29,-1071.98 3686.29,-1062.71 3686.29,-1054.11"/>
  890. <polygon fill="black" stroke="black" points="3689.79,-1054.1 3686.29,-1044.1 3682.79,-1054.1 3689.79,-1054.1"/>
  891. </g>
  892. <!-- schemas/loc&#45;id&#45;schema.status.dvc -->
  893. <g id="node79" class="node"><title>schemas/loc&#45;id&#45;schema.status.dvc</title>
  894. <ellipse fill="none" stroke="black" cx="3913.29" cy="-810" rx="135.376" ry="18"/>
  895. <text text-anchor="middle" x="3913.29" y="-806.3" font-family="Times New Roman,serif" font-size="14.00">schemas/loc&#45;id&#45;schema.status.dvc</text>
  896. </g>
  897. <!-- schemas/loc&#45;id&#45;schema.dvc&#45;&gt;schemas/loc&#45;id&#45;schema.status.dvc -->
  898. <g id="edge99" class="edge"><title>schemas/loc&#45;id&#45;schema.dvc&#45;&gt;schemas/loc&#45;id&#45;schema.status.dvc</title>
  899. <path fill="none" stroke="black" d="M3904.25,-863.697C3905.57,-855.983 3907.16,-846.712 3908.64,-838.112"/>
  900. <polygon fill="black" stroke="black" points="3912.11,-838.552 3910.35,-828.104 3905.21,-837.369 3912.11,-838.552"/>
  901. </g>
  902. </g>
  903. </svg>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...