Datasets:
File size: 73,475 Bytes
38b6321 |
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 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [
<!ENTITY cmns-av "https://www.omg.org/spec/Commons/AnnotationVocabulary/">
<!ENTITY cmns-cls "https://www.omg.org/spec/Commons/Classifiers/">
<!ENTITY cmns-id "https://www.omg.org/spec/Commons/Identifiers/">
<!ENTITY dct "http://purl.org/dc/terms/">
<!ENTITY fibo-be-ge-usj "https://spec.edmcouncil.org/fibo/ontology/BE/GovernmentEntities/NorthAmericanJurisdiction/USGovernmentEntitiesAndJurisdictions/">
<!ENTITY fibo-be-le-usee "https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/NorthAmericanEntities/USExampleEntities/">
<!ENTITY fibo-fbc-fct-mkti "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/MarketsIndividuals/">
<!ENTITY fibo-fbc-fct-ra "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegistrationAuthorities/">
<!ENTITY fibo-fbc-fct-usind "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USExampleIndividuals/">
<!ENTITY fibo-fbc-fct-usjrga "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USRegulatoryAgencies/">
<!ENTITY fibo-fbc-fct-usmkt "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USMarketsAndExchangesIndividuals/">
<!ENTITY fibo-fbc-fi-fi "https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/FinancialInstruments/">
<!ENTITY fibo-fnd-acc-4217 "https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/ISO4217-CurrencyCodes/">
<!ENTITY fibo-fnd-acc-cur "https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/">
<!ENTITY fibo-fnd-agr-ctr "https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/">
<!ENTITY fibo-fnd-rel-rel "https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/">
<!ENTITY fibo-fnd-utl-av "https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/">
<!ENTITY fibo-sec-eq-10962 "https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityCFIClassificationIndividuals/">
<!ENTITY fibo-sec-eq-eq "https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityInstruments/">
<!ENTITY fibo-sec-eq-eqind "https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquitiesExampleIndividuals/">
<!ENTITY fibo-sec-sec-id "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIdentification/">
<!ENTITY fibo-sec-sec-idind "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIdentificationIndividuals/">
<!ENTITY fibo-sec-sec-iss "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/">
<!ENTITY fibo-sec-sec-lst "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesListings/">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
]>
<rdf:RDF xml:base="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquitiesExampleIndividuals/"
xmlns:cmns-av="https://www.omg.org/spec/Commons/AnnotationVocabulary/"
xmlns:cmns-cls="https://www.omg.org/spec/Commons/Classifiers/"
xmlns:cmns-id="https://www.omg.org/spec/Commons/Identifiers/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:fibo-be-ge-usj="https://spec.edmcouncil.org/fibo/ontology/BE/GovernmentEntities/NorthAmericanJurisdiction/USGovernmentEntitiesAndJurisdictions/"
xmlns:fibo-be-le-usee="https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/NorthAmericanEntities/USExampleEntities/"
xmlns:fibo-fbc-fct-mkti="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/MarketsIndividuals/"
xmlns:fibo-fbc-fct-ra="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegistrationAuthorities/"
xmlns:fibo-fbc-fct-usind="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USExampleIndividuals/"
xmlns:fibo-fbc-fct-usjrga="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USRegulatoryAgencies/"
xmlns:fibo-fbc-fct-usmkt="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USMarketsAndExchangesIndividuals/"
xmlns:fibo-fbc-fi-fi="https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/FinancialInstruments/"
xmlns:fibo-fnd-acc-4217="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/ISO4217-CurrencyCodes/"
xmlns:fibo-fnd-acc-cur="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/"
xmlns:fibo-fnd-agr-ctr="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/"
xmlns:fibo-fnd-rel-rel="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"
xmlns:fibo-fnd-utl-av="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"
xmlns:fibo-sec-eq-10962="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityCFIClassificationIndividuals/"
xmlns:fibo-sec-eq-eq="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityInstruments/"
xmlns:fibo-sec-eq-eqind="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquitiesExampleIndividuals/"
xmlns:fibo-sec-sec-id="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIdentification/"
xmlns:fibo-sec-sec-idind="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIdentificationIndividuals/"
xmlns:fibo-sec-sec-iss="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/"
xmlns:fibo-sec-sec-lst="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesListings/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<owl:Ontology rdf:about="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquitiesExampleIndividuals/">
<rdfs:label>Equities Example Individuals Ontology</rdfs:label>
<dct:abstract>This ontology provides examples of how to represent simple equities.</dct:abstract>
<dct:license rdf:datatype="&xsd;anyURI">https://opensource.org/licenses/MIT</dct:license>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/GovernmentEntities/NorthAmericanJurisdiction/USGovernmentEntitiesAndJurisdictions/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/NorthAmericanEntities/USExampleEntities/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/FinancialInstruments/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/MarketsIndividuals/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USExampleIndividuals/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USMarketsAndExchangesIndividuals/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/NorthAmericanEntities/USRegulatoryAgencies/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegistrationAuthorities/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/ISO4217-CurrencyCodes/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityInstruments/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIdentification/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIdentificationIndividuals/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesListings/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/AnnotationVocabulary/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/Classifiers/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/Identifiers/"/>
<owl:versionIRI rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/20230301/Equities/EquitiesExampleIndividuals/"/>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20200301/Equities/EquitiesExampleIndividuals.rdf version of this ontology was modified to add CFI codes to the example equity instruments.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20200501/Equities/EquitiesExampleIndividuals.rdf version of this ontology was revised to replace uses of hasTag in Relations with hasTag from LCC, as the more complex union of datatypes in the Relations concept is not needed here.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20200701/Equities/EquitiesExampleIndividuals.rdf version of this ontology was revised to add the share class to some of the examples, replace registered form with book entry (registered) form, and add detail to the common share and listing individuals.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20201201/Equities/EquitiesExampleIndividuals.rdf version of this ontology was revised to replace equity issuer with share issuer.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20210301/Equities/EquitiesExampleIndividuals.rdf version of this ontology was revised to address changes to the markets individuals ontology.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20221201/Equities/EquitiesExampleIndividuals.rdf version of the ontology was modified to use the Commons Ontology Library (Commons) Annotation Vocabulary rather than the OMG's Specification Metadata vocabulary.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20230201/Equities/EquitiesExampleIndividuals.rdf version of this ontology was modified to use the Commons Ontology Library (Commons) rather than the OMG's Languages, Countries and Codes (LCC) and to eliminate redundancies in FIBO as appropriate.</skos:changeNote>
<fibo-fnd-utl-av:hasMaturityLevel rdf:resource="&fibo-fnd-utl-av;Release"/>
<cmns-av:copyright>Copyright (c) 2019-2023 EDM Council, Inc.</cmns-av:copyright>
<cmns-av:copyright>Copyright (c) 2019-2023 Object Management Group, Inc.</cmns-av:copyright>
</owl:Ontology>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AlphabetIncClassACommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>Alphabet Inc. class A common stock</rdfs:label>
<skos:definition>common share class that represents class A series shares in Alphabet Inc.</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>2015-10-02</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;AlphabetIncEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;AlphabetIncEquityIssuer"/>
<fibo-sec-eq-eq:hasShareClass>A</fibo-sec-eq-eq:hasShareClass>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassACommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AlphabetIncClassAFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>Alphabet Inc. class A financial instrument short name</rdfs:label>
<skos:definition>Alphabet Inc. class A common share financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>ALPHABET INC/SH CL A</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH CL A</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>ALPHABET INC</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AlphabetIncClassCCapitalStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonNonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>Alphabet Inc. class C capital stock</rdfs:label>
<skos:definition>common share class that represents class C series shares in Alphabet Inc.</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>2015-10-02</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;AlphabetIncEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;AlphabetIncEquityIssuer"/>
<fibo-sec-eq-eq:hasShareClass>C</fibo-sec-eq-eq:hasShareClass>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassCCapitalStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESNUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AlphabetIncClassCFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>Alphabet Inc. class C financial instrument short name</rdfs:label>
<skos:definition>Alphabet Inc. class C capital stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>ALPHABET INC/SH CAP SH NV</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH CAP SH NV</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>ALPHABET INC</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AlphabetIncEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>Alphabet Inc. equity issuer</rdfs:label>
<skos:definition>Alphabet Inc. functional entity that is an issuer of stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-be-le-usee;AlphabetInc-US-CA"/>
<fibo-sec-sec-iss:hasIssuerShortName>ALPHABET INC</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AppleIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>Apple Inc. common stock</rdfs:label>
<skos:definition>common share class representing shares in Apple Inc.</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfCaliforniaJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>1980-12-01</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;AppleIncEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;AppleIncEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XLOMListedAppleIncCommonStock"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNASListedAppleIncCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AppleIncCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>Apple Inc. common stock financial instrument short name</rdfs:label>
<skos:definition>Apple Inc. common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>APPLE INC/SH SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>APPLE INC</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;AppleIncEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>Apple Inc. common stock issuer</rdfs:label>
<skos:definition>Apple Inc. functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-be-le-usee;AppleInc-US-CA"/>
<fibo-sec-sec-iss:hasIssuerShortName>APPLE INC</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000B9Y5X2">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000B9Y5X2</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Apple Inc. common shares listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000B9Y5X2</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNASListedAppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000BKZDM1">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000BKZDM1</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for The Home Depot common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000BKZDM1</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000BLNQ16">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000BLNQ16</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for IBM common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000BLNQ16</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedInternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000BMX4N8">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000BMX4N8</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for The Coca-Cola Company common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000BMX4N8</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000BR2WS4">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000BR2WS4</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for The Proctor & Gamble Company common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000BR2WS4</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000BWQFY7">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000BWQFY7</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Wells Fargo & Company common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000BWQFY7</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedWellsFargoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000DMBZW1">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000DMBZW1</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for JPMorgan Chase & Co. common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000DMBZW1</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedJPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG000FY4VG8">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG000FY4VG8</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Citigroup Inc. common shares listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG000FY4VG8</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedCitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S5MQ8">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S5MQ8</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for The Coca-Cola Company common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S5MQ8</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S5N8V8">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S5N8V8</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Apple Inc. common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S5N8V8</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S5RTW7">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S5RTW7</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for The Home Depot, Inc. common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S5RTW7</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S5S399">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S5S399</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for IBM common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S5S399</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S5V4L9">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S5V4L9</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for The Proctor & Gamble Company common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S5V4L9</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S5XF23">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S5XF23</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Wells Fargo & Company common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S5XF23</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;WellsFargoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S72ZG4">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S72ZG4</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Citigroup Inc. common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S72ZG4</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;CitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG001S8CRC3">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG001S8CRC3</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for JPMorgan Chase & Co. common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG001S8CRC3</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG009S39JY5">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG009S39JY5</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Alphabet Inc. class A common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG009S39JY5</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG009S3NB21">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG009S3NB21</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Alphabet Inc. class C common shares</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG009S3NB21</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG009S4MT03">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG009S4MT03</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Alphabet Inc. class A common shares listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG009S4MT03</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG009S4MVF2">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG009S4MVF2</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Alphabet Inc. class C common shares listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG009S4MVF2</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;BBG00JPR0LX8">
<rdf:type rdf:resource="&fibo-sec-sec-idind;FinancialInstrumentGlobalIdentifier"/>
<rdfs:label>BBG00JPR0LX8</rdfs:label>
<skos:definition>Financial Instrument Global Identifier (FIGI) for Apple Inc. common shares listed in the London Stock Exchange</skos:definition>
<fibo-fnd-rel-rel:hasTag>BBG00JPR0LX8</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XLOMListedAppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-02079K107">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>02079K107</rdfs:label>
<skos:definition>Alphabet Inc. class C common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>02079K107</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-02079K305">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>02079K305</rdfs:label>
<skos:definition>Alphabet Inc. class A common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>02079K305</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-037833100">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>037833100</rdfs:label>
<skos:definition>Apple Inc. common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>037833100</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-172967424">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>172967424</rdfs:label>
<skos:definition>Citigroup Inc. common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>172967424</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;CitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-191216100">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>191216100</rdfs:label>
<skos:definition>The Coca-Cola Company common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>191216100</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-437076102">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>437076102</rdfs:label>
<skos:definition>The Home Depot, Inc. common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>437076102</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-459200101">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>459200101</rdfs:label>
<skos:definition>IBM common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>459200101</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-46625H100">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>46625H100</rdfs:label>
<skos:definition>JPMorgan Chase & Co. common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>46625H100</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-742718109">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>742718109</rdfs:label>
<skos:definition>The Proctor & Gamble Company common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>742718109</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CUSIP-949746101">
<rdf:type rdf:resource="&fibo-sec-sec-idind;CommitteeOnUniformSecuritiesIdentificationProceduresNumber"/>
<rdfs:label>949746101</rdfs:label>
<skos:definition>Wells Fargo & Company common share CUSIP</skos:definition>
<fibo-fnd-rel-rel:hasTag>949746101</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;WellsFargoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CitigroupIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>Citigroup Inc. common stock</rdfs:label>
<skos:definition>common share class representing shares in Citigroup Inc.</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>1998-09-29</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;CitigroupIncEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;CitigroupIncEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedCitigroupIncCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CitigroupIncCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>Citigroup Inc. common stock financial instrument short name</rdfs:label>
<skos:definition>Citigroup Inc. common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>CITIGROUP INC/SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>CITIGROUP INC</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;CitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;CitigroupIncEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>Citigroup Inc. common stock issuer</rdfs:label>
<skos:definition>Citigroup Inc. functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-fbc-fct-usind;CitigroupInc-US-DE"/>
<fibo-sec-sec-iss:hasIssuerShortName>CITIGROUP INC</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US02079K1079">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US02079K1079</rdfs:label>
<skos:definition>Alphabet Inc. class C common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US02079K1079</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US02079K3059">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US02079K3059</rdfs:label>
<skos:definition>Alphabet Inc. class A common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US02079K3059</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US0378331005">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US0378331005</rdfs:label>
<skos:definition>Apple Inc. common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US0378331005</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;AppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US1729674242">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US1729674242</rdfs:label>
<skos:definition>Citigroup Inc. common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US1729674242</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;CitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US1912161007">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US1912161007</rdfs:label>
<skos:definition>The Coca-Cola Company common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US1912161007</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US4370761029">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US4370761029</rdfs:label>
<skos:definition>The Home Depot, Inc. common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US4370761029</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US4592001014">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US4592001014</rdfs:label>
<skos:definition>IBM common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US4592001014</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US46625H1005">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US46625H1005</rdfs:label>
<skos:definition>JPMorgan Chase & Co. common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US46625H1005</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US7427181091">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US7427181091</rdfs:label>
<skos:definition>The Proctor & Gamble Company common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US7427181091</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;ISIN-US9497461015">
<rdf:type rdf:resource="&fibo-sec-sec-id;InternationalSecuritiesIdentificationNumber"/>
<rdfs:label>US9497461015</rdfs:label>
<skos:definition>Wells Fargo & Company common share ISIN</skos:definition>
<fibo-fnd-rel-rel:hasTag>US9497461015</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;WellsFargoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>International Business Machines Corporation common stock</rdfs:label>
<skos:definition>common share class representing shares in International Business Machines Corporation</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfNewYorkJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedInternationalBusinessMachinesCorporationCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>International Business Machines Corporation common stock financial instrument short name</rdfs:label>
<skos:definition>IBM common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>INTL BUS MACHIN/SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>INTL BUS MACHIN</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>International Business Machines Corporation common stock issuer</rdfs:label>
<skos:definition>IBM functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-be-le-usee;InternationalBusinessMachinesCorporation-US-NY"/>
<fibo-sec-sec-iss:hasIssuerShortName>INTL BUS MACHIN</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>JPMorgan Chase & Co. common stock</rdfs:label>
<skos:definition>common share class representing shares in J.P. Morgan Chase & Co.</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>2000-12-28</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedJPMorganChaseAndCoCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>J.P. Morgan Chase & Co. common stock financial instrument short name</rdfs:label>
<skos:definition>J.P. Morgan Chase & Co. common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>JPMORGAN CHASE/SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>JPMORGAN CHASE</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;JPMorganChaseAndCoEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>J.P. Morgan Chase & Co. common stock issuer</rdfs:label>
<skos:definition>J.P. Morgan Chase & Co. functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-fbc-fct-usind;JPMorganChaseAndCo-US-DE"/>
<fibo-sec-sec-iss:hasIssuerShortName>JPMORGAN CHASE</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;SEDOL-B0YQ5W0">
<rdf:type rdf:resource="&fibo-sec-sec-idind;StockExchangeDailyOfficialListCode"/>
<rdfs:label>B0YQ5W0</rdfs:label>
<skos:definition>Apple Inc. common share SEDOL listed in the London Stock Exchange</skos:definition>
<fibo-fnd-rel-rel:hasTag>B0YQ5W0</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XLOMListedAppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>The Coca-Cola Company common stock</rdfs:label>
<skos:definition>common share class representing shares in The Coca-Cola Company</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheCoca-ColaCompanyCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>The Coca-Cola Company common stock financial instrument short name</rdfs:label>
<skos:definition>The Coca-Cola Company common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>COCA COLA CO/SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>COCA COLA CO</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheCoca-ColaCompanyEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>The Coca-Cola Company common stock issuer</rdfs:label>
<skos:definition>The Coca-Cola Company functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-be-le-usee;TheCoca-ColaCompany-US-DE"/>
<fibo-sec-sec-iss:hasIssuerShortName>COCA COLA CO</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>The Home Depot, Inc. common stock</rdfs:label>
<skos:definition>common share class representing shares in The Home Depot, Inc.</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>1981-09-22</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheHomeDepotIncCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>The Home Depot, Inc. common stock financial instrument short name</rdfs:label>
<skos:definition>Home Depot, Inc. common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>HOME DEPOT INC/SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>HOME DEPOT INC</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheHomeDepotIncEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>The Home Depot, Inc. common stock issuer</rdfs:label>
<skos:definition>Home Depot, Inc. functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-be-le-usee;TheHomeDepotInc-US-DE"/>
<fibo-sec-sec-iss:hasIssuerShortName>HOME DEPOT INC</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>The Proctor & Gamble Company common stock</rdfs:label>
<skos:definition>common share class representing shares in The Proctor & Gamble Company</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfOhioJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyEquityIssuer"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyEquityIssuer"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheProctorAndGambleCompanyCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStockFinancialInstrumentShortName">
<rdf:type rdf:resource="&fibo-sec-sec-iss;FinancialInstrumentShortName"/>
<rdfs:label>The Proctor & Gamble Company common stock financial instrument short name</rdfs:label>
<skos:definition>The Proctor & Gamble Company common stock financial instrument short name (FISN)</skos:definition>
<fibo-fnd-rel-rel:hasTag>PROCTER & GAMBL/SH</fibo-fnd-rel-rel:hasTag>
<fibo-sec-sec-iss:hasInstrumentDescription>SH</fibo-sec-sec-iss:hasInstrumentDescription>
<fibo-sec-sec-iss:hasIssuerShortName>PROCTER & GAMBL</fibo-sec-sec-iss:hasIssuerShortName>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyEquityIssuer">
<rdf:type rdf:resource="&fibo-sec-eq-eq;ShareIssuer"/>
<rdfs:label>The Proctor & Gamble Company common stock issuer</rdfs:label>
<skos:definition>The Proctor & Gamble Company functional entity that is an issuer of common stock</skos:definition>
<fibo-fnd-rel-rel:hasIdentity rdf:resource="&fibo-be-le-usee;TheProctorAndGambleCompany-US-OH"/>
<fibo-sec-sec-iss:hasIssuerShortName>PROCTOR & GAMBL</fibo-sec-sec-iss:hasIssuerShortName>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XLOM-0R2V">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XLOM - 0R2V</rdfs:label>
<skos:definition>ticker symbol for Apple Inc. common stock listed in the London Stock Exchange</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-mkti;Facility-XLOM"/>
<fibo-fnd-rel-rel:hasTag>0R2V</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XLOMListedAppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNAS-AAPL">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNAS - AAPL</rdfs:label>
<skos:definition>ticker symbol for Apple Inc. common stock listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-fnd-rel-rel:hasTag>AAPL</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNASListedAppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNAS-GOOG">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNAS - GOOG</rdfs:label>
<skos:definition>ticker symbol for Alphabet Inc. class C capital stock listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-fnd-rel-rel:hasTag>GOOG</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNAS-GOOGL">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNAS - GOOGL</rdfs:label>
<skos:definition>ticker symbol for Alphabet Inc. class A common stock listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-fnd-rel-rel:hasTag>GOOGL</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-C">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - C</rdfs:label>
<skos:definition>ticker symbol for Citigroup Inc. common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>C</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedCitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-HD">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - HD</rdfs:label>
<skos:definition>ticker symbol for The Home Depot, Inc. common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>HD</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-IBM">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - IBM</rdfs:label>
<skos:definition>ticker symbol for Wells Fargo & Company common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>IBM</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedInternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-JPM">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - JPM</rdfs:label>
<skos:definition>ticker symbol for JPMorgan Chase & Co. common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>JPM</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedJPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-KO">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - KO</rdfs:label>
<skos:definition>ticker symbol for The Coca-Cola Company common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>KO</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-PG">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - PG</rdfs:label>
<skos:definition>ticker symbol for The Proctor & Gamble Company common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>PG</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedTheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;TickerSymbol-XNYS-WFC">
<rdf:type rdf:resource="&fibo-sec-sec-id;TickerSymbol"/>
<rdfs:label>XNYS - WFC</rdfs:label>
<skos:definition>ticker symbol for Wells Fargo & Company common stock listed on the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fbc-fct-ra:isRegisteredBy rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-fnd-rel-rel:hasTag>WFC</fibo-fnd-rel-rel:hasTag>
<cmns-id:identifies rdf:resource="&fibo-sec-eq-eqind;XNYSListedWellsFargoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;WellsFargoCommonStock">
<rdf:type rdf:resource="&fibo-sec-eq-10962;CommonVotingUnrestrictedFullyPaidRegisteredShare"/>
<rdf:type rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<rdfs:label>Wells Fargo common stock</rdfs:label>
<skos:definition>Wells Fargo & Company common share</skos:definition>
<fibo-fbc-fi-fi:isDenominatedIn rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-fbc-fi-fi:isLegallyRecordedIn rdf:resource="&fibo-be-ge-usj;StateOfDelawareJurisdiction"/>
<fibo-fbc-fi-fi:isNegotiable rdf:datatype="&xsd;boolean">true</fibo-fbc-fi-fi:isNegotiable>
<fibo-fbc-fct-ra:hasRegistrationDate>1998-09-11</fibo-fbc-fct-ra:hasRegistrationDate>
<fibo-fnd-agr-ctr:hasPrincipalParty rdf:resource="&fibo-fbc-fct-usind;WellsFargoAndCompany"/>
<fibo-fnd-agr-ctr:isAssignable rdf:datatype="&xsd;boolean">false</fibo-fnd-agr-ctr:isAssignable>
<fibo-fnd-rel-rel:isIssuedBy rdf:resource="&fibo-fbc-fct-usind;WellsFargoAndCompany"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BearerAndRegisteredForm"/>
<fibo-sec-sec-iss:isIssuedInForm rdf:resource="&fibo-sec-sec-iss;BookEntryForm"/>
<fibo-sec-sec-iss:isRegisteredWith rdf:resource="&fibo-fbc-fct-usjrga;SecuritiesAndExchangeRegulator"/>
<fibo-sec-sec-lst:hasHomeExchange rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:hasOriginalPlaceOfListing rdf:resource="&fibo-fbc-fct-mkti;Facility-XNYS"/>
<fibo-sec-sec-lst:isListedVia rdf:resource="&fibo-sec-eq-eqind;XNYSListedWellsFargoCommonStock"/>
<cmns-cls:isClassifiedBy rdf:resource="&fibo-sec-eq-10962;ESVUFR"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XLOMListedAppleIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XLOM-listed Apple Inc. common stock</rdfs:label>
<skos:definition>Apple Inc. common share listed in the London Stock Exchange</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-mkti;Facility-XLOM"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;AppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassACommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNAS-listed Alphabet Inc. class A common stock</rdfs:label>
<skos:definition>Alphabet Inc. class A common share listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>2004-08-01</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassACommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNASListedAlphabetIncClassCCapitalStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNAS-listed Alphabet Inc. class C capital stock</rdfs:label>
<skos:definition>Alphabet Inc. class C capital stock listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>2004-08-01</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;AlphabetIncClassCCapitalStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNASListedAppleIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNAS-listed Apple Inc. common stock</rdfs:label>
<skos:definition>Apple Inc. common share listed in the Nasdaq (NASDAQ-NGS)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1980-12-12</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-mkti;Facility-XNAS"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;AppleIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedCitigroupIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed Citigroup Inc. common stock</rdfs:label>
<skos:definition>Citigroup Inc. common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1988-10-08</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;CitigroupIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedInternationalBusinessMachinesCorporationCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed IBM common stock</rdfs:label>
<skos:definition>IBM common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1924-02-14</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;InternationalBusinessMachinesCorporationCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedJPMorganChaseAndCoCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed JPMorgan Chase & Co. common stock</rdfs:label>
<skos:definition>JPMorgan Chase & Co. common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1978-10-06</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;JPMorganChaseAndCoCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedTheCoca-ColaCompanyCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed The Coca-Cola Company common stock</rdfs:label>
<skos:definition>The Coca-Cola Company common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1919-09-05</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;TheCoca-ColaCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedTheHomeDepotIncCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed The Home Depot, Inc. common stock</rdfs:label>
<skos:definition>The Home Depot, Inc. common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1984-04-19</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;TheHomeDepotIncCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedTheProctorAndGambleCompanyCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed The Proctor & Gamble Company common stock</rdfs:label>
<skos:definition>The Proctor & Gamble Company common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:hasListingDate>1978-01-13</fibo-sec-sec-lst:hasListingDate>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;TheProctorAndGambleCompanyCommonStock"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eqind;XNYSListedWellsFargoCommonStock">
<rdf:type rdf:resource="&fibo-sec-sec-lst;Listing"/>
<rdfs:label>XNYS-listed Wells Fargo common stock</rdfs:label>
<skos:definition>Wells Fargo & Company common share listed in the New York Stock Exchange (NYSE)</skos:definition>
<fibo-fnd-acc-cur:hasCurrency rdf:resource="&fibo-fnd-acc-4217;USDollar"/>
<fibo-sec-sec-lst:isTradedOn rdf:resource="&fibo-fbc-fct-usmkt;NewYorkStockExchange"/>
<fibo-sec-sec-lst:lists rdf:resource="&fibo-sec-eq-eqind;WellsFargoCommonStock"/>
</owl:NamedIndividual>
</rdf:RDF> |