Skip to content
e_coli_core.xml 430 KiB
Newer Older
Mark Robinson's avatar
Mark Robinson committed
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
<?xml version='1.0' encoding='UTF-8'?>
<sbml xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2" level="3" sboTerm="SBO:0000624" version="1" xmlns="http://www.sbml.org/sbml/level3/version1/core" fbc:required="false">
  <model fbc:strict="true" id="e_coli_core" name="Escherichia coli str. K-12 substr. MG1655">
    <listOfUnitDefinitions>
      <unitDefinition id="mmol_per_gDW_per_hr">
        <listOfUnits>
          <unit exponent="1" kind="mole" multiplier="1" scale="-3"/>
          <unit exponent="-1" kind="gram" multiplier="1" scale="0"/>
          <unit exponent="-1" kind="second" multiplier="3600" scale="0"/>
        </listOfUnits>
      </unitDefinition>
    </listOfUnitDefinitions>
    <fbc:listOfObjectives fbc:activeObjective="obj">
      <fbc:objective fbc:id="obj" fbc:type="maximize">
        <fbc:listOfFluxObjectives>
          <fbc:fluxObjective fbc:reaction="R_BIOMASS_Ecoli_core_w_GAM" fbc:coefficient="1"/>
        </fbc:listOfFluxObjectives>
      </fbc:objective>
    </fbc:listOfObjectives>
    <listOfParameters>
      <parameter constant="true" id="cobra_default_lb" sboTerm="SBO:0000626" units="mmol_per_gDW_per_hr" value="-1000"/>
      <parameter constant="true" id="cobra_default_ub" sboTerm="SBO:0000626" units="mmol_per_gDW_per_hr" value="1000"/>
      <parameter constant="true" id="cobra_0_bound" sboTerm="SBO:0000626" units="mmol_per_gDW_per_hr" value="0"/>
      <parameter constant="true" id="R_ATPM_lower_bound" sboTerm="SBO:0000625" units="mmol_per_gDW_per_hr" value="8.39"/>
      <parameter constant="true" id="R_EX_glc__D_e_lower_bound" sboTerm="SBO:0000625" units="mmol_per_gDW_per_hr" value="-10"/>
      <parameter constant="true" id="R_EX_o2_e_lower_bound" sboTerm="SBO:0000625" units="mmol_per_gDW_per_hr" value="-20"/>
    </listOfParameters>
    <listOfCompartments>
      <compartment constant="true" id="e" name="extracellular space"/>
      <compartment constant="true" id="c" name="cytosol"/>
    </listOfCompartments>
    <listOfSpecies>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_13dpg_c" name="3-Phospho-D-glyceroyl phosphate" metaid="M_13dpg_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C3H4O10P2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_13dpg_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/13dpg"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DPG"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11881"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16001"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1658"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20189"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57604"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01270"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00236"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM261"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29800"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00203"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00236"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_2pg_c" name="D-Glycerate 2-phosphate" metaid="M_2pg_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C3H4O7P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_2pg_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2pg"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-PG"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11651"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1267"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12986"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17835"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21028"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24344"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39868"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58289"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00362"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03391"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00631"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM275"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/30485"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00482"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00631"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_3pg_c" name="3-Phospho-D-glycerate" metaid="M_3pg_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C3H4O7P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_3pg_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3pg"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:G3P"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11879"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11880"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11882"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12987"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1657"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1659"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17050"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17794"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21029"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24345"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40016"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57998"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58272"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00807"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60180"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00197"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00597"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM126"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29728"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00169"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00197"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00597"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_6pgc_c" name="6-Phospho-D-gluconate" metaid="M_6pgc_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C6H10O10P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_6pgc_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6pgc"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-2961"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12232"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16863"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2231"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33851"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40282"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43824"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48928"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58759"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01316"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00345"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM325"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29996"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00284"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00345"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_6pgl_c" name="6-phospho-D-glucono-1,5-lactone" metaid="M_6pgl_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C6H9O9P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_6pgl_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6pgl"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-6-P-GLUCONO-DELTA-LACTONE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12233"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12958"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16938"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20989"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4160"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57955"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01127"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01236"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM429"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/31467"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00911"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC01236"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_ac_c" name="Acetate" metaid="M_ac_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C2H3O2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_ac_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ac"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACET"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13704"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15366"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22165"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22169"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2387"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30089"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40480"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40486"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00042"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00033"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00010"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010000"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010002"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113539"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/1524044"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/2022890"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29416"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/390305"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00029"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0050"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00033"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_ac_e" name="Acetate" metaid="M_ac_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="C2H3O2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_ac_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ac"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACET"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13704"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15366"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22165"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22169"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2387"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30089"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40480"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40486"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00042"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00033"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00010"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010000"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010002"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113539"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/1524044"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/2022890"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29416"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/390305"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00029"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0050"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00033"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_acald_c" name="Acetaldehyde" metaid="M_acald_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C2H4O">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_acald_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acald"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETALD"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13703"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15343"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22158"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2383"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40533"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00990"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00084"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113532"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113681"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113745"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29510"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00071"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0160"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00084"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_acald_e" name="Acetaldehyde" metaid="M_acald_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="C2H4O">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_acald_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acald"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETALD"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13703"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15343"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22158"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2383"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40533"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00990"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00084"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113532"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113681"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113745"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29510"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00071"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0160"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00084"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_accoa_c" name="Acetyl-CoA" metaid="M_accoa_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C23H34N7O17P3S">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_accoa_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/accoa"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-COA"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13712"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15351"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22192"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2408"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40470"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57288"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01206"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00024"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050000"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050029"/>
                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050281"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM21"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113559"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113560"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/353123"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/727753"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/76183"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00022"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0031"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00024"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_acon_C_c" name="Cis-Aconitate" metaid="M_acon_C_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C6H3O6">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_acon_C_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acon_C"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CIS-ACONITATE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10482"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12798"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16383"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23306"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23308"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32805"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00072"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00461"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00417"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM813"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00331"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c1169"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00417"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_actp_c" name="Acetyl phosphate" metaid="M_actp_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C2H3O5P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_actp_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/actp"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-P"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13711"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15350"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22191"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2407"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46262"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01494"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00227"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM280"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00196"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00227"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_adp_c" name="ADP" metaid="M_adp_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C10H12N5O10P2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_adp_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adp"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADP"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADP-GROUP"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13222"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16761"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22244"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2342"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40553"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456216"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87518"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01341"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00008"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/G11113"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113581"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113582"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/114565"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/211606"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29370"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/5632457"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00008"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00008"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_akg_c" name="2-Oxoglutarate" metaid="M_akg_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C5H4O5">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_akg_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/akg"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETOGLUTARATE"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16852"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11638"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1253"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16810"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19748"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19749"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30915"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30916"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40661"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00208"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02812"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00026"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM20"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113594"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113671"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29406"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389537"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/561075"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00024"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0880"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00026"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_akg_e" name="2-Oxoglutarate" metaid="M_akg_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="C5H4O5">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_akg_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/akg"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETOGLUTARATE"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16852"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11638"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1253"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16810"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19748"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19749"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30915"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30916"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40661"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00208"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02812"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00026"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM20"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113594"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113671"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29406"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389537"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/561075"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00024"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0880"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00026"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_amp_c" name="AMP" metaid="M_amp_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C10H12N5O7P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_amp_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/amp"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP-GROUP"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1139"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12056"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13234"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13235"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13736"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13740"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16027"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22242"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22245"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2356"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40510"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40721"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40726"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40786"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40826"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456215"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47222"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00045"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00020"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D02769"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D06299"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM14"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/164121"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389620"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00018"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00020"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_atp_c" name="ATP" metaid="M_atp_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C10H12N5O13P3">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_atp_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/atp"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATP"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10789"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10841"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13236"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15422"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22249"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2359"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30616"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40938"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57299"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00538"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00002"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D08646"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/211579"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389573"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00002"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00002"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_cit_c" name="Citrate" metaid="M_cit_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C6H5O7">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_cit_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cit"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CIT"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13999"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16947"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23321"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23322"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30769"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35802"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35806"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35809"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35810"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3727"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41523"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42563"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50744"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76049"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00094"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00158"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00037"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM131"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29654"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/433138"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00137"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00158"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_co2_c" name="CO2" metaid="M_co2_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="CO2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_co2_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/co2"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBON-DIOXIDE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13282"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13283"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13284"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13285"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16526"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23011"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3283"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48829"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01967"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00011"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00004"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM13"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113528"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/1237009"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/159751"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/159942"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/189480"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29376"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389536"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/5668565"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00011"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0131"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00011"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_co2_e" name="CO2" metaid="M_co2_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="CO2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_co2_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/co2"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBON-DIOXIDE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13282"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13283"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13284"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13285"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16526"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23011"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3283"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48829"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01967"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00011"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00004"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM13"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113528"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/1237009"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/159751"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/159942"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/189480"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29376"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389536"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/5668565"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00011"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0131"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00011"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_coa_c" name="Coenzyme A" metaid="M_coa_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C21H32N7O16P3S">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_coa_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/coa"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CO-A"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COA-GROUP"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13294"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13295"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13298"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15346"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23355"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3771"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41597"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41631"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57287"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:741566"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01423"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00010"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/162743"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/193514"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/2485002"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29374"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/5490263"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/76194"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00010"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0919"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00010"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_dhap_c" name="Dihydroxyacetone phosphate" metaid="M_dhap_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C3H5O6P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_dhap_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhap"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXY-ACETONE-PHOSPHATE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14341"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14342"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16108"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24355"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39571"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5454"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57642"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01473"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11735"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00111"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM77"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/188451"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/390404"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/75970"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00095"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00111"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_e4p_c" name="D-Erythrose 4-phosphate" metaid="M_e4p_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C4H7O7P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_e4p_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/e4p"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ERYTHROSE-4P"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12921"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16897"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20927"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21109"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27508"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4114"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42349"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4256"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48153"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01321"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00279"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03109"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM258"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29878"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00236"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01994"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00279"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_etoh_c" name="Ethanol" metaid="M_etoh_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C2H6O">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_etoh_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etoh"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETOH"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14222"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16236"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23978"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30878"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30880"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42377"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44594"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4879"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52092"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00108"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00469"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00068"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D02798"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D04855"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D06542"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM303"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113748"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/30203"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00363"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0038"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00469"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_etoh_e" name="Ethanol" metaid="M_etoh_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="C2H6O">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_etoh_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etoh"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETOH"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14222"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16236"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23978"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30878"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30880"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42377"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44594"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4879"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52092"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00108"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00469"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00068"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D02798"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D04855"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D06542"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM303"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/113748"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/30203"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00363"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0038"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00469"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_f6p_c" name="D-Fructose 6-phosphate" metaid="M_f6p_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C6H11O9P">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_f6p_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f6p"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15709"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12926"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15946"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20935"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4124"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42406"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57579"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61527"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61553"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00124"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00085"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89629"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29512"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00072"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00085"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_fdp_c" name="D-Fructose 1,6-bisphosphate" metaid="M_fdp_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C6H10O12P2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_fdp_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fdp"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37736"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49299"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00354"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM417"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00290"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00354"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_for_c" name="Formate" metaid="M_for_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="CH1O2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_for_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/for"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYL-GROUP"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9845"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMATE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14276"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15740"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24081"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24082"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30751"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42460"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5145"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52343"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00142"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00058"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM39"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29460"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389585"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00047"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0106"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00058"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_for_e" name="Formate" metaid="M_for_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="CH1O2">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_for_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/for"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYL-GROUP"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9845"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMATE"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14276"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15740"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24081"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24082"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30751"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42460"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5145"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52343"/>
                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00142"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00058"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM39"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/29460"/>
                  <rdf:li rdf:resource="http://identifiers.org/reactome/389585"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00047"/>
                  <rdf:li rdf:resource="http://identifiers.org/umbbd.compound/c0106"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00058"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_fru_e" name="D-Fructose" metaid="M_fru_e" sboTerm="SBO:0000247" compartment="e" fbc:chemicalFormula="C6H12O6">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_fru_e">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fru"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15382"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Fructofuranose"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24104"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24110"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28757"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37721"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4119"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47424"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48095"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5172"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00095"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01496"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C10906"/>
                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/D00114"/>
                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM175"/>
                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00082"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPC00095"/>
                  <rdf:li rdf:resource="http://identifiers.org/unipathway.compound/UPX00030"/>
                </rdf:Bag>
              </bqbiol:is>
            </rdf:Description>
          </rdf:RDF>
        </sbml:annotation>
      </species>
      <species boundaryCondition="false" constant="false" hasOnlySubstanceUnits="false" id="M_fum_c" name="Fumarate" metaid="M_fum_c" sboTerm="SBO:0000247" compartment="c" fbc:chemicalFormula="C4H2O4">
        <sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
            <rdf:Description rdf:about="#M_fum_c">
              <bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
                <rdf:Bag>
                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fum"/>
                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUM"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14284"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18012"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24122"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24124"/>
                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29806"/>