aboutsummaryrefslogblamecommitdiff
path: root/procedure.svg
blob: 5923746bf3f428d947e39317a6f8a8f662143c31 (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053




























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                   
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="210mm"
   height="297mm"
   id="svg3361"
   version="1.1"
   inkscape:version="0.48.5 r10040"
   sodipodi:docname="New document 1">
  <defs
     id="defs3" />
  <sodipodi:namedview
     inkscape:document-units="mm"
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.35"
     inkscape:cx="355.71429"
     inkscape:cy="520"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="1279"
     inkscape:window-height="796"
     inkscape:window-x="708"
     inkscape:window-y="159"
     inkscape:window-maximized="0" />
  <metadata
     id="metadata4">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1">
    <g
       id="graph0"
       class="graph"
       transform="matrix(0.80071125,0,0,0.80071125,180.78241,982.01616)">
      <title
         id="title5">procedure</title>
      <polygon
         style="fill:#ffffff;stroke:none"
         points="-4,-1120 451.646,-1120 451.646,4 -4,4 -4,4 "
         id="polygon7" />
      <!-- ingredient -->
      <g
         id="node1"
         class="node">
        <title
           id="title10">ingredient</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="46.292301"
           sodipodi:cy="-1098"
           sodipodi:cx="46.145901"
           cx="46.145901"
           cy="-1098"
           rx="46.292301"
           ry="18"
           id="ellipse12"
           d="m 92.438202,-1098 c 0,9.9411 -20.725769,18 -46.292301,18 -25.566532,0 -46.29230145,-8.0589 -46.29230145,-18 0,-9.9411 20.72576945,-18 46.29230145,-18 25.566532,0 46.292301,8.0589 46.292301,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="46.145901"
           y="-1094.3"
           font-size="14.00"
           id="text14">ingredient</text>
      </g>
      <!-- process -->
      <g
         id="node2"
         class="node">
        <title
           id="title17">process</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="110.646,-1116 110.646,-1080 167.646,-1080 167.646,-1116 167.646,-1116 "
           id="polygon19" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="139.146"
           y="-1094.3"
           font-size="14.00"
           id="text21">process</text>
      </g>
      <!-- water -->
      <g
         id="node3"
         class="node">
        <title
           id="title24">water</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="30.5947"
           sodipodi:cy="-1098"
           sodipodi:cx="216.146"
           cx="216.146"
           cy="-1098"
           rx="30.5947"
           ry="18"
           id="ellipse26"
           d="m 246.7407,-1098 c 0,9.9411 -13.69772,18 -30.5947,18 -16.89699,0 -30.5947,-8.0589 -30.5947,-18 0,-9.9411 13.69771,-18 30.5947,-18 16.89698,0 30.5947,8.0589 30.5947,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="216.146"
           y="-1094.3"
           font-size="14.00"
           id="text28">water</text>
      </g>
      <!-- mixture -->
      <g
         id="node5"
         class="node">
        <title
           id="title31">mixture</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="38.193802"
           sodipodi:cy="-1026"
           sodipodi:cx="269.146"
           cx="269.146"
           cy="-1026"
           rx="38.193802"
           ry="18"
           id="ellipse33"
           d="m 307.3398,-1026 c 0,9.9411 -17.09995,18 -38.1938,18 -21.09386,0 -38.19381,-8.0589 -38.19381,-18 0,-9.9411 17.09995,-18 38.19381,-18 21.09385,0 38.1938,8.0589 38.1938,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="269.146"
           y="-1022.3"
           font-size="14.00"
           id="text35">mixture</text>
      </g>
      <!-- water&#45;&gt;mixture -->
      <g
         id="edge1"
         class="edge">
        <title
           id="title38">water-&gt;mixture</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 228.172,-1081.12 c 6.615,8.74 14.964,19.77 22.397,29.58"
           id="path40" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="247.972,-1049.17 253.553,-1053.39 253.553,-1053.39 256.799,-1043.31 "
           id="polygon42" />
      </g>
      <!-- malt -->
      <g
         id="node4"
         class="node">
        <title
           id="title45">malt</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="58.489601"
           sodipodi:cy="-1098"
           sodipodi:cx="323.146"
           cx="323.146"
           cy="-1098"
           rx="58.489601"
           ry="18"
           id="ellipse47"
           d="m 381.6356,-1098 c 0,9.9411 -26.18669,18 -58.4896,18 -32.30292,0 -58.48961,-8.0589 -58.48961,-18 0,-9.9411 26.18669,-18 58.48961,-18 32.30291,0 58.4896,8.0589 58.4896,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="323.146"
           y="-1094.3"
           font-size="14.00"
           id="text49">cracked grain</text>
      </g>
      <!-- malt&#45;&gt;mixture -->
      <g
         id="edge2"
         class="edge">
        <title
           id="title52">malt-&gt;mixture</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 310.349,-1080.41 c -6.658,8.63 -14.927,19.35 -22.305,28.91"
           id="path54" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="285.188,-1053.53 290.731,-1049.25 290.731,-1049.25 281.851,-1043.47 "
           id="polygon56" />
      </g>
      <!-- steep -->
      <g
         id="node14"
         class="node">
        <title
           id="title59">steep</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="242.146,-972 242.146,-936 296.146,-936 296.146,-972 296.146,-972 "
           id="polygon61" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="269.146"
           y="-950.29999"
           font-size="14.00"
           id="text63">steep</text>
      </g>
      <!-- mixture&#45;&gt;steep -->
      <g
         id="edge3"
         class="edge">
        <title
           id="title66">mixture-&gt;steep</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 269.146,-1007.7 c 0,7.717 0,16.988 0,25.588"
           id="path68" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="265.646,-982.104 272.646,-982.104 272.646,-982.104 269.146,-972.104 "
           id="polygon70" />
      </g>
      <!-- mash -->
      <g
         id="node6"
         class="node">
        <title
           id="title73">mash</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="29.795"
           sodipodi:cy="-882"
           sodipodi:cx="269.146"
           cx="269.146"
           cy="-882"
           rx="29.795"
           ry="18"
           id="ellipse75"
           d="m 298.941,-882 c 0,9.94113 -13.33968,18 -29.795,18 -16.45533,0 -29.795,-8.05887 -29.795,-18 0,-9.94113 13.33967,-18 29.795,-18 16.45532,0 29.795,8.05887 29.795,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="269.146"
           y="-878.29999"
           font-size="14.00"
           id="text77">mash</text>
      </g>
      <!-- lauter -->
      <g
         id="node15"
         class="node">
        <title
           id="title80">lauter</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="281.146,-828 281.146,-792 335.146,-792 335.146,-828 335.146,-828 "
           id="polygon82" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="308.146"
           y="-806.29999"
           font-size="14.00"
           id="text84">lauter</text>
      </g>
      <!-- mash&#45;&gt;lauter -->
      <g
         id="edge5"
         class="edge">
        <title
           id="title87">mash-&gt;lauter</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 278.191,-864.765 c 4.591,8.24 10.279,18.448 15.46,27.749"
           id="path89" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="290.681,-835.156 296.796,-838.563 296.796,-838.563 298.605,-828.124 "
           id="polygon91" />
      </g>
      <!-- additional_water -->
      <g
         id="node7"
         class="node">
        <title
           id="title94">additional_water</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="30.5947"
           sodipodi:cy="-882"
           sodipodi:cx="347.146"
           cx="347.146"
           cy="-882"
           rx="30.5947"
           ry="18"
           id="ellipse96"
           d="m 377.7407,-882 c 0,9.94113 -13.69772,18 -30.5947,18 -16.89699,0 -30.5947,-8.05887 -30.5947,-18 0,-9.94113 13.69771,-18 30.5947,-18 16.89698,0 30.5947,8.05887 30.5947,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="347.146"
           y="-878.29999"
           font-size="14.00"
           id="text98">water</text>
      </g>
      <!-- additional_water&#45;&gt;lauter -->
      <g
         id="edge6"
         class="edge">
        <title
           id="title101">additional_water-&gt;lauter</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 338.1,-864.765 c -4.59,8.24 -10.278,18.448 -15.46,27.749"
           id="path103" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="319.496,-838.563 325.611,-835.156 325.611,-835.156 317.686,-828.124 "
           id="polygon105" />
      </g>
      <!-- sweet_wort -->
      <g
         id="node8"
         class="node">
        <title
           id="title108">sweet_wort</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="49.2915"
           sodipodi:cy="-738"
           sodipodi:cx="308.146"
           cx="308.146"
           cy="-738"
           rx="49.2915"
           ry="18"
           id="ellipse110"
           d="m 357.4375,-738 c 0,9.94113 -22.06856,18 -49.2915,18 -27.22295,0 -49.2915,-8.05887 -49.2915,-18 0,-9.94113 22.06855,-18 49.2915,-18 27.22294,0 49.2915,8.05887 49.2915,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="308.146"
           y="-734.29999"
           font-size="14.00"
           id="text112">sweet wort</text>
      </g>
      <!-- extract_a_bit -->
      <g
         id="node16"
         class="node">
        <title
           id="title115">extract_a_bit</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="213.146,-684 213.146,-648 299.146,-648 299.146,-684 299.146,-684 "
           id="polygon117" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="256.146"
           y="-662.29999"
           font-size="14.00"
           id="text119">extract some</text>
      </g>
      <!-- sweet_wort&#45;&gt;extract_a_bit -->
      <g
         id="edge8"
         class="edge">
        <title
           id="title122">sweet_wort-&gt;extract_a_bit</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 295.823,-720.411 c -6.163,8.296 -13.758,18.52 -20.649,27.796"
           id="path124" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="272.26,-694.561 277.879,-690.387 277.879,-690.387 269.106,-684.447 "
           id="polygon126" />
      </g>
      <!-- boil -->
      <g
         id="node17"
         class="node">
        <title
           id="title129">boil</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="334.146,-684 334.146,-648 388.146,-648 388.146,-684 388.146,-684 "
           id="polygon131" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="361.146"
           y="-662.29999"
           font-size="14.00"
           id="text133">boil</text>
      </g>
      <!-- sweet_wort&#45;&gt;boil -->
      <g
         id="edge11"
         class="edge">
        <title
           id="title136">sweet_wort-&gt;boil</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 320.706,-720.411 c 6.281,8.296 14.023,18.52 21.045,27.796"
           id="path138" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="339.109,-690.307 344.69,-694.532 344.69,-694.532 347.936,-684.447 "
           id="polygon140" />
      </g>
      <!-- yeast -->
      <g
         id="node9"
         class="node">
        <title
           id="title143">yeast</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="28.695299"
           sodipodi:cy="-738"
           sodipodi:cx="212.146"
           cx="212.146"
           cy="-738"
           rx="28.695299"
           ry="18"
           id="ellipse145"
           d="m 240.8413,-738 c 0,9.94113 -12.84733,18 -28.6953,18 -15.84798,0 -28.6953,-8.05887 -28.6953,-18 0,-9.94113 12.84732,-18 28.6953,-18 15.84797,0 28.6953,8.05887 28.6953,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="212.146"
           y="-734.29999"
           font-size="14.00"
           id="text147">yeast</text>
      </g>
      <!-- yeast&#45;&gt;extract_a_bit -->
      <g
         id="edge9"
         class="edge">
        <title
           id="title150">yeast-&gt;extract_a_bit</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 222.13,-721.116 c 5.227,8.315 11.758,18.706 17.696,28.153"
           id="path152" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="236.992,-690.896 242.918,-694.621 242.918,-694.621 245.277,-684.292 "
           id="polygon154" />
      </g>
      <!-- bitter_wort -->
      <g
         id="node10"
         class="node">
        <title
           id="title157">bitter_wort</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="48.1917"
           sodipodi:cy="-594"
           sodipodi:cx="361.146"
           cx="361.146"
           cy="-594"
           rx="48.1917"
           ry="18"
           id="ellipse159"
           d="m 409.3377,-594 c 0,9.94113 -21.57616,18 -48.1917,18 -26.61554,0 -48.1917,-8.05887 -48.1917,-18 0,-9.94113 21.57616,-18 48.1917,-18 26.61554,0 48.1917,8.05887 48.1917,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="361.146"
           y="-590.29999"
           font-size="14.00"
           id="text161">bitter wort</text>
      </g>
      <!-- cool -->
      <g
         id="node18"
         class="node">
        <title
           id="title164">cool</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="334.146,-540 334.146,-504 388.146,-504 388.146,-540 388.146,-540 "
           id="polygon166" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="361.146"
           y="-518.29999"
           font-size="14.00"
           id="text168">cool</text>
      </g>
      <!-- bitter_wort&#45;&gt;cool -->
      <g
         id="edge14"
         class="edge">
        <title
           id="title171">bitter_wort-&gt;cool</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 361.146,-575.697 c 0,7.714 0,16.985 0,25.585"
           id="path173" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="357.646,-550.104 364.646,-550.104 364.646,-550.104 361.146,-540.104 "
           id="polygon175" />
      </g>
      <!-- yeast_culture -->
      <g
         id="node11"
         class="node">
        <title
           id="title178">yeast_culture</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="57.390499"
           sodipodi:cy="-522"
           sodipodi:cx="256.146"
           cx="256.146"
           cy="-522"
           rx="57.390499"
           ry="18"
           id="ellipse180"
           d="m 313.5365,-522 c 0,9.94113 -25.69461,18 -57.3905,18 -31.6959,0 -57.3905,-8.05887 -57.3905,-18 0,-9.94113 25.6946,-18 57.3905,-18 31.69589,0 57.3905,8.05887 57.3905,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="256.146"
           y="-518.29999"
           font-size="14.00"
           id="text182">pitched yeast</text>
      </g>
      <!-- add -->
      <g
         id="node19"
         class="node">
        <title
           id="title185">add</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="229.146,-468 229.146,-432 283.146,-432 283.146,-468 283.146,-468 "
           id="polygon187" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="256.146"
           y="-446.29999"
           font-size="14.00"
           id="text189">mix</text>
      </g>
      <!-- yeast_culture&#45;&gt;add -->
      <g
         id="edge17"
         class="edge">
        <title
           id="title192">yeast_culture-&gt;add</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 256.146,-503.697 c 0,7.714 0,16.985 0,25.585"
           id="path194" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="252.646,-478.104 259.646,-478.104 259.646,-478.104 256.146,-468.104 "
           id="polygon196" />
      </g>
      <!-- beer -->
      <g
         id="node12"
         class="node">
        <title
           id="title199">beer</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="27"
           sodipodi:cy="-306"
           sodipodi:cx="288.146"
           cx="288.146"
           cy="-306"
           rx="27"
           ry="18"
           id="ellipse201"
           d="m 315.146,-306 c 0,9.94113 -12.08832,18 -27,18 -14.91169,0 -27,-8.05887 -27,-18 0,-9.94113 12.08831,-18 27,-18 14.91168,0 27,8.05887 27,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="288.146"
           y="-302.29999"
           font-size="14.00"
           id="text203">beer</text>
      </g>
      <!-- mix -->
      <g
         id="node23"
         class="node">
        <title
           id="title206">mix</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="299.146,-252 299.146,-216 353.146,-216 353.146,-252 353.146,-252 "
           id="polygon208" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="326.146"
           y="-230.3"
           font-size="14.00"
           id="text210">mix</text>
      </g>
      <!-- beer&#45;&gt;mix -->
      <g
         id="edge22"
         class="edge">
        <title
           id="title213">beer-&gt;mix</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 296.959,-288.765 c 4.473,8.24 10.015,18.448 15.064,27.749"
           id="path215" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="309.003,-259.243 315.155,-262.582 315.155,-262.582 316.85,-252.124 "
           id="polygon217" />
      </g>
      <!-- ready -->
      <g
         id="node13"
         class="node">
        <title
           id="title220">ready</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="48.1917"
           sodipodi:cy="-18"
           sodipodi:cx="326.146"
           cx="326.146"
           cy="-18"
           rx="48.1917"
           ry="18"
           id="ellipse222"
           d="m 374.3377,-18 c 0,9.9411255 -21.57616,18 -48.1917,18 -26.61554,0 -48.1917,-8.0588745 -48.1917,-18 0,-9.941125 21.57616,-18 48.1917,-18 26.61554,0 48.1917,8.058875 48.1917,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="326.146"
           y="-14.3"
           font-size="14.00"
           id="text224">ready beer</text>
      </g>
      <!-- steep&#45;&gt;mash -->
      <g
         id="edge4"
         class="edge">
        <title
           id="title227">steep-&gt;mash</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 269.146,-935.697 c 0,7.714 0,16.985 0,25.585"
           id="path229" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="265.646,-910.104 272.646,-910.104 272.646,-910.104 269.146,-900.104 "
           id="polygon231" />
      </g>
      <!-- lauter&#45;&gt;sweet_wort -->
      <g
         id="edge7"
         class="edge">
        <title
           id="title234">lauter-&gt;sweet_wort</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 308.146,-791.697 c 0,7.714 0,16.985 0,25.585"
           id="path236" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="304.646,-766.104 311.646,-766.104 311.646,-766.104 308.146,-756.104 "
           id="polygon238" />
      </g>
      <!-- extract_a_bit&#45;&gt;yeast_culture -->
      <g
         id="edge10"
         class="edge">
        <title
           id="title241">extract_a_bit-&gt;yeast_culture</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 256.146,-647.871 c 0,24.201 0,68.66 0,97.478"
           id="path243" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="252.646,-550.189 259.646,-550.189 259.646,-550.189 256.146,-540.189 "
           id="polygon245" />
      </g>
      <!-- boil&#45;&gt;bitter_wort -->
      <g
         id="edge13"
         class="edge">
        <title
           id="title248">boil-&gt;bitter_wort</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 361.146,-647.697 c 0,7.714 0,16.985 0,25.585"
           id="path250" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="357.646,-622.104 364.646,-622.104 364.646,-622.104 361.146,-612.104 "
           id="polygon252" />
      </g>
      <!-- cool&#45;&gt;add -->
      <g
         id="edge16"
         class="edge">
        <title
           id="title255">cool-&gt;add</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 335.46,-503.876 c -13.602,9.068 -30.486,20.324 -45.175,30.117"
           id="path257" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="288.31,-476.649 292.193,-470.825 292.193,-470.825 281.931,-468.19 "
           id="polygon259" />
      </g>
      <!-- extract_speise -->
      <g
         id="node20"
         class="node">
        <title
           id="title262">extract_speise</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="301.646,-468 301.646,-432 428.646,-432 428.646,-468 428.646,-468 "
           id="polygon264" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="365.146"
           y="-446.29999"
           font-size="14.00"
           id="text266">extract speise (2:25)</text>
      </g>
      <!-- cool&#45;&gt;extract_speise -->
      <g
         id="edge15"
         class="edge">
        <title
           id="title269">cool-&gt;extract_speise</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 362.135,-503.697 c 0.44,7.714 0.97,16.985 1.462,25.585"
           id="path271" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="360.104,-477.888 367.092,-478.288 367.092,-478.288 364.169,-468.104 "
           id="polygon273" />
      </g>
      <!-- extract_quick -->
      <g
         id="node21"
         class="node">
        <title
           id="title276">extract_quick</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="117.146,-396 117.146,-360 227.146,-360 227.146,-396 227.146,-396 "
           id="polygon278" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="172.146"
           y="-374.29999"
           font-size="14.00"
           id="text280">extract test probe</text>
      </g>
      <!-- add&#45;&gt;extract_quick -->
      <g
         id="edge18"
         class="edge">
        <title
           id="title283">add-&gt;extract_quick</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 235.382,-431.697 c -10.478,8.732 -23.348,19.457 -34.736,28.947"
           id="path285" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="198.113,-405.195 202.594,-399.817 202.594,-399.817 192.671,-396.104 "
           id="polygon287" />
      </g>
      <!-- fermentation -->
      <g
         id="node22"
         class="node">
        <title
           id="title290">fermentation</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="245.146,-396 245.146,-360 331.146,-360 331.146,-396 331.146,-396 "
           id="polygon292" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="288.146"
           y="-374.29999"
           font-size="14.00"
           id="text294">fermentation</text>
      </g>
      <!-- add&#45;&gt;fermentation -->
      <g
         id="edge19"
         class="edge">
        <title
           id="title297">add-&gt;fermentation</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 264.056,-431.697 c 3.643,7.969 8.044,17.597 12.083,26.433"
           id="path299" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="272.986,-403.744 279.352,-406.654 279.352,-406.654 280.327,-396.104 "
           id="polygon301" />
      </g>
      <!-- speise -->
      <g
         id="node27"
         class="node">
        <title
           id="title304">speise</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="32.494202"
           sodipodi:cy="-306"
           sodipodi:cx="365.146"
           cx="365.146"
           cy="-306"
           rx="32.494202"
           ry="18"
           id="ellipse306"
           d="m 397.6402,-306 c 0,9.94113 -14.54815,18 -32.4942,18 -17.94606,0 -32.49421,-8.05887 -32.49421,-18 0,-9.94113 14.54815,-18 32.49421,-18 17.94605,0 32.4942,8.05887 32.4942,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="365.146"
           y="-302.29999"
           font-size="14.00"
           id="text308">speise</text>
      </g>
      <!-- extract_speise&#45;&gt;speise -->
      <g
         id="edge20"
         class="edge">
        <title
           id="title311">extract_speise-&gt;speise</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 365.146,-431.871 c 0,24.201 0,68.66 0,97.478"
           id="path313" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="361.646,-334.189 368.646,-334.189 368.646,-334.189 365.146,-324.189 "
           id="polygon315" />
      </g>
      <!-- fermentation&#45;&gt;beer -->
      <g
         id="edge21"
         class="edge">
        <title
           id="title318">fermentation-&gt;beer</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 288.146,-359.697 c 0,7.714 0,16.985 0,25.585"
           id="path320" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="284.646,-334.104 291.646,-334.104 291.646,-334.104 288.146,-324.104 "
           id="polygon322" />
      </g>
      <!-- bottle -->
      <g
         id="node25"
         class="node">
        <title
           id="title325">bottle</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="299.146,-180 299.146,-144 353.146,-144 353.146,-180 353.146,-180 "
           id="polygon327" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="326.146"
           y="-158.3"
           font-size="14.00"
           id="text329">bottle</text>
      </g>
      <!-- mix&#45;&gt;bottle -->
      <g
         id="edge24"
         class="edge">
        <title
           id="title332">mix-&gt;bottle</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 326.146,-215.697 c 0,7.714 0,16.985 0,25.585"
           id="path334" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="322.646,-190.104 329.646,-190.104 329.646,-190.104 326.146,-180.104 "
           id="polygon336" />
      </g>
      <!-- continued_fermentation -->
      <g
         id="node24"
         class="node">
        <title
           id="title339">continued_fermentation</title>
        <polygon
           style="fill:none;stroke:#000000"
           points="204.646,-108 204.646,-72 447.646,-72 447.646,-108 447.646,-108 "
           id="polygon341" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="326.146"
           y="-86.300003"
           font-size="14.00"
           id="text343">continued fermentation and carbonisation</text>
      </g>
      <!-- continued_fermentation&#45;&gt;ready -->
      <g
         id="edge26"
         class="edge">
        <title
           id="title346">continued_fermentation-&gt;ready</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 326.146,-71.6966 c 0,7.7139 0,16.9841 0,25.5842"
           id="path348" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="322.646,-46.1044 329.646,-46.1043 329.646,-46.1043 326.146,-36.1043 "
           id="polygon350" />
      </g>
      <!-- bottle&#45;&gt;continued_fermentation -->
      <g
         id="edge25"
         class="edge">
        <title
           id="title353">bottle-&gt;continued_fermentation</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 326.146,-143.697 c 0,7.714 0,16.985 0,25.585"
           id="path355" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="322.646,-118.104 329.646,-118.104 329.646,-118.104 326.146,-108.104 "
           id="polygon357" />
      </g>
      <!-- hops -->
      <g
         id="node26"
         class="node">
        <title
           id="title360">hops</title>
        <ellipse
           style="fill:none;stroke:#000000"
           sodipodi:ry="18"
           sodipodi:rx="27.0966"
           sodipodi:cy="-738"
           sodipodi:cx="403.146"
           cx="403.146"
           cy="-738"
           rx="27.0966"
           ry="18"
           id="ellipse362"
           d="m 430.2426,-738 c 0,9.94113 -12.13157,18 -27.0966,18 -14.96504,0 -27.0966,-8.05887 -27.0966,-18 0,-9.94113 12.13156,-18 27.0966,-18 14.96503,0 27.0966,8.05887 27.0966,18 z" />
        <text
           style="font-size:14px;text-anchor:middle;font-family:'Times,serif'"
           x="403.146"
           y="-734.29999"
           font-size="14.00"
           id="text364">hops</text>
      </g>
      <!-- hops&#45;&gt;boil -->
      <g
         id="edge12"
         class="edge">
        <title
           id="title367">hops-&gt;boil</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 393.615,-721.116 c -4.988,8.315 -11.223,18.706 -16.891,28.153"
           id="path369" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="373.665,-694.668 379.667,-691.066 379.667,-691.066 371.521,-684.292 "
           id="polygon371" />
      </g>
      <!-- speise&#45;&gt;mix -->
      <g
         id="edge23"
         class="edge">
        <title
           id="title374">speise-&gt;mix</title>
        <path
           style="fill:none;stroke:#000000"
           inkscape:connector-curvature="0"
           d="m 355.903,-288.411 c -4.527,8.126 -10.086,18.104 -15.169,27.227"
           id="path376" />
        <polygon
           style="fill:#000000;stroke:#000000"
           points="337.676,-262.886 343.791,-259.479 343.791,-259.479 335.866,-252.447 "
           id="polygon378" />
      </g>
    </g>
  </g>
</svg>