diff --git a/README.md b/README.md
index 00105c9abd76d892bdc5665927374e4a92186bf7..93a1ea1c134dbb28e54c9e959a36acb38c620631 100644
--- a/README.md
+++ b/README.md
@@ -19,13 +19,13 @@ Dans ce fichier, on prend soin de mapper les colonnes du fichier CSV aux propri
 
 ### Détails du mapping :
 
-<b>Personne</b> (dbo) : Chaque personne est représentée comme un individu présent dans le graphe de connaissance de DBpedia. Pour cela, nous générons une URI unique pour chaque personne en utilisant la fonction BIND avec URI(CONCAT(...)). Cela permet de créer un identifiant stable pour chaque milliardaire à partir de son nom.
+<b>Name</b> (foaf:name) : Le nom de la personne.
 
-<b>Valeur nette</b> (schema:netWorth) : La richesse nette est également mappée à partir du CSV vers la propriété schema:netWorth, permettant de lier chaque personne à sa fortune.
+<b>Âge</b> (foaf:age) : L'âge de la personne au format Integer.
 
-<b>Âge</b> (foaf:age) : L'âge est extrait et mappé de la même manière.
+<b>Valeur nette</b> (schema:netWorth) : La richesse nette de la personne au format décimal.
 
-<b>Pays</b> (foaf:based_near) : Le pays d'origine est mappé à dbo:country, fournissant des informations sur la nationalité des milliardaires.
+<b>Pays</b> (dbo:location) : Le pays d'origine est mappé à dbo:country, fournissant des informations sur la nationalité des milliardaires.
 
 <b>Source de richesse</b> (dbo:source) : Les principales sociétés dont la personne a tiré sa fortune. Le champ est encore non-atomique et contient parfois la valeur "diversified", il n'est donc pas possible de l'associer à une ressource dans cet état.
 
diff --git a/archive/Billionaires.ttl b/archive/Billionaires.ttl
index d0a183d963276912544b811be5f8244c658b08de..8c05d167d70af0297a0188217a24059ce1b8ffe2 100644
--- a/archive/Billionaires.ttl
+++ b/archive/Billionaires.ttl
@@ -4,18202 +4,20802 @@
 @prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix foaf:  <http://xmlns.com/foaf/0.1/> .
 
-<http://dbpedia.org/resource/Elon_Musk>
-        schema:netWorth  "219.0" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Elon_Musk>
+        schema:netWorth  219.0 ;
+        foaf:name        "Elon Musk" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "Tesla, SpaceX" .
 
-<http://dbpedia.org/resource/Jeff_Bezos>
-        schema:netWorth  "171.0" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Bezos>
+        schema:netWorth  171.0 ;
+        foaf:name        "Jeff Bezos" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Amazon" .
 
-<http://dbpedia.org/resource/Bernard_Arnault_&_family>
-        schema:netWorth  "158.0" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Bernard_Arnault_&_family>
+        schema:netWorth  158.0 ;
+        foaf:name        "Bernard Arnault & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "LVMH" .
 
-<http://dbpedia.org/resource/Bill_Gates>
-        schema:netWorth  "129.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bill_Gates>
+        schema:netWorth  129.0 ;
+        foaf:name        "Bill Gates" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Microsoft" .
 
-<http://dbpedia.org/resource/Warren_Buffett>
-        schema:netWorth  "118.0" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Warren_Buffett>
+        schema:netWorth  118.0 ;
+        foaf:name        "Warren Buffett" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Berkshire Hathaway" .
 
-<http://dbpedia.org/resource/Larry_Page>
-        schema:netWorth  "111.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Larry_Page>
+        schema:netWorth  111.0 ;
+        foaf:name        "Larry Page" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Google" .
 
-<http://dbpedia.org/resource/Sergey_Brin>
-        schema:netWorth  "107.0" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sergey_Brin>
+        schema:netWorth  107.0 ;
+        foaf:name        "Sergey Brin" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Google" .
 
-<http://dbpedia.org/resource/Larry_Ellison>
-        schema:netWorth  "106.0" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Larry_Ellison>
+        schema:netWorth  106.0 ;
+        foaf:name        "Larry Ellison" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Steve_Ballmer>
-        schema:netWorth  "91.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steve_Ballmer>
+        schema:netWorth  91.4 ;
+        foaf:name        "Steve Ballmer" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Microsoft" .
 
-<http://dbpedia.org/resource/Mukesh_Ambani>
-        schema:netWorth  "90.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mukesh_Ambani>
+        schema:netWorth  90.7 ;
+        foaf:name        "Mukesh Ambani" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Gautam_Adani_&_family>
-        schema:netWorth  "90.0" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Gautam_Adani_&_family>
+        schema:netWorth  90.0 ;
+        foaf:name        "Gautam Adani & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "infrastructure, commodities" .
 
-<http://dbpedia.org/resource/Michael_Bloomberg>
-        schema:netWorth  "82.0" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Bloomberg>
+        schema:netWorth  82.0 ;
+        foaf:name        "Michael Bloomberg" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Bloomberg LP" .
 
-<http://dbpedia.org/resource/Carlos_Slim_Helu_&_family>
-        schema:netWorth  "81.2" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Carlos_Slim_Helu_&_family>
+        schema:netWorth  81.2 ;
+        foaf:name        "Carlos Slim Helu & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Francoise_Bettencourt_Meyers_&_family>
-        schema:netWorth  "74.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Francoise_Bettencourt_Meyers_&_family>
+        schema:netWorth  74.8 ;
+        foaf:name        "Francoise Bettencourt Meyers & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "L'Or├®al" .
 
-<http://dbpedia.org/resource/Mark_Zuckerberg>
-        schema:netWorth  "67.3" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_Zuckerberg>
+        schema:netWorth  67.3 ;
+        foaf:name        "Mark Zuckerberg" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Facebook" .
 
-<http://dbpedia.org/resource/Jim_Walton>
-        schema:netWorth  "66.2" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Walton>
+        schema:netWorth  66.2 ;
+        foaf:name        "Jim Walton" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Zhong_Shanshan>
-        schema:netWorth  "65.7" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhong_Shanshan>
+        schema:netWorth  65.7 ;
+        foaf:name        "Zhong Shanshan" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages, pharmaceuticals" .
 
-<http://dbpedia.org/resource/Alice_Walton>
-        schema:netWorth  "65.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alice_Walton>
+        schema:netWorth  65.3 ;
+        foaf:name        "Alice Walton" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Rob_Walton>
-        schema:netWorth  "65.0" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rob_Walton>
+        schema:netWorth  65.0 ;
+        foaf:name        "Rob Walton" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Changpeng_Zhao>
-        schema:netWorth  "65.0" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Changpeng_Zhao>
+        schema:netWorth  65.0 ;
+        foaf:name        "Changpeng Zhao" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency exchange" .
 
-<http://dbpedia.org/resource/Charles_Koch>
-        schema:netWorth  "60.0" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Koch>
+        schema:netWorth  60.0 ;
+        foaf:name        "Charles Koch" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "Koch Industries" .
 
-<http://dbpedia.org/resource/Julia_Koch_&_family>
-        schema:netWorth  "60.0" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Julia_Koch_&_family>
+        schema:netWorth  60.0 ;
+        foaf:name        "Julia Koch & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "Koch Industries" .
 
-<http://dbpedia.org/resource/Amancio_Ortega>
-        schema:netWorth  "59.6" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Amancio_Ortega>
+        schema:netWorth  59.6 ;
+        foaf:name        "Amancio Ortega" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Zara" .
 
-<http://dbpedia.org/resource/Michael_Dell>
-        schema:netWorth  "55.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Dell>
+        schema:netWorth  55.1 ;
+        foaf:name        "Michael Dell" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Dell computers" .
 
-<http://dbpedia.org/resource/Zhang_Yiming>
-        schema:netWorth  "50.0" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Yiming>
+        schema:netWorth  50.0 ;
+        foaf:name        "Zhang Yiming" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TikTok" .
 
-<http://dbpedia.org/resource/David_Thomson_&_family>
-        schema:netWorth  "49.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/David_Thomson_&_family>
+        schema:netWorth  49.2 ;
+        foaf:name        "David Thomson & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Phil_Knight_&_family>
-        schema:netWorth  "47.3" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Phil_Knight_&_family>
+        schema:netWorth  47.3 ;
+        foaf:name        "Phil Knight & family" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Nike" .
 
-<http://dbpedia.org/resource/Dieter_Schwarz>
-        schema:netWorth  "47.1" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Dieter_Schwarz>
+        schema:netWorth  47.1 ;
+        foaf:name        "Dieter Schwarz" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Robin_Zeng>
-        schema:netWorth  "44.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Robin_Zeng>
+        schema:netWorth  44.8 ;
+        foaf:name        "Robin Zeng" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Automotive" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/MacKenzie_Scott>
-        schema:netWorth  "43.6" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/MacKenzie_Scott>
+        schema:netWorth  43.6 ;
+        foaf:name        "MacKenzie Scott" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Amazon" .
 
-<http://dbpedia.org/resource/Rodolphe_Saad%C3%A9_&_family>
-        schema:netWorth  "41.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Rodolphe_Saad%C3%A9_&_family>
+        schema:netWorth  41.4 ;
+        foaf:name        "Rodolphe Saad├® & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Fran%C3%A7ois_Pinault_&_family>
-        schema:netWorth  "40.4" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Fran%C3%A7ois_Pinault_&_family>
+        schema:netWorth  40.4 ;
+        foaf:name        "François Pinault & family" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Klaus-Michael_Kuehne>
-        schema:netWorth  "37.3" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Klaus-Michael_Kuehne>
+        schema:netWorth  37.3 ;
+        foaf:name        "Klaus-Michael Kuehne" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Ma_Huateng>
-        schema:netWorth  "37.2" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ma_Huateng>
+        schema:netWorth  37.2 ;
+        foaf:name        "Ma Huateng" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "internet media" .
 
-<http://dbpedia.org/resource/Beate_Heister_&_Karl_Albrecht_Jr._&_family>
-        schema:netWorth  "36.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Beate_Heister_&_Karl_Albrecht_Jr._&_family>
+        schema:netWorth  36.8 ;
+        foaf:name        "Beate Heister & Karl Albrecht Jr. & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Giovanni_Ferrero>
-        schema:netWorth  "36.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Giovanni_Ferrero>
+        schema:netWorth  36.2 ;
+        foaf:name        "Giovanni Ferrero" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Nutella, chocolates" .
 
-<http://dbpedia.org/resource/Li_Ka-shing>
-        schema:netWorth  "34.8" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Li_Ka-shing>
+        schema:netWorth  34.8 ;
+        foaf:name        "Li Ka-shing" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Stephen_Schwarzman>
-        schema:netWorth  "34.8" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stephen_Schwarzman>
+        schema:netWorth  34.8 ;
+        foaf:name        "Stephen Schwarzman" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Lee_Shau_Kee>
-        schema:netWorth  "32.6" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Lee_Shau_Kee>
+        schema:netWorth  32.6 ;
+        foaf:name        "Lee Shau Kee" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Len_Blavatnik>
-        schema:netWorth  "32.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Len_Blavatnik>
+        schema:netWorth  32.5 ;
+        foaf:name        "Len Blavatnik" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "music, chemicals" .
 
-<http://dbpedia.org/resource/Jacqueline_Mars>
-        schema:netWorth  "31.7" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jacqueline_Mars>
+        schema:netWorth  31.7 ;
+        foaf:name        "Jacqueline Mars" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy, pet food" .
 
-<http://dbpedia.org/resource/John_Mars>
-        schema:netWorth  "31.7" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Mars>
+        schema:netWorth  31.7 ;
+        foaf:name        "John Mars" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy, pet food" .
 
-<http://dbpedia.org/resource/Alain_Wertheimer>
-        schema:netWorth  "31.2" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Alain_Wertheimer>
+        schema:netWorth  31.2 ;
+        foaf:name        "Alain Wertheimer" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Chanel" .
 
-<http://dbpedia.org/resource/Gerard_Wertheimer>
-        schema:netWorth  "31.2" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Gerard_Wertheimer>
+        schema:netWorth  31.2 ;
+        foaf:name        "Gerard Wertheimer" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Chanel" .
 
-<http://dbpedia.org/resource/German_Larrea_Mota_Velasco_&_family>
-        schema:netWorth  "30.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/German_Larrea_Mota_Velasco_&_family>
+        schema:netWorth  30.8 ;
+        foaf:name        "German Larrea Mota Velasco & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Gina_Rinehart>
-        schema:netWorth  "30.2" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Gina_Rinehart>
+        schema:netWorth  30.2 ;
+        foaf:name        "Gina Rinehart" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Shiv_Nadar>
-        schema:netWorth  "28.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Shiv_Nadar>
+        schema:netWorth  28.7 ;
+        foaf:name        "Shiv Nadar" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Jim_Simons>
-        schema:netWorth  "28.6" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Simons>
+        schema:netWorth  28.6 ;
+        foaf:name        "Jim Simons" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/He_Xiangjian>
-        schema:netWorth  "28.3" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Xiangjian>
+        schema:netWorth  28.3 ;
+        foaf:name        "He Xiangjian" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "home appliances" .
 
-<http://dbpedia.org/resource/Miriam_Adelson>
-        schema:netWorth  "27.5" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Miriam_Adelson>
+        schema:netWorth  27.5 ;
+        foaf:name        "Miriam Adelson" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Dietrich_Mateschitz>
-        schema:netWorth  "27.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Dietrich_Mateschitz>
+        schema:netWorth  27.4 ;
+        foaf:name        "Dietrich Mateschitz" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Red Bull" .
 
-<http://dbpedia.org/resource/Leonardo_Del_Vecchio_&_family>
-        schema:netWorth  "27.3" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Leonardo_Del_Vecchio_&_family>
+        schema:netWorth  27.3 ;
+        foaf:name        "Leonardo Del Vecchio & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "eyeglasses" .
 
-<http://dbpedia.org/resource/Ken_Griffin>
-        schema:netWorth  "27.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ken_Griffin>
+        schema:netWorth  27.2 ;
+        foaf:name        "Ken Griffin" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Tadashi_Yanai_&_family>
-        schema:netWorth  "26.1" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Tadashi_Yanai_&_family>
+        schema:netWorth  26.1 ;
+        foaf:name        "Tadashi Yanai & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/William_Lei_Ding>
-        schema:netWorth  "25.2" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/William_Lei_Ding>
+        schema:netWorth  25.2 ;
+        foaf:name        "William Lei Ding" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Susanne_Klatten>
-        schema:netWorth  "24.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Susanne_Klatten>
+        schema:netWorth  24.3 ;
+        foaf:name        "Susanne Klatten" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "BMW, pharmaceuticals" .
 
-<http://dbpedia.org/resource/Cyrus_Poonawalla>
-        schema:netWorth  "24.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Cyrus_Poonawalla>
+        schema:netWorth  24.3 ;
+        foaf:name        "Cyrus Poonawalla" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "vaccines" .
 
-<http://dbpedia.org/resource/Wang_Wei>
-        schema:netWorth  "24.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Wei>
+        schema:netWorth  24.3 ;
+        foaf:name        "Wang Wei" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "package delivery" .
 
-<http://dbpedia.org/resource/Qin_Yinglin>
-        schema:netWorth  "24.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qin_Yinglin>
+        schema:netWorth  24.1 ;
+        foaf:name        "Qin Yinglin" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "pig breeding" .
 
-<http://dbpedia.org/resource/Sam_Bankman-Fried>
-        schema:netWorth  "24.0" ;
-        foaf:age         "30" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sam_Bankman-Fried>
+        schema:netWorth  24.0 ;
+        foaf:name        "Sam Bankman-Fried" ;
+        foaf:age         30 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency exchange" .
 
-<http://dbpedia.org/resource/Takemitsu_Takizaki>
-        schema:netWorth  "23.9" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Takemitsu_Takizaki>
+        schema:netWorth  23.9 ;
+        foaf:name        "Takemitsu Takizaki" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "sensors" .
 
-<http://dbpedia.org/resource/Li_Shufu>
-        schema:netWorth  "23.7" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Shufu>
+        schema:netWorth  23.7 ;
+        foaf:name        "Li Shufu" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automobiles" .
 
-<http://dbpedia.org/resource/Emmanuel_Besnier>
-        schema:netWorth  "23.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Emmanuel_Besnier>
+        schema:netWorth  23.5 ;
+        foaf:name        "Emmanuel Besnier" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "cheese" .
 
-<http://dbpedia.org/resource/R._Budi_Hartono>
-        schema:netWorth  "23.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/R._Budi_Hartono>
+        schema:netWorth  23.2 ;
+        foaf:name        "R. Budi Hartono" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, tobacco" .
 
-<http://dbpedia.org/resource/Leonard_Lauder>
-        schema:netWorth  "23.1" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leonard_Lauder>
+        schema:netWorth  23.1 ;
+        foaf:name        "Leonard Lauder" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Estee Lauder" .
 
-<http://dbpedia.org/resource/Guillaume_Pousaz>
-        schema:netWorth  "23.0" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Guillaume_Pousaz>
+        schema:netWorth  23.0 ;
+        foaf:name        "Guillaume Pousaz" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Iris_Fontbona_&_family>
-        schema:netWorth  "22.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Iris_Fontbona_&_family>
+        schema:netWorth  22.8 ;
+        foaf:name        "Iris Fontbona & family" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Jack_Ma>
-        schema:netWorth  "22.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jack_Ma>
+        schema:netWorth  22.8 ;
+        foaf:name        "Jack Ma" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Michael_Hartono>
-        schema:netWorth  "22.3" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Michael_Hartono>
+        schema:netWorth  22.3 ;
+        foaf:name        "Michael Hartono" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "banking, tobacco" .
 
-<http://dbpedia.org/resource/Eric_Schmidt>
-        schema:netWorth  "22.1" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Eric_Schmidt>
+        schema:netWorth  22.1 ;
+        foaf:name        "Eric Schmidt" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Google" .
 
-<http://dbpedia.org/resource/Ray_Dalio>
-        schema:netWorth  "22.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ray_Dalio>
+        schema:netWorth  22.0 ;
+        foaf:name        "Ray Dalio" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Daniel_Gilbert>
-        schema:netWorth  "22.0" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Gilbert>
+        schema:netWorth  22.0 ;
+        foaf:name        "Daniel Gilbert" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Quicken Loans" .
 
-<http://dbpedia.org/resource/Thomas_Frist,_Jr._&_family>
-        schema:netWorth  "21.8" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Frist,_Jr._&_family>
+        schema:netWorth  21.8 ;
+        foaf:name        "Thomas Frist, Jr. & family" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Masayoshi_Son>
-        schema:netWorth  "21.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Masayoshi_Son>
+        schema:netWorth  21.3 ;
+        foaf:name        "Masayoshi Son" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Telecom" ;
         dbo:source       "internet, telecom" .
 
-<http://dbpedia.org/resource/Abigail_Johnson>
-        schema:netWorth  "21.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Abigail_Johnson>
+        schema:netWorth  21.2 ;
+        foaf:name        "Abigail Johnson" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Rupert_Murdoch_&_family>
-        schema:netWorth  "20.8" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rupert_Murdoch_&_family>
+        schema:netWorth  20.8 ;
+        foaf:name        "Rupert Murdoch & family" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "newspapers, TV network" .
 
-<http://dbpedia.org/resource/Stefan_Quandt>
-        schema:netWorth  "20.7" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Stefan_Quandt>
+        schema:netWorth  20.7 ;
+        foaf:name        "Stefan Quandt" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "BMW" .
 
-<http://dbpedia.org/resource/Jensen_Huang>
-        schema:netWorth  "20.6" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jensen_Huang>
+        schema:netWorth  20.6 ;
+        foaf:name        "Jensen Huang" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Huang_Shilin>
-        schema:netWorth  "20.3" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Shilin>
+        schema:netWorth  20.3 ;
+        foaf:name        "Huang Shilin" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Thomas_Peterffy>
-        schema:netWorth  "20.1" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Peterffy>
+        schema:netWorth  20.1 ;
+        foaf:name        "Thomas Peterffy" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "discount brokerage" .
 
-<http://dbpedia.org/resource/Radhakishan_Damani>
-        schema:netWorth  "20.0" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Radhakishan_Damani>
+        schema:netWorth  20.0 ;
+        foaf:name        "Radhakishan Damani" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, investments" .
 
-<http://dbpedia.org/resource/Pang_Kang>
-        schema:netWorth  "19.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Pang_Kang>
+        schema:netWorth  19.6 ;
+        foaf:name        "Pang Kang" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Wang_Chuanfu>
-        schema:netWorth  "19.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Chuanfu>
+        schema:netWorth  19.5 ;
+        foaf:name        "Wang Chuanfu" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "batteries, automobiles" .
 
-<http://dbpedia.org/resource/Reinhold_Wuerth_&_family>
-        schema:netWorth  "19.0" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Reinhold_Wuerth_&_family>
+        schema:netWorth  19.0 ;
+        foaf:name        "Reinhold Wuerth & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "fasteners" .
 
-<http://dbpedia.org/resource/Theo_Albrecht,_Jr._&_family>
-        schema:netWorth  "18.7" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Theo_Albrecht,_Jr._&_family>
+        schema:netWorth  18.7 ;
+        foaf:name        "Theo Albrecht, Jr. & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Aldi, Trader Joe's" .
 
-<http://dbpedia.org/resource/Yang_Huiyan_&_family>
-        schema:netWorth  "18.7" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Huiyan_&_family>
+        schema:netWorth  18.7 ;
+        foaf:name        "Yang Huiyan & family" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Vladimir_Lisin>
-        schema:netWorth  "18.4" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Vladimir_Lisin>
+        schema:netWorth  18.4 ;
+        foaf:name        "Vladimir Lisin" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel, transport" .
 
-<http://dbpedia.org/resource/Fan_Hongwei_&_family>
-        schema:netWorth  "18.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fan_Hongwei_&_family>
+        schema:netWorth  18.2 ;
+        foaf:name        "Fan Hongwei & family" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Lakshmi_Mittal>
-        schema:netWorth  "17.9" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Lakshmi_Mittal>
+        schema:netWorth  17.9 ;
+        foaf:name        "Lakshmi Mittal" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Andrew_Forrest>
-        schema:netWorth  "17.8" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Andrew_Forrest>
+        schema:netWorth  17.8 ;
+        foaf:name        "Andrew Forrest" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Jiang_Rensheng_&_family>
-        schema:netWorth  "17.7" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiang_Rensheng_&_family>
+        schema:netWorth  17.7 ;
+        foaf:name        "Jiang Rensheng & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "vaccines" .
 
-<http://dbpedia.org/resource/Savitri_Jindal_&_family>
-        schema:netWorth  "17.7" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Savitri_Jindal_&_family>
+        schema:netWorth  17.7 ;
+        foaf:name        "Savitri Jindal & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Wang_Wenyin>
-        schema:netWorth  "17.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Wenyin>
+        schema:netWorth  17.7 ;
+        foaf:name        "Wang Wenyin" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, copper products" .
 
-<http://dbpedia.org/resource/Li_Xiting>
-        schema:netWorth  "17.6" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Li_Xiting>
+        schema:netWorth  17.6 ;
+        foaf:name        "Li Xiting" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Stefan_Persson>
-        schema:netWorth  "17.6" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Stefan_Persson>
+        schema:netWorth  17.6 ;
+        foaf:name        "Stefan Persson" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "H&M" .
 
-<http://dbpedia.org/resource/Steve_Cohen>
-        schema:netWorth  "17.4" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steve_Cohen>
+        schema:netWorth  17.4 ;
+        foaf:name        "Steve Cohen" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Vladimir_Potanin>
-        schema:netWorth  "17.3" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Vladimir_Potanin>
+        schema:netWorth  17.3 ;
+        foaf:name        "Vladimir Potanin" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "metals" .
 
-<http://dbpedia.org/resource/Harold_Hamm_&_family>
-        schema:netWorth  "17.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Harold_Hamm_&_family>
+        schema:netWorth  17.2 ;
+        foaf:name        "Harold Hamm & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Sun_Piaoyang>
-        schema:netWorth  "17.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Sun_Piaoyang>
+        schema:netWorth  17.1 ;
+        foaf:name        "Sun Piaoyang" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Luo_Liguo_&_family>
-        schema:netWorth  "17.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Luo_Liguo_&_family>
+        schema:netWorth  17.0 ;
+        foaf:name        "Luo Liguo & family" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Peter_Woo>
-        schema:netWorth  "17.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Peter_Woo>
+        schema:netWorth  17.0 ;
+        foaf:name        "Peter Woo" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Gianluigi_&_Rafaela_Aponte>
-        schema:netWorth  "16.8" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Gianluigi_&_Rafaela_Aponte>
+        schema:netWorth  16.8 ;
+        foaf:name        "Gianluigi & Rafaela Aponte" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Logistics" ;
         dbo:source       "Shipping" .
 
-<http://dbpedia.org/resource/David_Tepper>
-        schema:netWorth  "16.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Tepper>
+        schema:netWorth  16.7 ;
+        foaf:name        "David Tepper" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Renata_Kellnerova_&_family>
-        schema:netWorth  "16.6" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Renata_Kellnerova_&_family>
+        schema:netWorth  16.6 ;
+        foaf:name        "Renata Kellnerova & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance, telecommunications" .
 
-<http://dbpedia.org/resource/John_Menard,_Jr.>
-        schema:netWorth  "16.6" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Menard,_Jr.>
+        schema:netWorth  16.6 ;
+        foaf:name        "John Menard, Jr." ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "home improvement stores" .
 
-<http://dbpedia.org/resource/Kumar_Birla>
-        schema:netWorth  "16.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kumar_Birla>
+        schema:netWorth  16.5 ;
+        foaf:name        "Kumar Birla" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "commodities" .
 
-<http://dbpedia.org/resource/Carl_Icahn>
-        schema:netWorth  "16.5" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Carl_Icahn>
+        schema:netWorth  16.5 ;
+        foaf:name        "Carl Icahn" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Hank_&_Doug_Meijer>
-        schema:netWorth  "16.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Hank_&_Doug_Meijer>
+        schema:netWorth  16.5 ;
+        foaf:name        "Hank & Doug Meijer" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Lukas_Walton>
-        schema:netWorth  "16.5" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lukas_Walton>
+        schema:netWorth  16.5 ;
+        foaf:name        "Lukas Walton" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Laurene_Powell_Jobs_&_family>
-        schema:netWorth  "16.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Laurene_Powell_Jobs_&_family>
+        schema:netWorth  16.4 ;
+        foaf:name        "Laurene Powell Jobs & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Apple, Disney" .
 
-<http://dbpedia.org/resource/James_Ratcliffe>
-        schema:netWorth  "16.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/James_Ratcliffe>
+        schema:netWorth  16.3 ;
+        foaf:name        "James Ratcliffe" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Donald_Bren>
-        schema:netWorth  "16.2" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Bren>
+        schema:netWorth  16.2 ;
+        foaf:name        "Donald Bren" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Xu_Hang>
-        schema:netWorth  "16.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Xu_Hang>
+        schema:netWorth  16.1 ;
+        foaf:name        "Xu Hang" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Lu_Xiangyang>
-        schema:netWorth  "15.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Xiangyang>
+        schema:netWorth  15.7 ;
+        foaf:name        "Lu Xiangyang" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automobiles, batteries" .
 
-<http://dbpedia.org/resource/Dilip_Shanghvi>
-        schema:netWorth  "15.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Dilip_Shanghvi>
+        schema:netWorth  15.6 ;
+        foaf:name        "Dilip Shanghvi" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Wei_Jianjun_&_family>
-        schema:netWorth  "15.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wei_Jianjun_&_family>
+        schema:netWorth  15.5 ;
+        foaf:name        "Wei Jianjun & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automobiles" .
 
-<http://dbpedia.org/resource/Jorge_Paulo_Lemann_&_family>
-        schema:netWorth  "15.4" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jorge_Paulo_Lemann_&_family>
+        schema:netWorth  15.4 ;
+        foaf:name        "Jorge Paulo Lemann & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Eyal_Ofer>
-        schema:netWorth  "15.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Eyal_Ofer>
+        schema:netWorth  15.4 ;
+        foaf:name        "Eyal Ofer" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, shipping" .
 
-<http://dbpedia.org/resource/Mike_Cannon-Brookes>
-        schema:netWorth  "15.3" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Mike_Cannon-Brookes>
+        schema:netWorth  15.3 ;
+        foaf:name        "Mike Cannon-Brookes" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Wu_Yajun>
-        schema:netWorth  "15.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Yajun>
+        schema:netWorth  15.3 ;
+        foaf:name        "Wu Yajun" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Charlene_de_Carvalho-Heineken_&_family>
-        schema:netWorth  "15.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Charlene_de_Carvalho-Heineken_&_family>
+        schema:netWorth  15.2 ;
+        foaf:name        "Charlene de Carvalho-Heineken & family" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Heineken" .
 
-<http://dbpedia.org/resource/Michael_Platt>
-        schema:netWorth  "15.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Michael_Platt>
+        schema:netWorth  15.2 ;
+        foaf:name        "Michael Platt" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Pavel_Durov>
-        schema:netWorth  "15.1" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Pavel_Durov>
+        schema:netWorth  15.1 ;
+        foaf:name        "Pavel Durov" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Technology" ;
         dbo:source       "messaging app" .
 
-<http://dbpedia.org/resource/Scott_Farquhar>
-        schema:netWorth  "15.1" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Scott_Farquhar>
+        schema:netWorth  15.1 ;
+        foaf:name        "Scott Farquhar" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Pallonji_Mistry>
-        schema:netWorth  "15.0" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/Pallonji_Mistry>
+        schema:netWorth  15.0 ;
+        foaf:name        "Pallonji Mistry" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Dang_Yanbao>
-        schema:netWorth  "14.8" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dang_Yanbao>
+        schema:netWorth  14.8 ;
+        foaf:name        "Dang Yanbao" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "coal" .
 
-<http://dbpedia.org/resource/Robert_Pera>
-        schema:netWorth  "14.6" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Pera>
+        schema:netWorth  14.6 ;
+        foaf:name        "Robert Pera" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "wireless networking gear" .
 
-<http://dbpedia.org/resource/Donald_Newhouse>
-        schema:netWorth  "14.4" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Newhouse>
+        schema:netWorth  14.4 ;
+        foaf:name        "Donald Newhouse" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Uday_Kotak>
-        schema:netWorth  "14.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Uday_Kotak>
+        schema:netWorth  14.3 ;
+        foaf:name        "Uday Kotak" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Aliko_Dangote>
-        schema:netWorth  "14.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Nigeria> ;
+<http://example.org/person/Aliko_Dangote>
+        schema:netWorth  14.0 ;
+        foaf:name        "Aliko Dangote" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Nigeria> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cement, sugar" .
 
-<http://dbpedia.org/resource/Leonid_Mikhelson>
-        schema:netWorth  "14.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Leonid_Mikhelson>
+        schema:netWorth  14.0 ;
+        foaf:name        "Leonid Mikhelson" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "gas, chemicals" .
 
-<http://dbpedia.org/resource/Sunil_Mittal_&_family>
-        schema:netWorth  "13.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sunil_Mittal_&_family>
+        schema:netWorth  13.9 ;
+        foaf:name        "Sunil Mittal & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Robert_&_Philip_Ng>
-        schema:netWorth  "13.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Robert_&_Philip_Ng>
+        schema:netWorth  13.7 ;
+        foaf:name        "Robert & Philip Ng" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Liu_Hanyuan>
-        schema:netWorth  "13.65" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Hanyuan>
+        schema:netWorth  13.65 ;
+        foaf:name        "Liu Hanyuan" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Joseph_Lau>
-        schema:netWorth  "13.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Joseph_Lau>
+        schema:netWorth  13.6 ;
+        foaf:name        "Joseph Lau" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Anders_Holch_Povlsen>
-        schema:netWorth  "13.6" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Anders_Holch_Povlsen>
+        schema:netWorth  13.6 ;
+        foaf:name        "Anders Holch Povlsen" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Dhanin_Chearavanont>
-        schema:netWorth  "13.5" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Dhanin_Chearavanont>
+        schema:netWorth  13.5 ;
+        foaf:name        "Dhanin Chearavanont" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Gong_Hongjia_&_family>
-        schema:netWorth  "13.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Gong_Hongjia_&_family>
+        schema:netWorth  13.2 ;
+        foaf:name        "Gong Hongjia & family" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "video surveillance" .
 
-<http://dbpedia.org/resource/Liu_Yongxing>
-        schema:netWorth  "13.2" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Yongxing>
+        schema:netWorth  13.2 ;
+        foaf:name        "Liu Yongxing" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Alexey_Mordashov>
-        schema:netWorth  "13.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexey_Mordashov>
+        schema:netWorth  13.2 ;
+        foaf:name        "Alexey Mordashov" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel, investments" .
 
-<http://dbpedia.org/resource/Wang_Jianlin>
-        schema:netWorth  "13.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Jianlin>
+        schema:netWorth  13.2 ;
+        foaf:name        "Wang Jianlin" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/David_Duffield>
-        schema:netWorth  "12.9" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Duffield>
+        schema:netWorth  12.9 ;
+        foaf:name        "David Duffield" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/Li_Zhenguo_&_family>
-        schema:netWorth  "12.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Zhenguo_&_family>
+        schema:netWorth  12.9 ;
+        foaf:name        "Li Zhenguo & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "solar wafers and modules" .
 
-<http://dbpedia.org/resource/Harry_Triguboff>
-        schema:netWorth  "12.8" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Harry_Triguboff>
+        schema:netWorth  12.8 ;
+        foaf:name        "Harry Triguboff" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Zhang_Zhidong>
-        schema:netWorth  "12.8" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Zhidong>
+        schema:netWorth  12.8 ;
+        foaf:name        "Zhang Zhidong" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "internet media" .
 
-<http://dbpedia.org/resource/Chen_Bang>
-        schema:netWorth  "12.7" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Bang>
+        schema:netWorth  12.7 ;
+        foaf:name        "Chen Bang" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/John_Doerr>
-        schema:netWorth  "12.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Doerr>
+        schema:netWorth  12.7 ;
+        foaf:name        "John Doerr" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Hinduja_brothers>
-        schema:netWorth  "12.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Hinduja_brothers>
+        schema:netWorth  12.7 ;
+        foaf:name        "Hinduja brothers" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kwong_Siu-hing>
-        schema:netWorth  "12.6" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Kwong_Siu-hing>
+        schema:netWorth  12.6 ;
+        foaf:name        "Kwong Siu-hing" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Pei_Zhenhua>
-        schema:netWorth  "12.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Pei_Zhenhua>
+        schema:netWorth  12.5 ;
+        foaf:name        "Pei Zhenhua" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Ricardo_Salinas_Pliego_&_family>
-        schema:netWorth  "12.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Ricardo_Salinas_Pliego_&_family>
+        schema:netWorth  12.4 ;
+        foaf:name        "Ricardo Salinas Pliego & family" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, media" .
 
-<http://dbpedia.org/resource/Jim_Pattison>
-        schema:netWorth  "12.2" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Jim_Pattison>
+        schema:netWorth  12.2 ;
+        foaf:name        "Jim Pattison" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Charles_Schwab>
-        schema:netWorth  "12.2" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Schwab>
+        schema:netWorth  12.2 ;
+        foaf:name        "Charles Schwab" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "discount brokerage" .
 
-<http://dbpedia.org/resource/Goh_Cheng_Liang>
-        schema:netWorth  "12.1" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Goh_Cheng_Liang>
+        schema:netWorth  12.1 ;
+        foaf:name        "Goh Cheng Liang" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Lin_Jianhua_&_family>
-        schema:netWorth  "12.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Jianhua_&_family>
+        schema:netWorth  12.1 ;
+        foaf:name        "Lin Jianhua & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "solar panel components" .
 
-<http://dbpedia.org/resource/Charoen_Sirivadhanabhakdi>
-        schema:netWorth  "12.0" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Charoen_Sirivadhanabhakdi>
+        schema:netWorth  12.0 ;
+        foaf:name        "Charoen Sirivadhanabhakdi" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "alcohol, real estate" .
 
-<http://dbpedia.org/resource/Jeff_Yass>
-        schema:netWorth  "12.0" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Yass>
+        schema:netWorth  12.0 ;
+        foaf:name        "Jeff Yass" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "trading, investments" .
 
-<http://dbpedia.org/resource/John_Fredriksen>
-        schema:netWorth  "11.9" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Cyprus> ;
+<http://example.org/person/John_Fredriksen>
+        schema:netWorth  11.9 ;
+        foaf:name        "John Fredriksen" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Cyprus> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Andreas_Struengmann_&_family>
-        schema:netWorth  "11.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Andreas_Struengmann_&_family>
+        schema:netWorth  11.9 ;
+        foaf:name        "Andreas Struengmann & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Thomas_Struengmann_&_family>
-        schema:netWorth  "11.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Thomas_Struengmann_&_family>
+        schema:netWorth  11.9 ;
+        foaf:name        "Thomas Struengmann & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Mikhail_Fridman>
-        schema:netWorth  "11.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Mikhail_Fridman>
+        schema:netWorth  11.8 ;
+        foaf:name        "Mikhail Fridman" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, banking, telecom" .
 
-<http://dbpedia.org/resource/Sarath_Ratanavadi>
-        schema:netWorth  "11.8" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Sarath_Ratanavadi>
+        schema:netWorth  11.8 ;
+        foaf:name        "Sarath Ratanavadi" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Energy" ;
         dbo:source       "energy" .
 
-<http://dbpedia.org/resource/Robert_Kuok>
-        schema:netWorth  "11.7" ;
-        foaf:age         "98" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Robert_Kuok>
+        schema:netWorth  11.7 ;
+        foaf:name        "Robert Kuok" ;
+        foaf:age         98 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "diversified" ;
         dbo:source       "palm oil, shipping, property" .
 
-<http://dbpedia.org/resource/Lei_Jun>
-        schema:netWorth  "11.7" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lei_Jun>
+        schema:netWorth  11.7 ;
+        foaf:name        "Lei Jun" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphones" .
 
-<http://dbpedia.org/resource/Zhang_Congyuan>
-        schema:netWorth  "11.7" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Zhang_Congyuan>
+        schema:netWorth  11.7 ;
+        foaf:name        "Zhang Congyuan" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Lui_Che_Woo>
-        schema:netWorth  "11.6" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Lui_Che_Woo>
+        schema:netWorth  11.6 ;
+        foaf:name        "Lui Che Woo" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos/hotels" .
 
-<http://dbpedia.org/resource/Brian_Chesky>
-        schema:netWorth  "11.5" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brian_Chesky>
+        schema:netWorth  11.5 ;
+        foaf:name        "Brian Chesky" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Airbnb" .
 
-<http://dbpedia.org/resource/Israel_Englander>
-        schema:netWorth  "11.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Israel_Englander>
+        schema:netWorth  11.5 ;
+        foaf:name        "Israel Englander" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Dustin_Moskovitz>
-        schema:netWorth  "11.5" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dustin_Moskovitz>
+        schema:netWorth  11.5 ;
+        foaf:name        "Dustin Moskovitz" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Facebook" .
 
-<http://dbpedia.org/resource/Alisher_Usmanov>
-        schema:netWorth  "11.5" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alisher_Usmanov>
+        schema:netWorth  11.5 ;
+        foaf:name        "Alisher Usmanov" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel, telecom, investments" .
 
-<http://dbpedia.org/resource/Jay_Chaudhry>
-        schema:netWorth  "11.4" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jay_Chaudhry>
+        schema:netWorth  11.4 ;
+        foaf:name        "Jay Chaudhry" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "security software" .
 
-<http://dbpedia.org/resource/Anthony_Pratt>
-        schema:netWorth  "11.4" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Anthony_Pratt>
+        schema:netWorth  11.4 ;
+        foaf:name        "Anthony Pratt" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Colin_Zheng_Huang>
-        schema:netWorth  "11.3" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Colin_Zheng_Huang>
+        schema:netWorth  11.3 ;
+        foaf:name        "Colin Zheng Huang" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Jin_Baofang>
-        schema:netWorth  "11.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jin_Baofang>
+        schema:netWorth  11.3 ;
+        foaf:name        "Jin Baofang" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "solar panels" .
 
-<http://dbpedia.org/resource/Pierre_Omidyar>
-        schema:netWorth  "11.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Pierre_Omidyar>
+        schema:netWorth  11.3 ;
+        foaf:name        "Pierre Omidyar" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "eBay, PayPal" .
 
-<http://dbpedia.org/resource/Gennady_Timchenko>
-        schema:netWorth  "11.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Gennady_Timchenko>
+        schema:netWorth  11.3 ;
+        foaf:name        "Gennady Timchenko" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, gas" .
 
-<http://dbpedia.org/resource/Carl_Cook>
-        schema:netWorth  "11.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Carl_Cook>
+        schema:netWorth  11.1 ;
+        foaf:name        "Carl Cook" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Andrey_Melnichenko>
-        schema:netWorth  "11.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrey_Melnichenko>
+        schema:netWorth  11.1 ;
+        foaf:name        "Andrey Melnichenko" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "coal, fertilizers" .
 
-<http://dbpedia.org/resource/Xing_Wang>
-        schema:netWorth  "11.0" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xing_Wang>
+        schema:netWorth  11.0 ;
+        foaf:name        "Xing Wang" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Philip_Anschutz>
-        schema:netWorth  "10.9" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Philip_Anschutz>
+        schema:netWorth  10.9 ;
+        foaf:name        "Philip Anschutz" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/David_Cheriton>
-        schema:netWorth  "10.9" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/David_Cheriton>
+        schema:netWorth  10.9 ;
+        foaf:name        "David Cheriton" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "Google" .
 
-<http://dbpedia.org/resource/Alexander_Otto>
-        schema:netWorth  "10.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Alexander_Otto>
+        schema:netWorth  10.9 ;
+        foaf:name        "Alexander Otto" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Diane_Hendricks>
-        schema:netWorth  "10.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Diane_Hendricks>
+        schema:netWorth  10.7 ;
+        foaf:name        "Diane Hendricks" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "roofing" .
 
-<http://dbpedia.org/resource/Stanley_Kroenke>
-        schema:netWorth  "10.7" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stanley_Kroenke>
+        schema:netWorth  10.7 ;
+        foaf:name        "Stanley Kroenke" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports, real estate" .
 
-<http://dbpedia.org/resource/Jerry_Jones>
-        schema:netWorth  "10.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jerry_Jones>
+        schema:netWorth  10.6 ;
+        foaf:name        "Jerry Jones" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Dallas Cowboys" .
 
-<http://dbpedia.org/resource/Quek_Leng_Chan>
-        schema:netWorth  "10.6" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Quek_Leng_Chan>
+        schema:netWorth  10.6 ;
+        foaf:name        "Quek Leng Chan" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking, property" .
 
-<http://dbpedia.org/resource/Eduardo_Saverin>
-        schema:netWorth  "10.6" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Eduardo_Saverin>
+        schema:netWorth  10.6 ;
+        foaf:name        "Eduardo Saverin" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Technology" ;
         dbo:source       "Facebook" .
 
-<http://dbpedia.org/resource/Vagit_Alekperov>
-        schema:netWorth  "10.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Vagit_Alekperov>
+        schema:netWorth  10.5 ;
+        foaf:name        "Vagit Alekperov" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/Richard_Liu>
-        schema:netWorth  "10.5" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Richard_Liu>
+        schema:netWorth  10.5 ;
+        foaf:name        "Richard Liu" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Idan_Ofer>
-        schema:netWorth  "10.5" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Idan_Ofer>
+        schema:netWorth  10.5 ;
+        foaf:name        "Idan Ofer" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "diversified" ;
         dbo:source       "drilling, shipping" .
 
-<http://dbpedia.org/resource/Melker_Schorling_&_family>
-        schema:netWorth  "10.4" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Melker_Schorling_&_family>
+        schema:netWorth  10.4 ;
+        foaf:name        "Melker Schorling & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Chase_Coleman,_III.>
-        schema:netWorth  "10.3" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Chase_Coleman,_III.>
+        schema:netWorth  10.3 ;
+        foaf:name        "Chase Coleman, III." ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Shuirong_Li>
-        schema:netWorth  "10.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shuirong_Li>
+        schema:netWorth  10.3 ;
+        foaf:name        "Shuirong Li" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Stefano_Pessina>
-        schema:netWorth  "10.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Monaco> ;
+<http://example.org/person/Stefano_Pessina>
+        schema:netWorth  10.3 ;
+        foaf:name        "Stefano Pessina" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Monaco> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/Mikhail_Prokhorov>
-        schema:netWorth  "10.3" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Mikhail_Prokhorov>
+        schema:netWorth  10.3 ;
+        foaf:name        "Mikhail Prokhorov" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Marcel_Herrmann_Telles>
-        schema:netWorth  "10.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Marcel_Herrmann_Telles>
+        schema:netWorth  10.3 ;
+        foaf:name        "Marcel Herrmann Telles" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Leon_Black>
-        schema:netWorth  "10.0" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leon_Black>
+        schema:netWorth  10.0 ;
+        foaf:name        "Leon Black" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Joe_Gebbia>
-        schema:netWorth  "10.0" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joe_Gebbia>
+        schema:netWorth  10.0 ;
+        foaf:name        "Joe Gebbia" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Airbnb" .
 
-<http://dbpedia.org/resource/David_Geffen>
-        schema:netWorth  "10.0" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Geffen>
+        schema:netWorth  10.0 ;
+        foaf:name        "David Geffen" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "movies, record labels" .
 
-<http://dbpedia.org/resource/Yu_Renrong>
-        schema:netWorth  "10.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yu_Renrong>
+        schema:netWorth  10.0 ;
+        foaf:name        "Yu Renrong" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Andrew_Beal>
-        schema:netWorth  "9.9" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Andrew_Beal>
+        schema:netWorth  9.9 ;
+        foaf:name        "Andrew Beal" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banks, real estate" .
 
-<http://dbpedia.org/resource/George_Kaiser>
-        schema:netWorth  "9.9" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Kaiser>
+        schema:netWorth  9.9 ;
+        foaf:name        "George Kaiser" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas, banking" .
 
-<http://dbpedia.org/resource/Qi_Shi_&_family>
-        schema:netWorth  "9.9" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qi_Shi_&_family>
+        schema:netWorth  9.9 ;
+        foaf:name        "Qi Shi & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "financial information" .
 
-<http://dbpedia.org/resource/Luis_Carlos_Sarmiento>
-        schema:netWorth  "9.9" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Colombia> ;
+<http://example.org/person/Luis_Carlos_Sarmiento>
+        schema:netWorth  9.9 ;
+        foaf:name        "Luis Carlos Sarmiento" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Colombia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Andreas_von_Bechtolsheim_&_family>
-        schema:netWorth  "9.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Andreas_von_Bechtolsheim_&_family>
+        schema:netWorth  9.9 ;
+        foaf:name        "Andreas von Bechtolsheim & family" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "Google" .
 
-<http://dbpedia.org/resource/Jan_Koum>
-        schema:netWorth  "9.8" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jan_Koum>
+        schema:netWorth  9.8 ;
+        foaf:name        "Jan Koum" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "WhatsApp" .
 
-<http://dbpedia.org/resource/Jorge_Moll_Filho_&_family>
-        schema:netWorth  "9.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jorge_Moll_Filho_&_family>
+        schema:netWorth  9.8 ;
+        foaf:name        "Jorge Moll Filho & family" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Azim_Premji>
-        schema:netWorth  "9.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Azim_Premji>
+        schema:netWorth  9.8 ;
+        foaf:name        "Azim Premji" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Finn_Rausing>
-        schema:netWorth  "9.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Finn_Rausing>
+        schema:netWorth  9.8 ;
+        foaf:name        "Finn Rausing" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/Jorn_Rausing>
-        schema:netWorth  "9.8" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Jorn_Rausing>
+        schema:netWorth  9.8 ;
+        foaf:name        "Jorn Rausing" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/Kirsten_Rausing>
-        schema:netWorth  "9.8" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Kirsten_Rausing>
+        schema:netWorth  9.8 ;
+        foaf:name        "Kirsten Rausing" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/Wang_Laisheng>
-        schema:netWorth  "9.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Laisheng>
+        schema:netWorth  9.8 ;
+        foaf:name        "Wang Laisheng" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics components" .
 
-<http://dbpedia.org/resource/Tom_&_Judy_Love>
-        schema:netWorth  "9.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tom_&_Judy_Love>
+        schema:netWorth  9.7 ;
+        foaf:name        "Tom & Judy Love" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail & gas stations" .
 
-<http://dbpedia.org/resource/John_Collison>
-        schema:netWorth  "9.5" ;
-        foaf:age         "31" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/John_Collison>
+        schema:netWorth  9.5 ;
+        foaf:name        "John Collison" ;
+        foaf:age         31 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Technology" ;
         dbo:source       "payments software" .
 
-<http://dbpedia.org/resource/Patrick_Collison>
-        schema:netWorth  "9.5" ;
-        foaf:age         "33" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/Patrick_Collison>
+        schema:netWorth  9.5 ;
+        foaf:name        "Patrick Collison" ;
+        foaf:age         33 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Technology" ;
         dbo:source       "payment software" .
 
-<http://dbpedia.org/resource/Gordon_Moore>
-        schema:netWorth  "9.5" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gordon_Moore>
+        schema:netWorth  9.5 ;
+        foaf:name        "Gordon Moore" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Intel" .
 
-<http://dbpedia.org/resource/Wang_Laichun>
-        schema:netWorth  "9.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Laichun>
+        schema:netWorth  9.5 ;
+        foaf:name        "Wang Laichun" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics components" .
 
-<http://dbpedia.org/resource/Graeme_Hart>
-        schema:netWorth  "9.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/New_Zealand> ;
+<http://example.org/person/Graeme_Hart>
+        schema:netWorth  9.4 ;
+        foaf:name        "Graeme Hart" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/New_Zealand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Zheng_Shuliang_&_family>
-        schema:netWorth  "9.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zheng_Shuliang_&_family>
+        schema:netWorth  9.4 ;
+        foaf:name        "Zheng Shuliang & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "aluminum products" .
 
-<http://dbpedia.org/resource/Cao_Renxian>
-        schema:netWorth  "9.3" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cao_Renxian>
+        schema:netWorth  9.3 ;
+        foaf:name        "Cao Renxian" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "photovoltaic equipment" .
 
-<http://dbpedia.org/resource/Nathan_Blecharczyk>
-        schema:netWorth  "9.2" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nathan_Blecharczyk>
+        schema:netWorth  9.2 ;
+        foaf:name        "Nathan Blecharczyk" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Airbnb" .
 
-<http://dbpedia.org/resource/James_Dyson>
-        schema:netWorth  "9.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/James_Dyson>
+        schema:netWorth  9.2 ;
+        foaf:name        "James Dyson" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "vacuums" .
 
-<http://dbpedia.org/resource/Ivan_Glasenberg>
-        schema:netWorth  "9.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Ivan_Glasenberg>
+        schema:netWorth  9.1 ;
+        foaf:name        "Ivan Glasenberg" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Kim_Beom-su>
-        schema:netWorth  "9.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Beom-su>
+        schema:netWorth  9.1 ;
+        foaf:name        "Kim Beom-su" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "online services" .
 
-<http://dbpedia.org/resource/Jay_Y._Lee>
-        schema:netWorth  "9.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Jay_Y._Lee>
+        schema:netWorth  9.1 ;
+        foaf:name        "Jay Y. Lee" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "diversified" ;
         dbo:source       "Samsung" .
 
-<http://dbpedia.org/resource/Liu_Yonghao_&_family>
-        schema:netWorth  "9.1" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Yonghao_&_family>
+        schema:netWorth  9.1 ;
+        foaf:name        "Liu Yonghao & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Ann_Walton_Kroenke>
-        schema:netWorth  "9.0" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ann_Walton_Kroenke>
+        schema:netWorth  9.0 ;
+        foaf:name        "Ann Walton Kroenke" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Li_Ping>
-        schema:netWorth  "9.0" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Li_Ping>
+        schema:netWorth  9.0 ;
+        foaf:name        "Li Ping" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Automotive" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Eric_Wittouck>
-        schema:netWorth  "9.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Belgium> ;
+<http://example.org/person/Eric_Wittouck>
+        schema:netWorth  9.0 ;
+        foaf:name        "Eric Wittouck" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Belgium> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Ian_&_Richard_Livingstone>
-        schema:netWorth  "8.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Ian_&_Richard_Livingstone>
+        schema:netWorth  8.9 ;
+        foaf:name        "Ian & Richard Livingstone" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Friedhelm_Loh>
-        schema:netWorth  "8.9" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Friedhelm_Loh>
+        schema:netWorth  8.9 ;
+        foaf:name        "Friedhelm Loh" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Xavier_Niel>
-        schema:netWorth  "8.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Xavier_Niel>
+        schema:netWorth  8.9 ;
+        foaf:name        "Xavier Niel" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Telecom" ;
         dbo:source       "internet, telecom" .
 
-<http://dbpedia.org/resource/Michael_Otto>
-        schema:netWorth  "8.9" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Michael_Otto>
+        schema:netWorth  8.9 ;
+        foaf:name        "Michael Otto" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, real estate" .
 
-<http://dbpedia.org/resource/Johann_Rupert_&_family>
-        schema:netWorth  "8.9" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Africa> ;
+<http://example.org/person/Johann_Rupert_&_family>
+        schema:netWorth  8.9 ;
+        foaf:name        "Johann Rupert & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/South_Africa> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Hui_Ka_Yan>
-        schema:netWorth  "8.8" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hui_Ka_Yan>
+        schema:netWorth  8.8 ;
+        foaf:name        "Hui Ka Yan" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Pauline_MacMillan_Keinath>
-        schema:netWorth  "8.8" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Pauline_MacMillan_Keinath>
+        schema:netWorth  8.8 ;
+        foaf:name        "Pauline MacMillan Keinath" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Herbert_Kohler,_Jr._&_family>
-        schema:netWorth  "8.8" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Herbert_Kohler,_Jr._&_family>
+        schema:netWorth  8.8 ;
+        foaf:name        "Herbert Kohler, Jr. & family" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "plumbing fixtures" .
 
-<http://dbpedia.org/resource/Li_Ge>
-        schema:netWorth  "8.8" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Li_Ge>
+        schema:netWorth  8.8 ;
+        foaf:name        "Li Ge" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceutical ingredients" .
 
-<http://dbpedia.org/resource/Kushal_Pal_Singh>
-        schema:netWorth  "8.8" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kushal_Pal_Singh>
+        schema:netWorth  8.8 ;
+        foaf:name        "Kushal Pal Singh" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Zong_Qinghou>
-        schema:netWorth  "8.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zong_Qinghou>
+        schema:netWorth  8.8 ;
+        foaf:name        "Zong Qinghou" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Cai_Kui>
-        schema:netWorth  "8.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cai_Kui>
+        schema:netWorth  8.7 ;
+        foaf:name        "Cai Kui" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Charles_Ergen>
-        schema:netWorth  "8.7" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Ergen>
+        schema:netWorth  8.7 ;
+        foaf:name        "Charles Ergen" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "satellite TV" .
 
-<http://dbpedia.org/resource/Gao_Jifan_&_family>
-        schema:netWorth  "8.7" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gao_Jifan_&_family>
+        schema:netWorth  8.7 ;
+        foaf:name        "Gao Jifan & family" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "solar equipment" .
 
-<http://dbpedia.org/resource/Bernard_Marcus>
-        schema:netWorth  "8.7" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bernard_Marcus>
+        schema:netWorth  8.7 ;
+        foaf:name        "Bernard Marcus" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Home Depot" .
 
-<http://dbpedia.org/resource/Nicky_Oppenheimer_&_family>
-        schema:netWorth  "8.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Africa> ;
+<http://example.org/person/Nicky_Oppenheimer_&_family>
+        schema:netWorth  8.7 ;
+        foaf:name        "Nicky Oppenheimer & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/South_Africa> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "diamonds" .
 
-<http://dbpedia.org/resource/Bajaj_brothers>
-        schema:netWorth  "8.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Bajaj_brothers>
+        schema:netWorth  8.6 ;
+        foaf:name        "Bajaj brothers" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Ernest_Garcia,_II.>
-        schema:netWorth  "8.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ernest_Garcia,_II.>
+        schema:netWorth  8.6 ;
+        foaf:name        "Ernest Garcia, II." ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "used cars" .
 
-<http://dbpedia.org/resource/Paul_Xiaoming_Lee_&_family>
-        schema:netWorth  "8.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Xiaoming_Lee_&_family>
+        schema:netWorth  8.6 ;
+        foaf:name        "Paul Xiaoming Lee & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/George_Soros>
-        schema:netWorth  "8.6" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Soros>
+        schema:netWorth  8.6 ;
+        foaf:name        "George Soros" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Wang_Liping_&_family>
-        schema:netWorth  "8.6" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Liping_&_family>
+        schema:netWorth  8.6 ;
+        foaf:name        "Wang Liping & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hydraulic machinery" .
 
-<http://dbpedia.org/resource/Ernesto_Bertarelli>
-        schema:netWorth  "8.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Ernesto_Bertarelli>
+        schema:netWorth  8.5 ;
+        foaf:name        "Ernesto Bertarelli" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech, investments" .
 
-<http://dbpedia.org/resource/Tamara_Gustavson>
-        schema:netWorth  "8.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tamara_Gustavson>
+        schema:netWorth  8.5 ;
+        foaf:name        "Tamara Gustavson" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "self storage" .
 
-<http://dbpedia.org/resource/Carlos_Alberto_Sicupira_&_family>
-        schema:netWorth  "8.5" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Carlos_Alberto_Sicupira_&_family>
+        schema:netWorth  8.5 ;
+        foaf:name        "Carlos Alberto Sicupira & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Laurent_Dassault>
-        schema:netWorth  "8.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Laurent_Dassault>
+        schema:netWorth  8.4 ;
+        foaf:name        "Laurent Dassault" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Thierry_Dassault>
-        schema:netWorth  "8.4" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Thierry_Dassault>
+        schema:netWorth  8.4 ;
+        foaf:name        "Thierry Dassault" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Marie-H%C3%A9l%C3%A8ne_Habert-Dassault>
-        schema:netWorth  "8.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Marie-H%C3%A9l%C3%A8ne_Habert-Dassault>
+        schema:netWorth  8.4 ;
+        foaf:name        "Marie-H├®l├¿ne Habert-Dassault" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Liu_Jincheng_&_family>
-        schema:netWorth  "8.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Jincheng_&_family>
+        schema:netWorth  8.4 ;
+        foaf:name        "Liu Jincheng & family" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "lithium batteries" .
 
-<http://dbpedia.org/resource/Ma_Jianrong_&_family>
-        schema:netWorth  "8.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ma_Jianrong_&_family>
+        schema:netWorth  8.4 ;
+        foaf:name        "Ma Jianrong & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "textiles, apparel" .
 
-<http://dbpedia.org/resource/Steven_Rales>
-        schema:netWorth  "8.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steven_Rales>
+        schema:netWorth  8.4 ;
+        foaf:name        "Steven Rales" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing, investments" .
 
-<http://dbpedia.org/resource/Joseph_Tsai>
-        schema:netWorth  "8.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Joseph_Tsai>
+        schema:netWorth  8.4 ;
+        foaf:name        "Joseph Tsai" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Francine_von_Finck_&_family>
-        schema:netWorth  "8.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Francine_von_Finck_&_family>
+        schema:netWorth  8.4 ;
+        foaf:name        "Francine von Finck & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Anthony_von_Mandl>
-        schema:netWorth  "8.4" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Anthony_von_Mandl>
+        schema:netWorth  8.4 ;
+        foaf:name        "Anthony von Mandl" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "alcoholic beverages" .
 
-<http://dbpedia.org/resource/Carl_Bennet>
-        schema:netWorth  "8.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Carl_Bennet>
+        schema:netWorth  8.3 ;
+        foaf:name        "Carl Bennet" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Robert_Kraft>
-        schema:netWorth  "8.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Kraft>
+        schema:netWorth  8.3 ;
+        foaf:name        "Robert Kraft" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "New England Patriots" .
 
-<http://dbpedia.org/resource/Chairul_Tanjung>
-        schema:netWorth  "8.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Chairul_Tanjung>
+        schema:netWorth  8.3 ;
+        foaf:name        "Chairul Tanjung" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Manuel_Villar>
-        schema:netWorth  "8.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Manuel_Villar>
+        schema:netWorth  8.3 ;
+        foaf:name        "Manuel Villar" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jean-Michel_Besnier>
-        schema:netWorth  "8.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Jean-Michel_Besnier>
+        schema:netWorth  8.2 ;
+        foaf:name        "Jean-Michel Besnier" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "cheese" .
 
-<http://dbpedia.org/resource/Marie_Besnier_Beauvalot>
-        schema:netWorth  "8.2" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Marie_Besnier_Beauvalot>
+        schema:netWorth  8.2 ;
+        foaf:name        "Marie Besnier Beauvalot" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "cheese" .
 
-<http://dbpedia.org/resource/Gustaf_Douglas>
-        schema:netWorth  "8.2" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Gustaf_Douglas>
+        schema:netWorth  8.2 ;
+        foaf:name        "Gustaf Douglas" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Kjeld_Kirk_Kristiansen>
-        schema:netWorth  "8.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Kjeld_Kirk_Kristiansen>
+        schema:netWorth  8.2 ;
+        foaf:name        "Kjeld Kirk Kristiansen" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Lego" .
 
-<http://dbpedia.org/resource/Sofie_Kirk_Kristiansen>
-        schema:netWorth  "8.2" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Sofie_Kirk_Kristiansen>
+        schema:netWorth  8.2 ;
+        foaf:name        "Sofie Kirk Kristiansen" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Lego" .
 
-<http://dbpedia.org/resource/Thomas_Kirk_Kristiansen>
-        schema:netWorth  "8.2" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Thomas_Kirk_Kristiansen>
+        schema:netWorth  8.2 ;
+        foaf:name        "Thomas Kirk Kristiansen" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Lego" .
 
-<http://dbpedia.org/resource/Stephen_Ross>
-        schema:netWorth  "8.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stephen_Ross>
+        schema:netWorth  8.2 ;
+        foaf:name        "Stephen Ross" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Agnete_Kirk_Thinggaard>
-        schema:netWorth  "8.2" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Agnete_Kirk_Thinggaard>
+        schema:netWorth  8.2 ;
+        foaf:name        "Agnete Kirk Thinggaard" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Lego" .
 
-<http://dbpedia.org/resource/Marc_Benioff>
-        schema:netWorth  "8.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marc_Benioff>
+        schema:netWorth  8.1 ;
+        foaf:name        "Marc Benioff" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/Dmitri_Bukhman>
-        schema:netWorth  "8.1" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Dmitri_Bukhman>
+        schema:netWorth  8.1 ;
+        foaf:name        "Dmitri Bukhman" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Igor_Bukhman>
-        schema:netWorth  "8.1" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Igor_Bukhman>
+        schema:netWorth  8.1 ;
+        foaf:name        "Igor Bukhman" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Francis_Choi>
-        schema:netWorth  "8.1" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Francis_Choi>
+        schema:netWorth  8.1 ;
+        foaf:name        "Francis Choi" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Murali_Divi_&_family>
-        schema:netWorth  "8.1" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Murali_Divi_&_family>
+        schema:netWorth  8.1 ;
+        foaf:name        "Murali Divi & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Nancy_Walton_Laurie>
-        schema:netWorth  "8.1" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nancy_Walton_Laurie>
+        schema:netWorth  8.1 ;
+        foaf:name        "Nancy Walton Laurie" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Georg_Schaeffler>
-        schema:netWorth  "8.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Georg_Schaeffler>
+        schema:netWorth  8.1 ;
+        foaf:name        "Georg Schaeffler" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Yao_Liangsong>
-        schema:netWorth  "8.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yao_Liangsong>
+        schema:netWorth  8.1 ;
+        foaf:name        "Yao Liangsong" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "furniture" .
 
-<http://dbpedia.org/resource/Zhong_Huijuan>
-        schema:netWorth  "8.1" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhong_Huijuan>
+        schema:netWorth  8.1 ;
+        foaf:name        "Zhong Huijuan" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Stewart_&_Lynda_Resnick>
-        schema:netWorth  "8.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stewart_&_Lynda_Resnick>
+        schema:netWorth  8.0 ;
+        foaf:name        "Stewart & Lynda Resnick" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agriculture, water" .
 
-<http://dbpedia.org/resource/George_Roberts>
-        schema:netWorth  "8.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Roberts>
+        schema:netWorth  8.0 ;
+        foaf:name        "George Roberts" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Michael_Rubin>
-        schema:netWorth  "8.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Rubin>
+        schema:netWorth  8.0 ;
+        foaf:name        "Michael Rubin" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "online retail" .
 
-<http://dbpedia.org/resource/Patrick_Ryan>
-        schema:netWorth  "8.0" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Patrick_Ryan>
+        schema:netWorth  8.0 ;
+        foaf:name        "Patrick Ryan" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Christopher_Hohn>
-        schema:netWorth  "7.9" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Christopher_Hohn>
+        schema:netWorth  7.9 ;
+        foaf:name        "Christopher Hohn" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Marijke_Mars>
-        schema:netWorth  "7.9" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marijke_Mars>
+        schema:netWorth  7.9 ;
+        foaf:name        "Marijke Mars" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy, pet food" .
 
-<http://dbpedia.org/resource/Pamela_Mars>
-        schema:netWorth  "7.9" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Pamela_Mars>
+        schema:netWorth  7.9 ;
+        foaf:name        "Pamela Mars" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy, pet food" .
 
-<http://dbpedia.org/resource/Valerie_Mars>
-        schema:netWorth  "7.9" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Valerie_Mars>
+        schema:netWorth  7.9 ;
+        foaf:name        "Valerie Mars" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy, pet food" .
 
-<http://dbpedia.org/resource/Victoria_Mars>
-        schema:netWorth  "7.9" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Victoria_Mars>
+        schema:netWorth  7.9 ;
+        foaf:name        "Victoria Mars" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy, pet food" .
 
-<http://dbpedia.org/resource/Hasso_Plattner_&_family>
-        schema:netWorth  "7.9" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Hasso_Plattner_&_family>
+        schema:netWorth  7.9 ;
+        foaf:name        "Hasso Plattner & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Georg_Stumpf>
-        schema:netWorth  "7.9" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Georg_Stumpf>
+        schema:netWorth  7.9 ;
+        foaf:name        "Georg Stumpf" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, construction" .
 
-<http://dbpedia.org/resource/Christy_Walton>
-        schema:netWorth  "7.9" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Christy_Walton>
+        schema:netWorth  7.9 ;
+        foaf:name        "Christy Walton" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart" .
 
-<http://dbpedia.org/resource/Giorgio_Armani>
-        schema:netWorth  "7.8" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Giorgio_Armani>
+        schema:netWorth  7.8 ;
+        foaf:name        "Giorgio Armani" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Gopikishan_Damani>
-        schema:netWorth  "7.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Gopikishan_Damani>
+        schema:netWorth  7.8 ;
+        foaf:name        "Gopikishan Damani" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, investments" .
 
-<http://dbpedia.org/resource/Ding_Shizhong_&_family>
-        schema:netWorth  "7.8" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ding_Shizhong_&_family>
+        schema:netWorth  7.8 ;
+        foaf:name        "Ding Shizhong & family" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sports apparel" .
 
-<http://dbpedia.org/resource/Jim_Kennedy>
-        schema:netWorth  "7.8" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Kennedy>
+        schema:netWorth  7.8 ;
+        foaf:name        "Jim Kennedy" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, automotive" .
 
-<http://dbpedia.org/resource/German_Khan>
-        schema:netWorth  "7.8" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/German_Khan>
+        schema:netWorth  7.8 ;
+        foaf:name        "German Khan" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, banking, telecom" .
 
-<http://dbpedia.org/resource/Liang_Wengen>
-        schema:netWorth  "7.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Wengen>
+        schema:netWorth  7.8 ;
+        foaf:name        "Liang Wengen" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "construction equipment" .
 
-<http://dbpedia.org/resource/Blair_Parry-Okeden>
-        schema:netWorth  "7.8" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Blair_Parry-Okeden>
+        schema:netWorth  7.8 ;
+        foaf:name        "Blair Parry-Okeden" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, automotive" .
 
-<http://dbpedia.org/resource/Tsai_Eng-meng>
-        schema:netWorth  "7.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tsai_Eng-meng>
+        schema:netWorth  7.8 ;
+        foaf:name        "Tsai Eng-meng" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food, beverages" .
 
-<http://dbpedia.org/resource/Bajaj_siblings>
-        schema:netWorth  "7.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Bajaj_siblings>
+        schema:netWorth  7.7 ;
+        foaf:name        "Bajaj siblings" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "two-wheelers, finance" .
 
-<http://dbpedia.org/resource/Ashwin_Dani_&_family>
-        schema:netWorth  "7.7" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ashwin_Dani_&_family>
+        schema:netWorth  7.7 ;
+        foaf:name        "Ashwin Dani & family" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Ding_Shijia>
-        schema:netWorth  "7.7" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ding_Shijia>
+        schema:netWorth  7.7 ;
+        foaf:name        "Ding Shijia" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sports apparel" .
 
-<http://dbpedia.org/resource/Karel_Komarek>
-        schema:netWorth  "7.7" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Karel_Komarek>
+        schema:netWorth  7.7 ;
+        foaf:name        "Karel Komarek" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "oil and gas, IT, lotteries" .
 
-<http://dbpedia.org/resource/Henry_Kravis>
-        schema:netWorth  "7.7" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Kravis>
+        schema:netWorth  7.7 ;
+        foaf:name        "Henry Kravis" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Frederik_Paulsen>
-        schema:netWorth  "7.7" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Frederik_Paulsen>
+        schema:netWorth  7.7 ;
+        foaf:name        "Frederik Paulsen" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "health care" .
 
-<http://dbpedia.org/resource/Safra_siblings>
-        schema:netWorth  "7.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Safra_siblings>
+        schema:netWorth  7.7 ;
+        foaf:name        "Safra siblings" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Nassef_Sawiris>
-        schema:netWorth  "7.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Egypt> ;
+<http://example.org/person/Nassef_Sawiris>
+        schema:netWorth  7.7 ;
+        foaf:name        "Nassef Sawiris" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Egypt> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction, investments" .
 
-<http://dbpedia.org/resource/Xu_Shihui>
-        schema:netWorth  "7.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Shihui>
+        schema:netWorth  7.7 ;
+        foaf:name        "Xu Shihui" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "snacks, beverages" .
 
-<http://dbpedia.org/resource/Rahel_Blocher>
-        schema:netWorth  "7.6" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Rahel_Blocher>
+        schema:netWorth  7.6 ;
+        foaf:name        "Rahel Blocher" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Shahid_Khan>
-        schema:netWorth  "7.6" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Shahid_Khan>
+        schema:netWorth  7.6 ;
+        foaf:name        "Shahid Khan" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Magdalena_Martullo-Blocher>
-        schema:netWorth  "7.6" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Magdalena_Martullo-Blocher>
+        schema:netWorth  7.6 ;
+        foaf:name        "Magdalena Martullo-Blocher" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Vincent_Bollor%C3%A9_&_family>
-        schema:netWorth  "7.5" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Vincent_Bollor%C3%A9_&_family>
+        schema:netWorth  7.5 ;
+        foaf:name        "Vincent Bollor├® & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Jeffery_Hildebrand>
-        schema:netWorth  "7.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeffery_Hildebrand>
+        schema:netWorth  7.5 ;
+        foaf:name        "Jeffery Hildebrand" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/Michael_Kim>
-        schema:netWorth  "7.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Kim>
+        schema:netWorth  7.5 ;
+        foaf:name        "Michael Kim" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Richard_Kinder>
-        schema:netWorth  "7.5" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Kinder>
+        schema:netWorth  7.5 ;
+        foaf:name        "Richard Kinder" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/David_Shaw>
-        schema:netWorth  "7.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Shaw>
+        schema:netWorth  7.5 ;
+        foaf:name        "David Shaw" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/John_Malone>
-        schema:netWorth  "7.4" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Malone>
+        schema:netWorth  7.4 ;
+        foaf:name        "John Malone" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "cable television" .
 
-<http://dbpedia.org/resource/Vicky_Safra>
-        schema:netWorth  "7.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Greece> ;
+<http://example.org/person/Vicky_Safra>
+        schema:netWorth  7.4 ;
+        foaf:name        "Vicky Safra" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Greece> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Tim_Sweeney>
-        schema:netWorth  "7.4" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tim_Sweeney>
+        schema:netWorth  7.4 ;
+        foaf:name        "Tim Sweeney" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "video games" .
 
-<http://dbpedia.org/resource/Mike_Adenuga>
-        schema:netWorth  "7.3" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Nigeria> ;
+<http://example.org/person/Mike_Adenuga>
+        schema:netWorth  7.3 ;
+        foaf:name        "Mike Adenuga" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Nigeria> ;
         dbo:industry     "diversified" ;
         dbo:source       "telecom, oil" .
 
-<http://dbpedia.org/resource/David_Green_&_family>
-        schema:netWorth  "7.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Green_&_family>
+        schema:netWorth  7.3 ;
+        foaf:name        "David Green & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Paul_Tudor_Jones,_II.>
-        schema:netWorth  "7.3" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Tudor_Jones,_II.>
+        schema:netWorth  7.3 ;
+        foaf:name        "Paul Tudor Jones, II." ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Yuri_Milner>
-        schema:netWorth  "7.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Yuri_Milner>
+        schema:netWorth  7.3 ;
+        foaf:name        "Yuri Milner" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "tech investments" .
 
-<http://dbpedia.org/resource/Henry_Samueli>
-        schema:netWorth  "7.3" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Samueli>
+        schema:netWorth  7.3 ;
+        foaf:name        "Henry Samueli" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Patrick_Soon-Shiong>
-        schema:netWorth  "7.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Patrick_Soon-Shiong>
+        schema:netWorth  7.3 ;
+        foaf:name        "Patrick Soon-Shiong" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Antonia_Ax:son_Johnson_&_family>
-        schema:netWorth  "7.2" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Antonia_Ax:son_Johnson_&_family>
+        schema:netWorth  7.2 ;
+        foaf:name        "Antonia Ax:son Johnson & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Michael_Kadoorie>
-        schema:netWorth  "7.2" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Michael_Kadoorie>
+        schema:netWorth  7.2 ;
+        foaf:name        "Michael Kadoorie" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Energy" ;
         dbo:source       "hotels, energy" .
 
-<http://dbpedia.org/resource/Lin_Shu-hong>
-        schema:netWorth  "7.2" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Lin_Shu-hong>
+        schema:netWorth  7.2 ;
+        foaf:name        "Lin Shu-hong" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Niels_Peter_Louis-Hansen>
-        schema:netWorth  "7.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Niels_Peter_Louis-Hansen>
+        schema:netWorth  7.2 ;
+        foaf:name        "Niels Peter Louis-Hansen" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Reinhold_Schmieding>
-        schema:netWorth  "7.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Reinhold_Schmieding>
+        schema:netWorth  7.2 ;
+        foaf:name        "Reinhold Schmieding" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Wee_Cho_Yaw>
-        schema:netWorth  "7.2" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Wee_Cho_Yaw>
+        schema:netWorth  7.2 ;
+        foaf:name        "Wee Cho Yaw" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Silvio_Berlusconi_&_family>
-        schema:netWorth  "7.1" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Silvio_Berlusconi_&_family>
+        schema:netWorth  7.1 ;
+        foaf:name        "Silvio Berlusconi & family" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "diversified" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Arthur_Blank>
-        schema:netWorth  "7.1" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Arthur_Blank>
+        schema:netWorth  7.1 ;
+        foaf:name        "Arthur Blank" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Home Depot" .
 
-<http://dbpedia.org/resource/Qian_Dongqi_&_family>
-        schema:netWorth  "7.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qian_Dongqi_&_family>
+        schema:netWorth  7.1 ;
+        foaf:name        "Qian Dongqi & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "home-cleaning robots" .
 
-<http://dbpedia.org/resource/J._Christopher_Reyes>
-        schema:netWorth  "7.1" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J._Christopher_Reyes>
+        schema:netWorth  7.1 ;
+        foaf:name        "J. Christopher Reyes" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food distribution" .
 
-<http://dbpedia.org/resource/Jude_Reyes>
-        schema:netWorth  "7.1" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jude_Reyes>
+        schema:netWorth  7.1 ;
+        foaf:name        "Jude Reyes" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food distribution" .
 
-<http://dbpedia.org/resource/Nik_Storonsky>
-        schema:netWorth  "7.1" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Nik_Storonsky>
+        schema:netWorth  7.1 ;
+        foaf:name        "Nik Storonsky" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Zhou_Qunfei_&_family>
-        schema:netWorth  "7.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Zhou_Qunfei_&_family>
+        schema:netWorth  7.1 ;
+        foaf:name        "Zhou Qunfei & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphone screens" .
 
-<http://dbpedia.org/resource/Deng_Weiming_&_family>
-        schema:netWorth  "7.0" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Deng_Weiming_&_family>
+        schema:netWorth  7.0 ;
+        foaf:name        "Deng Weiming & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "battery components" .
 
-<http://dbpedia.org/resource/Judy_Faulkner>
-        schema:netWorth  "7.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Judy_Faulkner>
+        schema:netWorth  7.0 ;
+        foaf:name        "Judy Faulkner" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "health IT" .
 
-<http://dbpedia.org/resource/Robin_Li>
-        schema:netWorth  "7.0" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Robin_Li>
+        schema:netWorth  7.0 ;
+        foaf:name        "Robin Li" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "internet search" .
 
-<http://dbpedia.org/resource/Carrie_Perrodo_&_family>
-        schema:netWorth  "7.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Carrie_Perrodo_&_family>
+        schema:netWorth  7.0 ;
+        foaf:name        "Carrie Perrodo & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/David_Reuben>
-        schema:netWorth  "7.0" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/David_Reuben>
+        schema:netWorth  7.0 ;
+        foaf:name        "David Reuben" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "investments, real estate" .
 
-<http://dbpedia.org/resource/Simon_Reuben>
-        schema:netWorth  "7.0" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Simon_Reuben>
+        schema:netWorth  7.0 ;
+        foaf:name        "Simon Reuben" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/Seo_Jung-jin>
-        schema:netWorth  "7.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Seo_Jung-jin>
+        schema:netWorth  7.0 ;
+        foaf:name        "Seo Jung-jin" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Roman_Abramovich>
-        schema:netWorth  "6.9" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Roman_Abramovich>
+        schema:netWorth  6.9 ;
+        foaf:name        "Roman Abramovich" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "diversified" ;
         dbo:source       "steel, investments" .
 
-<http://dbpedia.org/resource/Micky_Arison>
-        schema:netWorth  "6.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Micky_Arison>
+        schema:netWorth  6.9 ;
+        foaf:name        "Micky Arison" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "Carnival Cruises" .
 
-<http://dbpedia.org/resource/Edythe_Broad_&_family>
-        schema:netWorth  "6.9" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edythe_Broad_&_family>
+        schema:netWorth  6.9 ;
+        foaf:name        "Edythe Broad & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "homebuilding, insurance" .
 
-<http://dbpedia.org/resource/Terry_Gou>
-        schema:netWorth  "6.9" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Terry_Gou>
+        schema:netWorth  6.9 ;
+        foaf:name        "Terry Gou" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Jiang_Bin>
-        schema:netWorth  "6.9" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiang_Bin>
+        schema:netWorth  6.9 ;
+        foaf:name        "Jiang Bin" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "acoustic components" .
 
-<http://dbpedia.org/resource/Vinod_Khosla>
-        schema:netWorth  "6.9" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Vinod_Khosla>
+        schema:netWorth  6.9 ;
+        foaf:name        "Vinod Khosla" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Ralph_Lauren>
-        schema:netWorth  "6.9" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ralph_Lauren>
+        schema:netWorth  6.9 ;
+        foaf:name        "Ralph Lauren" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Douglas_Leone>
-        schema:netWorth  "6.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Douglas_Leone>
+        schema:netWorth  6.9 ;
+        foaf:name        "Douglas Leone" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Lucia_Maggi_&_family>
-        schema:netWorth  "6.9" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Lucia_Maggi_&_family>
+        schema:netWorth  6.9 ;
+        foaf:name        "Lucia Maggi & family" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Horst_Julius_Pudwill>
-        schema:netWorth  "6.9" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Horst_Julius_Pudwill>
+        schema:netWorth  6.9 ;
+        foaf:name        "Horst Julius Pudwill" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Abdulsamad_Rabiu>
-        schema:netWorth  "6.9" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Nigeria> ;
+<http://example.org/person/Abdulsamad_Rabiu>
+        schema:netWorth  6.9 ;
+        foaf:name        "Abdulsamad Rabiu" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Nigeria> ;
         dbo:industry     "diversified" ;
         dbo:source       "cement, sugar" .
 
-<http://dbpedia.org/resource/Harry_Stine>
-        schema:netWorth  "6.9" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Harry_Stine>
+        schema:netWorth  6.9 ;
+        foaf:name        "Harry Stine" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agriculture" .
 
-<http://dbpedia.org/resource/Dennis_Washington>
-        schema:netWorth  "6.9" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dennis_Washington>
+        schema:netWorth  6.9 ;
+        foaf:name        "Dennis Washington" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Logistics" ;
         dbo:source       "construction, mining" .
 
-<http://dbpedia.org/resource/Hasmukh_Chudgar_&_family>
-        schema:netWorth  "6.8" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Hasmukh_Chudgar_&_family>
+        schema:netWorth  6.8 ;
+        foaf:name        "Hasmukh Chudgar & family" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Stanley_Druckenmiller>
-        schema:netWorth  "6.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stanley_Druckenmiller>
+        schema:netWorth  6.8 ;
+        foaf:name        "Stanley Druckenmiller" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Jonathan_Gray>
-        schema:netWorth  "6.8" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jonathan_Gray>
+        schema:netWorth  6.8 ;
+        foaf:name        "Jonathan Gray" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Kwon_Hyuk-bin>
-        schema:netWorth  "6.8" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kwon_Hyuk-bin>
+        schema:netWorth  6.8 ;
+        foaf:name        "Kwon Hyuk-bin" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Frank_Lowy>
-        schema:netWorth  "6.8" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Frank_Lowy>
+        schema:netWorth  6.8 ;
+        foaf:name        "Frank Lowy" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "shopping malls" .
 
-<http://dbpedia.org/resource/Ronda_Stryker>
-        schema:netWorth  "6.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ronda_Stryker>
+        schema:netWorth  6.8 ;
+        foaf:name        "Ronda Stryker" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Alejandro_Bailleres_Gual_&_siblings>
-        schema:netWorth  "6.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Alejandro_Bailleres_Gual_&_siblings>
+        schema:netWorth  6.7 ;
+        foaf:name        "Alejandro Bailleres Gual & siblings" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "diversified" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Benu_Gopal_Bangur>
-        schema:netWorth  "6.7" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Benu_Gopal_Bangur>
+        schema:netWorth  6.7 ;
+        foaf:name        "Benu Gopal Bangur" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cement" .
 
-<http://dbpedia.org/resource/James_Goodnight>
-        schema:netWorth  "6.7" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Goodnight>
+        schema:netWorth  6.7 ;
+        foaf:name        "James Goodnight" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Alain_Merieux_&_family>
-        schema:netWorth  "6.7" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Alain_Merieux_&_family>
+        schema:netWorth  6.7 ;
+        foaf:name        "Alain Merieux & family" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Enrique_Razon_Jr.>
-        schema:netWorth  "6.7" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Enrique_Razon_Jr.>
+        schema:netWorth  6.7 ;
+        foaf:name        "Enrique Razon Jr." ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Logistics" ;
         dbo:source       "ports" .
 
-<http://dbpedia.org/resource/Robert_F._Smith>
-        schema:netWorth  "6.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_F._Smith>
+        schema:netWorth  6.7 ;
+        foaf:name        "Robert F. Smith" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Brian_Armstrong>
-        schema:netWorth  "6.6" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brian_Armstrong>
+        schema:netWorth  6.6 ;
+        foaf:name        "Brian Armstrong" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Dannine_Avara>
-        schema:netWorth  "6.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dannine_Avara>
+        schema:netWorth  6.6 ;
+        foaf:name        "Dannine Avara" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/Patrick_Drahi>
-        schema:netWorth  "6.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Patrick_Drahi>
+        schema:netWorth  6.6 ;
+        foaf:name        "Patrick Drahi" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Scott_Duncan>
-        schema:netWorth  "6.6" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Scott_Duncan>
+        schema:netWorth  6.6 ;
+        foaf:name        "Scott Duncan" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/Milane_Frantz>
-        schema:netWorth  "6.6" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Milane_Frantz>
+        schema:netWorth  6.6 ;
+        foaf:name        "Milane Frantz" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/Andreas_Halvorsen>
-        schema:netWorth  "6.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Andreas_Halvorsen>
+        schema:netWorth  6.6 ;
+        foaf:name        "Andreas Halvorsen" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Law_Kar_Po>
-        schema:netWorth  "6.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Law_Kar_Po>
+        schema:netWorth  6.6 ;
+        foaf:name        "Law Kar Po" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Nicolas_Puech>
-        schema:netWorth  "6.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Nicolas_Puech>
+        schema:netWorth  6.6 ;
+        foaf:name        "Nicolas Puech" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Hermes" .
 
-<http://dbpedia.org/resource/Viktor_Rashnikov>
-        schema:netWorth  "6.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Viktor_Rashnikov>
+        schema:netWorth  6.6 ;
+        foaf:name        "Viktor Rashnikov" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Dmitry_Rybolovlev>
-        schema:netWorth  "6.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Dmitry_Rybolovlev>
+        schema:netWorth  6.6 ;
+        foaf:name        "Dmitry Rybolovlev" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "fertilizer" .
 
-<http://dbpedia.org/resource/Randa_Duncan_Williams>
-        schema:netWorth  "6.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Randa_Duncan_Williams>
+        schema:netWorth  6.6 ;
+        foaf:name        "Randa Duncan Williams" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/Chen_Jianhua>
-        schema:netWorth  "6.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Jianhua>
+        schema:netWorth  6.5 ;
+        foaf:name        "Chen Jianhua" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/John_Grayken>
-        schema:netWorth  "6.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/John_Grayken>
+        schema:netWorth  6.5 ;
+        foaf:name        "John Grayken" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Ray_Lee_Hunt>
-        schema:netWorth  "6.5" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ray_Lee_Hunt>
+        schema:netWorth  6.5 ;
+        foaf:name        "Ray Lee Hunt" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, real estate" .
 
-<http://dbpedia.org/resource/Philippe_Laffont>
-        schema:netWorth  "6.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Philippe_Laffont>
+        schema:netWorth  6.5 ;
+        foaf:name        "Philippe Laffont" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge fund" .
 
-<http://dbpedia.org/resource/Henry_Nicholas,_III.>
-        schema:netWorth  "6.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Nicholas,_III.>
+        schema:netWorth  6.5 ;
+        foaf:name        "Henry Nicholas, III." ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Axel_Oberwelland_&_siblings>
-        schema:netWorth  "6.5" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Axel_Oberwelland_&_siblings>
+        schema:netWorth  6.5 ;
+        foaf:name        "Axel Oberwelland & siblings" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy" .
 
-<http://dbpedia.org/resource/Cliff_Obrecht>
-        schema:netWorth  "6.5" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Cliff_Obrecht>
+        schema:netWorth  6.5 ;
+        foaf:name        "Cliff Obrecht" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/John_Overdeck>
-        schema:netWorth  "6.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Overdeck>
+        schema:netWorth  6.5 ;
+        foaf:name        "John Overdeck" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Melanie_Perkins>
-        schema:netWorth  "6.5" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Melanie_Perkins>
+        schema:netWorth  6.5 ;
+        foaf:name        "Melanie Perkins" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Ruan_Hongliang_&_family>
-        schema:netWorth  "6.5" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ruan_Hongliang_&_family>
+        schema:netWorth  6.5 ;
+        foaf:name        "Ruan Hongliang & family" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "glass" .
 
-<http://dbpedia.org/resource/David_Siegel>
-        schema:netWorth  "6.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Siegel>
+        schema:netWorth  6.5 ;
+        foaf:name        "David Siegel" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/David_Velez>
-        schema:netWorth  "6.5" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Colombia> ;
+<http://example.org/person/David_Velez>
+        schema:netWorth  6.5 ;
+        foaf:name        "David Velez" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Colombia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Juergen_Blickle>
-        schema:netWorth  "6.4" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Juergen_Blickle>
+        schema:netWorth  6.4 ;
+        foaf:name        "Juergen Blickle" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Cheng_Xue>
-        schema:netWorth  "6.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cheng_Xue>
+        schema:netWorth  6.4 ;
+        foaf:name        "Cheng Xue" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Jack_Dangermond>
-        schema:netWorth  "6.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jack_Dangermond>
+        schema:netWorth  6.4 ;
+        foaf:name        "Jack Dangermond" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "mapping software" .
 
-<http://dbpedia.org/resource/Jiang_Weiping_&_family>
-        schema:netWorth  "6.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiang_Weiping_&_family>
+        schema:netWorth  6.4 ;
+        foaf:name        "Jiang Weiping & family" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Takahisa_Takahara>
-        schema:netWorth  "6.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Takahisa_Takahara>
+        schema:netWorth  6.4 ;
+        foaf:name        "Takahisa Takahara" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "personal care goods" .
 
-<http://dbpedia.org/resource/Orlando_Bravo>
-        schema:netWorth  "6.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Orlando_Bravo>
+        schema:netWorth  6.3 ;
+        foaf:name        "Orlando Bravo" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Hong_Ra-hee>
-        schema:netWorth  "6.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Hong_Ra-hee>
+        schema:netWorth  6.3 ;
+        foaf:name        "Hong Ra-hee" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "Samsung" .
 
-<http://dbpedia.org/resource/Edward_Johnson,_IV.>
-        schema:netWorth  "6.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edward_Johnson,_IV.>
+        schema:netWorth  6.3 ;
+        foaf:name        "Edward Johnson, IV." ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Li_Xiaohua_&_family>
-        schema:netWorth  "6.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Xiaohua_&_family>
+        schema:netWorth  6.3 ;
+        foaf:name        "Li Xiaohua & family" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/Sri_Prakash_Lohia>
-        schema:netWorth  "6.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Sri_Prakash_Lohia>
+        schema:netWorth  6.3 ;
+        foaf:name        "Sri Prakash Lohia" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Miao_Hangen>
-        schema:netWorth  "6.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Miao_Hangen>
+        schema:netWorth  6.3 ;
+        foaf:name        "Miao Hangen" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "textiles, petrochemicals" .
 
-<http://dbpedia.org/resource/Bobby_Murphy>
-        schema:netWorth  "6.3" ;
-        foaf:age         "33" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bobby_Murphy>
+        schema:netWorth  6.3 ;
+        foaf:name        "Bobby Murphy" ;
+        foaf:age         33 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Snapchat" .
 
-<http://dbpedia.org/resource/Wu_Jianshu>
-        schema:netWorth  "6.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Wu_Jianshu>
+        schema:netWorth  6.3 ;
+        foaf:name        "Wu Jianshu" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Maria_Asuncion_Aramburuzabala_&_family>
-        schema:netWorth  "6.2" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Maria_Asuncion_Aramburuzabala_&_family>
+        schema:netWorth  6.2 ;
+        foaf:name        "Maria Asuncion Aramburuzabala & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer, investments" .
 
-<http://dbpedia.org/resource/Melinda_French_Gates>
-        schema:netWorth  "6.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Melinda_French_Gates>
+        schema:netWorth  6.2 ;
+        foaf:name        "Melinda French Gates" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Microsoft" .
 
-<http://dbpedia.org/resource/Bruce_Kovner>
-        schema:netWorth  "6.2" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bruce_Kovner>
+        schema:netWorth  6.2 ;
+        foaf:name        "Bruce Kovner" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Pham_Nhat_Vuong>
-        schema:netWorth  "6.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Pham_Nhat_Vuong>
+        schema:netWorth  6.2 ;
+        foaf:name        "Pham Nhat Vuong" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Michal_Solowow>
-        schema:netWorth  "6.2" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Michal_Solowow>
+        schema:netWorth  6.2 ;
+        foaf:name        "Michal Solowow" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Leonard_Stern>
-        schema:netWorth  "6.2" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leonard_Stern>
+        schema:netWorth  6.2 ;
+        foaf:name        "Leonard Stern" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Stef_Wertheimer_&_family>
-        schema:netWorth  "6.2" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Stef_Wertheimer_&_family>
+        schema:netWorth  6.2 ;
+        foaf:name        "Stef Wertheimer & family" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "metalworking tools" .
 
-<http://dbpedia.org/resource/Rocco_Commisso>
-        schema:netWorth  "6.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rocco_Commisso>
+        schema:netWorth  6.1 ;
+        foaf:name        "Rocco Commisso" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Jack_Dorsey>
-        schema:netWorth  "6.1" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jack_Dorsey>
+        schema:netWorth  6.1 ;
+        foaf:name        "Jack Dorsey" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Twitter, Square" .
 
-<http://dbpedia.org/resource/Lin_Li>
-        schema:netWorth  "6.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Li>
+        schema:netWorth  6.1 ;
+        foaf:name        "Lin Li" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/George_Lucas>
-        schema:netWorth  "6.1" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Lucas>
+        schema:netWorth  6.1 ;
+        foaf:name        "George Lucas" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Star Wars" .
 
-<http://dbpedia.org/resource/Evan_Spiegel>
-        schema:netWorth  "6.1" ;
-        foaf:age         "31" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Evan_Spiegel>
+        schema:netWorth  6.1 ;
+        foaf:name        "Evan Spiegel" ;
+        foaf:age         31 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Snapchat" .
 
-<http://dbpedia.org/resource/Zhao_Yan>
-        schema:netWorth  "6.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhao_Yan>
+        schema:netWorth  6.1 ;
+        foaf:name        "Zhao Yan" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Tom_Gores>
-        schema:netWorth  "6.0" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tom_Gores>
+        schema:netWorth  6.0 ;
+        foaf:name        "Tom Gores" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Leo_Koguan>
-        schema:netWorth  "6.0" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leo_Koguan>
+        schema:netWorth  6.0 ;
+        foaf:name        "Leo Koguan" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT provider" .
 
-<http://dbpedia.org/resource/Alexei_Kuzmichev>
-        schema:netWorth  "6.0" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexei_Kuzmichev>
+        schema:netWorth  6.0 ;
+        foaf:name        "Alexei Kuzmichev" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, banking, telecom" .
 
-<http://dbpedia.org/resource/Fredrik_Lundberg>
-        schema:netWorth  "6.0" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Fredrik_Lundberg>
+        schema:netWorth  6.0 ;
+        foaf:name        "Fredrik Lundberg" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/John_Morris>
-        schema:netWorth  "6.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Morris>
+        schema:netWorth  6.0 ;
+        foaf:name        "John Morris" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sporting goods retail" .
 
-<http://dbpedia.org/resource/Ivar_Tollefsen>
-        schema:netWorth  "6.0" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Ivar_Tollefsen>
+        schema:netWorth  6.0 ;
+        foaf:name        "Ivar Tollefsen" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/John,_Alan_&_Bruce_Wilson>
-        schema:netWorth  "6.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/John,_Alan_&_Bruce_Wilson>
+        schema:netWorth  6.0 ;
+        foaf:name        "John, Alan & Bruce Wilson" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retailing" .
 
-<http://dbpedia.org/resource/Stephen_Bisciotti>
-        schema:netWorth  "5.9" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stephen_Bisciotti>
+        schema:netWorth  5.9 ;
+        foaf:name        "Stephen Bisciotti" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "staffing, Baltimore Ravens" .
 
-<http://dbpedia.org/resource/Mahendra_Choksi_&_family>
-        schema:netWorth  "5.9" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mahendra_Choksi_&_family>
+        schema:netWorth  5.9 ;
+        foaf:name        "Mahendra Choksi & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Jian_Jun>
-        schema:netWorth  "5.9" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jian_Jun>
+        schema:netWorth  5.9 ;
+        foaf:name        "Jian Jun" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biomedical products" .
 
-<http://dbpedia.org/resource/Barry_Lam>
-        schema:netWorth  "5.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Barry_Lam>
+        schema:netWorth  5.9 ;
+        foaf:name        "Barry Lam" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Michael_Moritz>
-        schema:netWorth  "5.9" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Moritz>
+        schema:netWorth  5.9 ;
+        foaf:name        "Michael Moritz" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Teh_Hong_Piow>
-        schema:netWorth  "5.9" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Teh_Hong_Piow>
+        schema:netWorth  5.9 ;
+        foaf:name        "Teh Hong Piow" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Gary_Wang>
-        schema:netWorth  "5.9" ;
-        foaf:age         "28" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gary_Wang>
+        schema:netWorth  5.9 ;
+        foaf:name        "Gary Wang" ;
+        foaf:age         28 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency exchange" .
 
-<http://dbpedia.org/resource/Andre_Esteves>
-        schema:netWorth  "5.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Andre_Esteves>
+        schema:netWorth  5.8 ;
+        foaf:name        "Andre Esteves" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Joshua_Harris>
-        schema:netWorth  "5.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joshua_Harris>
+        schema:netWorth  5.8 ;
+        foaf:name        "Joshua Harris" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Rakesh_Jhunjhunwala>
-        schema:netWorth  "5.8" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rakesh_Jhunjhunwala>
+        schema:netWorth  5.8 ;
+        foaf:name        "Rakesh Jhunjhunwala" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Ken_Langone>
-        schema:netWorth  "5.8" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ken_Langone>
+        schema:netWorth  5.8 ;
+        foaf:name        "Ken Langone" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Ludwig_Merckle>
-        schema:netWorth  "5.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Ludwig_Merckle>
+        schema:netWorth  5.8 ;
+        foaf:name        "Ludwig Merckle" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Sandra_Ortega_Mera>
-        schema:netWorth  "5.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Sandra_Ortega_Mera>
+        schema:netWorth  5.8 ;
+        foaf:name        "Sandra Ortega Mera" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Zara" .
 
-<http://dbpedia.org/resource/Terrence_Pegula>
-        schema:netWorth  "5.8" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Terrence_Pegula>
+        schema:netWorth  5.8 ;
+        foaf:name        "Terrence Pegula" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "natural gas" .
 
-<http://dbpedia.org/resource/Karen_Pritzker>
-        schema:netWorth  "5.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Karen_Pritzker>
+        schema:netWorth  5.8 ;
+        foaf:name        "Karen Pritzker" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Mitchell_Rales>
-        schema:netWorth  "5.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mitchell_Rales>
+        schema:netWorth  5.8 ;
+        foaf:name        "Mitchell Rales" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing, investments" .
 
-<http://dbpedia.org/resource/Wolfgang_Reimann>
-        schema:netWorth  "5.8" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Wolfgang_Reimann>
+        schema:netWorth  5.8 ;
+        foaf:name        "Wolfgang Reimann" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Matthias_Reimann-Andersen>
-        schema:netWorth  "5.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Matthias_Reimann-Andersen>
+        schema:netWorth  5.8 ;
+        foaf:name        "Matthias Reimann-Andersen" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Stefan_Reimann-Andersen>
-        schema:netWorth  "5.8" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Stefan_Reimann-Andersen>
+        schema:netWorth  5.8 ;
+        foaf:name        "Stefan Reimann-Andersen" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Renate_Reimann-Haas>
-        schema:netWorth  "5.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Renate_Reimann-Haas>
+        schema:netWorth  5.8 ;
+        foaf:name        "Renate Reimann-Haas" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Ruan_Liping>
-        schema:netWorth  "5.8" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Ruan_Liping>
+        schema:netWorth  5.8 ;
+        foaf:name        "Ruan Liping" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "power strips" .
 
-<http://dbpedia.org/resource/Ruan_Xueping>
-        schema:netWorth  "5.8" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Ruan_Xueping>
+        schema:netWorth  5.8 ;
+        foaf:name        "Ruan Xueping" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "power strip" .
 
-<http://dbpedia.org/resource/Charles_Simonyi>
-        schema:netWorth  "5.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Simonyi>
+        schema:netWorth  5.8 ;
+        foaf:name        "Charles Simonyi" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Microsoft" .
 
-<http://dbpedia.org/resource/John_A._Sobrato_&_family>
-        schema:netWorth  "5.8" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_A._Sobrato_&_family>
+        schema:netWorth  5.8 ;
+        foaf:name        "John A. Sobrato & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/David_Steward>
-        schema:netWorth  "5.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Steward>
+        schema:netWorth  5.8 ;
+        foaf:name        "David Steward" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT provider" .
 
-<http://dbpedia.org/resource/Radovan_Vitek>
-        schema:netWorth  "5.8" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Radovan_Vitek>
+        schema:netWorth  5.8 ;
+        foaf:name        "Radovan Vitek" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Les_Wexner_&_family>
-        schema:netWorth  "5.8" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Les_Wexner_&_family>
+        schema:netWorth  5.8 ;
+        foaf:name        "Les Wexner & family" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Aloys_Wobben>
-        schema:netWorth  "5.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Aloys_Wobben>
+        schema:netWorth  5.8 ;
+        foaf:name        "Aloys Wobben" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Energy" ;
         dbo:source       "wind turbines" .
 
-<http://dbpedia.org/resource/Sam_Zell>
-        schema:netWorth  "5.8" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sam_Zell>
+        schema:netWorth  5.8 ;
+        foaf:name        "Sam Zell" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, private equity" .
 
-<http://dbpedia.org/resource/Anthony_Bamford_&_family>
-        schema:netWorth  "5.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Anthony_Bamford_&_family>
+        schema:netWorth  5.7 ;
+        foaf:name        "Anthony Bamford & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction equipment" .
 
-<http://dbpedia.org/resource/Rainer_Blickle>
-        schema:netWorth  "5.7" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Rainer_Blickle>
+        schema:netWorth  5.7 ;
+        foaf:name        "Rainer Blickle" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Clive_Calder>
-        schema:netWorth  "5.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Clive_Calder>
+        schema:netWorth  5.7 ;
+        foaf:name        "Clive Calder" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "record label" .
 
-<http://dbpedia.org/resource/Frits_Goldschmeding>
-        schema:netWorth  "5.7" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Frits_Goldschmeding>
+        schema:netWorth  5.7 ;
+        foaf:name        "Frits Goldschmeding" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Service" ;
         dbo:source       "temp agency" .
 
-<http://dbpedia.org/resource/Ananda_Krishnan>
-        schema:netWorth  "5.7" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Ananda_Krishnan>
+        schema:netWorth  5.7 ;
+        foaf:name        "Ananda Krishnan" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecoms, media, oil-services" .
 
-<http://dbpedia.org/resource/Joe_Mansueto>
-        schema:netWorth  "5.7" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joe_Mansueto>
+        schema:netWorth  5.7 ;
+        foaf:name        "Joe Mansueto" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investment research" .
 
-<http://dbpedia.org/resource/Odd_Reitan_&_family>
-        schema:netWorth  "5.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Odd_Reitan_&_family>
+        schema:netWorth  5.7 ;
+        foaf:name        "Odd Reitan & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, real estate" .
 
-<http://dbpedia.org/resource/Antony_Ressler>
-        schema:netWorth  "5.7" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Antony_Ressler>
+        schema:netWorth  5.7 ;
+        foaf:name        "Antony Ressler" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Tang_Xiao'ou>
-        schema:netWorth  "5.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Tang_Xiao'ou>
+        schema:netWorth  5.7 ;
+        foaf:name        "Tang Xiao'ou" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Tse_Ping>
-        schema:netWorth  "5.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tse_Ping>
+        schema:netWorth  5.7 ;
+        foaf:name        "Tse Ping" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Ken_Xie>
-        schema:netWorth  "5.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ken_Xie>
+        schema:netWorth  5.7 ;
+        foaf:name        "Ken Xie" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cybersecurity" .
 
-<http://dbpedia.org/resource/Tilman_Fertitta>
-        schema:netWorth  "5.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tilman_Fertitta>
+        schema:netWorth  5.6 ;
+        foaf:name        "Tilman Fertitta" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Houston Rockets, entertainment" .
 
-<http://dbpedia.org/resource/Prajogo_Pangestu>
-        schema:netWorth  "5.6" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Prajogo_Pangestu>
+        schema:netWorth  5.6 ;
+        foaf:name        "Prajogo Pangestu" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Edward_Roski,_Jr.>
-        schema:netWorth  "5.6" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edward_Roski,_Jr.>
+        schema:netWorth  5.6 ;
+        foaf:name        "Edward Roski, Jr." ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Teddy_Sagi>
-        schema:netWorth  "5.6" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Teddy_Sagi>
+        schema:netWorth  5.6 ;
+        foaf:name        "Teddy Sagi" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "gambling software" .
 
-<http://dbpedia.org/resource/Thomas_Straumann>
-        schema:netWorth  "5.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Thomas_Straumann>
+        schema:netWorth  5.6 ;
+        foaf:name        "Thomas Straumann" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "dental implants" .
 
-<http://dbpedia.org/resource/David_Sun>
-        schema:netWorth  "5.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Sun>
+        schema:netWorth  5.6 ;
+        foaf:name        "David Sun" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer hardware" .
 
-<http://dbpedia.org/resource/John_Tu>
-        schema:netWorth  "5.6" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Tu>
+        schema:netWorth  5.6 ;
+        foaf:name        "John Tu" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer hardware" .
 
-<http://dbpedia.org/resource/Erich_Wesjohann_&_family>
-        schema:netWorth  "5.6" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Erich_Wesjohann_&_family>
+        schema:netWorth  5.6 ;
+        foaf:name        "Erich Wesjohann & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "poultry genetics" .
 
-<http://dbpedia.org/resource/Xu_Jinfu>
-        schema:netWorth  "5.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Jinfu>
+        schema:netWorth  5.6 ;
+        foaf:name        "Xu Jinfu" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Alexander_Abramov>
-        schema:netWorth  "5.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Abramov>
+        schema:netWorth  5.5 ;
+        foaf:name        "Alexander Abramov" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel, mining" .
 
-<http://dbpedia.org/resource/Neil_Bluhm>
-        schema:netWorth  "5.5" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Neil_Bluhm>
+        schema:netWorth  5.5 ;
+        foaf:name        "Neil Bluhm" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Don_Hankey>
-        schema:netWorth  "5.5" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Don_Hankey>
+        schema:netWorth  5.5 ;
+        foaf:name        "Don Hankey" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "auto loans" .
 
-<http://dbpedia.org/resource/Kwee_brothers>
-        schema:netWorth  "5.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Kwee_brothers>
+        schema:netWorth  5.5 ;
+        foaf:name        "Kwee brothers" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "Real Estate" .
 
-<http://dbpedia.org/resource/Jane_Lauder>
-        schema:netWorth  "5.5" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jane_Lauder>
+        schema:netWorth  5.5 ;
+        foaf:name        "Jane Lauder" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Est├®e Lauder" .
 
-<http://dbpedia.org/resource/Gwendolyn_Sontheim_Meyer>
-        schema:netWorth  "5.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gwendolyn_Sontheim_Meyer>
+        schema:netWorth  5.5 ;
+        foaf:name        "Gwendolyn Sontheim Meyer" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/John_Reece>
-        schema:netWorth  "5.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/John_Reece>
+        schema:netWorth  5.5 ;
+        foaf:name        "John Reece" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Eric_Smidt>
-        schema:netWorth  "5.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Eric_Smidt>
+        schema:netWorth  5.5 ;
+        foaf:name        "Eric Smidt" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "hardware stores" .
 
-<http://dbpedia.org/resource/Viktor_Vekselberg>
-        schema:netWorth  "5.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Viktor_Vekselberg>
+        schema:netWorth  5.5 ;
+        foaf:name        "Viktor Vekselberg" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "metals, energy" .
 
-<http://dbpedia.org/resource/Ronald_Wanek>
-        schema:netWorth  "5.5" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ronald_Wanek>
+        schema:netWorth  5.5 ;
+        foaf:name        "Ronald Wanek" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "furniture" .
 
-<http://dbpedia.org/resource/Rene_Benko>
-        schema:netWorth  "5.4" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Rene_Benko>
+        schema:netWorth  5.4 ;
+        foaf:name        "Rene Benko" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, retail" .
 
-<http://dbpedia.org/resource/John_Brown>
-        schema:netWorth  "5.4" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Brown>
+        schema:netWorth  5.4 ;
+        foaf:name        "John Brown" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Chen_Zhiping>
-        schema:netWorth  "5.4" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Zhiping>
+        schema:netWorth  5.4 ;
+        foaf:name        "Chen Zhiping" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "e-cigarettes" .
 
-<http://dbpedia.org/resource/Andrew_Currie>
-        schema:netWorth  "5.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Andrew_Currie>
+        schema:netWorth  5.4 ;
+        foaf:name        "Andrew Currie" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Jim_Davis_&_family>
-        schema:netWorth  "5.4" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Davis_&_family>
+        schema:netWorth  5.4 ;
+        foaf:name        "Jim Davis & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "New Balance" .
 
-<http://dbpedia.org/resource/Charles_Dolan_&_family>
-        schema:netWorth  "5.4" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Dolan_&_family>
+        schema:netWorth  5.4 ;
+        foaf:name        "Charles Dolan & family" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "cable television" .
 
-<http://dbpedia.org/resource/Tom_Golisano>
-        schema:netWorth  "5.4" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tom_Golisano>
+        schema:netWorth  5.4 ;
+        foaf:name        "Tom Golisano" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "payroll services" .
 
-<http://dbpedia.org/resource/Hui_Wing_Mau>
-        schema:netWorth  "5.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Hui_Wing_Mau>
+        schema:netWorth  5.4 ;
+        foaf:name        "Hui Wing Mau" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Daniel_Kretinsky>
-        schema:netWorth  "5.4" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Daniel_Kretinsky>
+        schema:netWorth  5.4 ;
+        foaf:name        "Daniel Kretinsky" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Energy" ;
         dbo:source       "energy, investments" .
 
-<http://dbpedia.org/resource/Massimiliana_Landini_Aleotti_&_family>
-        schema:netWorth  "5.4" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Massimiliana_Landini_Aleotti_&_family>
+        schema:netWorth  5.4 ;
+        foaf:name        "Massimiliana Landini Aleotti & family" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Joe_Lewis>
-        schema:netWorth  "5.4" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Joe_Lewis>
+        schema:netWorth  5.4 ;
+        foaf:name        "Joe Lewis" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Li_Chunan>
-        schema:netWorth  "5.4" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Chunan>
+        schema:netWorth  5.4 ;
+        foaf:name        "Li Chunan" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "renewable energy" .
 
-<http://dbpedia.org/resource/Lin_Muqin_&_family>
-        schema:netWorth  "5.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Muqin_&_family>
+        schema:netWorth  5.4 ;
+        foaf:name        "Lin Muqin & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Shigenobu_Nagamori>
-        schema:netWorth  "5.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Shigenobu_Nagamori>
+        schema:netWorth  5.4 ;
+        foaf:name        "Shigenobu Nagamori" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "motors" .
 
-<http://dbpedia.org/resource/Kjell_Inge_Rokke>
-        schema:netWorth  "5.4" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Kjell_Inge_Rokke>
+        schema:netWorth  5.4 ;
+        foaf:name        "Kjell Inge Rokke" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping, seafood" .
 
-<http://dbpedia.org/resource/Wang_Wenjing>
-        schema:netWorth  "5.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Wenjing>
+        schema:netWorth  5.4 ;
+        foaf:name        "Wang Wenjing" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/Chris_Xu>
-        schema:netWorth  "5.4" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chris_Xu>
+        schema:netWorth  5.4 ;
+        foaf:name        "Chris Xu" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Samuel_Yin>
-        schema:netWorth  "5.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Samuel_Yin>
+        schema:netWorth  5.4 ;
+        foaf:name        "Samuel Yin" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "diversified" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/M.A._Yusuff_Ali>
-        schema:netWorth  "5.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/M.A._Yusuff_Ali>
+        schema:netWorth  5.4 ;
+        foaf:name        "M.A. Yusuff Ali" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Denise_Coates>
-        schema:netWorth  "5.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Denise_Coates>
+        schema:netWorth  5.3 ;
+        foaf:name        "Denise Coates" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "online gambling" .
 
-<http://dbpedia.org/resource/Ken_Fisher>
-        schema:netWorth  "5.3" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ken_Fisher>
+        schema:netWorth  5.3 ;
+        foaf:name        "Ken Fisher" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Peter_Grogg>
-        schema:netWorth  "5.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Peter_Grogg>
+        schema:netWorth  5.3 ;
+        foaf:name        "Peter Grogg" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biochemicals" .
 
-<http://dbpedia.org/resource/Dietmar_Hopp_&_family>
-        schema:netWorth  "5.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Dietmar_Hopp_&_family>
+        schema:netWorth  5.3 ;
+        foaf:name        "Dietmar Hopp & family" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Sumet_Jiaravanon>
-        schema:netWorth  "5.3" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Sumet_Jiaravanon>
+        schema:netWorth  5.3 ;
+        foaf:name        "Sumet Jiaravanon" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Nathan_Kirsh>
-        schema:netWorth  "5.3" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/Eswatini_(Swaziland)> ;
+<http://example.org/person/Nathan_Kirsh>
+        schema:netWorth  5.3 ;
+        foaf:name        "Nathan Kirsh" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/Eswatini_(Swaziland)> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, real estate" .
 
-<http://dbpedia.org/resource/Forrest_Li>
-        schema:netWorth  "5.3" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Forrest_Li>
+        schema:netWorth  5.3 ;
+        foaf:name        "Forrest Li" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "gaming" .
 
-<http://dbpedia.org/resource/Rudolf_Maag>
-        schema:netWorth  "5.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Rudolf_Maag>
+        schema:netWorth  5.3 ;
+        foaf:name        "Rudolf Maag" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Gary_Rollins>
-        schema:netWorth  "5.3" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gary_Rollins>
+        schema:netWorth  5.3 ;
+        foaf:name        "Gary Rollins" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "pest control" .
 
-<http://dbpedia.org/resource/Ugur_Sahin>
-        schema:netWorth  "5.3" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Ugur_Sahin>
+        schema:netWorth  5.3 ;
+        foaf:name        "Ugur Sahin" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotechnology" .
 
-<http://dbpedia.org/resource/Mark_Scheinberg>
-        schema:netWorth  "5.3" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Mark_Scheinberg>
+        schema:netWorth  5.3 ;
+        foaf:name        "Mark Scheinberg" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "online gambling" .
 
-<http://dbpedia.org/resource/Shen_Guojun>
-        schema:netWorth  "5.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shen_Guojun>
+        schema:netWorth  5.3 ;
+        foaf:name        "Shen Guojun" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Chip_Wilson>
-        schema:netWorth  "5.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Chip_Wilson>
+        schema:netWorth  5.3 ;
+        foaf:name        "Chip Wilson" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Lululemon" .
 
-<http://dbpedia.org/resource/Zhang_Yong>
-        schema:netWorth  "5.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Zhang_Yong>
+        schema:netWorth  5.3 ;
+        foaf:name        "Zhang Yong" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurants" .
 
-<http://dbpedia.org/resource/James_Chambers>
-        schema:netWorth  "5.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Chambers>
+        schema:netWorth  5.2 ;
+        foaf:name        "James Chambers" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, automotive" .
 
-<http://dbpedia.org/resource/Chen_Fashu>
-        schema:netWorth  "5.2" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Fashu>
+        schema:netWorth  5.2 ;
+        foaf:name        "Chen Fashu" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Jaran_Chiaravanont>
-        schema:netWorth  "5.2" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Jaran_Chiaravanont>
+        schema:netWorth  5.2 ;
+        foaf:name        "Jaran Chiaravanont" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Ravi_Jaipuria>
-        schema:netWorth  "5.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ravi_Jaipuria>
+        schema:netWorth  5.2 ;
+        foaf:name        "Ravi Jaipuria" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soft drinks, fast food" .
 
-<http://dbpedia.org/resource/Koon_Poh_Keong>
-        schema:netWorth  "5.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Koon_Poh_Keong>
+        schema:netWorth  5.2 ;
+        foaf:name        "Koon Poh Keong" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "aluminum" .
 
-<http://dbpedia.org/resource/Li_Liangbin>
-        schema:netWorth  "5.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Liangbin>
+        schema:netWorth  5.2 ;
+        foaf:name        "Li Liangbin" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "lithium" .
 
-<http://dbpedia.org/resource/Liang_Feng>
-        schema:netWorth  "5.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Feng>
+        schema:netWorth  5.2 ;
+        foaf:name        "Liang Feng" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Wolfgang_Marguerre_&_family>
-        schema:netWorth  "5.2" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Wolfgang_Marguerre_&_family>
+        schema:netWorth  5.2 ;
+        foaf:name        "Wolfgang Marguerre & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Katharine_Rayner>
-        schema:netWorth  "5.2" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Katharine_Rayner>
+        schema:netWorth  5.2 ;
+        foaf:name        "Katharine Rayner" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, automotive" .
 
-<http://dbpedia.org/resource/Carlos_Rodriguez-Pastor>
-        schema:netWorth  "5.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Peru> ;
+<http://example.org/person/Carlos_Rodriguez-Pastor>
+        schema:netWorth  5.2 ;
+        foaf:name        "Carlos Rodriguez-Pastor" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Peru> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Margaretta_Taylor>
-        schema:netWorth  "5.2" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Margaretta_Taylor>
+        schema:netWorth  5.2 ;
+        foaf:name        "Margaretta Taylor" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, automotive" .
 
-<http://dbpedia.org/resource/You_Xiaoping>
-        schema:netWorth  "5.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/You_Xiaoping>
+        schema:netWorth  5.2 ;
+        foaf:name        "You Xiaoping" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals, spandex" .
 
-<http://dbpedia.org/resource/Eric_Yuan_&_family>
-        schema:netWorth  "5.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Eric_Yuan_&_family>
+        schema:netWorth  5.2 ;
+        foaf:name        "Eric Yuan & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Zoom Video Communications" .
 
-<http://dbpedia.org/resource/Robert_Bass>
-        schema:netWorth  "5.1" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Bass>
+        schema:netWorth  5.1 ;
+        foaf:name        "Robert Bass" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, investments" .
 
-<http://dbpedia.org/resource/Alexandre_Behring>
-        schema:netWorth  "5.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Alexandre_Behring>
+        schema:netWorth  5.1 ;
+        foaf:name        "Alexandre Behring" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Chan_Laiwa_&_family>
-        schema:netWorth  "5.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chan_Laiwa_&_family>
+        schema:netWorth  5.1 ;
+        foaf:name        "Chan Laiwa & family" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jeff_Greene>
-        schema:netWorth  "5.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Greene>
+        schema:netWorth  5.1 ;
+        foaf:name        "Jeff Greene" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/Montri_Jiaravanont>
-        schema:netWorth  "5.1" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Montri_Jiaravanont>
+        schema:netWorth  5.1 ;
+        foaf:name        "Montri Jiaravanont" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Charles_B._Johnson>
-        schema:netWorth  "5.1" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_B._Johnson>
+        schema:netWorth  5.1 ;
+        foaf:name        "Charles B. Johnson" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Elizabeth_Johnson>
-        schema:netWorth  "5.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Elizabeth_Johnson>
+        schema:netWorth  5.1 ;
+        foaf:name        "Elizabeth Johnson" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Lin_Bin>
-        schema:netWorth  "5.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lin_Bin>
+        schema:netWorth  5.1 ;
+        foaf:name        "Lin Bin" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphones" .
 
-<http://dbpedia.org/resource/Hiroshi_Mikitani>
-        schema:netWorth  "5.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Hiroshi_Mikitani>
+        schema:netWorth  5.1 ;
+        foaf:name        "Hiroshi Mikitani" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "online retail" .
 
-<http://dbpedia.org/resource/Isaac_Perlmutter>
-        schema:netWorth  "5.1" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Isaac_Perlmutter>
+        schema:netWorth  5.1 ;
+        foaf:name        "Isaac Perlmutter" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Marvel comics" .
 
-<http://dbpedia.org/resource/Michael_Pieper>
-        schema:netWorth  "5.1" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Michael_Pieper>
+        schema:netWorth  5.1 ;
+        foaf:name        "Michael Pieper" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "kitchen appliances" .
 
-<http://dbpedia.org/resource/Issad_Rebrab_&_family>
-        schema:netWorth  "5.1" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Algeria> ;
+<http://example.org/person/Issad_Rebrab_&_family>
+        schema:netWorth  5.1 ;
+        foaf:name        "Issad Rebrab & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Algeria> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Tsai_Hong-tu>
-        schema:netWorth  "5.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tsai_Hong-tu>
+        schema:netWorth  5.1 ;
+        foaf:name        "Tsai Hong-tu" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Richard_Tsai>
-        schema:netWorth  "5.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Richard_Tsai>
+        schema:netWorth  5.1 ;
+        foaf:name        "Richard Tsai" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Wang_Junshi_&_family>
-        schema:netWorth  "5.1" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Junshi_&_family>
+        schema:netWorth  5.1 ;
+        foaf:name        "Wang Junshi & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "solar inverters" .
 
-<http://dbpedia.org/resource/Wang_Yanqing_&_family>
-        schema:netWorth  "5.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Yanqing_&_family>
+        schema:netWorth  5.1 ;
+        foaf:name        "Wang Yanqing & family" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electrical equipment" .
 
-<http://dbpedia.org/resource/Shari_Arison>
-        schema:netWorth  "5.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Shari_Arison>
+        schema:netWorth  5.0 ;
+        foaf:name        "Shari Arison" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Service" ;
         dbo:source       "Carnival Cruises" .
 
-<http://dbpedia.org/resource/Alain_Bouchard>
-        schema:netWorth  "5.0" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Alain_Bouchard>
+        schema:netWorth  5.0 ;
+        foaf:name        "Alain Bouchard" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "convinience stores" .
 
-<http://dbpedia.org/resource/Austen_Cargill,_II.>
-        schema:netWorth  "5.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Austen_Cargill,_II.>
+        schema:netWorth  5.0 ;
+        foaf:name        "Austen Cargill, II." ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/James_Cargill,_II.>
-        schema:netWorth  "5.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Cargill,_II.>
+        schema:netWorth  5.0 ;
+        foaf:name        "James Cargill, II." ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Ben_Chestnut>
-        schema:netWorth  "5.0" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ben_Chestnut>
+        schema:netWorth  5.0 ;
+        foaf:name        "Ben Chestnut" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "email marketing" .
 
-<http://dbpedia.org/resource/Wei_Fang>
-        schema:netWorth  "5.0" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wei_Fang>
+        schema:netWorth  5.0 ;
+        foaf:name        "Wei Fang" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Leonid_Fedun>
-        schema:netWorth  "5.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Leonid_Fedun>
+        schema:netWorth  5.0 ;
+        foaf:name        "Leonid Fedun" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/Johann_Graf>
-        schema:netWorth  "5.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Johann_Graf>
+        schema:netWorth  5.0 ;
+        foaf:name        "Johann Graf" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "gambling" .
 
-<http://dbpedia.org/resource/Huang_Chulong>
-        schema:netWorth  "5.0" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Huang_Chulong>
+        schema:netWorth  5.0 ;
+        foaf:name        "Huang Chulong" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Huang_Yi>
-        schema:netWorth  "5.0" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Huang_Yi>
+        schema:netWorth  5.0 ;
+        foaf:name        "Huang Yi" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Automotive" ;
         dbo:source       "car dealerships" .
 
-<http://dbpedia.org/resource/Vladimir_Kim>
-        schema:netWorth  "5.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Kazakhstan> ;
+<http://example.org/person/Vladimir_Kim>
+        schema:netWorth  5.0 ;
+        foaf:name        "Vladimir Kim" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Kazakhstan> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Dan_Kurzius>
-        schema:netWorth  "5.0" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dan_Kurzius>
+        schema:netWorth  5.0 ;
+        foaf:name        "Dan Kurzius" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "email marketing" .
 
-<http://dbpedia.org/resource/Ronald_Lauder>
-        schema:netWorth  "5.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ronald_Lauder>
+        schema:netWorth  5.0 ;
+        foaf:name        "Ronald Lauder" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Estee Lauder" .
 
-<http://dbpedia.org/resource/Marianne_Liebmann>
-        schema:netWorth  "5.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marianne_Liebmann>
+        schema:netWorth  5.0 ;
+        foaf:name        "Marianne Liebmann" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Tobi_Lutke>
-        schema:netWorth  "5.0" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Tobi_Lutke>
+        schema:netWorth  5.0 ;
+        foaf:name        "Tobi Lutke" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Thomas_Pritzker>
-        schema:netWorth  "5.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Pritzker>
+        schema:netWorth  5.0 ;
+        foaf:name        "Thomas Pritzker" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Scott_Shleifer>
-        schema:netWorth  "5.0" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Scott_Shleifer>
+        schema:netWorth  5.0 ;
+        foaf:name        "Scott Shleifer" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Autry_Stephens>
-        schema:netWorth  "5.0" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Autry_Stephens>
+        schema:netWorth  5.0 ;
+        foaf:name        "Autry Stephens" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/Peter_Thiel>
-        schema:netWorth  "5.0" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Peter_Thiel>
+        schema:netWorth  5.0 ;
+        foaf:name        "Peter Thiel" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Facebook, investments" .
 
-<http://dbpedia.org/resource/Tsai_Cheng-ta>
-        schema:netWorth  "5.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tsai_Cheng-ta>
+        schema:netWorth  5.0 ;
+        foaf:name        "Tsai Cheng-ta" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Maximilian_Viessmann>
-        schema:netWorth  "5.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Maximilian_Viessmann>
+        schema:netWorth  5.0 ;
+        foaf:name        "Maximilian Viessmann" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "heating, cooling equipment" .
 
-<http://dbpedia.org/resource/Hansjoerg_Wyss>
-        schema:netWorth  "5.0" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Hansjoerg_Wyss>
+        schema:netWorth  5.0 ;
+        foaf:name        "Hansjoerg Wyss" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Xiao_Yongming_&_family>
-        schema:netWorth  "5.0" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiao_Yongming_&_family>
+        schema:netWorth  5.0 ;
+        foaf:name        "Xiao Yongming & family" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "fertilizer" .
 
-<http://dbpedia.org/resource/Zhang_Tao>
-        schema:netWorth  "5.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Tao>
+        schema:netWorth  5.0 ;
+        foaf:name        "Zhang Tao" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Daniel_Ziff>
-        schema:netWorth  "5.0" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Ziff>
+        schema:netWorth  5.0 ;
+        foaf:name        "Daniel Ziff" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Dirk_Ziff>
-        schema:netWorth  "5.0" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dirk_Ziff>
+        schema:netWorth  5.0 ;
+        foaf:name        "Dirk Ziff" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Robert_Ziff>
-        schema:netWorth  "5.0" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Ziff>
+        schema:netWorth  5.0 ;
+        foaf:name        "Robert Ziff" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Kapil_&_Rahul_Bhatia>
-        schema:netWorth  "4.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kapil_&_Rahul_Bhatia>
+        schema:netWorth  4.9 ;
+        foaf:name        "Kapil & Rahul Bhatia" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Service" ;
         dbo:source       "airlines" .
 
-<http://dbpedia.org/resource/Mat_Ishbia>
-        schema:netWorth  "4.9" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mat_Ishbia>
+        schema:netWorth  4.9 ;
+        foaf:name        "Mat Ishbia" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mortgage lenderÔÿà" .
 
-<http://dbpedia.org/resource/Robert_Rich,_Jr.>
-        schema:netWorth  "4.9" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Rich,_Jr.>
+        schema:netWorth  4.9 ;
+        foaf:name        "Robert Rich, Jr." ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "frozen foods" .
 
-<http://dbpedia.org/resource/Thomas_Schmidheiny>
-        schema:netWorth  "4.9" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Thomas_Schmidheiny>
+        schema:netWorth  4.9 ;
+        foaf:name        "Thomas Schmidheiny" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "cement" .
 
-<http://dbpedia.org/resource/Alexandra_Schoerghuber_&_family>
-        schema:netWorth  "4.9" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Alexandra_Schoerghuber_&_family>
+        schema:netWorth  4.9 ;
+        foaf:name        "Alexandra Schoerghuber & family" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Erik_Selin>
-        schema:netWorth  "4.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Erik_Selin>
+        schema:netWorth  4.9 ;
+        foaf:name        "Erik Selin" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Daniel_Tsai>
-        schema:netWorth  "4.9" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Daniel_Tsai>
+        schema:netWorth  4.9 ;
+        foaf:name        "Daniel Tsai" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Dona_Bertarelli>
-        schema:netWorth  "4.8" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Dona_Bertarelli>
+        schema:netWorth  4.8 ;
+        foaf:name        "Dona Bertarelli" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Andrei_Guriev_&_family>
-        schema:netWorth  "4.8" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Guriev_&_family>
+        schema:netWorth  4.8 ;
+        foaf:name        "Andrei Guriev & family" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "fertilizers" .
 
-<http://dbpedia.org/resource/Luciano_Hang>
-        schema:netWorth  "4.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Luciano_Hang>
+        schema:netWorth  4.8 ;
+        foaf:name        "Luciano Hang" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "department stores" .
 
-<http://dbpedia.org/resource/Hu_Baifan>
-        schema:netWorth  "4.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hu_Baifan>
+        schema:netWorth  4.8 ;
+        foaf:name        "Hu Baifan" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Bidzina_Ivanishvili>
-        schema:netWorth  "4.8" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Georgia> ;
+<http://example.org/person/Bidzina_Ivanishvili>
+        schema:netWorth  4.8 ;
+        foaf:name        "Bidzina Ivanishvili" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Georgia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Yeow_Chor_&_Yeow_Seng_Lee>
-        schema:netWorth  "4.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Yeow_Chor_&_Yeow_Seng_Lee>
+        schema:netWorth  4.8 ;
+        foaf:name        "Yeow Chor & Yeow Seng Lee" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "palm oil, property" .
 
-<http://dbpedia.org/resource/Leng_Youbin>
-        schema:netWorth  "4.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Leng_Youbin>
+        schema:netWorth  4.8 ;
+        foaf:name        "Leng Youbin" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "infant formula" .
 
-<http://dbpedia.org/resource/Theo_Mueller>
-        schema:netWorth  "4.8" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Theo_Mueller>
+        schema:netWorth  4.8 ;
+        foaf:name        "Theo Mueller" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "dairy" .
 
-<http://dbpedia.org/resource/Julian_Robertson,_Jr.>
-        schema:netWorth  "4.8" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Julian_Robertson,_Jr.>
+        schema:netWorth  4.8 ;
+        foaf:name        "Julian Robertson, Jr." ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Marc_Rowan>
-        schema:netWorth  "4.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marc_Rowan>
+        schema:netWorth  4.8 ;
+        foaf:name        "Marc Rowan" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Emanuele_(Lino)_Saputo_&_family>
-        schema:netWorth  "4.8" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Emanuele_(Lino)_Saputo_&_family>
+        schema:netWorth  4.8 ;
+        foaf:name        "Emanuele (Lino) Saputo & family" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "cheese" .
 
-<http://dbpedia.org/resource/Jeff_Skoll>
-        schema:netWorth  "4.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Skoll>
+        schema:netWorth  4.8 ;
+        foaf:name        "Jeff Skoll" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "eBay" .
 
-<http://dbpedia.org/resource/Frank_Wang>
-        schema:netWorth  "4.8" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Frank_Wang>
+        schema:netWorth  4.8 ;
+        foaf:name        "Frank Wang" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "drones" .
 
-<http://dbpedia.org/resource/Wang_Junlin>
-        schema:netWorth  "4.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Junlin>
+        schema:netWorth  4.8 ;
+        foaf:name        "Wang Junlin" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "liquor" .
 
-<http://dbpedia.org/resource/Yang_Shaopeng>
-        schema:netWorth  "4.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Shaopeng>
+        schema:netWorth  4.8 ;
+        foaf:name        "Yang Shaopeng" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Maria_Fernanda_Amorim_&_family>
-        schema:netWorth  "4.7" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Portugal> ;
+<http://example.org/person/Maria_Fernanda_Amorim_&_family>
+        schema:netWorth  4.7 ;
+        foaf:name        "Maria Fernanda Amorim & family" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Portugal> ;
         dbo:industry     "diversified" ;
         dbo:source       "energy, investments" .
 
-<http://dbpedia.org/resource/Leonid_Boguslavsky>
-        schema:netWorth  "4.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Leonid_Boguslavsky>
+        schema:netWorth  4.7 ;
+        foaf:name        "Leonid Boguslavsky" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Richard_Branson>
-        schema:netWorth  "4.7" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Richard_Branson>
+        schema:netWorth  4.7 ;
+        foaf:name        "Richard Branson" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "diversified" ;
         dbo:source       "Virgin" .
 
-<http://dbpedia.org/resource/Robert_Brockman>
-        schema:netWorth  "4.7" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Brockman>
+        schema:netWorth  4.7 ;
+        foaf:name        "Robert Brockman" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Pierre_Chen>
-        schema:netWorth  "4.7" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Pierre_Chen>
+        schema:netWorth  4.7 ;
+        foaf:name        "Pierre Chen" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Chu_Mang_Yee_&_family>
-        schema:netWorth  "4.7" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chu_Mang_Yee_&_family>
+        schema:netWorth  4.7 ;
+        foaf:name        "Chu Mang Yee & family" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Scott_Cook>
-        schema:netWorth  "4.7" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Scott_Cook>
+        schema:netWorth  4.7 ;
+        foaf:name        "Scott Cook" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Mark_Cuban>
-        schema:netWorth  "4.7" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_Cuban>
+        schema:netWorth  4.7 ;
+        foaf:name        "Mark Cuban" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online media, Dallas Mavericks" .
 
-<http://dbpedia.org/resource/Guenther_Fielmann_&_family>
-        schema:netWorth  "4.7" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Guenther_Fielmann_&_family>
+        schema:netWorth  4.7 ;
+        foaf:name        "Guenther Fielmann & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "optometry" .
 
-<http://dbpedia.org/resource/Martin_Haefner>
-        schema:netWorth  "4.7" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Martin_Haefner>
+        schema:netWorth  4.7 ;
+        foaf:name        "Martin Haefner" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Technology" ;
         dbo:source       "software, investments" .
 
-<http://dbpedia.org/resource/Johnelle_Hunt>
-        schema:netWorth  "4.7" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Johnelle_Hunt>
+        schema:netWorth  4.7 ;
+        foaf:name        "Johnelle Hunt" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Logistics" ;
         dbo:source       "trucking" .
 
-<http://dbpedia.org/resource/Andre_Koo,_Sr.>
-        schema:netWorth  "4.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Andre_Koo,_Sr.>
+        schema:netWorth  4.7 ;
+        foaf:name        "Andre Koo, Sr." ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Lai_Meisong>
-        schema:netWorth  "4.7" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lai_Meisong>
+        schema:netWorth  4.7 ;
+        foaf:name        "Lai Meisong" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "package delivery" .
 
-<http://dbpedia.org/resource/Richard_Li>
-        schema:netWorth  "4.7" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Richard_Li>
+        schema:netWorth  4.7 ;
+        foaf:name        "Richard Li" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Mangal_Prabhat_Lodha>
-        schema:netWorth  "4.7" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mangal_Prabhat_Lodha>
+        schema:netWorth  4.7 ;
+        foaf:name        "Mangal Prabhat Lodha" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Igor_Olenicoff>
-        schema:netWorth  "4.7" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Igor_Olenicoff>
+        schema:netWorth  4.7 ;
+        foaf:name        "Igor Olenicoff" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mark_Shoen>
-        schema:netWorth  "4.7" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_Shoen>
+        schema:netWorth  4.7 ;
+        foaf:name        "Mark Shoen" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "U-Haul" .
 
-<http://dbpedia.org/resource/Andrei_Skoch_&_family>
-        schema:netWorth  "4.7" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Skoch_&_family>
+        schema:netWorth  4.7 ;
+        foaf:name        "Andrei Skoch & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Fred_Smith>
-        schema:netWorth  "4.7" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Fred_Smith>
+        schema:netWorth  4.7 ;
+        foaf:name        "Fred Smith" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Logistics" ;
         dbo:source       "FedEx" .
 
-<http://dbpedia.org/resource/Murat_Ulker>
-        schema:netWorth  "4.7" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Murat_Ulker>
+        schema:netWorth  4.7 ;
+        foaf:name        "Murat Ulker" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Yu_Yong>
-        schema:netWorth  "4.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yu_Yong>
+        schema:netWorth  4.7 ;
+        foaf:name        "Yu Yong" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/St%C3%A9phane_Bancel>
-        schema:netWorth  "4.6" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/St%C3%A9phane_Bancel>
+        schema:netWorth  4.6 ;
+        foaf:name        "St├®phane Bancel" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Bubba_Cathy>
-        schema:netWorth  "4.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bubba_Cathy>
+        schema:netWorth  4.6 ;
+        foaf:name        "Bubba Cathy" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Chick-fil-A" .
 
-<http://dbpedia.org/resource/Dan_Cathy>
-        schema:netWorth  "4.6" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dan_Cathy>
+        schema:netWorth  4.6 ;
+        foaf:name        "Dan Cathy" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Chick-fil-A" .
 
-<http://dbpedia.org/resource/Trudy_Cathy_White>
-        schema:netWorth  "4.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Trudy_Cathy_White>
+        schema:netWorth  4.6 ;
+        foaf:name        "Trudy Cathy White" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Chick-fil-A" .
 
-<http://dbpedia.org/resource/Jason_Chang>
-        schema:netWorth  "4.6" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Jason_Chang>
+        schema:netWorth  4.6 ;
+        foaf:name        "Jason Chang" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Dagmar_Dolby_&_family>
-        schema:netWorth  "4.6" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dagmar_Dolby_&_family>
+        schema:netWorth  4.6 ;
+        foaf:name        "Dagmar Dolby & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Dolby Laboratories" .
 
-<http://dbpedia.org/resource/Bruce_Flatt>
-        schema:netWorth  "4.6" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Bruce_Flatt>
+        schema:netWorth  4.6 ;
+        foaf:name        "Bruce Flatt" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Masatoshi_Ito>
-        schema:netWorth  "4.6" ;
-        foaf:age         "97" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Masatoshi_Ito>
+        schema:netWorth  4.6 ;
+        foaf:name        "Masatoshi Ito" ;
+        foaf:age         97 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Viatcheslav_Kantor>
-        schema:netWorth  "4.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Viatcheslav_Kantor>
+        schema:netWorth  4.6 ;
+        foaf:name        "Viatcheslav Kantor" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "fertilizer, real estate" .
 
-<http://dbpedia.org/resource/Min_Kao_&_family>
-        schema:netWorth  "4.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Min_Kao_&_family>
+        schema:netWorth  4.6 ;
+        foaf:name        "Min Kao & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "navigation equipment" .
 
-<http://dbpedia.org/resource/Lin_Xiucheng_&_family>
-        schema:netWorth  "4.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Xiucheng_&_family>
+        schema:netWorth  4.6 ;
+        foaf:name        "Lin Xiucheng & family" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Sami_Mnaymneh>
-        schema:netWorth  "4.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sami_Mnaymneh>
+        schema:netWorth  4.6 ;
+        foaf:name        "Sami Mnaymneh" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Tony_Tamer>
-        schema:netWorth  "4.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tony_Tamer>
+        schema:netWorth  4.6 ;
+        foaf:name        "Tony Tamer" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Richard_White>
-        schema:netWorth  "4.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Richard_White>
+        schema:netWorth  4.6 ;
+        foaf:name        "Richard White" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Baoguo_Zhu_&_family>
-        schema:netWorth  "4.6" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Baoguo_Zhu_&_family>
+        schema:netWorth  4.6 ;
+        foaf:name        "Baoguo Zhu & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Michael_Ashley>
-        schema:netWorth  "4.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Michael_Ashley>
+        schema:netWorth  4.5 ;
+        foaf:name        "Michael Ashley" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sports retailing" .
 
-<http://dbpedia.org/resource/Ron_Baron>
-        schema:netWorth  "4.5" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ron_Baron>
+        schema:netWorth  4.5 ;
+        foaf:name        "Ron Baron" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Bert_Beveridge>
-        schema:netWorth  "4.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bert_Beveridge>
+        schema:netWorth  4.5 ;
+        foaf:name        "Bert Beveridge" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "vodka" .
 
-<http://dbpedia.org/resource/Todd_Boehly>
-        schema:netWorth  "4.5" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Todd_Boehly>
+        schema:netWorth  4.5 ;
+        foaf:name        "Todd Boehly" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/David_Bonderman>
-        schema:netWorth  "4.5" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Bonderman>
+        schema:netWorth  4.5 ;
+        foaf:name        "David Bonderman" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Guo_Guangchang>
-        schema:netWorth  "4.5" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guo_Guangchang>
+        schema:netWorth  4.5 ;
+        foaf:name        "Guo Guangchang" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "conglomerate" .
 
-<http://dbpedia.org/resource/Daryl_Katz>
-        schema:netWorth  "4.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Daryl_Katz>
+        schema:netWorth  4.5 ;
+        foaf:name        "Daryl Katz" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "diversified" ;
         dbo:source       "pharmacies" .
 
-<http://dbpedia.org/resource/Ted_Lerner_&_family>
-        schema:netWorth  "4.5" ;
-        foaf:age         "96" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ted_Lerner_&_family>
+        schema:netWorth  4.5 ;
+        foaf:name        "Ted Lerner & family" ;
+        foaf:age         96 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Falguni_Nayar>
-        schema:netWorth  "4.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Falguni_Nayar>
+        schema:netWorth  4.5 ;
+        foaf:name        "Falguni Nayar" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retailing" .
 
-<http://dbpedia.org/resource/Trevor_Rees-Jones>
-        schema:netWorth  "4.5" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Trevor_Rees-Jones>
+        schema:netWorth  4.5 ;
+        foaf:name        "Trevor Rees-Jones" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/J._Joe_Ricketts_&_family>
-        schema:netWorth  "4.5" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J._Joe_Ricketts_&_family>
+        schema:netWorth  4.5 ;
+        foaf:name        "J. Joe Ricketts & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "TD Ameritrade" .
 
-<http://dbpedia.org/resource/Robert_Rowling>
-        schema:netWorth  "4.5" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Rowling>
+        schema:netWorth  4.5 ;
+        foaf:name        "Robert Rowling" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Mark_Stevens>
-        schema:netWorth  "4.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_Stevens>
+        schema:netWorth  4.5 ;
+        foaf:name        "Mark Stevens" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Gustav_Magnar_Witzoe>
-        schema:netWorth  "4.5" ;
-        foaf:age         "28" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Gustav_Magnar_Witzoe>
+        schema:netWorth  4.5 ;
+        foaf:name        "Gustav Magnar Witzoe" ;
+        foaf:age         28 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "fish farming" .
 
-<http://dbpedia.org/resource/Xie_Liangzhi_&_family>
-        schema:netWorth  "4.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xie_Liangzhi_&_family>
+        schema:netWorth  4.5 ;
+        foaf:name        "Xie Liangzhi & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Yeung_Kin-man>
-        schema:netWorth  "4.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Yeung_Kin-man>
+        schema:netWorth  4.5 ;
+        foaf:name        "Yeung Kin-man" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Zhang_Hejun>
-        schema:netWorth  "4.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Hejun>
+        schema:netWorth  4.5 ;
+        foaf:name        "Zhang Hejun" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Andrej_Babis>
-        schema:netWorth  "4.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Andrej_Babis>
+        schema:netWorth  4.4 ;
+        foaf:name        "Andrej Babis" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agriculture" .
 
-<http://dbpedia.org/resource/Giuseppe_De'Longhi_&_family>
-        schema:netWorth  "4.4" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Giuseppe_De'Longhi_&_family>
+        schema:netWorth  4.4 ;
+        foaf:name        "Giuseppe De'Longhi & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "coffee makers" .
 
-<http://dbpedia.org/resource/Barry_Diller>
-        schema:netWorth  "4.4" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Barry_Diller>
+        schema:netWorth  4.4 ;
+        foaf:name        "Barry Diller" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online media" .
 
-<http://dbpedia.org/resource/Christian_Haub>
-        schema:netWorth  "4.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christian_Haub>
+        schema:netWorth  4.4 ;
+        foaf:name        "Christian Haub" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Huang_Li>
-        schema:netWorth  "4.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Li>
+        schema:netWorth  4.4 ;
+        foaf:name        "Huang Li" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "imaging systems" .
 
-<http://dbpedia.org/resource/Marian_Ilitch>
-        schema:netWorth  "4.4" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marian_Ilitch>
+        schema:netWorth  4.4 ;
+        foaf:name        "Marian Ilitch" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Little Caesars" .
 
-<http://dbpedia.org/resource/Suleiman_Kerimov_&_family>
-        schema:netWorth  "4.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Suleiman_Kerimov_&_family>
+        schema:netWorth  4.4 ;
+        foaf:name        "Suleiman Kerimov & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "gold" .
 
-<http://dbpedia.org/resource/Edwin_Leong>
-        schema:netWorth  "4.4" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Edwin_Leong>
+        schema:netWorth  4.4 ;
+        foaf:name        "Edwin Leong" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lu_Yiwen>
-        schema:netWorth  "4.4" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Yiwen>
+        schema:netWorth  4.4 ;
+        foaf:name        "Lu Yiwen" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Luxury goods" .
 
-<http://dbpedia.org/resource/N.R._Narayana_Murthy>
-        schema:netWorth  "4.4" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/N.R._Narayana_Murthy>
+        schema:netWorth  4.4 ;
+        foaf:name        "N.R. Narayana Murthy" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Yang_Jianliang_&_family>
-        schema:netWorth  "4.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Jianliang_&_family>
+        schema:netWorth  4.4 ;
+        foaf:name        "Yang Jianliang & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Pyotr_Aven>
-        schema:netWorth  "4.3" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Pyotr_Aven>
+        schema:netWorth  4.3 ;
+        foaf:name        "Pyotr Aven" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "oil, banking, telecom" .
 
-<http://dbpedia.org/resource/Joesley_Batista>
-        schema:netWorth  "4.3" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Joesley_Batista>
+        schema:netWorth  4.3 ;
+        foaf:name        "Joesley Batista" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beef processing" .
 
-<http://dbpedia.org/resource/Wesley_Batista>
-        schema:netWorth  "4.3" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Wesley_Batista>
+        schema:netWorth  4.3 ;
+        foaf:name        "Wesley Batista" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beef packing" .
 
-<http://dbpedia.org/resource/Margot_Birmingham_Perot>
-        schema:netWorth  "4.3" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Margot_Birmingham_Perot>
+        schema:netWorth  4.3 ;
+        foaf:name        "Margot Birmingham Perot" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer services, real estate" .
 
-<http://dbpedia.org/resource/Rick_Caruso>
-        schema:netWorth  "4.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rick_Caruso>
+        schema:netWorth  4.3 ;
+        foaf:name        "Rick Caruso" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jim_Davis>
-        schema:netWorth  "4.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Davis>
+        schema:netWorth  4.3 ;
+        foaf:name        "Jim Davis" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "staffing & recruiting" .
 
-<http://dbpedia.org/resource/Walter_P.J._Droege>
-        schema:netWorth  "4.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Walter_P.J._Droege>
+        schema:netWorth  4.3 ;
+        foaf:name        "Walter P.J. Droege" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investing" .
 
-<http://dbpedia.org/resource/Dan_Friedkin>
-        schema:netWorth  "4.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dan_Friedkin>
+        schema:netWorth  4.3 ;
+        foaf:name        "Dan Friedkin" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "Toyota dealerships" .
 
-<http://dbpedia.org/resource/Gao_Dekang_&_family>
-        schema:netWorth  "4.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gao_Dekang_&_family>
+        schema:netWorth  4.3 ;
+        foaf:name        "Gao Dekang & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Antti_Herlin>
-        schema:netWorth  "4.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Antti_Herlin>
+        schema:netWorth  4.3 ;
+        foaf:name        "Antti Herlin" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "elevators, escalators" .
 
-<http://dbpedia.org/resource/W._Herbert_Hunt>
-        schema:netWorth  "4.3" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/W._Herbert_Hunt>
+        schema:netWorth  4.3 ;
+        foaf:name        "W. Herbert Hunt" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/Jason_Jiang>
-        schema:netWorth  "4.3" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jason_Jiang>
+        schema:netWorth  4.3 ;
+        foaf:name        "Jason Jiang" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "advertising" .
 
-<http://dbpedia.org/resource/Rupert_Johnson,_Jr.>
-        schema:netWorth  "4.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rupert_Johnson,_Jr.>
+        schema:netWorth  4.3 ;
+        foaf:name        "Rupert Johnson, Jr." ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Vikram_Lal_&_family>
-        schema:netWorth  "4.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vikram_Lal_&_family>
+        schema:netWorth  4.3 ;
+        foaf:name        "Vikram Lal & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "motorcycles" .
 
-<http://dbpedia.org/resource/Lam_Wai-ying>
-        schema:netWorth  "4.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Lam_Wai-ying>
+        schema:netWorth  4.3 ;
+        foaf:name        "Lam Wai-ying" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "smartphone screens" .
 
-<http://dbpedia.org/resource/Chris_Larsen>
-        schema:netWorth  "4.3" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Chris_Larsen>
+        schema:netWorth  4.3 ;
+        foaf:name        "Chris Larsen" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Richard_Schulze>
-        schema:netWorth  "4.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Schulze>
+        schema:netWorth  4.3 ;
+        foaf:name        "Richard Schulze" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Best Buy" .
 
-<http://dbpedia.org/resource/Paul_Singer>
-        schema:netWorth  "4.3" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Singer>
+        schema:netWorth  4.3 ;
+        foaf:name        "Paul Singer" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Barry_Sternlicht>
-        schema:netWorth  "4.3" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Barry_Sternlicht>
+        schema:netWorth  4.3 ;
+        foaf:name        "Barry Sternlicht" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Su_Hua>
-        schema:netWorth  "4.3" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Su_Hua>
+        schema:netWorth  4.3 ;
+        foaf:name        "Su Hua" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "video streaming" .
 
-<http://dbpedia.org/resource/Mark_Walter>
-        schema:netWorth  "4.3" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_Walter>
+        schema:netWorth  4.3 ;
+        foaf:name        "Mark Walter" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Ty_Warner>
-        schema:netWorth  "4.3" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ty_Warner>
+        schema:netWorth  4.3 ;
+        foaf:name        "Ty Warner" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "plush toys, real estate" .
 
-<http://dbpedia.org/resource/Rinat_Akhmetov>
-        schema:netWorth  "4.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ukraine> ;
+<http://example.org/person/Rinat_Akhmetov>
+        schema:netWorth  4.2 ;
+        foaf:name        "Rinat Akhmetov" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Ukraine> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel, coal" .
 
-<http://dbpedia.org/resource/Martin_&_Olivier_Bouygues>
-        schema:netWorth  "4.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Martin_&_Olivier_Bouygues>
+        schema:netWorth  4.2 ;
+        foaf:name        "Martin & Olivier Bouygues" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction, media" .
 
-<http://dbpedia.org/resource/Bernard_Broermann>
-        schema:netWorth  "4.2" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Bernard_Broermann>
+        schema:netWorth  4.2 ;
+        foaf:name        "Bernard Broermann" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Mong-Koo_Chung>
-        schema:netWorth  "4.2" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Mong-Koo_Chung>
+        schema:netWorth  4.2 ;
+        foaf:name        "Mong-Koo Chung" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Automotive" ;
         dbo:source       "Hyundai" .
 
-<http://dbpedia.org/resource/Daniel_D'Aniello>
-        schema:netWorth  "4.2" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_D'Aniello>
+        schema:netWorth  4.2 ;
+        foaf:name        "Daniel D'Aniello" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Traudl_Engelhorn_&_family>
-        schema:netWorth  "4.2" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Traudl_Engelhorn_&_family>
+        schema:netWorth  4.2 ;
+        foaf:name        "Traudl Engelhorn & family" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals, medical equipment" .
 
-<http://dbpedia.org/resource/Piero_Ferrari>
-        schema:netWorth  "4.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Piero_Ferrari>
+        schema:netWorth  4.2 ;
+        foaf:name        "Piero Ferrari" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automobiles" .
 
-<http://dbpedia.org/resource/Carlo_Fidani>
-        schema:netWorth  "4.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Carlo_Fidani>
+        schema:netWorth  4.2 ;
+        foaf:name        "Carlo Fidani" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Yakir_Gabay>
-        schema:netWorth  "4.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Cyprus> ;
+<http://example.org/person/Yakir_Gabay>
+        schema:netWorth  4.2 ;
+        foaf:name        "Yakir Gabay" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Cyprus> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jaime_Gilinski_Bacal>
-        schema:netWorth  "4.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Colombia> ;
+<http://example.org/person/Jaime_Gilinski_Bacal>
+        schema:netWorth  4.2 ;
+        foaf:name        "Jaime Gilinski Bacal" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Colombia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Bertil_Hult>
-        schema:netWorth  "4.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Bertil_Hult>
+        schema:netWorth  4.2 ;
+        foaf:name        "Bertil Hult" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Martha_Ingram_&_family>
-        schema:netWorth  "4.2" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Martha_Ingram_&_family>
+        schema:netWorth  4.2 ;
+        foaf:name        "Martha Ingram & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "book distribution, transportation" .
 
-<http://dbpedia.org/resource/Lee_Yin_Yee>
-        schema:netWorth  "4.2" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lee_Yin_Yee>
+        schema:netWorth  4.2 ;
+        foaf:name        "Lee Yin Yee" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "glass" .
 
-<http://dbpedia.org/resource/Daniel_Loeb>
-        schema:netWorth  "4.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Loeb>
+        schema:netWorth  4.2 ;
+        foaf:name        "Daniel Loeb" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Janice_McNair>
-        schema:netWorth  "4.2" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Janice_McNair>
+        schema:netWorth  4.2 ;
+        foaf:name        "Janice McNair" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "energy, sports" .
 
-<http://dbpedia.org/resource/Ajay_Piramal>
-        schema:netWorth  "4.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ajay_Piramal>
+        schema:netWorth  4.2 ;
+        foaf:name        "Ajay Piramal" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Lynsi_Snyder>
-        schema:netWorth  "4.2" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lynsi_Snyder>
+        schema:netWorth  4.2 ;
+        foaf:name        "Lynsi Snyder" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "In-N-Out Burger" .
 
-<http://dbpedia.org/resource/Peter_Spuhler>
-        schema:netWorth  "4.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Peter_Spuhler>
+        schema:netWorth  4.2 ;
+        foaf:name        "Peter Spuhler" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "train cars" .
 
-<http://dbpedia.org/resource/Kerry_Stokes>
-        schema:netWorth  "4.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Kerry_Stokes>
+        schema:netWorth  4.2 ;
+        foaf:name        "Kerry Stokes" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "diversified" ;
         dbo:source       "construction equipment, media" .
 
-<http://dbpedia.org/resource/Jon_Stryker>
-        schema:netWorth  "4.2" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jon_Stryker>
+        schema:netWorth  4.2 ;
+        foaf:name        "Jon Stryker" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Vincent_Viola>
-        schema:netWorth  "4.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Vincent_Viola>
+        schema:netWorth  4.2 ;
+        foaf:name        "Vincent Viola" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "electronic trading" .
 
-<http://dbpedia.org/resource/Romesh_T._Wadhwani>
-        schema:netWorth  "4.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Romesh_T._Wadhwani>
+        schema:netWorth  4.2 ;
+        foaf:name        "Romesh T. Wadhwani" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Juan_Domingo_Beckmann_Legorreta_&_family>
-        schema:netWorth  "4.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Juan_Domingo_Beckmann_Legorreta_&_family>
+        schema:netWorth  4.1 ;
+        foaf:name        "Juan Domingo Beckmann Legorreta & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "tequila" .
 
-<http://dbpedia.org/resource/Rafael_Del_Pino>
-        schema:netWorth  "4.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Rafael_Del_Pino>
+        schema:netWorth  4.1 ;
+        foaf:name        "Rafael Del Pino" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Sergey_Dmitriev>
-        schema:netWorth  "4.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Sergey_Dmitriev>
+        schema:netWorth  4.1 ;
+        foaf:name        "Sergey Dmitriev" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer software" .
 
-<http://dbpedia.org/resource/Senapathy_Gopalakrishnan>
-        schema:netWorth  "4.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Senapathy_Gopalakrishnan>
+        schema:netWorth  4.1 ;
+        foaf:name        "Senapathy Gopalakrishnan" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/James_Irving>
-        schema:netWorth  "4.1" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/James_Irving>
+        schema:netWorth  4.1 ;
+        foaf:name        "James Irving" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Lee_Boo-jin>
-        schema:netWorth  "4.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Boo-jin>
+        schema:netWorth  4.1 ;
+        foaf:name        "Lee Boo-jin" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Service" ;
         dbo:source       "Samsung" .
 
-<http://dbpedia.org/resource/Samuel_Tak_Lee>
-        schema:netWorth  "4.1" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Samuel_Tak_Lee>
+        schema:netWorth  4.1 ;
+        foaf:name        "Samuel Tak Lee" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Thai_Lee>
-        schema:netWorth  "4.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thai_Lee>
+        schema:netWorth  4.1 ;
+        foaf:name        "Thai Lee" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT provider" .
 
-<http://dbpedia.org/resource/Eric_Lefkofsky>
-        schema:netWorth  "4.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Eric_Lefkofsky>
+        schema:netWorth  4.1 ;
+        foaf:name        "Eric Lefkofsky" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Groupon, investments" .
 
-<http://dbpedia.org/resource/Weiguo_Li>
-        schema:netWorth  "4.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Weiguo_Li>
+        schema:netWorth  4.1 ;
+        foaf:name        "Weiguo Li" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "construction materials" .
 
-<http://dbpedia.org/resource/Ermirio_Pereira_de_Moraes_&_family>
-        schema:netWorth  "4.1" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Ermirio_Pereira_de_Moraes_&_family>
+        schema:netWorth  4.1 ;
+        foaf:name        "Ermirio Pereira de Moraes & family" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Maria_Helena_Moraes_Scripilliti_&_family>
-        schema:netWorth  "4.1" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Maria_Helena_Moraes_Scripilliti_&_family>
+        schema:netWorth  4.1 ;
+        foaf:name        "Maria Helena Moraes Scripilliti & family" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Augusto_&_Giorgio_Perfetti>
-        schema:netWorth  "4.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Augusto_&_Giorgio_Perfetti>
+        schema:netWorth  4.1 ;
+        foaf:name        "Augusto & Giorgio Perfetti" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "candy" .
 
-<http://dbpedia.org/resource/Thomas_Secunda>
-        schema:netWorth  "4.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Secunda>
+        schema:netWorth  4.1 ;
+        foaf:name        "Thomas Secunda" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Bloomberg LP" .
 
-<http://dbpedia.org/resource/Shaul_Shani>
-        schema:netWorth  "4.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Shaul_Shani>
+        schema:netWorth  4.1 ;
+        foaf:name        "Shaul Shani" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/E._Joe_Shoen>
-        schema:netWorth  "4.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/E._Joe_Shoen>
+        schema:netWorth  4.1 ;
+        foaf:name        "E. Joe Shoen" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "U-Haul" .
 
-<http://dbpedia.org/resource/Steven_Udvar-Hazy>
-        schema:netWorth  "4.1" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steven_Udvar-Hazy>
+        schema:netWorth  4.1 ;
+        foaf:name        "Steven Udvar-Hazy" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "aircraft leasing" .
 
-<http://dbpedia.org/resource/Russ_Weiner>
-        schema:netWorth  "4.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Russ_Weiner>
+        schema:netWorth  4.1 ;
+        foaf:name        "Russ Weiner" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "energy drinks" .
 
-<http://dbpedia.org/resource/Guanjiang_Wu_&_family>
-        schema:netWorth  "4.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guanjiang_Wu_&_family>
+        schema:netWorth  4.1 ;
+        foaf:name        "Guanjiang Wu & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Anil_Agarwal_&_family>
-        schema:netWorth  "4.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anil_Agarwal_&_family>
+        schema:netWorth  4.0 ;
+        foaf:name        "Anil Agarwal & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, metals" .
 
-<http://dbpedia.org/resource/Somphote_Ahunai>
-        schema:netWorth  "4.0" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Somphote_Ahunai>
+        schema:netWorth  4.0 ;
+        foaf:name        "Somphote Ahunai" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Energy" ;
         dbo:source       "renewable energy" .
 
-<http://dbpedia.org/resource/Patrizio_Bertelli>
-        schema:netWorth  "4.0" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Patrizio_Bertelli>
+        schema:netWorth  4.0 ;
+        foaf:name        "Patrizio Bertelli" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Rakesh_Gangwal>
-        schema:netWorth  "4.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rakesh_Gangwal>
+        schema:netWorth  4.0 ;
+        foaf:name        "Rakesh Gangwal" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "airline" .
 
-<http://dbpedia.org/resource/Paul_Gauselmann_&_family>
-        schema:netWorth  "4.0" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Paul_Gauselmann_&_family>
+        schema:netWorth  4.0 ;
+        foaf:name        "Paul Gauselmann & family" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "gambling" .
 
-<http://dbpedia.org/resource/Hao_Hong>
-        schema:netWorth  "4.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Hao_Hong>
+        schema:netWorth  4.0 ;
+        foaf:name        "Hao Hong" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/He_Xiaopeng>
-        schema:netWorth  "4.0" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Xiaopeng>
+        schema:netWorth  4.0 ;
+        foaf:name        "He Xiaopeng" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "electric vehicles" .
 
-<http://dbpedia.org/resource/Michael_Herz>
-        schema:netWorth  "4.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Michael_Herz>
+        schema:netWorth  4.0 ;
+        foaf:name        "Michael Herz" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "coffee" .
 
-<http://dbpedia.org/resource/Wolfgang_Herz>
-        schema:netWorth  "4.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Wolfgang_Herz>
+        schema:netWorth  4.0 ;
+        foaf:name        "Wolfgang Herz" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "coffee" .
 
-<http://dbpedia.org/resource/Arthur_Irving>
-        schema:netWorth  "4.0" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Arthur_Irving>
+        schema:netWorth  4.0 ;
+        foaf:name        "Arthur Irving" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil" .
 
-<http://dbpedia.org/resource/Victor_Jacobsson>
-        schema:netWorth  "4.0" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Victor_Jacobsson>
+        schema:netWorth  4.0 ;
+        foaf:name        "Victor Jacobsson" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Marc_Ladreit_de_Lacharriere>
-        schema:netWorth  "4.0" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Marc_Ladreit_de_Lacharriere>
+        schema:netWorth  4.0 ;
+        foaf:name        "Marc Ladreit de Lacharriere" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Patrick_Lee>
-        schema:netWorth  "4.0" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Patrick_Lee>
+        schema:netWorth  4.0 ;
+        foaf:name        "Patrick Lee" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper" .
 
-<http://dbpedia.org/resource/Max_Lytvyn>
-        schema:netWorth  "4.0" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Max_Lytvyn>
+        schema:netWorth  4.0 ;
+        foaf:name        "Max Lytvyn" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Gilles_Martin>
-        schema:netWorth  "4.0" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Gilles_Martin>
+        schema:netWorth  4.0 ;
+        foaf:name        "Gilles Martin" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "laboratory services" .
 
-<http://dbpedia.org/resource/Ramzi_Musallam>
-        schema:netWorth  "4.0" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ramzi_Musallam>
+        schema:netWorth  4.0 ;
+        foaf:name        "Ramzi Musallam" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Georg_Nemetschek_&_family>
-        schema:netWorth  "4.0" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Georg_Nemetschek_&_family>
+        schema:netWorth  4.0 ;
+        foaf:name        "Georg Nemetschek & family" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Akio_Nitori>
-        schema:netWorth  "4.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Akio_Nitori>
+        schema:netWorth  4.0 ;
+        foaf:name        "Akio Nitori" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "home furnishings" .
 
-<http://dbpedia.org/resource/Daniel_Och>
-        schema:netWorth  "4.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Och>
+        schema:netWorth  4.0 ;
+        foaf:name        "Daniel Och" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Pankaj_Patel>
-        schema:netWorth  "4.0" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Pankaj_Patel>
+        schema:netWorth  4.0 ;
+        foaf:name        "Pankaj Patel" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/John_Paulson>
-        schema:netWorth  "4.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Paulson>
+        schema:netWorth  4.0 ;
+        foaf:name        "John Paulson" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Miuccia_Prada>
-        schema:netWorth  "4.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Miuccia_Prada>
+        schema:netWorth  4.0 ;
+        foaf:name        "Miuccia Prada" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Jean_(Gigi)_Pritzker>
-        schema:netWorth  "4.0" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jean_(Gigi)_Pritzker>
+        schema:netWorth  4.0 ;
+        foaf:name        "Jean (Gigi) Pritzker" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Juan_Roig>
-        schema:netWorth  "4.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Juan_Roig>
+        schema:netWorth  4.0 ;
+        foaf:name        "Juan Roig" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/David_Rubenstein>
-        schema:netWorth  "4.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Rubenstein>
+        schema:netWorth  4.0 ;
+        foaf:name        "David Rubenstein" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Howard_Schultz>
-        schema:netWorth  "4.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Howard_Schultz>
+        schema:netWorth  4.0 ;
+        foaf:name        "Howard Schultz" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Starbucks" .
 
-<http://dbpedia.org/resource/Alex_Shevchenko>
-        schema:netWorth  "4.0" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Alex_Shevchenko>
+        schema:netWorth  4.0 ;
+        foaf:name        "Alex Shevchenko" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Dan_Snyder>
-        schema:netWorth  "4.0" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dan_Snyder>
+        schema:netWorth  4.0 ;
+        foaf:name        "Dan Snyder" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Washington Football Team" .
 
-<http://dbpedia.org/resource/Jerzy_Starak>
-        schema:netWorth  "4.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Jerzy_Starak>
+        schema:netWorth  4.0 ;
+        foaf:name        "Jerzy Starak" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Udo_&_Harald_Tschira>
-        schema:netWorth  "4.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Udo_&_Harald_Tschira>
+        schema:netWorth  4.0 ;
+        foaf:name        "Udo & Harald Tschira" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Kelcy_Warren>
-        schema:netWorth  "4.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kelcy_Warren>
+        schema:netWorth  4.0 ;
+        foaf:name        "Kelcy Warren" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/Herbert_Wertheim>
-        schema:netWorth  "4.0" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Herbert_Wertheim>
+        schema:netWorth  4.0 ;
+        foaf:name        "Herbert Wertheim" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Cameron_Winklevoss>
-        schema:netWorth  "4.0" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Cameron_Winklevoss>
+        schema:netWorth  4.0 ;
+        foaf:name        "Cameron Winklevoss" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Tyler_Winklevoss>
-        schema:netWorth  "4.0" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tyler_Winklevoss>
+        schema:netWorth  4.0 ;
+        foaf:name        "Tyler Winklevoss" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Denise_York_&_family>
-        schema:netWorth  "4.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Denise_York_&_family>
+        schema:netWorth  4.0 ;
+        foaf:name        "Denise York & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "San Francisco 49ers" .
 
-<http://dbpedia.org/resource/Zhao_Lixin>
-        schema:netWorth  "4.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhao_Lixin>
+        schema:netWorth  4.0 ;
+        foaf:name        "Zhao Lixin" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Hubert_Burda>
-        schema:netWorth  "3.9" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Hubert_Burda>
+        schema:netWorth  3.9 ;
+        foaf:name        "Hubert Burda" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "publishing" .
 
-<http://dbpedia.org/resource/Francesco_Gaetano_Caltagirone>
-        schema:netWorth  "3.9" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Francesco_Gaetano_Caltagirone>
+        schema:netWorth  3.9 ;
+        foaf:name        "Francesco Gaetano Caltagirone" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "cement, diversified  " .
 
-<http://dbpedia.org/resource/Marcos_Galperin>
-        schema:netWorth  "3.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Argentina> ;
+<http://example.org/person/Marcos_Galperin>
+        schema:netWorth  3.9 ;
+        foaf:name        "Marcos Galperin" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Argentina> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Li_Xiang>
-        schema:netWorth  "3.9" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Xiang>
+        schema:netWorth  3.9 ;
+        foaf:name        "Li Xiang" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "electric vehicles" .
 
-<http://dbpedia.org/resource/Stephen_Mandel,_Jr.>
-        schema:netWorth  "3.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stephen_Mandel,_Jr.>
+        schema:netWorth  3.9 ;
+        foaf:name        "Stephen Mandel, Jr." ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Gabe_Newell>
-        schema:netWorth  "3.9" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gabe_Newell>
+        schema:netWorth  3.9 ;
+        foaf:name        "Gabe Newell" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "videogames" .
 
-<http://dbpedia.org/resource/Maja_Oeri>
-        schema:netWorth  "3.9" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Maja_Oeri>
+        schema:netWorth  3.9 ;
+        foaf:name        "Maja Oeri" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Paolo_&_Gianfelice_Mario_Rocca>
-        schema:netWorth  "3.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Paolo_&_Gianfelice_Mario_Rocca>
+        schema:netWorth  3.9 ;
+        foaf:name        "Paolo & Gianfelice Mario Rocca" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "pipe manufacturing" .
 
-<http://dbpedia.org/resource/Neil_Shen>
-        schema:netWorth  "3.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Neil_Shen>
+        schema:netWorth  3.9 ;
+        foaf:name        "Neil Shen" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Helmut_Sohmen>
-        schema:netWorth  "3.9" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Helmut_Sohmen>
+        schema:netWorth  3.9 ;
+        foaf:name        "Helmut Sohmen" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Donald_Sterling>
-        schema:netWorth  "3.9" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Sterling>
+        schema:netWorth  3.9 ;
+        foaf:name        "Donald Sterling" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Don_Vultaggio_&_family>
-        schema:netWorth  "3.9" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Don_Vultaggio_&_family>
+        schema:netWorth  3.9 ;
+        foaf:name        "Don Vultaggio & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Yiling_Wu>
-        schema:netWorth  "3.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yiling_Wu>
+        schema:netWorth  3.9 ;
+        foaf:name        "Yiling Wu" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Gongshan_Zhu>
-        schema:netWorth  "3.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gongshan_Zhu>
+        schema:netWorth  3.9 ;
+        foaf:name        "Gongshan Zhu" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "solar panel materials" .
 
-<http://dbpedia.org/resource/Gayle_Benson>
-        schema:netWorth  "3.8" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gayle_Benson>
+        schema:netWorth  3.8 ;
+        foaf:name        "Gayle Benson" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "pro sports teams" .
 
-<http://dbpedia.org/resource/William_Conway,_Jr.>
-        schema:netWorth  "3.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Conway,_Jr.>
+        schema:netWorth  3.8 ;
+        foaf:name        "William Conway, Jr." ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Gurbachan_Singh_Dhingra>
-        schema:netWorth  "3.8" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Gurbachan_Singh_Dhingra>
+        schema:netWorth  3.8 ;
+        foaf:name        "Gurbachan Singh Dhingra" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Kuldip_Singh_Dhingra>
-        schema:netWorth  "3.8" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kuldip_Singh_Dhingra>
+        schema:netWorth  3.8 ;
+        foaf:name        "Kuldip Singh Dhingra" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Luca_Garavoglia>
-        schema:netWorth  "3.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Luca_Garavoglia>
+        schema:netWorth  3.8 ;
+        foaf:name        "Luca Garavoglia" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "spirits" .
 
-<http://dbpedia.org/resource/Vinod_&_Anil_Rai_Gupta>
-        schema:netWorth  "3.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vinod_&_Anil_Rai_Gupta>
+        schema:netWorth  3.8 ;
+        foaf:name        "Vinod & Anil Rai Gupta" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electrical equipment" .
 
-<http://dbpedia.org/resource/Jimmy_Haslam>
-        schema:netWorth  "3.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jimmy_Haslam>
+        schema:netWorth  3.8 ;
+        foaf:name        "Jimmy Haslam" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "gas stations, retail" .
 
-<http://dbpedia.org/resource/Susan_Carol_Holland>
-        schema:netWorth  "3.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Susan_Carol_Holland>
+        schema:netWorth  3.8 ;
+        foaf:name        "Susan Carol Holland" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hearing aids" .
 
-<http://dbpedia.org/resource/Timur_Kulibaev>
-        schema:netWorth  "3.8" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Kazakhstan> ;
+<http://example.org/person/Timur_Kulibaev>
+        schema:netWorth  3.8 ;
+        foaf:name        "Timur Kulibaev" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Kazakhstan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Dinara_Kulibaeva>
-        schema:netWorth  "3.8" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Kazakhstan> ;
+<http://example.org/person/Dinara_Kulibaeva>
+        schema:netWorth  3.8 ;
+        foaf:name        "Dinara Kulibaeva" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Kazakhstan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Michel_Leclercq_&_family>
-        schema:netWorth  "3.8" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Michel_Leclercq_&_family>
+        schema:netWorth  3.8 ;
+        foaf:name        "Michel Leclercq & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sporting goods" .
 
-<http://dbpedia.org/resource/Pablo_Legorreta>
-        schema:netWorth  "3.8" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Pablo_Legorreta>
+        schema:netWorth  3.8 ;
+        foaf:name        "Pablo Legorreta" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Margarita_Louis-Dreyfus_&_family>
-        schema:netWorth  "3.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Margarita_Louis-Dreyfus_&_family>
+        schema:netWorth  3.8 ;
+        foaf:name        "Margarita Louis-Dreyfus & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "commodities" .
 
-<http://dbpedia.org/resource/Michael_Milken>
-        schema:netWorth  "3.8" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Milken>
+        schema:netWorth  3.8 ;
+        foaf:name        "Michael Milken" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Denis_O'Brien>
-        schema:netWorth  "3.8" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/Denis_O'Brien>
+        schema:netWorth  3.8 ;
+        foaf:name        "Denis O'Brien" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Katharina_Otto-Bernstein>
-        schema:netWorth  "3.8" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Katharina_Otto-Bernstein>
+        schema:netWorth  3.8 ;
+        foaf:name        "Katharina Otto-Bernstein" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/James_Packer>
-        schema:netWorth  "3.8" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/James_Packer>
+        schema:netWorth  3.8 ;
+        foaf:name        "James Packer" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Sergio_Stevanato_&_family>
-        schema:netWorth  "3.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Sergio_Stevanato_&_family>
+        schema:netWorth  3.8 ;
+        foaf:name        "Sergio Stevanato & family" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical packaging" .
 
-<http://dbpedia.org/resource/Leena_Tewari>
-        schema:netWorth  "3.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Leena_Tewari>
+        schema:netWorth  3.8 ;
+        foaf:name        "Leena Tewari" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Yitzhak_Tshuva>
-        schema:netWorth  "3.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Yitzhak_Tshuva>
+        schema:netWorth  3.8 ;
+        foaf:name        "Yitzhak Tshuva" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Paul-Heinz_Wesjohann_&_family>
-        schema:netWorth  "3.8" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Paul-Heinz_Wesjohann_&_family>
+        schema:netWorth  3.8 ;
+        foaf:name        "Paul-Heinz Wesjohann & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "chicken processing" .
 
-<http://dbpedia.org/resource/Zeng_Fangqin>
-        schema:netWorth  "3.8" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zeng_Fangqin>
+        schema:netWorth  3.8 ;
+        foaf:name        "Zeng Fangqin" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphone components" .
 
-<http://dbpedia.org/resource/Zhou_Bajin>
-        schema:netWorth  "3.8" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhou_Bajin>
+        schema:netWorth  3.8 ;
+        foaf:name        "Zhou Bajin" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/William_Berkley>
-        schema:netWorth  "3.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Berkley>
+        schema:netWorth  3.7 ;
+        foaf:name        "William Berkley" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/John_Catsimatidis>
-        schema:netWorth  "3.7" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Catsimatidis>
+        schema:netWorth  3.7 ;
+        foaf:name        "John Catsimatidis" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, real estate" .
 
-<http://dbpedia.org/resource/Che_Jianxing>
-        schema:netWorth  "3.7" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Che_Jianxing>
+        schema:netWorth  3.7 ;
+        foaf:name        "Che Jianxing" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "furniture retailing" .
 
-<http://dbpedia.org/resource/Gustavo_Denegri>
-        schema:netWorth  "3.7" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Gustavo_Denegri>
+        schema:netWorth  3.7 ;
+        foaf:name        "Gustavo Denegri" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Charles_Edelstenne>
-        schema:netWorth  "3.7" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Charles_Edelstenne>
+        schema:netWorth  3.7 ;
+        foaf:name        "Charles Edelstenne" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "aviation" .
 
-<http://dbpedia.org/resource/Reed_Hastings>
-        schema:netWorth  "3.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Reed_Hastings>
+        schema:netWorth  3.7 ;
+        foaf:name        "Reed Hastings" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Netflix" .
 
-<http://dbpedia.org/resource/Amos_Hostetter,_Jr.>
-        schema:netWorth  "3.7" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Amos_Hostetter,_Jr.>
+        schema:netWorth  3.7 ;
+        foaf:name        "Amos Hostetter, Jr." ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "cable television" .
 
-<http://dbpedia.org/resource/Brad_Jacobs>
-        schema:netWorth  "3.7" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brad_Jacobs>
+        schema:netWorth  3.7 ;
+        foaf:name        "Brad Jacobs" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Logistics" ;
         dbo:source       "logistics" .
 
-<http://dbpedia.org/resource/Friedrich_Knapp>
-        schema:netWorth  "3.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Friedrich_Knapp>
+        schema:netWorth  3.7 ;
+        foaf:name        "Friedrich Knapp" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/William_Lauder>
-        schema:netWorth  "3.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Lauder>
+        schema:netWorth  3.7 ;
+        foaf:name        "William Lauder" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Estee Lauder" .
 
-<http://dbpedia.org/resource/Richard_LeFrak_&_family>
-        schema:netWorth  "3.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_LeFrak_&_family>
+        schema:netWorth  3.7 ;
+        foaf:name        "Richard LeFrak & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Li_Guoqiang>
-        schema:netWorth  "3.7" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Guoqiang>
+        schema:netWorth  3.7 ;
+        foaf:name        "Li Guoqiang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto dealerships" .
 
-<http://dbpedia.org/resource/Low_Tuck_Kwong>
-        schema:netWorth  "3.7" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Low_Tuck_Kwong>
+        schema:netWorth  3.7 ;
+        foaf:name        "Low Tuck Kwong" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Energy" ;
         dbo:source       "coal" .
 
-<http://dbpedia.org/resource/Akira_Mori_&_family>
-        schema:netWorth  "3.7" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Akira_Mori_&_family>
+        schema:netWorth  3.7 ;
+        foaf:name        "Akira Mori & family" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Anthony_Pritzker>
-        schema:netWorth  "3.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Anthony_Pritzker>
+        schema:netWorth  3.7 ;
+        foaf:name        "Anthony Pritzker" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Ira_Rennert>
-        schema:netWorth  "3.7" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ira_Rennert>
+        schema:netWorth  3.7 ;
+        foaf:name        "Ira Rennert" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Bernard_Saul,_II.>
-        schema:netWorth  "3.7" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bernard_Saul,_II.>
+        schema:netWorth  3.7 ;
+        foaf:name        "Bernard Saul, II." ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, real estate" .
 
-<http://dbpedia.org/resource/Shi_Yonghong_&_family>
-        schema:netWorth  "3.7" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shi_Yonghong_&_family>
+        schema:netWorth  3.7 ;
+        foaf:name        "Shi Yonghong & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurants" .
 
-<http://dbpedia.org/resource/Song_Chi-hyung>
-        schema:netWorth  "3.7" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Song_Chi-hyung>
+        schema:netWorth  3.7 ;
+        foaf:name        "Song Chi-hyung" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Steven_Spielberg>
-        schema:netWorth  "3.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steven_Spielberg>
+        schema:netWorth  3.7 ;
+        foaf:name        "Steven Spielberg" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "movies" .
 
-<http://dbpedia.org/resource/Wong_Luen_Hei>
-        schema:netWorth  "3.7" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wong_Luen_Hei>
+        schema:netWorth  3.7 ;
+        foaf:name        "Wong Luen Hei" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Danielle_Bellon_&_family>
-        schema:netWorth  "3.6" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Danielle_Bellon_&_family>
+        schema:netWorth  3.6 ;
+        foaf:name        "Danielle Bellon & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Service" ;
         dbo:source       "food services" .
 
-<http://dbpedia.org/resource/Byju_Raveendran_and_Divya_Gokulnath>
-        schema:netWorth  "3.6" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Byju_Raveendran_and_Divya_Gokulnath>
+        schema:netWorth  3.6 ;
+        foaf:name        "Byju Raveendran and Divya Gokulnath" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "education technology" .
 
-<http://dbpedia.org/resource/Cho_Tak_Wong>
-        schema:netWorth  "3.6" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Cho_Tak_Wong>
+        schema:netWorth  3.6 ;
+        foaf:name        "Cho Tak Wong" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Charles_Cohen>
-        schema:netWorth  "3.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Cohen>
+        schema:netWorth  3.6 ;
+        foaf:name        "Charles Cohen" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Kenneth_Dart>
-        schema:netWorth  "3.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Belize> ;
+<http://example.org/person/Kenneth_Dart>
+        schema:netWorth  3.6 ;
+        foaf:name        "Kenneth Dart" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Belize> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Martin_Ebner>
-        schema:netWorth  "3.6" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Martin_Ebner>
+        schema:netWorth  3.6 ;
+        foaf:name        "Martin Ebner" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/David_Filo>
-        schema:netWorth  "3.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Filo>
+        schema:netWorth  3.6 ;
+        foaf:name        "David Filo" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Yahoo" .
 
-<http://dbpedia.org/resource/Miguel_Fluxa_Rossello>
-        schema:netWorth  "3.6" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Miguel_Fluxa_Rossello>
+        schema:netWorth  3.6 ;
+        foaf:name        "Miguel Fluxa Rossello" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/John_Henry>
-        schema:netWorth  "3.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Henry>
+        schema:netWorth  3.6 ;
+        foaf:name        "John Henry" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports" .
 
-<http://dbpedia.org/resource/Hu_Kaijun>
-        schema:netWorth  "3.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hu_Kaijun>
+        schema:netWorth  3.6 ;
+        foaf:name        "Hu Kaijun" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Peter_Kellogg>
-        schema:netWorth  "3.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Peter_Kellogg>
+        schema:netWorth  3.6 ;
+        foaf:name        "Peter Kellogg" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/James_Leprino>
-        schema:netWorth  "3.6" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Leprino>
+        schema:netWorth  3.6 ;
+        foaf:name        "James Leprino" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "cheese" .
 
-<http://dbpedia.org/resource/Iskander_Makhmudov>
-        schema:netWorth  "3.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Iskander_Makhmudov>
+        schema:netWorth  3.6 ;
+        foaf:name        "Iskander Makhmudov" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, metals, machinery" .
 
-<http://dbpedia.org/resource/Daniel_Mate>
-        schema:netWorth  "3.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Daniel_Mate>
+        schema:netWorth  3.6 ;
+        foaf:name        "Daniel Mate" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, commodities" .
 
-<http://dbpedia.org/resource/Aristotelis_Mistakidis>
-        schema:netWorth  "3.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Greece> ;
+<http://example.org/person/Aristotelis_Mistakidis>
+        schema:netWorth  3.6 ;
+        foaf:name        "Aristotelis Mistakidis" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Greece> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, commodities" .
 
-<http://dbpedia.org/resource/Arturo_Moreno>
-        schema:netWorth  "3.6" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Arturo_Moreno>
+        schema:netWorth  3.6 ;
+        foaf:name        "Arturo Moreno" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "billboards, Los Angeles Angels" .
 
-<http://dbpedia.org/resource/Nan_Cunhui>
-        schema:netWorth  "3.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Nan_Cunhui>
+        schema:netWorth  3.6 ;
+        foaf:name        "Nan Cunhui" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "power equipment" .
 
-<http://dbpedia.org/resource/Julio_Ponce_Lerou>
-        schema:netWorth  "3.6" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Julio_Ponce_Lerou>
+        schema:netWorth  3.6 ;
+        foaf:name        "Julio Ponce Lerou" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "fertilizer" .
 
-<http://dbpedia.org/resource/J.B._Pritzker>
-        schema:netWorth  "3.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J.B._Pritzker>
+        schema:netWorth  3.6 ;
+        foaf:name        "J.B. Pritzker" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Chandru_Raheja>
-        schema:netWorth  "3.6" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Chandru_Raheja>
+        schema:netWorth  3.6 ;
+        foaf:name        "Chandru Raheja" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Rodger_Riney_&_family>
-        schema:netWorth  "3.6" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rodger_Riney_&_family>
+        schema:netWorth  3.6 ;
+        foaf:name        "Rodger Riney & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "discount brokerage" .
 
-<http://dbpedia.org/resource/Shi_Yuzhu>
-        schema:netWorth  "3.6" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shi_Yuzhu>
+        schema:netWorth  3.6 ;
+        foaf:name        "Shi Yuzhu" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "online games, investments" .
 
-<http://dbpedia.org/resource/Zuowen_Song>
-        schema:netWorth  "3.6" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zuowen_Song>
+        schema:netWorth  3.6 ;
+        foaf:name        "Zuowen Song" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "aluminum, diversified  " .
 
-<http://dbpedia.org/resource/Jerry_Speyer>
-        schema:netWorth  "3.6" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jerry_Speyer>
+        schema:netWorth  3.6 ;
+        foaf:name        "Jerry Speyer" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Julia_Thiele-Schuerhoff>
-        schema:netWorth  "3.6" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Julia_Thiele-Schuerhoff>
+        schema:netWorth  3.6 ;
+        foaf:name        "Julia Thiele-Schuerhoff" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "brakes, investments" .
 
-<http://dbpedia.org/resource/Tung_Chee_Chen>
-        schema:netWorth  "3.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Tung_Chee_Chen>
+        schema:netWorth  3.6 ;
+        foaf:name        "Tung Chee Chen" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Roger_Wang>
-        schema:netWorth  "3.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Roger_Wang>
+        schema:netWorth  3.6 ;
+        foaf:name        "Roger Wang" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Wu_Shaoxun>
-        schema:netWorth  "3.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Shaoxun>
+        schema:netWorth  3.6 ;
+        foaf:name        "Wu Shaoxun" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "wine" .
 
-<http://dbpedia.org/resource/Wenzhong_Zhang>
-        schema:netWorth  "3.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wenzhong_Zhang>
+        schema:netWorth  3.6 ;
+        foaf:name        "Wenzhong Zhang" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Chen_Kaixuan>
-        schema:netWorth  "3.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Kaixuan>
+        schema:netWorth  3.5 ;
+        foaf:name        "Chen Kaixuan" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "household chemicals" .
 
-<http://dbpedia.org/resource/Beatriz_Davila_de_Santo_Domingo>
-        schema:netWorth  "3.5" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Colombia> ;
+<http://example.org/person/Beatriz_Davila_de_Santo_Domingo>
+        schema:netWorth  3.5 ;
+        foaf:name        "Beatriz Davila de Santo Domingo" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Colombia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Antonio_Del_Valle_Ruiz_&_family>
-        schema:netWorth  "3.5" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Antonio_Del_Valle_Ruiz_&_family>
+        schema:netWorth  3.5 ;
+        foaf:name        "Antonio Del Valle Ruiz & family" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Carl_Douglas>
-        schema:netWorth  "3.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Carl_Douglas>
+        schema:netWorth  3.5 ;
+        foaf:name        "Carl Douglas" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Eric_Douglas>
-        schema:netWorth  "3.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Eric_Douglas>
+        schema:netWorth  3.5 ;
+        foaf:name        "Eric Douglas" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Jiangtao_Du_&_family>
-        schema:netWorth  "3.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiangtao_Du_&_family>
+        schema:netWorth  3.5 ;
+        foaf:name        "Jiangtao Du & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Juan_Carlos_Escotet>
-        schema:netWorth  "3.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Venezuela> ;
+<http://example.org/person/Juan_Carlos_Escotet>
+        schema:netWorth  3.5 ;
+        foaf:name        "Juan Carlos Escotet" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Venezuela> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Fiona_Geminder>
-        schema:netWorth  "3.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Fiona_Geminder>
+        schema:netWorth  3.5 ;
+        foaf:name        "Fiona Geminder" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Yuhua_Gu_&_family>
-        schema:netWorth  "3.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yuhua_Gu_&_family>
+        schema:netWorth  3.5 ;
+        foaf:name        "Yuhua Gu & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "furniture" .
 
-<http://dbpedia.org/resource/James_Irsay>
-        schema:netWorth  "3.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Irsay>
+        schema:netWorth  3.5 ;
+        foaf:name        "James Irsay" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Indianapolis Colts" .
 
-<http://dbpedia.org/resource/Kuok_Khoon_Hong>
-        schema:netWorth  "3.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Kuok_Khoon_Hong>
+        schema:netWorth  3.5 ;
+        foaf:name        "Kuok Khoon Hong" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "palm oil" .
 
-<http://dbpedia.org/resource/Aerin_Lauder>
-        schema:netWorth  "3.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Aerin_Lauder>
+        schema:netWorth  3.5 ;
+        foaf:name        "Aerin Lauder" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Lee_Seo-hyun>
-        schema:netWorth  "3.5" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Seo-hyun>
+        schema:netWorth  3.5 ;
+        foaf:name        "Lee Seo-hyun" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "diversified" ;
         dbo:source       "Samsung" .
 
-<http://dbpedia.org/resource/Li_Yongxin_&_family>
-        schema:netWorth  "3.5" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Yongxin_&_family>
+        schema:netWorth  3.5 ;
+        foaf:name        "Li Yongxin & family" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Jeffrey_Lurie>
-        schema:netWorth  "3.5" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeffrey_Lurie>
+        schema:netWorth  3.5 ;
+        foaf:name        "Jeffrey Lurie" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Philadelphia Eagles" .
 
-<http://dbpedia.org/resource/Mary_Alice_Dorrance_Malone>
-        schema:netWorth  "3.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mary_Alice_Dorrance_Malone>
+        schema:netWorth  3.5 ;
+        foaf:name        "Mary Alice Dorrance Malone" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Campbell Soup" .
 
-<http://dbpedia.org/resource/Ronald_McAulay>
-        schema:netWorth  "3.5" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Ronald_McAulay>
+        schema:netWorth  3.5 ;
+        foaf:name        "Ronald McAulay" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Energy" ;
         dbo:source       "energy" .
 
-<http://dbpedia.org/resource/Apoorva_Mehta>
-        schema:netWorth  "3.5" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Apoorva_Mehta>
+        schema:netWorth  3.5 ;
+        foaf:name        "Apoorva Mehta" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "grocery delivery service" .
 
-<http://dbpedia.org/resource/Arnon_Milchan>
-        schema:netWorth  "3.5" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Arnon_Milchan>
+        schema:netWorth  3.5 ;
+        foaf:name        "Arnon Milchan" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "movie making" .
 
-<http://dbpedia.org/resource/Masahiro_Noda>
-        schema:netWorth  "3.5" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Masahiro_Noda>
+        schema:netWorth  3.5 ;
+        foaf:name        "Masahiro Noda" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Maren_Otto>
-        schema:netWorth  "3.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Maren_Otto>
+        schema:netWorth  3.5 ;
+        foaf:name        "Maren Otto" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "diversified" ;
         dbo:source       "retail, real estate" .
 
-<http://dbpedia.org/resource/Renzo_Rosso_&_family>
-        schema:netWorth  "3.5" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Renzo_Rosso_&_family>
+        schema:netWorth  3.5 ;
+        foaf:name        "Renzo Rosso & family" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion" .
 
-<http://dbpedia.org/resource/Lynn_Schusterman>
-        schema:netWorth  "3.5" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lynn_Schusterman>
+        schema:netWorth  3.5 ;
+        foaf:name        "Lynn Schusterman" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas, investments" .
 
-<http://dbpedia.org/resource/Gil_Shwed>
-        schema:netWorth  "3.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Gil_Shwed>
+        schema:netWorth  3.5 ;
+        foaf:name        "Gil Shwed" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Thomas_Siebel>
-        schema:netWorth  "3.5" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Siebel>
+        schema:netWorth  3.5 ;
+        foaf:name        "Thomas Siebel" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/Herb_Simon>
-        schema:netWorth  "3.5" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Herb_Simon>
+        schema:netWorth  3.5 ;
+        foaf:name        "Herb Simon" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Friede_Springer>
-        schema:netWorth  "3.5" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Friede_Springer>
+        schema:netWorth  3.5 ;
+        foaf:name        "Friede Springer" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "publishing" .
 
-<http://dbpedia.org/resource/Wang_Zhenhua>
-        schema:netWorth  "3.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Zhenhua>
+        schema:netWorth  3.5 ;
+        foaf:name        "Wang Zhenhua" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Hans_Peter_Wild>
-        schema:netWorth  "3.5" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Hans_Peter_Wild>
+        schema:netWorth  3.5 ;
+        foaf:name        "Hans Peter Wild" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "flavorings" .
 
-<http://dbpedia.org/resource/William_Wrigley,_Jr.>
-        schema:netWorth  "3.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Wrigley,_Jr.>
+        schema:netWorth  3.5 ;
+        foaf:name        "William Wrigley, Jr." ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "chewing gum" .
 
-<http://dbpedia.org/resource/Xia_Zuoquan>
-        schema:netWorth  "3.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xia_Zuoquan>
+        schema:netWorth  3.5 ;
+        foaf:name        "Xia Zuoquan" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automobiles, batteries" .
 
-<http://dbpedia.org/resource/Xue_Hua>
-        schema:netWorth  "3.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xue_Hua>
+        schema:netWorth  3.5 ;
+        foaf:name        "Xue Hua" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Mohed_Altrad>
-        schema:netWorth  "3.4" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Mohed_Altrad>
+        schema:netWorth  3.4 ;
+        foaf:name        "Mohed Altrad" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "scaffolding, cement mixers" .
 
-<http://dbpedia.org/resource/Sid_Bass>
-        schema:netWorth  "3.4" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sid_Bass>
+        schema:netWorth  3.4 ;
+        foaf:name        "Sid Bass" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, investments" .
 
-<http://dbpedia.org/resource/Nick_Caporella>
-        schema:netWorth  "3.4" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nick_Caporella>
+        schema:netWorth  3.4 ;
+        foaf:name        "Nick Caporella" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Cheng_Yixiao>
-        schema:netWorth  "3.4" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cheng_Yixiao>
+        schema:netWorth  3.4 ;
+        foaf:name        "Cheng Yixiao" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "video streaming app" .
 
-<http://dbpedia.org/resource/Wesley_Edens>
-        schema:netWorth  "3.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Wesley_Edens>
+        schema:netWorth  3.4 ;
+        foaf:name        "Wesley Edens" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Behdad_Eghbali>
-        schema:netWorth  "3.4" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Behdad_Eghbali>
+        schema:netWorth  3.4 ;
+        foaf:name        "Behdad Eghbali" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Archie_Aldis_Emmerson_&_family>
-        schema:netWorth  "3.4" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Archie_Aldis_Emmerson_&_family>
+        schema:netWorth  3.4 ;
+        foaf:name        "Archie Aldis Emmerson & family" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "timberland, lumber mills" .
 
-<http://dbpedia.org/resource/Jose_E._Feliciano>
-        schema:netWorth  "3.4" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jose_E._Feliciano>
+        schema:netWorth  3.4 ;
+        foaf:name        "Jose E. Feliciano" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Fu_Liquan_&_family>
-        schema:netWorth  "3.4" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fu_Liquan_&_family>
+        schema:netWorth  3.4 ;
+        foaf:name        "Fu Liquan & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "surveillance equipment" .
 
-<http://dbpedia.org/resource/David_Gottesman>
-        schema:netWorth  "3.4" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Gottesman>
+        schema:netWorth  3.4 ;
+        foaf:name        "David Gottesman" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Laurence_Graff_&_family>
-        schema:netWorth  "3.4" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Laurence_Graff_&_family>
+        schema:netWorth  3.4 ;
+        foaf:name        "Laurence Graff & family" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "diamond jewelry" .
 
-<http://dbpedia.org/resource/Jeff_T._Green>
-        schema:netWorth  "3.4" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_T._Green>
+        schema:netWorth  3.4 ;
+        foaf:name        "Jeff T. Green" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "digital advertising" .
 
-<http://dbpedia.org/resource/Jim_Kavanaugh>
-        schema:netWorth  "3.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Kavanaugh>
+        schema:netWorth  3.4 ;
+        foaf:name        "Jim Kavanaugh" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT provider" .
 
-<http://dbpedia.org/resource/Steven_Klinsky>
-        schema:netWorth  "3.4" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steven_Klinsky>
+        schema:netWorth  3.4 ;
+        foaf:name        "Steven Klinsky" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/John_Middleton>
-        schema:netWorth  "3.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Middleton>
+        schema:netWorth  3.4 ;
+        foaf:name        "John Middleton" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "tobacco" .
 
-<http://dbpedia.org/resource/Jerry_Ng>
-        schema:netWorth  "3.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Jerry_Ng>
+        schema:netWorth  3.4 ;
+        foaf:name        "Jerry Ng" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Tengyun_Nie_&_family>
-        schema:netWorth  "3.4" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tengyun_Nie_&_family>
+        schema:netWorth  3.4 ;
+        foaf:name        "Tengyun Nie & family" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "logistics" .
 
-<http://dbpedia.org/resource/Nandan_Nilekani>
-        schema:netWorth  "3.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Nandan_Nilekani>
+        schema:netWorth  3.4 ;
+        foaf:name        "Nandan Nilekani" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Bob_Parsons>
-        schema:netWorth  "3.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bob_Parsons>
+        schema:netWorth  3.4 ;
+        foaf:name        "Bob Parsons" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "web hosting" .
 
-<http://dbpedia.org/resource/Prasert_Prasarttong-Osoth>
-        schema:netWorth  "3.4" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Prasert_Prasarttong-Osoth>
+        schema:netWorth  3.4 ;
+        foaf:name        "Prasert Prasarttong-Osoth" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Qiu_Guanghe_&_family>
-        schema:netWorth  "3.4" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qiu_Guanghe_&_family>
+        schema:netWorth  3.4 ;
+        foaf:name        "Qiu Guanghe & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Richard_Sands>
-        schema:netWorth  "3.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Sands>
+        schema:netWorth  3.4 ;
+        foaf:name        "Richard Sands" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "liquor" .
 
-<http://dbpedia.org/resource/Robert_Sands>
-        schema:netWorth  "3.4" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Sands>
+        schema:netWorth  3.4 ;
+        foaf:name        "Robert Sands" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "liquor" .
 
-<http://dbpedia.org/resource/T._Denny_Sanford>
-        schema:netWorth  "3.4" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/T._Denny_Sanford>
+        schema:netWorth  3.4 ;
+        foaf:name        "T. Denny Sanford" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, credit cards" .
 
-<http://dbpedia.org/resource/Naguib_Sawiris>
-        schema:netWorth  "3.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Egypt> ;
+<http://example.org/person/Naguib_Sawiris>
+        schema:netWorth  3.4 ;
+        foaf:name        "Naguib Sawiris" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Egypt> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Pavel_Tykac>
-        schema:netWorth  "3.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Pavel_Tykac>
+        schema:netWorth  3.4 ;
+        foaf:name        "Pavel Tykac" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "coal mines" .
 
-<http://dbpedia.org/resource/Todd_Wanek>
-        schema:netWorth  "3.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Todd_Wanek>
+        schema:netWorth  3.4 ;
+        foaf:name        "Todd Wanek" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "furniture" .
 
-<http://dbpedia.org/resource/Meg_Whitman>
-        schema:netWorth  "3.4" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Meg_Whitman>
+        schema:netWorth  3.4 ;
+        foaf:name        "Meg Whitman" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "eBay" .
 
-<http://dbpedia.org/resource/Michael_Xie>
-        schema:netWorth  "3.4" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Xie>
+        schema:netWorth  3.4 ;
+        foaf:name        "Michael Xie" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cybersecurity" .
 
-<http://dbpedia.org/resource/Chenghai_Ye_&_family>
-        schema:netWorth  "3.4" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Chenghai_Ye_&_family>
+        schema:netWorth  3.4 ;
+        foaf:name        "Chenghai Ye & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/An_Kang>
-        schema:netWorth  "3.3" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/An_Kang>
+        schema:netWorth  3.3 ;
+        foaf:name        "An Kang" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/John_Arnold>
-        schema:netWorth  "3.3" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Arnold>
+        schema:netWorth  3.3 ;
+        foaf:name        "John Arnold" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Arun_Bharat_Ram>
-        schema:netWorth  "3.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Arun_Bharat_Ram>
+        schema:netWorth  3.3 ;
+        foaf:name        "Arun Bharat Ram" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Tomasz_Biernacki>
-        schema:netWorth  "3.3" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Tomasz_Biernacki>
+        schema:netWorth  3.3 ;
+        foaf:name        "Tomasz Biernacki" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Travis_Boersma>
-        schema:netWorth  "3.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Travis_Boersma>
+        schema:netWorth  3.3 ;
+        foaf:name        "Travis Boersma" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "coffee" .
 
-<http://dbpedia.org/resource/Chan_Tan_Ching-fen>
-        schema:netWorth  "3.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Chan_Tan_Ching-fen>
+        schema:netWorth  3.3 ;
+        foaf:name        "Chan Tan Ching-fen" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Dongsheng_Chen>
-        schema:netWorth  "3.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dongsheng_Chen>
+        schema:netWorth  3.3 ;
+        foaf:name        "Dongsheng Chen" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Jean_Coutu_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Jean_Coutu_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Jean Coutu & family" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/Ralph_Dommermuth>
-        schema:netWorth  "3.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Ralph_Dommermuth>
+        schema:netWorth  3.3 ;
+        foaf:name        "Ralph Dommermuth" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "internet service provider" .
 
-<http://dbpedia.org/resource/Walter_Faria>
-        schema:netWorth  "3.3" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Walter_Faria>
+        schema:netWorth  3.3 ;
+        foaf:name        "Walter Faria" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Bob_Gaglardi>
-        schema:netWorth  "3.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Bob_Gaglardi>
+        schema:netWorth  3.3 ;
+        foaf:name        "Bob Gaglardi" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/John_Gandel>
-        schema:netWorth  "3.3" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/John_Gandel>
+        schema:netWorth  3.3 ;
+        foaf:name        "John Gandel" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "shopping malls" .
 
-<http://dbpedia.org/resource/Xuande_Hua_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xuande_Hua_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Xuande Hua & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Micky_Jagtiani>
-        schema:netWorth  "3.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Micky_Jagtiani>
+        schema:netWorth  3.3 ;
+        foaf:name        "Micky Jagtiani" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/H._Fisk_Johnson>
-        schema:netWorth  "3.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/H._Fisk_Johnson>
+        schema:netWorth  3.3 ;
+        foaf:name        "H. Fisk Johnson" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cleaning products" .
 
-<http://dbpedia.org/resource/S._Curtis_Johnson>
-        schema:netWorth  "3.3" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/S._Curtis_Johnson>
+        schema:netWorth  3.3 ;
+        foaf:name        "S. Curtis Johnson" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cleaning products" .
 
-<http://dbpedia.org/resource/Helen_Johnson-Leipold>
-        schema:netWorth  "3.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Helen_Johnson-Leipold>
+        schema:netWorth  3.3 ;
+        foaf:name        "Helen Johnson-Leipold" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cleaning products" .
 
-<http://dbpedia.org/resource/Miguel_Krigsner>
-        schema:netWorth  "3.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Miguel_Krigsner>
+        schema:netWorth  3.3 ;
+        foaf:name        "Miguel Krigsner" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Li_Jianquan_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Li_Jianquan_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Li Jianquan & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "consumer products" .
 
-<http://dbpedia.org/resource/Lin_Ming-hsiung>
-        schema:netWorth  "3.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Lin_Ming-hsiung>
+        schema:netWorth  3.3 ;
+        foaf:name        "Lin Ming-hsiung" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Winifred_J._Marquart>
-        schema:netWorth  "3.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Winifred_J._Marquart>
+        schema:netWorth  3.3 ;
+        foaf:name        "Winifred J. Marquart" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cleaning products" .
 
-<http://dbpedia.org/resource/Kiran_Mazumdar-Shaw>
-        schema:netWorth  "3.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kiran_Mazumdar-Shaw>
+        schema:netWorth  3.3 ;
+        foaf:name        "Kiran Mazumdar-Shaw" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biopharmaceuticals" .
 
-<http://dbpedia.org/resource/Patrice_Motsepe>
-        schema:netWorth  "3.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Africa> ;
+<http://example.org/person/Patrice_Motsepe>
+        schema:netWorth  3.3 ;
+        foaf:name        "Patrice Motsepe" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/South_Africa> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Alfred_Oetker>
-        schema:netWorth  "3.3" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Alfred_Oetker>
+        schema:netWorth  3.3 ;
+        foaf:name        "Alfred Oetker" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Carl_Ferdinand_Oetker>
-        schema:netWorth  "3.3" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Carl_Ferdinand_Oetker>
+        schema:netWorth  3.3 ;
+        foaf:name        "Carl Ferdinand Oetker" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Julia_Oetker>
-        schema:netWorth  "3.3" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Julia_Oetker>
+        schema:netWorth  3.3 ;
+        foaf:name        "Julia Oetker" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Or_Wai_Sheun>
-        schema:netWorth  "3.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Or_Wai_Sheun>
+        schema:netWorth  3.3 ;
+        foaf:name        "Or Wai Sheun" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jay_Paul>
-        schema:netWorth  "3.3" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jay_Paul>
+        schema:netWorth  3.3 ;
+        foaf:name        "Jay Paul" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Horst_Paulmann_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Horst_Paulmann_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Horst Paulmann & family" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Theodore_Rachmat>
-        schema:netWorth  "3.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Theodore_Rachmat>
+        schema:netWorth  3.3 ;
+        foaf:name        "Theodore Rachmat" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/John_Sall>
-        schema:netWorth  "3.3" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Sall>
+        schema:netWorth  3.3 ;
+        foaf:name        "John Sall" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Stefan_von_Holtzbrinck>
-        schema:netWorth  "3.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Stefan_von_Holtzbrinck>
+        schema:netWorth  3.3 ;
+        foaf:name        "Stefan von Holtzbrinck" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "publishing" .
 
-<http://dbpedia.org/resource/Nusli_Wadia>
-        schema:netWorth  "3.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Nusli_Wadia>
+        schema:netWorth  3.3 ;
+        foaf:name        "Nusli Wadia" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Steve_Wynn>
-        schema:netWorth  "3.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steve_Wynn>
+        schema:netWorth  3.3 ;
+        foaf:name        "Steve Wynn" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos, hotels" .
 
-<http://dbpedia.org/resource/Yang_Weidong_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Weidong_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Yang Weidong & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Barry_Zekelman>
-        schema:netWorth  "3.3" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Barry_Zekelman>
+        schema:netWorth  3.3 ;
+        foaf:name        "Barry Zekelman" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Zhang_Shilong_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Shilong_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Zhang Shilong & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductor" .
 
-<http://dbpedia.org/resource/Zhong_Ruonong_&_family>
-        schema:netWorth  "3.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhong_Ruonong_&_family>
+        schema:netWorth  3.3 ;
+        foaf:name        "Zhong Ruonong & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Cameron_Adams>
-        schema:netWorth  "3.2" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Cameron_Adams>
+        schema:netWorth  3.2 ;
+        foaf:name        "Cameron Adams" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Dongchen_Cai>
-        schema:netWorth  "3.2" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dongchen_Cai>
+        schema:netWorth  3.2 ;
+        foaf:name        "Dongchen Cai" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Vanich_Chaiyawan>
-        schema:netWorth  "3.2" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Vanich_Chaiyawan>
+        schema:netWorth  3.2 ;
+        foaf:name        "Vanich Chaiyawan" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance, beverages" .
 
-<http://dbpedia.org/resource/Andrew_&_Peggy_Cherng>
-        schema:netWorth  "3.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Andrew_&_Peggy_Cherng>
+        schema:netWorth  3.2 ;
+        foaf:name        "Andrew & Peggy Cherng" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurants" .
 
-<http://dbpedia.org/resource/James_Clark>
-        schema:netWorth  "3.2" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Clark>
+        schema:netWorth  3.2 ;
+        foaf:name        "James Clark" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Netscape, investments" .
 
-<http://dbpedia.org/resource/Jack_Cowin>
-        schema:netWorth  "3.2" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Jack_Cowin>
+        schema:netWorth  3.2 ;
+        foaf:name        "Jack Cowin" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "fast food" .
 
-<http://dbpedia.org/resource/Giuseppe_Crippa_&_family>
-        schema:netWorth  "3.2" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Giuseppe_Crippa_&_family>
+        schema:netWorth  3.2 ;
+        foaf:name        "Giuseppe Crippa & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "microchip testing" .
 
-<http://dbpedia.org/resource/Sergei_Galitsky>
-        schema:netWorth  "3.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Sergei_Galitsky>
+        schema:netWorth  3.2 ;
+        foaf:name        "Sergei Galitsky" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Ernest_Garcia,_III>
-        schema:netWorth  "3.2" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ernest_Garcia,_III>
+        schema:netWorth  3.2 ;
+        foaf:name        "Ernest Garcia, III" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "used cars" .
 
-<http://dbpedia.org/resource/Peter_Gilgan>
-        schema:netWorth  "3.2" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Peter_Gilgan>
+        schema:netWorth  3.2 ;
+        foaf:name        "Peter Gilgan" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "homebuilding" .
 
-<http://dbpedia.org/resource/Joseph_Grendys>
-        schema:netWorth  "3.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joseph_Grendys>
+        schema:netWorth  3.2 ;
+        foaf:name        "Joseph Grendys" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "poultry processing" .
 
-<http://dbpedia.org/resource/Thomas_Hagen>
-        schema:netWorth  "3.2" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Hagen>
+        schema:netWorth  3.2 ;
+        foaf:name        "Thomas Hagen" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Robert_Hale,_Jr.>
-        schema:netWorth  "3.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Hale,_Jr.>
+        schema:netWorth  3.2 ;
+        foaf:name        "Robert Hale, Jr." ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Michael_Hintze>
-        schema:netWorth  "3.2" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Michael_Hintze>
+        schema:netWorth  3.2 ;
+        foaf:name        "Michael Hintze" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investment" .
 
-<http://dbpedia.org/resource/Pansy_Ho>
-        schema:netWorth  "3.2" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Pansy_Ho>
+        schema:netWorth  3.2 ;
+        foaf:name        "Pansy Ho" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Alan_Howard>
-        schema:netWorth  "3.2" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Alan_Howard>
+        schema:netWorth  3.2 ;
+        foaf:name        "Alan Howard" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Kei_Hoi_Pang>
-        schema:netWorth  "3.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Kei_Hoi_Pang>
+        schema:netWorth  3.2 ;
+        foaf:name        "Kei Hoi Pang" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Rudy_Ma>
-        schema:netWorth  "3.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Rudy_Ma>
+        schema:netWorth  3.2 ;
+        foaf:name        "Rudy Ma" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Najib_Mikati>
-        schema:netWorth  "3.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Lebanon> ;
+<http://example.org/person/Najib_Mikati>
+        schema:netWorth  3.2 ;
+        foaf:name        "Najib Mikati" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Lebanon> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Taha_Mikati>
-        schema:netWorth  "3.2" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Lebanon> ;
+<http://example.org/person/Taha_Mikati>
+        schema:netWorth  3.2 ;
+        foaf:name        "Taha Mikati" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Lebanon> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Gail_Miller>
-        schema:netWorth  "3.2" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gail_Miller>
+        schema:netWorth  3.2 ;
+        foaf:name        "Gail Miller" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "car dealerships" .
 
-<http://dbpedia.org/resource/Vikas_Oberoi>
-        schema:netWorth  "3.2" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vikas_Oberoi>
+        schema:netWorth  3.2 ;
+        foaf:name        "Vikas Oberoi" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/H._Ross_Perot,_Jr.>
-        schema:netWorth  "3.2" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/H._Ross_Perot,_Jr.>
+        schema:netWorth  3.2 ;
+        foaf:name        "H. Ross Perot, Jr." ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Candido_Pinheiro_Koren_de_Lima>
-        schema:netWorth  "3.2" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Candido_Pinheiro_Koren_de_Lima>
+        schema:netWorth  3.2 ;
+        foaf:name        "Candido Pinheiro Koren de Lima" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals, health insurance" .
 
-<http://dbpedia.org/resource/Matthew_Prince>
-        schema:netWorth  "3.2" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Matthew_Prince>
+        schema:netWorth  3.2 ;
+        foaf:name        "Matthew Prince" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cybersecurity" .
 
-<http://dbpedia.org/resource/Penny_Pritzker>
-        schema:netWorth  "3.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Penny_Pritzker>
+        schema:netWorth  3.2 ;
+        foaf:name        "Penny Pritzker" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Yasumitsu_Shigeta>
-        schema:netWorth  "3.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yasumitsu_Shigeta>
+        schema:netWorth  3.2 ;
+        foaf:name        "Yasumitsu Shigeta" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Telecom" ;
         dbo:source       "mobile phone retailer" .
 
-<http://dbpedia.org/resource/Sebastian_Siemiatkowski>
-        schema:netWorth  "3.2" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Sebastian_Siemiatkowski>
+        schema:netWorth  3.2 ;
+        foaf:name        "Sebastian Siemiatkowski" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Barry_Silbert>
-        schema:netWorth  "3.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Barry_Silbert>
+        schema:netWorth  3.2 ;
+        foaf:name        "Barry Silbert" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Daniel_Sundheim>
-        schema:netWorth  "3.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Sundheim>
+        schema:netWorth  3.2 ;
+        foaf:name        "Daniel Sundheim" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Rita_Tong_Liu>
-        schema:netWorth  "3.2" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Rita_Tong_Liu>
+        schema:netWorth  3.2 ;
+        foaf:name        "Rita Tong Liu" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Tran_Dinh_Long>
-        schema:netWorth  "3.2" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Tran_Dinh_Long>
+        schema:netWorth  3.2 ;
+        foaf:name        "Tran Dinh Long" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Zhang_Daocai>
-        schema:netWorth  "3.2" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Daocai>
+        schema:netWorth  3.2 ;
+        foaf:name        "Zhang Daocai" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "valves" .
 
-<http://dbpedia.org/resource/John_Caudwell>
-        schema:netWorth  "3.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/John_Caudwell>
+        schema:netWorth  3.1 ;
+        foaf:name        "John Caudwell" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Telecom" ;
         dbo:source       "mobile phones" .
 
-<http://dbpedia.org/resource/Philippe_Foriel-Destezet>
-        schema:netWorth  "3.1" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Philippe_Foriel-Destezet>
+        schema:netWorth  3.1 ;
+        foaf:name        "Philippe Foriel-Destezet" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Service" ;
         dbo:source       "employment agency" .
 
-<http://dbpedia.org/resource/Walter_Frey>
-        schema:netWorth  "3.1" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Walter_Frey>
+        schema:netWorth  3.1 ;
+        foaf:name        "Walter Frey" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Automotive" ;
         dbo:source       "car dealerships" .
 
-<http://dbpedia.org/resource/Alessandra_Garavoglia>
-        schema:netWorth  "3.1" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Alessandra_Garavoglia>
+        schema:netWorth  3.1 ;
+        foaf:name        "Alessandra Garavoglia" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "spirits" .
 
-<http://dbpedia.org/resource/Peter_Gassner>
-        schema:netWorth  "3.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Peter_Gassner>
+        schema:netWorth  3.1 ;
+        foaf:name        "Peter Gassner" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Mitchell_Goldhar>
-        schema:netWorth  "3.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Mitchell_Goldhar>
+        schema:netWorth  3.1 ;
+        foaf:name        "Mitchell Goldhar" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Otto_Happel>
-        schema:netWorth  "3.1" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Otto_Happel>
+        schema:netWorth  3.1 ;
+        foaf:name        "Otto Happel" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "engineering" .
 
-<http://dbpedia.org/resource/Peter_Hargreaves>
-        schema:netWorth  "3.1" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Peter_Hargreaves>
+        schema:netWorth  3.1 ;
+        foaf:name        "Peter Hargreaves" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Bom_Kim>
-        schema:netWorth  "3.1" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bom_Kim>
+        schema:netWorth  3.1 ;
+        foaf:name        "Bom Kim" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "online retailing" .
 
-<http://dbpedia.org/resource/Gaiteng_Li>
-        schema:netWorth  "3.1" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gaiteng_Li>
+        schema:netWorth  3.1 ;
+        foaf:name        "Gaiteng Li" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hair dryers" .
 
-<http://dbpedia.org/resource/Liufa_Li_&_family>
-        schema:netWorth  "3.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liufa_Li_&_family>
+        schema:netWorth  3.1 ;
+        foaf:name        "Liufa Li & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "steel, diversified  " .
 
-<http://dbpedia.org/resource/Lu_Weiding>
-        schema:netWorth  "3.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Weiding>
+        schema:netWorth  3.1 ;
+        foaf:name        "Lu Weiding" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Harsh_Mariwala>
-        schema:netWorth  "3.1" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Harsh_Mariwala>
+        schema:netWorth  3.1 ;
+        foaf:name        "Harsh Mariwala" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Samir_Mehta>
-        schema:netWorth  "3.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Samir_Mehta>
+        schema:netWorth  3.1 ;
+        foaf:name        "Samir Mehta" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals, power" .
 
-<http://dbpedia.org/resource/Sudhir_Mehta>
-        schema:netWorth  "3.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sudhir_Mehta>
+        schema:netWorth  3.1 ;
+        foaf:name        "Sudhir Mehta" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals, power" .
 
-<http://dbpedia.org/resource/Pawan_Munjal_&_family>
-        schema:netWorth  "3.1" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Pawan_Munjal_&_family>
+        schema:netWorth  3.1 ;
+        foaf:name        "Pawan Munjal & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "motorcycles" .
 
-<http://dbpedia.org/resource/Nguyen_Thi_Phuong_Thao>
-        schema:netWorth  "3.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Nguyen_Thi_Phuong_Thao>
+        schema:netWorth  3.1 ;
+        foaf:name        "Nguyen Thi Phuong Thao" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "diversified" ;
         dbo:source       "airlines" .
 
-<http://dbpedia.org/resource/Madhukar_Parekh>
-        schema:netWorth  "3.1" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Madhukar_Parekh>
+        schema:netWorth  3.1 ;
+        foaf:name        "Madhukar Parekh" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "adhesives" .
 
-<http://dbpedia.org/resource/Sergei_Popov>
-        schema:netWorth  "3.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Sergei_Popov>
+        schema:netWorth  3.1 ;
+        foaf:name        "Sergei Popov" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Haim_Saban>
-        schema:netWorth  "3.1" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Haim_Saban>
+        schema:netWorth  3.1 ;
+        foaf:name        "Haim Saban" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV network, investments" .
 
-<http://dbpedia.org/resource/Karthik_Sarma>
-        schema:netWorth  "3.1" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Karthik_Sarma>
+        schema:netWorth  3.1 ;
+        foaf:name        "Karthik Sarma" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge fund" .
 
-<http://dbpedia.org/resource/Klaus-Peter_Schulenberg>
-        schema:netWorth  "3.1" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Klaus-Peter_Schulenberg>
+        schema:netWorth  3.1 ;
+        foaf:name        "Klaus-Peter Schulenberg" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Service" ;
         dbo:source       "ticketing service" .
 
-<http://dbpedia.org/resource/Pat_Stryker>
-        schema:netWorth  "3.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Pat_Stryker>
+        schema:netWorth  3.1 ;
+        foaf:name        "Pat Stryker" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Jeff_Sutton>
-        schema:netWorth  "3.1" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Sutton>
+        schema:netWorth  3.1 ;
+        foaf:name        "Jeff Sutton" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jon_Yarbrough>
-        schema:netWorth  "3.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jon_Yarbrough>
+        schema:netWorth  3.1 ;
+        foaf:name        "Jon Yarbrough" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "video games" .
 
-<http://dbpedia.org/resource/Gang_Ye>
-        schema:netWorth  "3.1" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Gang_Ye>
+        schema:netWorth  3.1 ;
+        foaf:name        "Gang Ye" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "gaming" .
 
-<http://dbpedia.org/resource/Yi_Zheng>
-        schema:netWorth  "3.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yi_Zheng>
+        schema:netWorth  3.1 ;
+        foaf:name        "Yi Zheng" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Zhang_Fan>
-        schema:netWorth  "3.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Fan>
+        schema:netWorth  3.1 ;
+        foaf:name        "Zhang Fan" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "touch screens" .
 
-<http://dbpedia.org/resource/William_Ackman>
-        schema:netWorth  "3.0" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Ackman>
+        schema:netWorth  3.0 ;
+        foaf:name        "William Ackman" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Markus_Blocher>
-        schema:netWorth  "3.0" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Markus_Blocher>
+        schema:netWorth  3.0 ;
+        foaf:name        "Markus Blocher" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Neal_Blue_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Neal_Blue_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Neal Blue & family" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "defense" .
 
-<http://dbpedia.org/resource/Eva_Maria_Bucher-Haefner>
-        schema:netWorth  "3.0" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Eva_Maria_Bucher-Haefner>
+        schema:netWorth  3.0 ;
+        foaf:name        "Eva Maria Bucher-Haefner" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Technology" ;
         dbo:source       "software, investments" .
 
-<http://dbpedia.org/resource/Chang_Kuo-Hua>
-        schema:netWorth  "3.0" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chang_Kuo-Hua>
+        schema:netWorth  3.0 ;
+        foaf:name        "Chang Kuo-Hua" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping, airlines" .
 
-<http://dbpedia.org/resource/Todd_Christopher>
-        schema:netWorth  "3.0" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Todd_Christopher>
+        schema:netWorth  3.0 ;
+        foaf:name        "Todd Christopher" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "hair care products" .
 
-<http://dbpedia.org/resource/Euisun_Chung>
-        schema:netWorth  "3.0" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Euisun_Chung>
+        schema:netWorth  3.0 ;
+        foaf:name        "Euisun Chung" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Logistics" ;
         dbo:source       "Hyundai" .
 
-<http://dbpedia.org/resource/Bernard_Ecclestone_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Bernard_Ecclestone_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Bernard Ecclestone & family" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Sports" ;
         dbo:source       "Formula One" .
 
-<http://dbpedia.org/resource/Michael_Federmann_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Michael_Federmann_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Michael Federmann & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Technology" ;
         dbo:source       "defense, hotels" .
 
-<http://dbpedia.org/resource/Gudrun_Heine>
-        schema:netWorth  "3.0" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Gudrun_Heine>
+        schema:netWorth  3.0 ;
+        foaf:name        "Gudrun Heine" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Heidi_Horten>
-        schema:netWorth  "3.0" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Heidi_Horten>
+        schema:netWorth  3.0 ;
+        foaf:name        "Heidi Horten" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Dawen_Huang>
-        schema:netWorth  "3.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Dawen_Huang>
+        schema:netWorth  3.0 ;
+        foaf:name        "Dawen Huang" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "silicon" .
 
-<http://dbpedia.org/resource/Sheldon_Lavin>
-        schema:netWorth  "3.0" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sheldon_Lavin>
+        schema:netWorth  3.0 ;
+        foaf:name        "Sheldon Lavin" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "meat processing" .
 
-<http://dbpedia.org/resource/Li_Min>
-        schema:netWorth  "3.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Min>
+        schema:netWorth  3.0 ;
+        foaf:name        "Li Min" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductor" .
 
-<http://dbpedia.org/resource/Liang_Yunchao>
-        schema:netWorth  "3.0" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Yunchao>
+        schema:netWorth  3.0 ;
+        foaf:name        "Liang Yunchao" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "nutritional supplements" .
 
-<http://dbpedia.org/resource/Joseph_Liemandt>
-        schema:netWorth  "3.0" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joseph_Liemandt>
+        schema:netWorth  3.0 ;
+        foaf:name        "Joseph Liemandt" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Strive_Masiyiwa>
-        schema:netWorth  "3.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Zimbabwe> ;
+<http://example.org/person/Strive_Masiyiwa>
+        schema:netWorth  3.0 ;
+        foaf:name        "Strive Masiyiwa" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Zimbabwe> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Masahiro_Miki>
-        schema:netWorth  "3.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Masahiro_Miki>
+        schema:netWorth  3.0 ;
+        foaf:name        "Masahiro Miki" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Pan_Laican>
-        schema:netWorth  "3.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Pan_Laican>
+        schema:netWorth  3.0 ;
+        foaf:name        "Pan Laican" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Karsanbhai_Patel>
-        schema:netWorth  "3.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Karsanbhai_Patel>
+        schema:netWorth  3.0 ;
+        foaf:name        "Karsanbhai Patel" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Arvind_Poddar>
-        schema:netWorth  "3.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Arvind_Poddar>
+        schema:netWorth  3.0 ;
+        foaf:name        "Arvind Poddar" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "tires" .
 
-<http://dbpedia.org/resource/Remo_Ruffini>
-        schema:netWorth  "3.0" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Remo_Ruffini>
+        schema:netWorth  3.0 ;
+        foaf:name        "Remo Ruffini" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "winter jackets" .
 
-<http://dbpedia.org/resource/Eddy_Kusnadi_Sariaatmadja>
-        schema:netWorth  "3.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Eddy_Kusnadi_Sariaatmadja>
+        schema:netWorth  3.0 ;
+        foaf:name        "Eddy Kusnadi Sariaatmadja" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, tech" .
 
-<http://dbpedia.org/resource/Sybill_Storz>
-        schema:netWorth  "3.0" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Sybill_Storz>
+        schema:netWorth  3.0 ;
+        foaf:name        "Sybill Storz" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Lawrence_Stroll>
-        schema:netWorth  "3.0" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Lawrence_Stroll>
+        schema:netWorth  3.0 ;
+        foaf:name        "Lawrence Stroll" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion investments" .
 
-<http://dbpedia.org/resource/Wijono_&_Hermanto_Tanoko>
-        schema:netWorth  "3.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Wijono_&_Hermanto_Tanoko>
+        schema:netWorth  3.0 ;
+        foaf:name        "Wijono & Hermanto Tanoko" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Michael_Tojner>
-        schema:netWorth  "3.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Michael_Tojner>
+        schema:netWorth  3.0 ;
+        foaf:name        "Michael Tojner" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "batteries, investments" .
 
-<http://dbpedia.org/resource/Donald_Trump>
-        schema:netWorth  "3.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Trump>
+        schema:netWorth  3.0 ;
+        foaf:name        "Donald Trump" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Tsai_Ming-kai>
-        schema:netWorth  "3.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tsai_Ming-kai>
+        schema:netWorth  3.0 ;
+        foaf:name        "Tsai Ming-kai" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/John_Tyson>
-        schema:netWorth  "3.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Tyson>
+        schema:netWorth  3.0 ;
+        foaf:name        "John Tyson" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food processing" .
 
-<http://dbpedia.org/resource/Rufino_Vigil_Gonzalez>
-        schema:netWorth  "3.0" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Rufino_Vigil_Gonzalez>
+        schema:netWorth  3.0 ;
+        foaf:name        "Rufino Vigil Gonzalez" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Ning_Wang_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ning_Wang_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Ning Wang & family" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "toys" .
 
-<http://dbpedia.org/resource/Wang_Yusuo_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Yusuo_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Wang Yusuo & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "natural gas distribution" .
 
-<http://dbpedia.org/resource/Zhigang_Wu_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhigang_Wu_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Zhigang Wu & family" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "bakery chain" .
 
-<http://dbpedia.org/resource/Xie_Juhua_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xie_Juhua_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Xie Juhua & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Oren_Zeev>
-        schema:netWorth  "3.0" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Oren_Zeev>
+        schema:netWorth  3.0 ;
+        foaf:name        "Oren Zeev" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Charles_Zegar>
-        schema:netWorth  "3.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Zegar>
+        schema:netWorth  3.0 ;
+        foaf:name        "Charles Zegar" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Bloomberg LP" .
 
-<http://dbpedia.org/resource/Zhang_Lei>
-        schema:netWorth  "3.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Lei>
+        schema:netWorth  3.0 ;
+        foaf:name        "Zhang Lei" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Zhang_Xin_&_Pan_Shiyi>
-        schema:netWorth  "3.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Xin_&_Pan_Shiyi>
+        schema:netWorth  3.0 ;
+        foaf:name        "Zhang Xin & Pan Shiyi" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Zhu_Yan_&_family>
-        schema:netWorth  "3.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhu_Yan_&_family>
+        schema:netWorth  3.0 ;
+        foaf:name        "Zhu Yan & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mortimer_Zuckerman>
-        schema:netWorth  "3.0" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mortimer_Zuckerman>
+        schema:netWorth  3.0 ;
+        foaf:name        "Mortimer Zuckerman" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, media" .
 
-<http://dbpedia.org/resource/Juan_Abello>
-        schema:netWorth  "2.9" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Juan_Abello>
+        schema:netWorth  2.9 ;
+        foaf:name        "Juan Abello" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/John_Armitage>
-        schema:netWorth  "2.9" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/John_Armitage>
+        schema:netWorth  2.9 ;
+        foaf:name        "John Armitage" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Bang_Si-hyuk>
-        schema:netWorth  "2.9" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Bang_Si-hyuk>
+        schema:netWorth  2.9 ;
+        foaf:name        "Bang Si-hyuk" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "entertainment" .
 
-<http://dbpedia.org/resource/Miriam_Baumann-Blocher>
-        schema:netWorth  "2.9" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Miriam_Baumann-Blocher>
+        schema:netWorth  2.9 ;
+        foaf:name        "Miriam Baumann-Blocher" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Riley_Bechtel_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Riley_Bechtel_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Riley Bechtel & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "engineering, construction" .
 
-<http://dbpedia.org/resource/Wilhelm_Beier_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Wilhelm_Beier_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Wilhelm Beier & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Nicolas_Berggruen>
-        schema:netWorth  "2.9" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nicolas_Berggruen>
+        schema:netWorth  2.9 ;
+        foaf:name        "Nicolas Berggruen" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/Bui_Thanh_Nhon>
-        schema:netWorth  "2.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Bui_Thanh_Nhon>
+        schema:netWorth  2.9 ;
+        foaf:name        "Bui Thanh Nhon" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Cao_Longxiang_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cao_Longxiang_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Cao Longxiang & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Deng_Wen>
-        schema:netWorth  "2.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Deng_Wen>
+        schema:netWorth  2.9 ;
+        foaf:name        "Deng Wen" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "flavorings" .
 
-<http://dbpedia.org/resource/Daniel_Dines>
-        schema:netWorth  "2.9" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Romania> ;
+<http://example.org/person/Daniel_Dines>
+        schema:netWorth  2.9 ;
+        foaf:name        "Daniel Dines" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Romania> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Joseph_Edelman>
-        schema:netWorth  "2.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joseph_Edelman>
+        schema:netWorth  2.9 ;
+        foaf:name        "Joseph Edelman" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/N._Murray_Edwards>
-        schema:netWorth  "2.9" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/N._Murray_Edwards>
+        schema:netWorth  2.9 ;
+        foaf:name        "N. Murray Edwards" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Jane_Goldman>
-        schema:netWorth  "2.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jane_Goldman>
+        schema:netWorth  2.9 ;
+        foaf:name        "Jane Goldman" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Guo_Zhenyu_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Guo_Zhenyu_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Guo Zhenyu & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Stewart_Horejsi_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stewart_Horejsi_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Stewart Horejsi & family" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Berkshire Hathaway" .
 
-<http://dbpedia.org/resource/Zhenda_Huang_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhenda_Huang_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Zhenda Huang & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Jeremy_Jacobs,_Sr._&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeremy_Jacobs,_Sr._&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Jeremy Jacobs, Sr. & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "food service" .
 
-<http://dbpedia.org/resource/Hamilton_James>
-        schema:netWorth  "2.9" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Hamilton_James>
+        schema:netWorth  2.9 ;
+        foaf:name        "Hamilton James" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Valentin_Kipyatkov>
-        schema:netWorth  "2.9" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Valentin_Kipyatkov>
+        schema:netWorth  2.9 ;
+        foaf:name        "Valentin Kipyatkov" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer software" .
 
-<http://dbpedia.org/resource/Li_Zhongchu>
-        schema:netWorth  "2.9" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Zhongchu>
+        schema:netWorth  2.9 ;
+        foaf:name        "Li Zhongchu" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Martin_Lorentzon>
-        schema:netWorth  "2.9" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Martin_Lorentzon>
+        schema:netWorth  2.9 ;
+        foaf:name        "Martin Lorentzon" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Technology" ;
         dbo:source       "Spotify" .
 
-<http://dbpedia.org/resource/Drayton_McLane,_Jr.>
-        schema:netWorth  "2.9" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Drayton_McLane,_Jr.>
+        schema:netWorth  2.9 ;
+        foaf:name        "Drayton McLane, Jr." ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Walmart, logistics" .
 
-<http://dbpedia.org/resource/Benjamin_Otto>
-        schema:netWorth  "2.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Benjamin_Otto>
+        schema:netWorth  2.9 ;
+        foaf:name        "Benjamin Otto" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Roger_Penske>
-        schema:netWorth  "2.9" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Roger_Penske>
+        schema:netWorth  2.9 ;
+        foaf:name        "Roger Penske" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "cars" .
 
-<http://dbpedia.org/resource/Olivier_Pomel>
-        schema:netWorth  "2.9" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Olivier_Pomel>
+        schema:netWorth  2.9 ;
+        foaf:name        "Olivier Pomel" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud computing" .
 
-<http://dbpedia.org/resource/Jean_Salata>
-        schema:netWorth  "2.9" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Jean_Salata>
+        schema:netWorth  2.9 ;
+        foaf:name        "Jean Salata" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Arnout_Schuijff>
-        schema:netWorth  "2.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Arnout_Schuijff>
+        schema:netWorth  2.9 ;
+        foaf:name        "Arnout Schuijff" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Technology" ;
         dbo:source       "payments software" .
 
-<http://dbpedia.org/resource/Shen_Hua_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Shen_Hua_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Shen Hua & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Martua_Sitorus>
-        schema:netWorth  "2.9" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Martua_Sitorus>
+        schema:netWorth  2.9 ;
+        foaf:name        "Martua Sitorus" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "palm oil" .
 
-<http://dbpedia.org/resource/Zygmunt_Solorz-Zak>
-        schema:netWorth  "2.9" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Zygmunt_Solorz-Zak>
+        schema:netWorth  2.9 ;
+        foaf:name        "Zygmunt Solorz-Zak" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV broadcasting" .
 
-<http://dbpedia.org/resource/Warren_Stephens>
-        schema:netWorth  "2.9" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Warren_Stephens>
+        schema:netWorth  2.9 ;
+        foaf:name        "Warren Stephens" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investment banking" .
 
-<http://dbpedia.org/resource/Tang_Jinkui_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tang_Jinkui_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Tang Jinkui & family" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "textiles, petrochemicals" .
 
-<http://dbpedia.org/resource/Alan_Trefler>
-        schema:netWorth  "2.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alan_Trefler>
+        schema:netWorth  2.9 ;
+        foaf:name        "Alan Trefler" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Masateru_Uno_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Masateru_Uno_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Masateru Uno & family" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/Frank_VanderSloot>
-        schema:netWorth  "2.9" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Frank_VanderSloot>
+        schema:netWorth  2.9 ;
+        foaf:name        "Frank VanderSloot" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "nutrition, wellness products" .
 
-<http://dbpedia.org/resource/Guangming_Wu>
-        schema:netWorth  "2.9" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guangming_Wu>
+        schema:netWorth  2.9 ;
+        foaf:name        "Guangming Wu" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Kai_Wu>
-        schema:netWorth  "2.9" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Kai_Wu>
+        schema:netWorth  2.9 ;
+        foaf:name        "Kai Wu" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Ye_Fan_&_family>
-        schema:netWorth  "2.9" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ye_Fan_&_family>
+        schema:netWorth  2.9 ;
+        foaf:name        "Ye Fan & family" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto dealerships" .
 
-<http://dbpedia.org/resource/Yoo_Jung-hyun>
-        schema:netWorth  "2.9" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Yoo_Jung-hyun>
+        schema:netWorth  2.9 ;
+        foaf:name        "Yoo Jung-hyun" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Fenggang_Zhao>
-        schema:netWorth  "2.9" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fenggang_Zhao>
+        schema:netWorth  2.9 ;
+        foaf:name        "Fenggang Zhao" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Zheng_Xiaodong>
-        schema:netWorth  "2.9" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zheng_Xiaodong>
+        schema:netWorth  2.9 ;
+        foaf:name        "Zheng Xiaodong" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Zhou_Jianping>
-        schema:netWorth  "2.9" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhou_Jianping>
+        schema:netWorth  2.9 ;
+        foaf:name        "Zhou Jianping" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Jose_Joao_Abdalla_Filho>
-        schema:netWorth  "2.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jose_Joao_Abdalla_Filho>
+        schema:netWorth  2.8 ;
+        foaf:name        "Jose Joao Abdalla Filho" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Brian_Acton>
-        schema:netWorth  "2.8" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brian_Acton>
+        schema:netWorth  2.8 ;
+        foaf:name        "Brian Acton" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "WhatsApp" .
 
-<http://dbpedia.org/resource/Bill_Alfond>
-        schema:netWorth  "2.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bill_Alfond>
+        schema:netWorth  2.8 ;
+        foaf:name        "Bill Alfond" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Susan_Alfond>
-        schema:netWorth  "2.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Susan_Alfond>
+        schema:netWorth  2.8 ;
+        foaf:name        "Susan Alfond" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Ted_Alfond>
-        schema:netWorth  "2.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ted_Alfond>
+        schema:netWorth  2.8 ;
+        foaf:name        "Ted Alfond" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Felix_Baker>
-        schema:netWorth  "2.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Felix_Baker>
+        schema:netWorth  2.8 ;
+        foaf:name        "Felix Baker" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "biotech investing" .
 
-<http://dbpedia.org/resource/Julian_Baker>
-        schema:netWorth  "2.8" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Julian_Baker>
+        schema:netWorth  2.8 ;
+        foaf:name        "Julian Baker" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investing" .
 
-<http://dbpedia.org/resource/Karen_Virginia_Beckmann_Legoretta>
-        schema:netWorth  "2.8" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Karen_Virginia_Beckmann_Legoretta>
+        schema:netWorth  2.8 ;
+        foaf:name        "Karen Virginia Beckmann Legoretta" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "tequila" .
 
-<http://dbpedia.org/resource/Maurizio_Billi>
-        schema:netWorth  "2.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Maurizio_Billi>
+        schema:netWorth  2.8 ;
+        foaf:name        "Maurizio Billi" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "generic drugs" .
 
-<http://dbpedia.org/resource/Otto_Philipp_Braun>
-        schema:netWorth  "2.8" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Otto_Philipp_Braun>
+        schema:netWorth  2.8 ;
+        foaf:name        "Otto Philipp Braun" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Garrett_Camp>
-        schema:netWorth  "2.8" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Garrett_Camp>
+        schema:netWorth  2.8 ;
+        foaf:name        "Garrett Camp" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "Uber" .
 
-<http://dbpedia.org/resource/Cao_Ji>
-        schema:netWorth  "2.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cao_Ji>
+        schema:netWorth  2.8 ;
+        foaf:name        "Cao Ji" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Hua_Chen>
-        schema:netWorth  "2.8" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hua_Chen>
+        schema:netWorth  2.8 ;
+        foaf:name        "Hua Chen" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/John_Paul_DeJoria>
-        schema:netWorth  "2.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Paul_DeJoria>
+        schema:netWorth  2.8 ;
+        foaf:name        "John Paul DeJoria" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "hair products, tequila" .
 
-<http://dbpedia.org/resource/Beda_Diethelm>
-        schema:netWorth  "2.8" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Beda_Diethelm>
+        schema:netWorth  2.8 ;
+        foaf:name        "Beda Diethelm" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hearing aids" .
 
-<http://dbpedia.org/resource/K._Dinesh>
-        schema:netWorth  "2.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/K._Dinesh>
+        schema:netWorth  2.8 ;
+        foaf:name        "K. Dinesh" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Dong_Fan>
-        schema:netWorth  "2.8" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dong_Fan>
+        schema:netWorth  2.8 ;
+        foaf:name        "Dong Fan" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Bennett_Dorrance>
-        schema:netWorth  "2.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bennett_Dorrance>
+        schema:netWorth  2.8 ;
+        foaf:name        "Bennett Dorrance" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Campbell Soup" .
 
-<http://dbpedia.org/resource/Marcel_Erni>
-        schema:netWorth  "2.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Marcel_Erni>
+        schema:netWorth  2.8 ;
+        foaf:name        "Marcel Erni" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Abhay_Firodia>
-        schema:netWorth  "2.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Abhay_Firodia>
+        schema:netWorth  2.8 ;
+        foaf:name        "Abhay Firodia" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automobiles" .
 
-<http://dbpedia.org/resource/Alfred_Gantner>
-        schema:netWorth  "2.8" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Alfred_Gantner>
+        schema:netWorth  2.8 ;
+        foaf:name        "Alfred Gantner" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Allan_Goldman>
-        schema:netWorth  "2.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Allan_Goldman>
+        schema:netWorth  2.8 ;
+        foaf:name        "Allan Goldman" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Amy_Goldman_Fowler>
-        schema:netWorth  "2.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Amy_Goldman_Fowler>
+        schema:netWorth  2.8 ;
+        foaf:name        "Amy Goldman Fowler" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/J._Tomilson_Hill>
-        schema:netWorth  "2.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J._Tomilson_Hill>
+        schema:netWorth  2.8 ;
+        foaf:name        "J. Tomilson Hill" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Hong_Jie>
-        schema:netWorth  "2.8" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hong_Jie>
+        schema:netWorth  2.8 ;
+        foaf:name        "Hong Jie" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paint" .
 
-<http://dbpedia.org/resource/James_Jannard>
-        schema:netWorth  "2.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Jannard>
+        schema:netWorth  2.8 ;
+        foaf:name        "James Jannard" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sunglasses" .
 
-<http://dbpedia.org/resource/Travis_Kalanick>
-        schema:netWorth  "2.8" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Travis_Kalanick>
+        schema:netWorth  2.8 ;
+        foaf:name        "Travis Kalanick" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Uber" .
 
-<http://dbpedia.org/resource/Diane_Kemper>
-        schema:netWorth  "2.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Diane_Kemper>
+        schema:netWorth  2.8 ;
+        foaf:name        "Diane Kemper" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/George_Kurtz>
-        schema:netWorth  "2.8" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Kurtz>
+        schema:netWorth  2.8 ;
+        foaf:name        "George Kurtz" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "security software" .
 
-<http://dbpedia.org/resource/Kwek_Leng_Beng>
-        schema:netWorth  "2.8" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Kwek_Leng_Beng>
+        schema:netWorth  2.8 ;
+        foaf:name        "Kwek Leng Beng" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Geoffrey_Kwok>
-        schema:netWorth  "2.8" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Geoffrey_Kwok>
+        schema:netWorth  2.8 ;
+        foaf:name        "Geoffrey Kwok" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lai_Jianping>
-        schema:netWorth  "2.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lai_Jianping>
+        schema:netWorth  2.8 ;
+        foaf:name        "Lai Jianping" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Maritsa_Lazari_&_family>
-        schema:netWorth  "2.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Maritsa_Lazari_&_family>
+        schema:netWorth  2.8 ;
+        foaf:name        "Maritsa Lazari & family" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Alexis_L%C3%AA-Qu%C3%B4c>
-        schema:netWorth  "2.8" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alexis_L%C3%AA-Qu%C3%B4c>
+        schema:netWorth  2.8 ;
+        foaf:name        "Alexis Lê-Quôc" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud computing" .
 
-<http://dbpedia.org/resource/Angela_Leong>
-        schema:netWorth  "2.8" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Angela_Leong>
+        schema:netWorth  2.8 ;
+        foaf:name        "Angela Leong" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Lin_Chen-hai>
-        schema:netWorth  "2.8" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Lin_Chen-hai>
+        schema:netWorth  2.8 ;
+        foaf:name        "Lin Chen-hai" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Sergio_Mantegazza>
-        schema:netWorth  "2.8" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Sergio_Mantegazza>
+        schema:netWorth  2.8 ;
+        foaf:name        "Sergio Mantegazza" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Service" ;
         dbo:source       "travel" .
 
-<http://dbpedia.org/resource/Hans_Melchers>
-        schema:netWorth  "2.8" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Hans_Melchers>
+        schema:netWorth  2.8 ;
+        foaf:name        "Hans Melchers" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "chemicals, investments" .
 
-<http://dbpedia.org/resource/Tom_Morris>
-        schema:netWorth  "2.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Tom_Morris>
+        schema:netWorth  2.8 ;
+        foaf:name        "Tom Morris" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Eugene_Murtagh>
-        schema:netWorth  "2.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/Eugene_Murtagh>
+        schema:netWorth  2.8 ;
+        foaf:name        "Eugene Murtagh" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Philip_Niarchos>
-        schema:netWorth  "2.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Greece> ;
+<http://example.org/person/Philip_Niarchos>
+        schema:netWorth  2.8 ;
+        foaf:name        "Philip Niarchos" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Greece> ;
         dbo:industry     "diversified" ;
         dbo:source       "art collection" .
 
-<http://dbpedia.org/resource/Pan_Dong>
-        schema:netWorth  "2.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Pan_Dong>
+        schema:netWorth  2.8 ;
+        foaf:name        "Pan Dong" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Sean_Parker>
-        schema:netWorth  "2.8" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sean_Parker>
+        schema:netWorth  2.8 ;
+        foaf:name        "Sean Parker" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Facebook" .
 
-<http://dbpedia.org/resource/Richard_Peery>
-        schema:netWorth  "2.8" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Peery>
+        schema:netWorth  2.8 ;
+        foaf:name        "Richard Peery" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Gregorio_Perez_Companc_&_family>
-        schema:netWorth  "2.8" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Argentina> ;
+<http://example.org/person/Gregorio_Perez_Companc_&_family>
+        schema:netWorth  2.8 ;
+        foaf:name        "Gregorio Perez Companc & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Argentina> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Sebastian_Pi%C3%B1era_&_family>
-        schema:netWorth  "2.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Sebastian_Pi%C3%B1era_&_family>
+        schema:netWorth  2.8 ;
+        foaf:name        "Sebastian Pi├▒era & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Nicholas_Pritzker>
-        schema:netWorth  "2.8" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nicholas_Pritzker>
+        schema:netWorth  2.8 ;
+        foaf:name        "Nicholas Pritzker" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Jeff_Rothschild>
-        schema:netWorth  "2.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Rothschild>
+        schema:netWorth  2.8 ;
+        foaf:name        "Jeff Rothschild" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Facebook" .
 
-<http://dbpedia.org/resource/Steven_Sarowitz>
-        schema:netWorth  "2.8" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steven_Sarowitz>
+        schema:netWorth  2.8 ;
+        foaf:name        "Steven Sarowitz" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "payroll software" .
 
-<http://dbpedia.org/resource/Isabella_Ser%C3%A0gnoli>
-        schema:netWorth  "2.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Isabella_Ser%C3%A0gnoli>
+        schema:netWorth  2.8 ;
+        foaf:name        "Isabella Seràgnoli" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/Stephen_Smith>
-        schema:netWorth  "2.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Stephen_Smith>
+        schema:netWorth  2.8 ;
+        foaf:name        "Stephen Smith" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance and investments" .
 
-<http://dbpedia.org/resource/William_Stone>
-        schema:netWorth  "2.8" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Stone>
+        schema:netWorth  2.8 ;
+        foaf:name        "William Stone" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Sun_Hongbin>
-        schema:netWorth  "2.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sun_Hongbin>
+        schema:netWorth  2.8 ;
+        foaf:name        "Sun Hongbin" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Sun_Shoukuan>
-        schema:netWorth  "2.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Sun_Shoukuan>
+        schema:netWorth  2.8 ;
+        foaf:name        "Sun Shoukuan" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "metals, coal" .
 
-<http://dbpedia.org/resource/Henry_Sy,_Jr.>
-        schema:netWorth  "2.8" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Henry_Sy,_Jr.>
+        schema:netWorth  2.8 ;
+        foaf:name        "Henry Sy, Jr." ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Andrew_Tan>
-        schema:netWorth  "2.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Andrew_Tan>
+        schema:netWorth  2.8 ;
+        foaf:name        "Andrew Tan" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kenneth_Tuchman>
-        schema:netWorth  "2.8" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kenneth_Tuchman>
+        schema:netWorth  2.8 ;
+        foaf:name        "Kenneth Tuchman" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "call centers" .
 
-<http://dbpedia.org/resource/Tung_Chee_Hwa>
-        schema:netWorth  "2.8" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Tung_Chee_Hwa>
+        schema:netWorth  2.8 ;
+        foaf:name        "Tung Chee Hwa" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Logistics" ;
         dbo:source       "shipping" .
 
-<http://dbpedia.org/resource/Bulat_Utemuratov>
-        schema:netWorth  "2.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Kazakhstan> ;
+<http://example.org/person/Bulat_Utemuratov>
+        schema:netWorth  2.8 ;
+        foaf:name        "Bulat Utemuratov" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Kazakhstan> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, banking, hotels" .
 
-<http://dbpedia.org/resource/Anna_Katharina_Viessmann>
-        schema:netWorth  "2.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Anna_Katharina_Viessmann>
+        schema:netWorth  2.8 ;
+        foaf:name        "Anna Katharina Viessmann" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "heating and cooling equipment" .
 
-<http://dbpedia.org/resource/Xicheng_Wang_&_family>
-        schema:netWorth  "2.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xicheng_Wang_&_family>
+        schema:netWorth  2.8 ;
+        foaf:name        "Xicheng Wang & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "tires" .
 
-<http://dbpedia.org/resource/Urs_Wietlisbach>
-        schema:netWorth  "2.8" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Urs_Wietlisbach>
+        schema:netWorth  2.8 ;
+        foaf:name        "Urs Wietlisbach" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Wong_Man_Li>
-        schema:netWorth  "2.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Wong_Man_Li>
+        schema:netWorth  2.8 ;
+        foaf:name        "Wong Man Li" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "furniture" .
 
-<http://dbpedia.org/resource/Xie_Weitong>
-        schema:netWorth  "2.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Xie_Weitong>
+        schema:netWorth  2.8 ;
+        foaf:name        "Xie Weitong" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "cobalt" .
 
-<http://dbpedia.org/resource/Xu_Chuanhua_&_family>
-        schema:netWorth  "2.8" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Chuanhua_&_family>
+        schema:netWorth  2.8 ;
+        foaf:name        "Xu Chuanhua & family" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals, logistics" .
 
-<http://dbpedia.org/resource/Ye_Xiaoping>
-        schema:netWorth  "2.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ye_Xiaoping>
+        schema:netWorth  2.8 ;
+        foaf:name        "Ye Xiaoping" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Weiguo_Zhao>
-        schema:netWorth  "2.8" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Weiguo_Zhao>
+        schema:netWorth  2.8 ;
+        foaf:name        "Weiguo Zhao" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT products" .
 
-<http://dbpedia.org/resource/Ben_Ashkenazy>
-        schema:netWorth  "2.7" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ben_Ashkenazy>
+        schema:netWorth  2.7 ;
+        foaf:name        "Ben Ashkenazy" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Bill_Austin>
-        schema:netWorth  "2.7" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bill_Austin>
+        schema:netWorth  2.7 ;
+        foaf:name        "Bill Austin" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hearing aids" .
 
-<http://dbpedia.org/resource/Pavel_Baudis>
-        schema:netWorth  "2.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Pavel_Baudis>
+        schema:netWorth  2.7 ;
+        foaf:name        "Pavel Baudis" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Yvonne_Bauer>
-        schema:netWorth  "2.7" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Yvonne_Bauer>
+        schema:netWorth  2.7 ;
+        foaf:name        "Yvonne Bauer" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "magazines, media" .
 
-<http://dbpedia.org/resource/Giuliana_Benetton>
-        schema:netWorth  "2.7" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Giuliana_Benetton>
+        schema:netWorth  2.7 ;
+        foaf:name        "Giuliana Benetton" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail, investments" .
 
-<http://dbpedia.org/resource/Luciano_Benetton>
-        schema:netWorth  "2.7" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Luciano_Benetton>
+        schema:netWorth  2.7 ;
+        foaf:name        "Luciano Benetton" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail, investments" .
 
-<http://dbpedia.org/resource/Aneel_Bhusri>
-        schema:netWorth  "2.7" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Aneel_Bhusri>
+        schema:netWorth  2.7 ;
+        foaf:name        "Aneel Bhusri" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/George_Bishop>
-        schema:netWorth  "2.7" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Bishop>
+        schema:netWorth  2.7 ;
+        foaf:name        "George Bishop" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Vivek_Chand_Burman>
-        schema:netWorth  "2.7" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vivek_Chand_Burman>
+        schema:netWorth  2.7 ;
+        foaf:name        "Vivek Chand Burman" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Morris_Chang>
-        schema:netWorth  "2.7" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Morris_Chang>
+        schema:netWorth  2.7 ;
+        foaf:name        "Morris Chang" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Jinxia_Chen>
-        schema:netWorth  "2.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jinxia_Chen>
+        schema:netWorth  2.7 ;
+        foaf:name        "Jinxia Chen" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Cho_Jung-ho>
-        schema:netWorth  "2.7" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Cho_Jung-ho>
+        schema:netWorth  2.7 ;
+        foaf:name        "Cho Jung-ho" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Jack_Cockwell>
-        schema:netWorth  "2.7" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Jack_Cockwell>
+        schema:netWorth  2.7 ;
+        foaf:name        "Jack Cockwell" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "real estate, private equity" .
 
-<http://dbpedia.org/resource/Edward_DeBartolo,_Jr.>
-        schema:netWorth  "2.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edward_DeBartolo,_Jr.>
+        schema:netWorth  2.7 ;
+        foaf:name        "Edward DeBartolo, Jr." ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "shopping centers" .
 
-<http://dbpedia.org/resource/Abilio_dos_Santos_Diniz>
-        schema:netWorth  "2.7" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Abilio_dos_Santos_Diniz>
+        schema:netWorth  2.7 ;
+        foaf:name        "Abilio dos Santos Diniz" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/John_Dorrance,_III.>
-        schema:netWorth  "2.7" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/John_Dorrance,_III.>
+        schema:netWorth  2.7 ;
+        foaf:name        "John Dorrance, III." ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Campbell Soup" .
 
-<http://dbpedia.org/resource/Hailiang_Feng>
-        schema:netWorth  "2.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hailiang_Feng>
+        schema:netWorth  2.7 ;
+        foaf:name        "Hailiang Feng" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "copper, education" .
 
-<http://dbpedia.org/resource/Xingjiang_Gao>
-        schema:netWorth  "2.7" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xingjiang_Gao>
+        schema:netWorth  2.7 ;
+        foaf:name        "Xingjiang Gao" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Carlos_Hank_Rhon>
-        schema:netWorth  "2.7" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Carlos_Hank_Rhon>
+        schema:netWorth  2.7 ;
+        foaf:name        "Carlos Hank Rhon" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Vivek_Jain>
-        schema:netWorth  "2.7" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vivek_Jain>
+        schema:netWorth  2.7 ;
+        foaf:name        "Vivek Jain" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Brad_Kelley>
-        schema:netWorth  "2.7" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brad_Kelley>
+        schema:netWorth  2.7 ;
+        foaf:name        "Brad Kelley" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "tobacco" .
 
-<http://dbpedia.org/resource/Alicia_Koplowitz>
-        schema:netWorth  "2.7" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Alicia_Koplowitz>
+        schema:netWorth  2.7 ;
+        foaf:name        "Alicia Koplowitz" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "construction, investments" .
 
-<http://dbpedia.org/resource/Li_Li>
-        schema:netWorth  "2.7" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Li>
+        schema:netWorth  2.7 ;
+        foaf:name        "Li Li" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare" .
 
-<http://dbpedia.org/resource/C._Dean_Metropoulos>
-        schema:netWorth  "2.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/C._Dean_Metropoulos>
+        schema:netWorth  2.7 ;
+        foaf:name        "C. Dean Metropoulos" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Dan_Olsson>
-        schema:netWorth  "2.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Dan_Olsson>
+        schema:netWorth  2.7 ;
+        foaf:name        "Dan Olsson" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Tor_Peterson>
-        schema:netWorth  "2.7" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tor_Peterson>
+        schema:netWorth  2.7 ;
+        foaf:name        "Tor Peterson" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "commodities" .
 
-<http://dbpedia.org/resource/John_Pritzker>
-        schema:netWorth  "2.7" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Pritzker>
+        schema:netWorth  2.7 ;
+        foaf:name        "John Pritzker" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Hussain_Sajwani>
-        schema:netWorth  "2.7" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Arab_Emirates> ;
+<http://example.org/person/Hussain_Sajwani>
+        schema:netWorth  2.7 ;
+        foaf:name        "Hussain Sajwani" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_Arab_Emirates> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Tseng_Cheng>
-        schema:netWorth  "2.7" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tseng_Cheng>
+        schema:netWorth  2.7 ;
+        foaf:name        "Tseng Cheng" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Jerry_Yang>
-        schema:netWorth  "2.7" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jerry_Yang>
+        schema:netWorth  2.7 ;
+        foaf:name        "Jerry Yang" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Yahoo" .
 
-<http://dbpedia.org/resource/Takao_Yasuda>
-        schema:netWorth  "2.7" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Takao_Yasuda>
+        schema:netWorth  2.7 ;
+        foaf:name        "Takao Yasuda" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Yu_Qibing_&_family>
-        schema:netWorth  "2.7" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yu_Qibing_&_family>
+        schema:netWorth  2.7 ;
+        foaf:name        "Yu Qibing & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "glass" .
 
-<http://dbpedia.org/resource/Zhang_Xuezheng>
-        schema:netWorth  "2.7" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Xuezheng>
+        schema:netWorth  2.7 ;
+        foaf:name        "Zhang Xuezheng" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Abdulla_bin_Ahmad_Al_Ghurair_&_family>
-        schema:netWorth  "2.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Arab_Emirates> ;
+<http://example.org/person/Abdulla_bin_Ahmad_Al_Ghurair_&_family>
+        schema:netWorth  2.6 ;
+        foaf:name        "Abdulla bin Ahmad Al Ghurair & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_Arab_Emirates> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Isak_Andic_&_family>
-        schema:netWorth  "2.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Isak_Andic_&_family>
+        schema:netWorth  2.6 ;
+        foaf:name        "Isak Andic & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Harindarpal_Banga>
-        schema:netWorth  "2.6" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Harindarpal_Banga>
+        schema:netWorth  2.6 ;
+        foaf:name        "Harindarpal Banga" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "commodities" .
 
-<http://dbpedia.org/resource/Anne_Beaufour>
-        schema:netWorth  "2.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Anne_Beaufour>
+        schema:netWorth  2.6 ;
+        foaf:name        "Anne Beaufour" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Henri_Beaufour>
-        schema:netWorth  "2.6" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Henri_Beaufour>
+        schema:netWorth  2.6 ;
+        foaf:name        "Henri Beaufour" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Sanjeev_Bikhchandani>
-        schema:netWorth  "2.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sanjeev_Bikhchandani>
+        schema:netWorth  2.6 ;
+        foaf:name        "Sanjeev Bikhchandani" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "Internet" .
 
-<http://dbpedia.org/resource/Norman_Braman>
-        schema:netWorth  "2.6" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Norman_Braman>
+        schema:netWorth  2.6 ;
+        foaf:name        "Norman Braman" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "art, car dealerships" .
 
-<http://dbpedia.org/resource/J._Hyatt_Brown>
-        schema:netWorth  "2.6" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J._Hyatt_Brown>
+        schema:netWorth  2.6 ;
+        foaf:name        "J. Hyatt Brown" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Chen_Lip_Keong>
-        schema:netWorth  "2.6" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Chen_Lip_Keong>
+        schema:netWorth  2.6 ;
+        foaf:name        "Chen Lip Keong" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos, property, energy" .
 
-<http://dbpedia.org/resource/Jim_Coulter>
-        schema:netWorth  "2.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Coulter>
+        schema:netWorth  2.6 ;
+        foaf:name        "Jim Coulter" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Federico_De_Nora>
-        schema:netWorth  "2.6" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Federico_De_Nora>
+        schema:netWorth  2.6 ;
+        foaf:name        "Federico De Nora" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electrodes" .
 
-<http://dbpedia.org/resource/Dong_Wei>
-        schema:netWorth  "2.6" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dong_Wei>
+        schema:netWorth  2.6 ;
+        foaf:name        "Dong Wei" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Sandeep_Engineer>
-        schema:netWorth  "2.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sandeep_Engineer>
+        schema:netWorth  2.6 ;
+        foaf:name        "Sandeep Engineer" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "plastic pipes" .
 
-<http://dbpedia.org/resource/Alceu_Elias_Feldmann>
-        schema:netWorth  "2.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Alceu_Elias_Feldmann>
+        schema:netWorth  2.6 ;
+        foaf:name        "Alceu Elias Feldmann" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Energy" ;
         dbo:source       "fertilizer" .
 
-<http://dbpedia.org/resource/Frank_Fertitta,_III.>
-        schema:netWorth  "2.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Frank_Fertitta,_III.>
+        schema:netWorth  2.6 ;
+        foaf:name        "Frank Fertitta, III." ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "casinos, mixed martial arts" .
 
-<http://dbpedia.org/resource/Lorenzo_Fertitta>
-        schema:netWorth  "2.6" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lorenzo_Fertitta>
+        schema:netWorth  2.6 ;
+        foaf:name        "Lorenzo Fertitta" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "casinos, mixed martial arts" .
 
-<http://dbpedia.org/resource/Doris_Fisher>
-        schema:netWorth  "2.6" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Doris_Fisher>
+        schema:netWorth  2.6 ;
+        foaf:name        "Doris Fisher" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Gap" .
 
-<http://dbpedia.org/resource/Alec_Gores>
-        schema:netWorth  "2.6" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alec_Gores>
+        schema:netWorth  2.6 ;
+        foaf:name        "Alec Gores" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Rajinder_Gupta>
-        schema:netWorth  "2.6" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rajinder_Gupta>
+        schema:netWorth  2.6 ;
+        foaf:name        "Rajinder Gupta" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "textiles, paper" .
 
-<http://dbpedia.org/resource/Igor_Kesaev>
-        schema:netWorth  "2.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Igor_Kesaev>
+        schema:netWorth  2.6 ;
+        foaf:name        "Igor Kesaev" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "tobacco distribution, retail" .
 
-<http://dbpedia.org/resource/Raj_Kumar_&_Kishin_RK>
-        schema:netWorth  "2.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Raj_Kumar_&_Kishin_RK>
+        schema:netWorth  2.6 ;
+        foaf:name        "Raj Kumar & Kishin RK" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Li_Hongxin_&_family>
-        schema:netWorth  "2.6" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Hongxin_&_family>
+        schema:netWorth  2.6 ;
+        foaf:name        "Li Hongxin & family" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper & related products" .
 
-<http://dbpedia.org/resource/Liu_Fangyi>
-        schema:netWorth  "2.6" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Fangyi>
+        schema:netWorth  2.6 ;
+        foaf:name        "Liu Fangyi" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Lu_Zhongfang>
-        schema:netWorth  "2.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Zhongfang>
+        schema:netWorth  2.6 ;
+        foaf:name        "Lu Zhongfang" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Nirmal_Minda>
-        schema:netWorth  "2.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Nirmal_Minda>
+        schema:netWorth  2.6 ;
+        foaf:name        "Nirmal Minda" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Farhad_Moshiri>
-        schema:netWorth  "2.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Farhad_Moshiri>
+        schema:netWorth  2.6 ;
+        foaf:name        "Farhad Moshiri" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Hans_Georg_Naeder>
-        schema:netWorth  "2.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Hans_Georg_Naeder>
+        schema:netWorth  2.6 ;
+        foaf:name        "Hans Georg Naeder" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "prosthetics" .
 
-<http://dbpedia.org/resource/Eren_Ozmen>
-        schema:netWorth  "2.6" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Eren_Ozmen>
+        schema:netWorth  2.6 ;
+        foaf:name        "Eren Ozmen" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "aerospace" .
 
-<http://dbpedia.org/resource/Ronald_Perelman>
-        schema:netWorth  "2.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ronald_Perelman>
+        schema:netWorth  2.6 ;
+        foaf:name        "Ronald Perelman" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "leveraged buyouts" .
 
-<http://dbpedia.org/resource/Ravi_Pillai>
-        schema:netWorth  "2.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ravi_Pillai>
+        schema:netWorth  2.6 ;
+        foaf:name        "Ravi Pillai" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Daniel_Pritzker>
-        schema:netWorth  "2.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Pritzker>
+        schema:netWorth  2.6 ;
+        foaf:name        "Daniel Pritzker" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Matthias_Reinhart>
-        schema:netWorth  "2.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Matthias_Reinhart>
+        schema:netWorth  2.6 ;
+        foaf:name        "Matthias Reinhart" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Alejandro_Santo_Domingo>
-        schema:netWorth  "2.6" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alejandro_Santo_Domingo>
+        schema:netWorth  2.6 ;
+        foaf:name        "Alejandro Santo Domingo" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Vivek_Chaand_Sehgal>
-        schema:netWorth  "2.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Vivek_Chaand_Sehgal>
+        schema:netWorth  2.6 ;
+        foaf:name        "Vivek Chaand Sehgal" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Kavitark_Ram_Shriram>
-        schema:netWorth  "2.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kavitark_Ram_Shriram>
+        schema:netWorth  2.6 ;
+        foaf:name        "Kavitark Ram Shriram" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "venture capital, Google" .
 
-<http://dbpedia.org/resource/Hans_Sy>
-        schema:netWorth  "2.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Hans_Sy>
+        schema:netWorth  2.6 ;
+        foaf:name        "Hans Sy" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Herbert_Sy>
-        schema:netWorth  "2.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Herbert_Sy>
+        schema:netWorth  2.6 ;
+        foaf:name        "Herbert Sy" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Tahir_&_family>
-        schema:netWorth  "2.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Tahir_&_family>
+        schema:netWorth  2.6 ;
+        foaf:name        "Tahir & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Wang_Linpeng>
-        schema:netWorth  "2.6" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Linpeng>
+        schema:netWorth  2.6 ;
+        foaf:name        "Wang Linpeng" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "furniture retailing" .
 
-<http://dbpedia.org/resource/David_Wertheim>
-        schema:netWorth  "2.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/David_Wertheim>
+        schema:netWorth  2.6 ;
+        foaf:name        "David Wertheim" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Coca Cola Israel" .
 
-<http://dbpedia.org/resource/Oprah_Winfrey>
-        schema:netWorth  "2.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Oprah_Winfrey>
+        schema:netWorth  2.6 ;
+        foaf:name        "Oprah Winfrey" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV shows" .
 
-<http://dbpedia.org/resource/Xingming_Zhu>
-        schema:netWorth  "2.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xingming_Zhu>
+        schema:netWorth  2.6 ;
+        foaf:name        "Xingming Zhu" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electrical equipment" .
 
-<http://dbpedia.org/resource/Abdulla_Al_Futtaim_&_family>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Arab_Emirates> ;
+<http://example.org/person/Abdulla_Al_Futtaim_&_family>
+        schema:netWorth  2.5 ;
+        foaf:name        "Abdulla Al Futtaim & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_Arab_Emirates> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto dealers, investments" .
 
-<http://dbpedia.org/resource/Suhail_Bahwan>
-        schema:netWorth  "2.5" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Oman> ;
+<http://example.org/person/Suhail_Bahwan>
+        schema:netWorth  2.5 ;
+        foaf:name        "Suhail Bahwan" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Oman> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Ulrike_Baro>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Ulrike_Baro>
+        schema:netWorth  2.5 ;
+        foaf:name        "Ulrike Baro" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biopharmaceuticals" .
 
-<http://dbpedia.org/resource/David_Baszucki>
-        schema:netWorth  "2.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Baszucki>
+        schema:netWorth  2.5 ;
+        foaf:name        "David Baszucki" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Thor_Bjorgolfsson>
-        schema:netWorth  "2.5" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Iceland> ;
+<http://example.org/person/Thor_Bjorgolfsson>
+        schema:netWorth  2.5 ;
+        foaf:name        "Thor Bjorgolfsson" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Iceland> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Charles_Bronfman>
-        schema:netWorth  "2.5" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Charles_Bronfman>
+        schema:netWorth  2.5 ;
+        foaf:name        "Charles Bronfman" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "liquor" .
 
-<http://dbpedia.org/resource/Chen_Qiongxiang>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Qiongxiang>
+        schema:netWorth  2.5 ;
+        foaf:name        "Chen Qiongxiang" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Chen_Tei-fu>
-        schema:netWorth  "2.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chen_Tei-fu>
+        schema:netWorth  2.5 ;
+        foaf:name        "Chen Tei-fu" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "herbal products" .
 
-<http://dbpedia.org/resource/Chuchat_Petaumpai_&_Daonapa_Petampai>
-        schema:netWorth  "2.5" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Chuchat_Petaumpai_&_Daonapa_Petampai>
+        schema:netWorth  2.5 ;
+        foaf:name        "Chuchat Petaumpai & Daonapa Petampai" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "motorcycle loans" .
 
-<http://dbpedia.org/resource/Leon_G._Cooperman>
-        schema:netWorth  "2.5" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leon_G._Cooperman>
+        schema:netWorth  2.5 ;
+        foaf:name        "Leon G. Cooperman" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Smita_Crishna-Godrej>
-        schema:netWorth  "2.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Smita_Crishna-Godrej>
+        schema:netWorth  2.5 ;
+        foaf:name        "Smita Crishna-Godrej" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Jacques_D'Amours>
-        schema:netWorth  "2.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Jacques_D'Amours>
+        schema:netWorth  2.5 ;
+        foaf:name        "Jacques D'Amours" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "convenience stores" .
 
-<http://dbpedia.org/resource/Maria_Del_Pino>
-        schema:netWorth  "2.5" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Maria_Del_Pino>
+        schema:netWorth  2.5 ;
+        foaf:name        "Maria Del Pino" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Yoichi_&_Keiko_Erikawa>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yoichi_&_Keiko_Erikawa>
+        schema:netWorth  2.5 ;
+        foaf:name        "Yoichi & Keiko Erikawa" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "videogames" .
 
-<http://dbpedia.org/resource/Gerald_Ford>
-        schema:netWorth  "2.5" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gerald_Ford>
+        schema:netWorth  2.5 ;
+        foaf:name        "Gerald Ford" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Adi_Godrej>
-        schema:netWorth  "2.5" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Adi_Godrej>
+        schema:netWorth  2.5 ;
+        foaf:name        "Adi Godrej" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Jamshyd_Godrej>
-        schema:netWorth  "2.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Jamshyd_Godrej>
+        schema:netWorth  2.5 ;
+        foaf:name        "Jamshyd Godrej" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Nadir_Godrej>
-        schema:netWorth  "2.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Nadir_Godrej>
+        schema:netWorth  2.5 ;
+        foaf:name        "Nadir Godrej" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Sanjiv_Goenka>
-        schema:netWorth  "2.5" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sanjiv_Goenka>
+        schema:netWorth  2.5 ;
+        foaf:name        "Sanjiv Goenka" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Stein_Erik_Hagen>
-        schema:netWorth  "2.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Stein_Erik_Hagen>
+        schema:netWorth  2.5 ;
+        foaf:name        "Stein Erik Hagen" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Donald_Horton_&_family>
-        schema:netWorth  "2.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Horton_&_family>
+        schema:netWorth  2.5 ;
+        foaf:name        "Donald Horton & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "homebuilding" .
 
-<http://dbpedia.org/resource/Hu_Yangzhong>
-        schema:netWorth  "2.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hu_Yangzhong>
+        schema:netWorth  2.5 ;
+        foaf:name        "Hu Yangzhong" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "technology" .
 
-<http://dbpedia.org/resource/Baba_Kalyani>
-        schema:netWorth  "2.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Baba_Kalyani>
+        schema:netWorth  2.5 ;
+        foaf:name        "Baba Kalyani" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "engineering" .
 
-<http://dbpedia.org/resource/Stephen_Lansdown>
-        schema:netWorth  "2.5" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Guernsey> ;
+<http://example.org/person/Stephen_Lansdown>
+        schema:netWorth  2.5 ;
+        foaf:name        "Stephen Lansdown" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Guernsey> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Mark_Leonard_&_family>
-        schema:netWorth  "2.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Mark_Leonard_&_family>
+        schema:netWorth  2.5 ;
+        foaf:name        "Mark Leonard & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/William_Li>
-        schema:netWorth  "2.5" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/William_Li>
+        schema:netWorth  2.5 ;
+        foaf:name        "William Li" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "electric vehicles" .
 
-<http://dbpedia.org/resource/K.C._Liu>
-        schema:netWorth  "2.5" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/K.C._Liu>
+        schema:netWorth  2.5 ;
+        foaf:name        "K.C. Liu" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Liu_Xiaodong>
-        schema:netWorth  "2.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Xiaodong>
+        schema:netWorth  2.5 ;
+        foaf:name        "Liu Xiaodong" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "flavorings" .
 
-<http://dbpedia.org/resource/Aloke_Lohia>
-        schema:netWorth  "2.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Aloke_Lohia>
+        schema:netWorth  2.5 ;
+        foaf:name        "Aloke Lohia" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Mohamed_Mansour>
-        schema:netWorth  "2.5" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Egypt> ;
+<http://example.org/person/Mohamed_Mansour>
+        schema:netWorth  2.5 ;
+        foaf:name        "Mohamed Mansour" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Egypt> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kishore_Mariwala>
-        schema:netWorth  "2.5" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kishore_Mariwala>
+        schema:netWorth  2.5 ;
+        foaf:name        "Kishore Mariwala" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Jed_McCaleb>
-        schema:netWorth  "2.5" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jed_McCaleb>
+        schema:netWorth  2.5 ;
+        foaf:name        "Jed McCaleb" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Enhua_Mi>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Enhua_Mi>
+        schema:netWorth  2.5 ;
+        foaf:name        "Enhua Mi" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Willy_Michel>
-        schema:netWorth  "2.5" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Willy_Michel>
+        schema:netWorth  2.5 ;
+        foaf:name        "Willy Michel" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Lachhman_Das_Mittal>
-        schema:netWorth  "2.5" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Lachhman_Das_Mittal>
+        schema:netWorth  2.5 ;
+        foaf:name        "Lachhman Das Mittal" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "tractors" .
 
-<http://dbpedia.org/resource/Ravi_Modi>
-        schema:netWorth  "2.5" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ravi_Modi>
+        schema:netWorth  2.5 ;
+        foaf:name        "Ravi Modi" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "readymade garments" .
 
-<http://dbpedia.org/resource/Charles_Munger>
-        schema:netWorth  "2.5" ;
-        foaf:age         "98" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charles_Munger>
+        schema:netWorth  2.5 ;
+        foaf:name        "Charles Munger" ;
+        foaf:age         98 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Berkshire Hathaway" .
 
-<http://dbpedia.org/resource/Rishad_Naoroji>
-        schema:netWorth  "2.5" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rishad_Naoroji>
+        schema:netWorth  2.5 ;
+        foaf:name        "Rishad Naoroji" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Yongpei_Ni_&_family>
-        schema:netWorth  "2.5" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yongpei_Ni_&_family>
+        schema:netWorth  2.5 ;
+        foaf:name        "Yongpei Ni & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Fatih_Ozmen>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Fatih_Ozmen>
+        schema:netWorth  2.5 ;
+        foaf:name        "Fatih Ozmen" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "aerospace" .
 
-<http://dbpedia.org/resource/Qiu_Minxiu>
-        schema:netWorth  "2.5" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qiu_Minxiu>
+        schema:netWorth  2.5 ;
+        foaf:name        "Qiu Minxiu" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Stewart_Rahr>
-        schema:netWorth  "2.5" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stewart_Rahr>
+        schema:netWorth  2.5 ;
+        foaf:name        "Stewart Rahr" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "drug distribution" .
 
-<http://dbpedia.org/resource/Prathap_Reddy>
-        schema:netWorth  "2.5" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Prathap_Reddy>
+        schema:netWorth  2.5 ;
+        foaf:name        "Prathap Reddy" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare" .
 
-<http://dbpedia.org/resource/Chad_Richison>
-        schema:netWorth  "2.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Chad_Richison>
+        schema:netWorth  2.5 ;
+        foaf:name        "Chad Richison" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "payroll processing" .
 
-<http://dbpedia.org/resource/Karin_Sartorius-Herbst>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Karin_Sartorius-Herbst>
+        schema:netWorth  2.5 ;
+        foaf:name        "Karin Sartorius-Herbst" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biopharmaceuticals" .
 
-<http://dbpedia.org/resource/Christiane_Schoeller>
-        schema:netWorth  "2.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christiane_Schoeller>
+        schema:netWorth  2.5 ;
+        foaf:name        "Christiane Schoeller" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "publishing" .
 
-<http://dbpedia.org/resource/Suh_Kyung-bae>
-        schema:netWorth  "2.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Suh_Kyung-bae>
+        schema:netWorth  2.5 ;
+        foaf:name        "Suh Kyung-bae" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Glen_Taylor>
-        schema:netWorth  "2.5" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Glen_Taylor>
+        schema:netWorth  2.5 ;
+        foaf:name        "Glen Taylor" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "printing" .
 
-<http://dbpedia.org/resource/Nadia_Thiele>
-        schema:netWorth  "2.5" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Nadia_Thiele>
+        schema:netWorth  2.5 ;
+        foaf:name        "Nadia Thiele" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Wang_Minwen>
-        schema:netWorth  "2.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Minwen>
+        schema:netWorth  2.5 ;
+        foaf:name        "Wang Minwen" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductor" .
 
-<http://dbpedia.org/resource/Huijiao_Yu>
-        schema:netWorth  "2.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huijiao_Yu>
+        schema:netWorth  2.5 ;
+        foaf:name        "Huijiao Yu" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "package delivery" .
 
-<http://dbpedia.org/resource/Zhang_Ning_&_family>
-        schema:netWorth  "2.5" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Zhang_Ning_&_family>
+        schema:netWorth  2.5 ;
+        foaf:name        "Zhang Ning & family" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Zhao_Tao>
-        schema:netWorth  "2.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Zhao_Tao>
+        schema:netWorth  2.5 ;
+        foaf:name        "Zhao Tao" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Hongyi_Zhou>
-        schema:netWorth  "2.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hongyi_Zhou>
+        schema:netWorth  2.5 ;
+        foaf:name        "Hongyi Zhou" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "security software" .
 
-<http://dbpedia.org/resource/Rajendra_Agarwal>
-        schema:netWorth  "2.4" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rajendra_Agarwal>
+        schema:netWorth  2.4 ;
+        foaf:name        "Rajendra Agarwal" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/George_Argyros_&_family>
-        schema:netWorth  "2.4" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Argyros_&_family>
+        schema:netWorth  2.4 ;
+        foaf:name        "George Argyros & family" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/Edward_Bass>
-        schema:netWorth  "2.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edward_Bass>
+        schema:netWorth  2.4 ;
+        foaf:name        "Edward Bass" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, investments" .
 
-<http://dbpedia.org/resource/Banwari_Lal_Bawri>
-        schema:netWorth  "2.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Banwari_Lal_Bawri>
+        schema:netWorth  2.4 ;
+        foaf:name        "Banwari Lal Bawri" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Girdhari_Lal_Bawri>
-        schema:netWorth  "2.4" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Girdhari_Lal_Bawri>
+        schema:netWorth  2.4 ;
+        foaf:name        "Girdhari Lal Bawri" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Chao_Teng-hsiung>
-        schema:netWorth  "2.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chao_Teng-hsiung>
+        schema:netWorth  2.4 ;
+        foaf:name        "Chao Teng-hsiung" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Zhisong_Chen>
-        schema:netWorth  "2.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhisong_Chen>
+        schema:netWorth  2.4 ;
+        foaf:name        "Zhisong Chen" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "communication equipment" .
 
-<http://dbpedia.org/resource/Chey_Tae-won>
-        schema:netWorth  "2.4" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Chey_Tae-won>
+        schema:netWorth  2.4 ;
+        foaf:name        "Chey Tae-won" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Telecom" ;
         dbo:source       "oil, semiconductor" .
 
-<http://dbpedia.org/resource/Choo_Chong_Ngen>
-        schema:netWorth  "2.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Choo_Chong_Ngen>
+        schema:netWorth  2.4 ;
+        foaf:name        "Choo Chong Ngen" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/John_Coates>
-        schema:netWorth  "2.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/John_Coates>
+        schema:netWorth  2.4 ;
+        foaf:name        "John Coates" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "online gambling" .
 
-<http://dbpedia.org/resource/Alexandra_Daitch>
-        schema:netWorth  "2.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alexandra_Daitch>
+        schema:netWorth  2.4 ;
+        foaf:name        "Alexandra Daitch" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Chetan_Dube>
-        schema:netWorth  "2.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Chetan_Dube>
+        schema:netWorth  2.4 ;
+        foaf:name        "Chetan Dube" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "technology" .
 
-<http://dbpedia.org/resource/Daniel_Ek>
-        schema:netWorth  "2.4" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Daniel_Ek>
+        schema:netWorth  2.4 ;
+        foaf:name        "Daniel Ek" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Technology" ;
         dbo:source       "Spotify" .
 
-<http://dbpedia.org/resource/John_Fisher>
-        schema:netWorth  "2.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Fisher>
+        schema:netWorth  2.4 ;
+        foaf:name        "John Fisher" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Gap" .
 
-<http://dbpedia.org/resource/Bernard_Fraisse_&_family>
-        schema:netWorth  "2.4" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Bernard_Fraisse_&_family>
+        schema:netWorth  2.4 ;
+        foaf:name        "Bernard Fraisse & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/William_Franke>
-        schema:netWorth  "2.4" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Franke>
+        schema:netWorth  2.4 ;
+        foaf:name        "William Franke" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "low-cost airlines" .
 
-<http://dbpedia.org/resource/Caroline_Hagen_Kjos>
-        schema:netWorth  "2.4" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Caroline_Hagen_Kjos>
+        schema:netWorth  2.4 ;
+        foaf:name        "Caroline Hagen Kjos" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "diversified" ;
         dbo:source       "conglomerate" .
 
-<http://dbpedia.org/resource/Lam_Kong>
-        schema:netWorth  "2.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lam_Kong>
+        schema:netWorth  2.4 ;
+        foaf:name        "Lam Kong" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Hans_Langer>
-        schema:netWorth  "2.4" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Hans_Langer>
+        schema:netWorth  2.4 ;
+        foaf:name        "Hans Langer" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "3D printing" .
 
-<http://dbpedia.org/resource/Joe_Lau>
-        schema:netWorth  "2.4" ;
-        foaf:age         "32" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joe_Lau>
+        schema:netWorth  2.4 ;
+        foaf:name        "Joe Lau" ;
+        foaf:age         32 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "blockchain, technology" .
 
-<http://dbpedia.org/resource/Kevin_David_Lehmann>
-        schema:netWorth  "2.4" ;
-        foaf:age         "19" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Kevin_David_Lehmann>
+        schema:netWorth  2.4 ;
+        foaf:name        "Kevin David Lehmann" ;
+        foaf:age         19 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/Liang_Qin_&_family>
-        schema:netWorth  "2.4" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Qin_&_family>
+        schema:netWorth  2.4 ;
+        foaf:name        "Liang Qin & family" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductor devices" .
 
-<http://dbpedia.org/resource/Peter_Lim>
-        schema:netWorth  "2.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Peter_Lim>
+        schema:netWorth  2.4 ;
+        foaf:name        "Peter Lim" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Sarah_MacMillan>
-        schema:netWorth  "2.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sarah_MacMillan>
+        schema:netWorth  2.4 ;
+        foaf:name        "Sarah MacMillan" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Kalanithi_Maran>
-        schema:netWorth  "2.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kalanithi_Maran>
+        schema:netWorth  2.4 ;
+        foaf:name        "Kalanithi Maran" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Lirio_Parisotto>
-        schema:netWorth  "2.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Lirio_Parisotto>
+        schema:netWorth  2.4 ;
+        foaf:name        "Lirio Parisotto" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Rajan_Raheja_&_family>
-        schema:netWorth  "2.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rajan_Raheja_&_family>
+        schema:netWorth  2.4 ;
+        foaf:name        "Rajan Raheja & family" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Alberto_Roemmers>
-        schema:netWorth  "2.4" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/Argentina> ;
+<http://example.org/person/Alberto_Roemmers>
+        schema:netWorth  2.4 ;
+        foaf:name        "Alberto Roemmers" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/Argentina> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Rodney_Sacks>
-        schema:netWorth  "2.4" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Rodney_Sacks>
+        schema:netWorth  2.4 ;
+        foaf:name        "Rodney Sacks" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "energy drinks" .
 
-<http://dbpedia.org/resource/Ferit_Faik_Sahenk>
-        schema:netWorth  "2.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Ferit_Faik_Sahenk>
+        schema:netWorth  2.4 ;
+        foaf:name        "Ferit Faik Sahenk" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Hilton_Schlosberg>
-        schema:netWorth  "2.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Hilton_Schlosberg>
+        schema:netWorth  2.4 ;
+        foaf:name        "Hilton Schlosberg" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "energy drinks" .
 
-<http://dbpedia.org/resource/Alberto_Siccardi_&_family>
-        schema:netWorth  "2.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Alberto_Siccardi_&_family>
+        schema:netWorth  2.4 ;
+        foaf:name        "Alberto Siccardi & family" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Salil_Singhal>
-        schema:netWorth  "2.4" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Salil_Singhal>
+        schema:netWorth  2.4 ;
+        foaf:name        "Salil Singhal" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "agrochemicals" .
 
-<http://dbpedia.org/resource/Lucy_Stitzer>
-        schema:netWorth  "2.4" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lucy_Stitzer>
+        schema:netWorth  2.4 ;
+        foaf:name        "Lucy Stitzer" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Otto_Toto_Sugiri>
-        schema:netWorth  "2.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Otto_Toto_Sugiri>
+        schema:netWorth  2.4 ;
+        foaf:name        "Otto Toto Sugiri" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Technology" ;
         dbo:source       "data centers" .
 
-<http://dbpedia.org/resource/Harley_Sy>
-        schema:netWorth  "2.4" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Harley_Sy>
+        schema:netWorth  2.4 ;
+        foaf:name        "Harley Sy" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Teresita_Sy-Coson>
-        schema:netWorth  "2.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Teresita_Sy-Coson>
+        schema:netWorth  2.4 ;
+        foaf:name        "Teresita Sy-Coson" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Katsumi_Tada>
-        schema:netWorth  "2.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Katsumi_Tada>
+        schema:netWorth  2.4 ;
+        foaf:name        "Katsumi Tada" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Tang_Yiu>
-        schema:netWorth  "2.4" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Tang_Yiu>
+        schema:netWorth  2.4 ;
+        foaf:name        "Tang Yiu" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Jeff_Tangney>
-        schema:netWorth  "2.4" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeff_Tangney>
+        schema:netWorth  2.4 ;
+        foaf:name        "Jeff Tangney" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare IT" .
 
-<http://dbpedia.org/resource/Lottie_Tham_&_family>
-        schema:netWorth  "2.4" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Lottie_Tham_&_family>
+        schema:netWorth  2.4 ;
+        foaf:name        "Lottie Tham & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "H&M" .
 
-<http://dbpedia.org/resource/T.Y._Tsai>
-        schema:netWorth  "2.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/T.Y._Tsai>
+        schema:netWorth  2.4 ;
+        foaf:name        "T.Y. Tsai" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Timur_Turlov>
-        schema:netWorth  "2.4" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Timur_Turlov>
+        schema:netWorth  2.4 ;
+        foaf:name        "Timur Turlov" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "stock brokerage" .
 
-<http://dbpedia.org/resource/Hamdi_Ulukaya>
-        schema:netWorth  "2.4" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Hamdi_Ulukaya>
+        schema:netWorth  2.4 ;
+        foaf:name        "Hamdi Ulukaya" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "greek yogurt" .
 
-<http://dbpedia.org/resource/Peter_Unger>
-        schema:netWorth  "2.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Peter_Unger>
+        schema:netWorth  2.4 ;
+        foaf:name        "Peter Unger" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto repair" .
 
-<http://dbpedia.org/resource/Nikil_Viswanathan>
-        schema:netWorth  "2.4" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nikil_Viswanathan>
+        schema:netWorth  2.4 ;
+        foaf:name        "Nikil Viswanathan" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "blockchain technology" .
 
-<http://dbpedia.org/resource/Anthony_Wood>
-        schema:netWorth  "2.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Anthony_Wood>
+        schema:netWorth  2.4 ;
+        foaf:name        "Anthony Wood" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Roku" .
 
-<http://dbpedia.org/resource/Zhang_Hongwei>
-        schema:netWorth  "2.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Hongwei>
+        schema:netWorth  2.4 ;
+        foaf:name        "Zhang Hongwei" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "oil, banking" .
 
-<http://dbpedia.org/resource/Zhang_Li>
-        schema:netWorth  "2.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Li>
+        schema:netWorth  2.4 ;
+        foaf:name        "Zhang Li" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Houshan_Bai>
-        schema:netWorth  "2.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Houshan_Bai>
+        schema:netWorth  2.3 ;
+        foaf:name        "Houshan Bai" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "lithium battery" .
 
-<http://dbpedia.org/resource/Alex_Beard>
-        schema:netWorth  "2.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Alex_Beard>
+        schema:netWorth  2.3 ;
+        foaf:name        "Alex Beard" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, commodities" .
 
-<http://dbpedia.org/resource/Koos_Bekker>
-        schema:netWorth  "2.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Africa> ;
+<http://example.org/person/Koos_Bekker>
+        schema:netWorth  2.3 ;
+        foaf:name        "Koos Bekker" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/South_Africa> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, investments" .
 
-<http://dbpedia.org/resource/William_Boyd_&_family>
-        schema:netWorth  "2.3" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Boyd_&_family>
+        schema:netWorth  2.3 ;
+        foaf:name        "William Boyd & family" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos, banking" .
 
-<http://dbpedia.org/resource/Timothy_Boyle>
-        schema:netWorth  "2.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Timothy_Boyle>
+        schema:netWorth  2.3 ;
+        foaf:name        "Timothy Boyle" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Columbia Sportswear" .
 
-<http://dbpedia.org/resource/Anand_Burman>
-        schema:netWorth  "2.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anand_Burman>
+        schema:netWorth  2.3 ;
+        foaf:name        "Anand Burman" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Richard_Chandler>
-        schema:netWorth  "2.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/New_Zealand> ;
+<http://example.org/person/Richard_Chandler>
+        schema:netWorth  2.3 ;
+        foaf:name        "Richard Chandler" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/New_Zealand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/R.G._Chandramogan>
-        schema:netWorth  "2.3" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/R.G._Chandramogan>
+        schema:netWorth  2.3 ;
+        foaf:name        "R.G. Chandramogan" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "dairy" .
 
-<http://dbpedia.org/resource/Cho_Young-sik>
-        schema:netWorth  "2.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Cho_Young-sik>
+        schema:netWorth  2.3 ;
+        foaf:name        "Cho Young-sik" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "diagnostics" .
 
-<http://dbpedia.org/resource/Chu_Lam_Yiu>
-        schema:netWorth  "2.3" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Chu_Lam_Yiu>
+        schema:netWorth  2.3 ;
+        foaf:name        "Chu Lam Yiu" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "flavorings" .
 
-<http://dbpedia.org/resource/Kommer_Damen>
-        schema:netWorth  "2.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Kommer_Damen>
+        schema:netWorth  2.3 ;
+        foaf:name        "Kommer Damen" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "shipbuilding" .
 
-<http://dbpedia.org/resource/Henry_Davis>
-        schema:netWorth  "2.3" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Davis>
+        schema:netWorth  2.3 ;
+        foaf:name        "Henry Davis" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beef processing" .
 
-<http://dbpedia.org/resource/Ray_Davis>
-        schema:netWorth  "2.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ray_Davis>
+        schema:netWorth  2.3 ;
+        foaf:name        "Ray Davis" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "pipelines" .
 
-<http://dbpedia.org/resource/Stephen_Feinberg>
-        schema:netWorth  "2.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stephen_Feinberg>
+        schema:netWorth  2.3 ;
+        foaf:name        "Stephen Feinberg" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Kenneth_Feld_&_family>
-        schema:netWorth  "2.3" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kenneth_Feld_&_family>
+        schema:netWorth  2.3 ;
+        foaf:name        "Kenneth Feld & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "live entertainment" .
 
-<http://dbpedia.org/resource/Alexander_Frolov>
-        schema:netWorth  "2.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Frolov>
+        schema:netWorth  2.3 ;
+        foaf:name        "Alexander Frolov" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining, steel" .
 
-<http://dbpedia.org/resource/Mario_Germano_Giuliani>
-        schema:netWorth  "2.3" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Mario_Germano_Giuliani>
+        schema:netWorth  2.3 ;
+        foaf:name        "Mario Germano Giuliani" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Serge_Godin>
-        schema:netWorth  "2.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Serge_Godin>
+        schema:netWorth  2.3 ;
+        foaf:name        "Serge Godin" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "information technology" .
 
-<http://dbpedia.org/resource/Noam_Gottesman>
-        schema:netWorth  "2.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Noam_Gottesman>
+        schema:netWorth  2.3 ;
+        foaf:name        "Noam Gottesman" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Philip_&_Cristina_Green>
-        schema:netWorth  "2.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Philip_&_Cristina_Green>
+        schema:netWorth  2.3 ;
+        foaf:name        "Philip & Cristina Green" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Yusuf_Hamied>
-        schema:netWorth  "2.3" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Yusuf_Hamied>
+        schema:netWorth  2.3 ;
+        foaf:name        "Yusuf Hamied" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Bill_Haslam>
-        schema:netWorth  "2.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bill_Haslam>
+        schema:netWorth  2.3 ;
+        foaf:name        "Bill Haslam" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "gas stations" .
 
-<http://dbpedia.org/resource/Hans-Werner_Hector>
-        schema:netWorth  "2.3" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Hans-Werner_Hector>
+        schema:netWorth  2.3 ;
+        foaf:name        "Hans-Werner Hector" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "SAP" .
 
-<http://dbpedia.org/resource/Ho_Hung_Anh>
-        schema:netWorth  "2.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Ho_Hung_Anh>
+        schema:netWorth  2.3 ;
+        foaf:name        "Ho Hung Anh" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "consumer products, banking" .
 
-<http://dbpedia.org/resource/Douglas_Hsu>
-        schema:netWorth  "2.3" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Douglas_Hsu>
+        schema:netWorth  2.3 ;
+        foaf:name        "Douglas Hsu" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Erman_Ilicak>
-        schema:netWorth  "2.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Erman_Ilicak>
+        schema:netWorth  2.3 ;
+        foaf:name        "Erman Ilicak" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Zhaobai_Jiang>
-        schema:netWorth  "2.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhaobai_Jiang>
+        schema:netWorth  2.3 ;
+        foaf:name        "Zhaobai Jiang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Osman_Kibar>
-        schema:netWorth  "2.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Osman_Kibar>
+        schema:netWorth  2.3 ;
+        foaf:name        "Osman Kibar" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Adam_Kwok>
-        schema:netWorth  "2.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Adam_Kwok>
+        schema:netWorth  2.3 ;
+        foaf:name        "Adam Kwok" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Frank_Laukien>
-        schema:netWorth  "2.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Frank_Laukien>
+        schema:netWorth  2.3 ;
+        foaf:name        "Frank Laukien" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "scientific equipment" .
 
-<http://dbpedia.org/resource/Louis_Le_Duff>
-        schema:netWorth  "2.3" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Louis_Le_Duff>
+        schema:netWorth  2.3 ;
+        foaf:name        "Louis Le Duff" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "bakeries" .
 
-<http://dbpedia.org/resource/Solomon_Lew>
-        schema:netWorth  "2.3" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Solomon_Lew>
+        schema:netWorth  2.3 ;
+        foaf:name        "Solomon Lew" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Liang_Rubo>
-        schema:netWorth  "2.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Rubo>
+        schema:netWorth  2.3 ;
+        foaf:name        "Liang Rubo" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "TikTok" .
 
-<http://dbpedia.org/resource/Liang_Zhaoxian>
-        schema:netWorth  "2.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Zhaoxian>
+        schema:netWorth  2.3 ;
+        foaf:name        "Liang Zhaoxian" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "appliances" .
 
-<http://dbpedia.org/resource/Prayudh_Mahagitsiri>
-        schema:netWorth  "2.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Prayudh_Mahagitsiri>
+        schema:netWorth  2.3 ;
+        foaf:name        "Prayudh Mahagitsiri" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "coffee, shipping" .
 
-<http://dbpedia.org/resource/Clayton_Mathile>
-        schema:netWorth  "2.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Clayton_Mathile>
+        schema:netWorth  2.3 ;
+        foaf:name        "Clayton Mathile" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "pet food" .
 
-<http://dbpedia.org/resource/Erwin_Franz_Mueller>
-        schema:netWorth  "2.3" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Erwin_Franz_Mueller>
+        schema:netWorth  2.3 ;
+        foaf:name        "Erwin Franz Mueller" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/David_Murdock>
-        schema:netWorth  "2.3" ;
-        foaf:age         "98" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Murdock>
+        schema:netWorth  2.3 ;
+        foaf:name        "David Murdock" ;
+        foaf:age         98 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Dole, real estate" .
 
-<http://dbpedia.org/resource/Rubens_Ometto_Silveira_Mello>
-        schema:netWorth  "2.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Rubens_Ometto_Silveira_Mello>
+        schema:netWorth  2.3 ;
+        foaf:name        "Rubens Ometto Silveira Mello" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Energy" ;
         dbo:source       "sugar, ethanol" .
 
-<http://dbpedia.org/resource/Erik_Paulsson_&_family>
-        schema:netWorth  "2.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Erik_Paulsson_&_family>
+        schema:netWorth  2.3 ;
+        foaf:name        "Erik Paulsson & family" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "construction, real estate" .
 
-<http://dbpedia.org/resource/Heloise_Pratt>
-        schema:netWorth  "2.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Heloise_Pratt>
+        schema:netWorth  2.3 ;
+        foaf:name        "Heloise Pratt" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing, investment" .
 
-<http://dbpedia.org/resource/Qiu_Jianping_&_family>
-        schema:netWorth  "2.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qiu_Jianping_&_family>
+        schema:netWorth  2.3 ;
+        foaf:name        "Qiu Jianping & family" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hand tools" .
 
-<http://dbpedia.org/resource/Dirk_Rossmann_&_family>
-        schema:netWorth  "2.3" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Dirk_Rossmann_&_family>
+        schema:netWorth  2.3 ;
+        foaf:name        "Dirk Rossmann & family" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/Karin_Schick>
-        schema:netWorth  "2.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Karin_Schick>
+        schema:netWorth  2.3 ;
+        foaf:name        "Karin Schick" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "information technology" .
 
-<http://dbpedia.org/resource/Stephan_Schmidheiny>
-        schema:netWorth  "2.3" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Stephan_Schmidheiny>
+        schema:netWorth  2.3 ;
+        foaf:name        "Stephan Schmidheiny" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Wenrong_Shen>
-        schema:netWorth  "2.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wenrong_Shen>
+        schema:netWorth  2.3 ;
+        foaf:name        "Wenrong Shen" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel production" .
 
-<http://dbpedia.org/resource/Guangxin_Sun>
-        schema:netWorth  "2.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guangxin_Sun>
+        schema:netWorth  2.3 ;
+        foaf:name        "Guangxin Sun" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Mengquan_Sun_&_family>
-        schema:netWorth  "2.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Mengquan_Sun_&_family>
+        schema:netWorth  2.3 ;
+        foaf:name        "Mengquan Sun & family" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "edible oil" .
 
-<http://dbpedia.org/resource/Thomas_Tull>
-        schema:netWorth  "2.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Tull>
+        schema:netWorth  2.3 ;
+        foaf:name        "Thomas Tull" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "movies, investments" .
 
-<http://dbpedia.org/resource/Ted_Turner>
-        schema:netWorth  "2.3" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ted_Turner>
+        schema:netWorth  2.3 ;
+        foaf:name        "Ted Turner" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "cable television" .
 
-<http://dbpedia.org/resource/David_Walentas>
-        schema:netWorth  "2.3" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Walentas>
+        schema:netWorth  2.3 ;
+        foaf:name        "David Walentas" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Yingming_Wu>
-        schema:netWorth  "2.3" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yingming_Wu>
+        schema:netWorth  2.3 ;
+        foaf:name        "Yingming Wu" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Yingzhuo_Xu>
-        schema:netWorth  "2.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yingzhuo_Xu>
+        schema:netWorth  2.3 ;
+        foaf:name        "Yingzhuo Xu" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Christoph_Zeller>
-        schema:netWorth  "2.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Liechtenstein> ;
+<http://example.org/person/Christoph_Zeller>
+        schema:netWorth  2.3 ;
+        foaf:name        "Christoph Zeller" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Liechtenstein> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "dental materials" .
 
-<http://dbpedia.org/resource/Zhang_Wanzhen>
-        schema:netWorth  "2.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Wanzhen>
+        schema:netWorth  2.3 ;
+        foaf:name        "Zhang Wanzhen" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics components" .
 
-<http://dbpedia.org/resource/Xiaojuan_Zhang>
-        schema:netWorth  "2.3" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiaojuan_Zhang>
+        schema:netWorth  2.3 ;
+        foaf:name        "Xiaojuan Zhang" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "logistics" .
 
-<http://dbpedia.org/resource/Michael_Ashcroft>
-        schema:netWorth  "2.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Michael_Ashcroft>
+        schema:netWorth  2.2 ;
+        foaf:name        "Michael Ashcroft" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "security" .
 
-<http://dbpedia.org/resource/Alex_Atallah>
-        schema:netWorth  "2.2" ;
-        foaf:age         "30" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alex_Atallah>
+        schema:netWorth  2.2 ;
+        foaf:name        "Alex Atallah" ;
+        foaf:age         30 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "online marketplace" .
 
-<http://dbpedia.org/resource/Brett_Blundy>
-        schema:netWorth  "2.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Brett_Blundy>
+        schema:netWorth  2.2 ;
+        foaf:name        "Brett Blundy" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, agribusiness" .
 
-<http://dbpedia.org/resource/Chris_Britt>
-        schema:netWorth  "2.2" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Chris_Britt>
+        schema:netWorth  2.2 ;
+        foaf:name        "Chris Britt" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Cen_Junda>
-        schema:netWorth  "2.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cen_Junda>
+        schema:netWorth  2.2 ;
+        foaf:name        "Cen Junda" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Yadu_Hari_Dalmia_&_family>
-        schema:netWorth  "2.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Yadu_Hari_Dalmia_&_family>
+        schema:netWorth  2.2 ;
+        foaf:name        "Yadu Hari Dalmia & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cement" .
 
-<http://dbpedia.org/resource/Zhenggang_Dou>
-        schema:netWorth  "2.2" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhenggang_Dou>
+        schema:netWorth  2.2 ;
+        foaf:name        "Zhenggang Dou" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "energy, chemicals" .
 
-<http://dbpedia.org/resource/Weimin_Du>
-        schema:netWorth  "2.2" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Weimin_Du>
+        schema:netWorth  2.2 ;
+        foaf:name        "Weimin Du" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "vaccines" .
 
-<http://dbpedia.org/resource/Devin_Finzer>
-        schema:netWorth  "2.2" ;
-        foaf:age         "31" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Devin_Finzer>
+        schema:netWorth  2.2 ;
+        foaf:name        "Devin Finzer" ;
+        foaf:age         31 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "online marketplace" .
 
-<http://dbpedia.org/resource/Robert_Friedland>
-        schema:netWorth  "2.2" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Friedland>
+        schema:netWorth  2.2 ;
+        foaf:name        "Robert Friedland" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Phillip_Frost>
-        schema:netWorth  "2.2" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Phillip_Frost>
+        schema:netWorth  2.2 ;
+        foaf:name        "Phillip Frost" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Jeffrey_Gundlach>
-        schema:netWorth  "2.2" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeffrey_Gundlach>
+        schema:netWorth  2.2 ;
+        foaf:name        "Jeffrey Gundlach" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/John_Hancock>
-        schema:netWorth  "2.2" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/John_Hancock>
+        schema:netWorth  2.2 ;
+        foaf:name        "John Hancock" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Georg_Haub>
-        schema:netWorth  "2.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Georg_Haub>
+        schema:netWorth  2.2 ;
+        foaf:name        "Georg Haub" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Hortensia_Herrero>
-        schema:netWorth  "2.2" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Hortensia_Herrero>
+        schema:netWorth  2.2 ;
+        foaf:name        "Hortensia Herrero" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/B._Wayne_Hughes,_Jr.>
-        schema:netWorth  "2.2" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/B._Wayne_Hughes,_Jr.>
+        schema:netWorth  2.2 ;
+        foaf:name        "B. Wayne Hughes, Jr." ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "storage facilities" .
 
-<http://dbpedia.org/resource/Bruce_Karsh>
-        schema:netWorth  "2.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bruce_Karsh>
+        schema:netWorth  2.2 ;
+        foaf:name        "Bruce Karsh" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Shlomo_Kramer>
-        schema:netWorth  "2.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Shlomo_Kramer>
+        schema:netWorth  2.2 ;
+        foaf:name        "Shlomo Kramer" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Technology" ;
         dbo:source       "software, investments" .
 
-<http://dbpedia.org/resource/Jonathan_Kwok>
-        schema:netWorth  "2.2" ;
-        foaf:age         "30" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Jonathan_Kwok>
+        schema:netWorth  2.2 ;
+        foaf:name        "Jonathan Kwok" ;
+        foaf:age         30 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "Real Estate" .
 
-<http://dbpedia.org/resource/Christian_Latouche>
-        schema:netWorth  "2.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Christian_Latouche>
+        schema:netWorth  2.2 ;
+        foaf:name        "Christian Latouche" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "accounting services" .
 
-<http://dbpedia.org/resource/Martin_Lau>
-        schema:netWorth  "2.2" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Martin_Lau>
+        schema:netWorth  2.2 ;
+        foaf:name        "Martin Lau" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Li_Wa>
-        schema:netWorth  "2.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Li_Wa>
+        schema:netWorth  2.2 ;
+        foaf:name        "Li Wa" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Liang_Xinjun>
-        schema:netWorth  "2.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liang_Xinjun>
+        schema:netWorth  2.2 ;
+        foaf:name        "Liang Xinjun" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "conglomerate" .
 
-<http://dbpedia.org/resource/Lin_Chang_Su-O>
-        schema:netWorth  "2.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Lin_Chang_Su-O>
+        schema:netWorth  2.2 ;
+        foaf:name        "Lin Chang Su-O" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lin_Fanlian>
-        schema:netWorth  "2.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Fanlian>
+        schema:netWorth  2.2 ;
+        foaf:name        "Lin Fanlian" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "energy, real estate" .
 
-<http://dbpedia.org/resource/Lin_Lairong_&_family>
-        schema:netWorth  "2.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Lairong_&_family>
+        schema:netWorth  2.2 ;
+        foaf:name        "Lin Lairong & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "iron ore mining" .
 
-<http://dbpedia.org/resource/Daniel_Lubetzky>
-        schema:netWorth  "2.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Lubetzky>
+        schema:netWorth  2.2 ;
+        foaf:name        "Daniel Lubetzky" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "snack bars" .
 
-<http://dbpedia.org/resource/Howard_Marks>
-        schema:netWorth  "2.2" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Howard_Marks>
+        schema:netWorth  2.2 ;
+        foaf:name        "Howard Marks" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Craig_McCaw>
-        schema:netWorth  "2.2" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Craig_McCaw>
+        schema:netWorth  2.2 ;
+        foaf:name        "Craig McCaw" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Vincent_McMahon>
-        schema:netWorth  "2.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Vincent_McMahon>
+        schema:netWorth  2.2 ;
+        foaf:name        "Vincent McMahon" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "entertainment" .
 
-<http://dbpedia.org/resource/Mu_Rongjun>
-        schema:netWorth  "2.2" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Mu_Rongjun>
+        schema:netWorth  2.2 ;
+        foaf:name        "Mu Rongjun" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Jonathan_Nelson>
-        schema:netWorth  "2.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jonathan_Nelson>
+        schema:netWorth  2.2 ;
+        foaf:name        "Jonathan Nelson" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Bianca_Rinehart>
-        schema:netWorth  "2.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Bianca_Rinehart>
+        schema:netWorth  2.2 ;
+        foaf:name        "Bianca Rinehart" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Ginia_Rinehart>
-        schema:netWorth  "2.2" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Ginia_Rinehart>
+        schema:netWorth  2.2 ;
+        foaf:name        "Ginia Rinehart" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Filiz_Sahenk>
-        schema:netWorth  "2.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Filiz_Sahenk>
+        schema:netWorth  2.2 ;
+        foaf:name        "Filiz Sahenk" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/S.D._Shibulal>
-        schema:netWorth  "2.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/S.D._Shibulal>
+        schema:netWorth  2.2 ;
+        foaf:name        "S.D. Shibulal" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Alexander_Svetakov>
-        schema:netWorth  "2.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Svetakov>
+        schema:netWorth  2.2 ;
+        foaf:name        "Alexander Svetakov" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jeffrey_Talpins>
-        schema:netWorth  "2.2" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeffrey_Talpins>
+        schema:netWorth  2.2 ;
+        foaf:name        "Jeffrey Talpins" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge fund" .
 
-<http://dbpedia.org/resource/Ming_Tian>
-        schema:netWorth  "2.2" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ming_Tian>
+        schema:netWorth  2.2 ;
+        foaf:name        "Ming Tian" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "measuring instruments" .
 
-<http://dbpedia.org/resource/Arvind_Tiku>
-        schema:netWorth  "2.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Arvind_Tiku>
+        schema:netWorth  2.2 ;
+        foaf:name        "Arvind Tiku" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas, investments" .
 
-<http://dbpedia.org/resource/Torsten_Toeller>
-        schema:netWorth  "2.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Torsten_Toeller>
+        schema:netWorth  2.2 ;
+        foaf:name        "Torsten Toeller" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "pet food" .
 
-<http://dbpedia.org/resource/Riaz_Valani>
-        schema:netWorth  "2.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Riaz_Valani>
+        schema:netWorth  2.2 ;
+        foaf:name        "Riaz Valani" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "e-cigarettes" .
 
-<http://dbpedia.org/resource/Pieter_van_der_Does>
-        schema:netWorth  "2.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Pieter_van_der_Does>
+        schema:netWorth  2.2 ;
+        foaf:name        "Pieter van der Does" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Technology" ;
         dbo:source       "payments software" .
 
-<http://dbpedia.org/resource/Lang_Walker>
-        schema:netWorth  "2.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Lang_Walker>
+        schema:netWorth  2.2 ;
+        foaf:name        "Lang Walker" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Hope_Welker>
-        schema:netWorth  "2.2" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Hope_Welker>
+        schema:netWorth  2.2 ;
+        foaf:name        "Hope Welker" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Xie_Bingkun_&_family>
-        schema:netWorth  "2.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xie_Bingkun_&_family>
+        schema:netWorth  2.2 ;
+        foaf:name        "Xie Bingkun & family" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "pearlescent pigments" .
 
-<http://dbpedia.org/resource/William_Young>
-        schema:netWorth  "2.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Young>
+        schema:netWorth  2.2 ;
+        foaf:name        "William Young" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "plastics" .
 
-<http://dbpedia.org/resource/Zhou_Jian>
-        schema:netWorth  "2.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhou_Jian>
+        schema:netWorth  2.2 ;
+        foaf:name        "Zhou Jian" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "solar energy equipment" .
 
-<http://dbpedia.org/resource/Bill_and_Jean_Adderley_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Bill_and_Jean_Adderley_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Bill and Jean Adderley & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "home furnishings" .
 
-<http://dbpedia.org/resource/Mohamed_Al_Fayed>
-        schema:netWorth  "2.1" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Egypt> ;
+<http://example.org/person/Mohamed_Al_Fayed>
+        schema:netWorth  2.1 ;
+        foaf:name        "Mohamed Al Fayed" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Egypt> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail, investments" .
 
-<http://dbpedia.org/resource/Faisal_Bin_Qassim_Al_Thani>
-        schema:netWorth  "2.1" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Qatar> ;
+<http://example.org/person/Faisal_Bin_Qassim_Al_Thani>
+        schema:netWorth  2.1 ;
+        foaf:name        "Faisal Bin Qassim Al Thani" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Qatar> ;
         dbo:industry     "diversified" ;
         dbo:source       "hotels, diversified  " .
 
-<http://dbpedia.org/resource/Masaaki_Arai>
-        schema:netWorth  "2.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Masaaki_Arai>
+        schema:netWorth  2.1 ;
+        foaf:name        "Masaaki Arai" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "home sales" .
 
-<http://dbpedia.org/resource/Tatyana_Bakalchuk>
-        schema:netWorth  "2.1" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Tatyana_Bakalchuk>
+        schema:netWorth  2.1 ;
+        foaf:name        "Tatyana Bakalchuk" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "ecommerce" .
 
-<http://dbpedia.org/resource/Lee_Bass>
-        schema:netWorth  "2.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lee_Bass>
+        schema:netWorth  2.1 ;
+        foaf:name        "Lee Bass" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, investments" .
 
-<http://dbpedia.org/resource/Alberto_Bombassei>
-        schema:netWorth  "2.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Alberto_Bombassei>
+        schema:netWorth  2.1 ;
+        foaf:name        "Alberto Bombassei" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automotive brakes" .
 
-<http://dbpedia.org/resource/Jim_Breyer>
-        schema:netWorth  "2.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Breyer>
+        schema:netWorth  2.1 ;
+        foaf:name        "Jim Breyer" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Ron_Burkle>
-        schema:netWorth  "2.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ron_Burkle>
+        schema:netWorth  2.1 ;
+        foaf:name        "Ron Burkle" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "supermarkets, investments" .
 
-<http://dbpedia.org/resource/Chen_Huwen>
-        schema:netWorth  "2.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Huwen>
+        schema:netWorth  2.1 ;
+        foaf:name        "Chen Huwen" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "stationery" .
 
-<http://dbpedia.org/resource/Chen_Huxiong>
-        schema:netWorth  "2.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Huxiong>
+        schema:netWorth  2.1 ;
+        foaf:name        "Chen Huxiong" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "stationery" .
 
-<http://dbpedia.org/resource/Chen_Xuehua>
-        schema:netWorth  "2.1" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Xuehua>
+        schema:netWorth  2.1 ;
+        foaf:name        "Chen Xuehua" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "nonferrous" .
 
-<http://dbpedia.org/resource/Bruce_Cheng>
-        schema:netWorth  "2.1" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Bruce_Cheng>
+        schema:netWorth  2.1 ;
+        foaf:name        "Bruce Cheng" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Ryan_Cohen>
-        schema:netWorth  "2.1" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Ryan_Cohen>
+        schema:netWorth  2.1 ;
+        foaf:name        "Ryan Cohen" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Dermot_Desmond>
-        schema:netWorth  "2.1" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ireland> ;
+<http://example.org/person/Dermot_Desmond>
+        schema:netWorth  2.1 ;
+        foaf:name        "Dermot Desmond" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Ireland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Fred_Ehrsam>
-        schema:netWorth  "2.1" ;
-        foaf:age         "33" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Fred_Ehrsam>
+        schema:netWorth  2.1 ;
+        foaf:name        "Fred Ehrsam" ;
+        foaf:age         33 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency exchange" .
 
-<http://dbpedia.org/resource/John_Elkann>
-        schema:netWorth  "2.1" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/John_Elkann>
+        schema:netWorth  2.1 ;
+        foaf:name        "John Elkann" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "FIAT, investments" .
 
-<http://dbpedia.org/resource/Bob_Ell>
-        schema:netWorth  "2.1" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Bob_Ell>
+        schema:netWorth  2.1 ;
+        foaf:name        "Bob Ell" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Fang_Xiaoliang_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fang_Xiaoliang_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Fang Xiaoliang & family" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Lindsay_Fox>
-        schema:netWorth  "2.1" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Lindsay_Fox>
+        schema:netWorth  2.1 ;
+        foaf:name        "Lindsay Fox" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Logistics" ;
         dbo:source       "logistics, real estate" .
 
-<http://dbpedia.org/resource/Gary_Friedman>
-        schema:netWorth  "2.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gary_Friedman>
+        schema:netWorth  2.1 ;
+        foaf:name        "Gary Friedman" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Furniture retail" .
 
-<http://dbpedia.org/resource/Gordon_Getty>
-        schema:netWorth  "2.1" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gordon_Getty>
+        schema:netWorth  2.1 ;
+        foaf:name        "Gordon Getty" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "Getty Oil" .
 
-<http://dbpedia.org/resource/Dennis_Gillings>
-        schema:netWorth  "2.1" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Dennis_Gillings>
+        schema:netWorth  2.1 ;
+        foaf:name        "Dennis Gillings" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "clinical trials" .
 
-<http://dbpedia.org/resource/Harsh_Goenka>
-        schema:netWorth  "2.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Harsh_Goenka>
+        schema:netWorth  2.1 ;
+        foaf:name        "Harsh Goenka" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/David_Hains>
-        schema:netWorth  "2.1" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/David_Hains>
+        schema:netWorth  2.1 ;
+        foaf:name        "David Hains" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Investments" .
 
-<http://dbpedia.org/resource/Bahaa_Hariri>
-        schema:netWorth  "2.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Lebanon> ;
+<http://example.org/person/Bahaa_Hariri>
+        schema:netWorth  2.1 ;
+        foaf:name        "Bahaa Hariri" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Lebanon> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/Shmuel_Harlap>
-        schema:netWorth  "2.1" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Shmuel_Harlap>
+        schema:netWorth  2.1 ;
+        foaf:name        "Shmuel Harlap" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automotive" .
 
-<http://dbpedia.org/resource/Gerry_Harvey>
-        schema:netWorth  "2.1" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Gerry_Harvey>
+        schema:netWorth  2.1 ;
+        foaf:name        "Gerry Harvey" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Reid_Hoffman>
-        schema:netWorth  "2.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Reid_Hoffman>
+        schema:netWorth  2.1 ;
+        foaf:name        "Reid Hoffman" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "LinkedIn" .
 
-<http://dbpedia.org/resource/Hou_Juncheng>
-        schema:netWorth  "2.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hou_Juncheng>
+        schema:netWorth  2.1 ;
+        foaf:name        "Hou Juncheng" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Thomas_James>
-        schema:netWorth  "2.1" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_James>
+        schema:netWorth  2.1 ;
+        foaf:name        "Thomas James" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Eiichi_Kuriwada>
-        schema:netWorth  "2.1" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Eiichi_Kuriwada>
+        schema:netWorth  2.1 ;
+        foaf:name        "Eiichi Kuriwada" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Logistics" ;
         dbo:source       "package delivery" .
 
-<http://dbpedia.org/resource/Kwek_Leng_Kee>
-        schema:netWorth  "2.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Kwek_Leng_Kee>
+        schema:netWorth  2.1 ;
+        foaf:name        "Kwek Leng Kee" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Lai_Shixian>
-        schema:netWorth  "2.1" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lai_Shixian>
+        schema:netWorth  2.1 ;
+        foaf:name        "Lai Shixian" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sports apparel" .
 
-<http://dbpedia.org/resource/Lau_Cho_Kun>
-        schema:netWorth  "2.1" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Lau_Cho_Kun>
+        schema:netWorth  2.1 ;
+        foaf:name        "Lau Cho Kun" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "diversified" ;
         dbo:source       "palm oil, property" .
 
-<http://dbpedia.org/resource/Lee_Hae-jin>
-        schema:netWorth  "2.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Hae-jin>
+        schema:netWorth  2.1 ;
+        foaf:name        "Lee Hae-jin" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "Internet" .
 
-<http://dbpedia.org/resource/Harald_Link>
-        schema:netWorth  "2.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Harald_Link>
+        schema:netWorth  2.1 ;
+        foaf:name        "Harald Link" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Liu_Xiucai_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Liu_Xiucai_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Liu Xiucai & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Yangyong_Luo_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yangyong_Luo_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Yangyong Luo & family" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Igor_Makarov>
-        schema:netWorth  "2.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Igor_Makarov>
+        schema:netWorth  2.1 ;
+        foaf:name        "Igor Makarov" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Alexander_Mamut>
-        schema:netWorth  "2.1" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Mamut>
+        schema:netWorth  2.1 ;
+        foaf:name        "Alexander Mamut" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/David_Mindus>
-        schema:netWorth  "2.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/David_Mindus>
+        schema:netWorth  2.1 ;
+        foaf:name        "David Mindus" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Yuji_Otsuka>
-        schema:netWorth  "2.1" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yuji_Otsuka>
+        schema:netWorth  2.1 ;
+        foaf:name        "Yuji Otsuka" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Technology" ;
         dbo:source       "copy machines, software" .
 
-<http://dbpedia.org/resource/Clive_Palmer>
-        schema:netWorth  "2.1" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Clive_Palmer>
+        schema:netWorth  2.1 ;
+        foaf:name        "Clive Palmer" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Ajay_Parekh>
-        schema:netWorth  "2.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ajay_Parekh>
+        schema:netWorth  2.1 ;
+        foaf:name        "Ajay Parekh" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "adhesives" .
 
-<http://dbpedia.org/resource/Narendrakumar_Parekh>
-        schema:netWorth  "2.1" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Narendrakumar_Parekh>
+        schema:netWorth  2.1 ;
+        foaf:name        "Narendrakumar Parekh" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "adhesives" .
 
-<http://dbpedia.org/resource/Xiangdong_Qi>
-        schema:netWorth  "2.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiangdong_Qi>
+        schema:netWorth  2.1 ;
+        foaf:name        "Xiangdong Qi" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Jianhua_Ren>
-        schema:netWorth  "2.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jianhua_Ren>
+        schema:netWorth  2.1 ;
+        foaf:name        "Jianhua Ren" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "kitchen appliances" .
 
-<http://dbpedia.org/resource/Alice_Schwartz>
-        schema:netWorth  "2.1" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alice_Schwartz>
+        schema:netWorth  2.1 ;
+        foaf:name        "Alice Schwartz" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Peter_Sondakh>
-        schema:netWorth  "2.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Peter_Sondakh>
+        schema:netWorth  2.1 ;
+        foaf:name        "Peter Sondakh" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Song_Fei>
-        schema:netWorth  "2.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Song_Fei>
+        schema:netWorth  2.1 ;
+        foaf:name        "Song Fei" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Timothy_Springer>
-        schema:netWorth  "2.1" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Timothy_Springer>
+        schema:netWorth  2.1 ;
+        foaf:name        "Timothy Springer" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Suyu_Su_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Suyu_Su_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Suyu Su & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "utilities, real estate" .
 
-<http://dbpedia.org/resource/Elizabeth_Sy>
-        schema:netWorth  "2.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Elizabeth_Sy>
+        schema:netWorth  2.1 ;
+        foaf:name        "Elizabeth Sy" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Sukanto_Tanoto>
-        schema:netWorth  "2.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Sukanto_Tanoto>
+        schema:netWorth  2.1 ;
+        foaf:name        "Sukanto Tanoto" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Jayshree_Ullal>
-        schema:netWorth  "2.1" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jayshree_Ullal>
+        schema:netWorth  2.1 ;
+        foaf:name        "Jayshree Ullal" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer networking" .
 
-<http://dbpedia.org/resource/Sunny_Varkey>
-        schema:netWorth  "2.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sunny_Varkey>
+        schema:netWorth  2.1 ;
+        foaf:name        "Sunny Varkey" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Jitendra_Virwani>
-        schema:netWorth  "2.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Jitendra_Virwani>
+        schema:netWorth  2.1 ;
+        foaf:name        "Jitendra Virwani" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Wang_Ren-sheng>
-        schema:netWorth  "2.1" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wang_Ren-sheng>
+        schema:netWorth  2.1 ;
+        foaf:name        "Wang Ren-sheng" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Wang_Wenmo>
-        schema:netWorth  "2.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Wenmo>
+        schema:netWorth  2.1 ;
+        foaf:name        "Wang Wenmo" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sports apparel" .
 
-<http://dbpedia.org/resource/Thomas_Wu>
-        schema:netWorth  "2.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Thomas_Wu>
+        schema:netWorth  2.1 ;
+        foaf:name        "Thomas Wu" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Wu_Ying>
-        schema:netWorth  "2.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Ying>
+        schema:netWorth  2.1 ;
+        foaf:name        "Wu Ying" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "materials" .
 
-<http://dbpedia.org/resource/Amy_Wyss>
-        schema:netWorth  "2.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Amy_Wyss>
+        schema:netWorth  2.1 ;
+        foaf:name        "Amy Wyss" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Xiang_Guangming_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiang_Guangming_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Xiang Guangming & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "waste disposal" .
 
-<http://dbpedia.org/resource/Xu_Shugen>
-        schema:netWorth  "2.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Shugen>
+        schema:netWorth  2.1 ;
+        foaf:name        "Xu Shugen" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "construction, mining machinery" .
 
-<http://dbpedia.org/resource/Steven_Meng_Yang_&_family>
-        schema:netWorth  "2.1" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Steven_Meng_Yang_&_family>
+        schema:netWorth  2.1 ;
+        foaf:name        "Steven Meng Yang & family" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Clayton_Zekelman>
-        schema:netWorth  "2.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Clayton_Zekelman>
+        schema:netWorth  2.1 ;
+        foaf:name        "Clayton Zekelman" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Hongfei_Zhao>
-        schema:netWorth  "2.1" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hongfei_Zhao>
+        schema:netWorth  2.1 ;
+        foaf:name        "Hongfei Zhao" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/S._Daniel_Abraham>
-        schema:netWorth  "2.0" ;
-        foaf:age         "97" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/S._Daniel_Abraham>
+        schema:netWorth  2.0 ;
+        foaf:name        "S. Daniel Abraham" ;
+        foaf:age         97 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Slim-Fast" .
 
-<http://dbpedia.org/resource/Aziz_Akhannouch_&_family>
-        schema:netWorth  "2.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Morocco> ;
+<http://example.org/person/Aziz_Akhannouch_&_family>
+        schema:netWorth  2.0 ;
+        foaf:name        "Aziz Akhannouch & family" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Morocco> ;
         dbo:industry     "diversified" ;
         dbo:source       "petroleum, diversified  " .
 
-<http://dbpedia.org/resource/Andrey_Andreev>
-        schema:netWorth  "2.0" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Andrey_Andreev>
+        schema:netWorth  2.0 ;
+        foaf:name        "Andrey Andreev" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Technology" ;
         dbo:source       "online dating" .
 
-<http://dbpedia.org/resource/Ramon_Ang>
-        schema:netWorth  "2.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Ramon_Ang>
+        schema:netWorth  2.0 ;
+        foaf:name        "Ramon Ang" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Guilherme_Benchimol>
-        schema:netWorth  "2.0" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Guilherme_Benchimol>
+        schema:netWorth  2.0 ;
+        foaf:name        "Guilherme Benchimol" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Julio_Bozano>
-        schema:netWorth  "2.0" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Julio_Bozano>
+        schema:netWorth  2.0 ;
+        foaf:name        "Julio Bozano" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Ryan_Breslow>
-        schema:netWorth  "2.0" ;
-        foaf:age         "27" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ryan_Breslow>
+        schema:netWorth  2.0 ;
+        foaf:name        "Ryan Breslow" ;
+        foaf:age         27 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce software" .
 
-<http://dbpedia.org/resource/Cao_Jianwei>
-        schema:netWorth  "2.0" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cao_Jianwei>
+        schema:netWorth  2.0 ;
+        foaf:name        "Cao Jianwei" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Herb_Chambers>
-        schema:netWorth  "2.0" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Herb_Chambers>
+        schema:netWorth  2.0 ;
+        foaf:name        "Herb Chambers" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "car dealerships" .
 
-<http://dbpedia.org/resource/Daniel_Chiu>
-        schema:netWorth  "2.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Daniel_Chiu>
+        schema:netWorth  2.0 ;
+        foaf:name        "Daniel Chiu" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Tim_Cook>
-        schema:netWorth  "2.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tim_Cook>
+        schema:netWorth  2.0 ;
+        foaf:name        "Tim Cook" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Apple" .
 
-<http://dbpedia.org/resource/Brunello_Cucinelli_&_family>
-        schema:netWorth  "2.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Brunello_Cucinelli_&_family>
+        schema:netWorth  2.0 ;
+        foaf:name        "Brunello Cucinelli & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion" .
 
-<http://dbpedia.org/resource/Georgi_Domuschiev>
-        schema:netWorth  "2.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Bulgaria> ;
+<http://example.org/person/Georgi_Domuschiev>
+        schema:netWorth  2.0 ;
+        foaf:name        "Georgi Domuschiev" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Bulgaria> ;
         dbo:industry     "diversified" ;
         dbo:source       "animal health, investments" .
 
-<http://dbpedia.org/resource/Kiril_Domuschiev>
-        schema:netWorth  "2.0" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Bulgaria> ;
+<http://example.org/person/Kiril_Domuschiev>
+        schema:netWorth  2.0 ;
+        foaf:name        "Kiril Domuschiev" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Bulgaria> ;
         dbo:industry     "diversified" ;
         dbo:source       "animal health, investments" .
 
-<http://dbpedia.org/resource/Glenn_Dubin>
-        schema:netWorth  "2.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Glenn_Dubin>
+        schema:netWorth  2.0 ;
+        foaf:name        "Glenn Dubin" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/James_Duff>
-        schema:netWorth  "2.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Duff>
+        schema:netWorth  2.0 ;
+        foaf:name        "James Duff" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "tires, diversified  " .
 
-<http://dbpedia.org/resource/Thomas_Duff>
-        schema:netWorth  "2.0" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Duff>
+        schema:netWorth  2.0 ;
+        foaf:name        "Thomas Duff" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "tires, diversified  " .
 
-<http://dbpedia.org/resource/Robert_Duggan>
-        schema:netWorth  "2.0" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Duggan>
+        schema:netWorth  2.0 ;
+        foaf:name        "Robert Duggan" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Maria_Franca_Fissolo>
-        schema:netWorth  "2.0" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Maria_Franca_Fissolo>
+        schema:netWorth  2.0 ;
+        foaf:name        "Maria Franca Fissolo" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Nutella, chocolates" .
 
-<http://dbpedia.org/resource/Fu_Mingkang_&_family>
-        schema:netWorth  "2.0" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fu_Mingkang_&_family>
+        schema:netWorth  2.0 ;
+        foaf:name        "Fu Mingkang & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Jay_Hennick>
-        schema:netWorth  "2.0" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Jay_Hennick>
+        schema:netWorth  2.0 ;
+        foaf:name        "Jay Hennick" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "real estate finance" .
 
-<http://dbpedia.org/resource/Orion_Hindawi>
-        schema:netWorth  "2.0" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Orion_Hindawi>
+        schema:netWorth  2.0 ;
+        foaf:name        "Orion Hindawi" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Ji_Qi>
-        schema:netWorth  "2.0" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ji_Qi>
+        schema:netWorth  2.0 ;
+        foaf:name        "Ji Qi" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "hotels, motels" .
 
-<http://dbpedia.org/resource/Kim_Chang-soo>
-        schema:netWorth  "2.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Chang-soo>
+        schema:netWorth  2.0 ;
+        foaf:name        "Kim Chang-soo" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Vyacheslav_Kim>
-        schema:netWorth  "2.0" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Kazakhstan> ;
+<http://example.org/person/Vyacheslav_Kim>
+        schema:netWorth  2.0 ;
+        foaf:name        "Vyacheslav Kim" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Kazakhstan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Kuan_Kam_Hon_&_family>
-        schema:netWorth  "2.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Kuan_Kam_Hon_&_family>
+        schema:netWorth  2.0 ;
+        foaf:name        "Kuan Kam Hon & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "rubber gloves" .
 
-<http://dbpedia.org/resource/Egor_Kulkov>
-        schema:netWorth  "2.0" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Egor_Kulkov>
+        schema:netWorth  2.0 ;
+        foaf:name        "Egor Kulkov" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Josh_Kushner>
-        schema:netWorth  "2.0" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Josh_Kushner>
+        schema:netWorth  2.0 ;
+        foaf:name        "Josh Kushner" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/Henry_Laufer>
-        schema:netWorth  "2.0" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Laufer>
+        schema:netWorth  2.0 ;
+        foaf:name        "Henry Laufer" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Thomas_Lee>
-        schema:netWorth  "2.0" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Lee>
+        schema:netWorth  2.0 ;
+        foaf:name        "Thomas Lee" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Michael_Lee-Chin>
-        schema:netWorth  "2.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Michael_Lee-Chin>
+        schema:netWorth  2.0 ;
+        foaf:name        "Michael Lee-Chin" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mutual funds" .
 
-<http://dbpedia.org/resource/Li_Xuhui>
-        schema:netWorth  "2.0" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Xuhui>
+        schema:netWorth  2.0 ;
+        foaf:name        "Li Xuhui" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Lim_Kok_Thay>
-        schema:netWorth  "2.0" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Lim_Kok_Thay>
+        schema:netWorth  2.0 ;
+        foaf:name        "Lim Kok Thay" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Joao_Roberto_Marinho>
-        schema:netWorth  "2.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Joao_Roberto_Marinho>
+        schema:netWorth  2.0 ;
+        foaf:name        "Joao Roberto Marinho" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Jose_Roberto_Marinho>
-        schema:netWorth  "2.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jose_Roberto_Marinho>
+        schema:netWorth  2.0 ;
+        foaf:name        "Jose Roberto Marinho" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Roberto_Irineu_Marinho>
-        schema:netWorth  "2.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Roberto_Irineu_Marinho>
+        schema:netWorth  2.0 ;
+        foaf:name        "Roberto Irineu Marinho" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Jim_McKelvey>
-        schema:netWorth  "2.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_McKelvey>
+        schema:netWorth  2.0 ;
+        foaf:name        "Jim McKelvey" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "mobile payments" .
 
-<http://dbpedia.org/resource/Robert_Miller>
-        schema:netWorth  "2.0" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Robert_Miller>
+        schema:netWorth  2.0 ;
+        foaf:name        "Robert Miller" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/David_Nahmad>
-        schema:netWorth  "2.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Monaco> ;
+<http://example.org/person/David_Nahmad>
+        schema:netWorth  2.0 ;
+        foaf:name        "David Nahmad" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Monaco> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "art collection" .
 
-<http://dbpedia.org/resource/Florentino_Perez>
-        schema:netWorth  "2.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Florentino_Perez>
+        schema:netWorth  2.0 ;
+        foaf:name        "Florentino Perez" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Jennifer_Pritzker>
-        schema:netWorth  "2.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jennifer_Pritzker>
+        schema:netWorth  2.0 ;
+        foaf:name        "Jennifer Pritzker" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/Linda_Pritzker>
-        schema:netWorth  "2.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Linda_Pritzker>
+        schema:netWorth  2.0 ;
+        foaf:name        "Linda Pritzker" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels, investments" .
 
-<http://dbpedia.org/resource/P.V._Ramprasad_Reddy>
-        schema:netWorth  "2.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/P.V._Ramprasad_Reddy>
+        schema:netWorth  2.0 ;
+        foaf:name        "P.V. Ramprasad Reddy" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Joe_Rogers,_Jr.>
-        schema:netWorth  "2.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joe_Rogers,_Jr.>
+        schema:netWorth  2.0 ;
+        foaf:name        "Joe Rogers, Jr." ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Waffle House" .
 
-<http://dbpedia.org/resource/Ruan_Shuilong_&_family>
-        schema:netWorth  "2.0" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ruan_Shuilong_&_family>
+        schema:netWorth  2.0 ;
+        foaf:name        "Ruan Shuilong & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Phil_Ruffin>
-        schema:netWorth  "2.0" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Phil_Ruffin>
+        schema:netWorth  2.0 ;
+        foaf:name        "Phil Ruffin" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "casinos, real estate" .
 
-<http://dbpedia.org/resource/Vinod_Saraf>
-        schema:netWorth  "2.0" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vinod_Saraf>
+        schema:netWorth  2.0 ;
+        foaf:name        "Vinod Saraf" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Maria-Elisabeth_Schaeffler-Thumann>
-        schema:netWorth  "2.0" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Maria-Elisabeth_Schaeffler-Thumann>
+        schema:netWorth  2.0 ;
+        foaf:name        "Maria-Elisabeth Schaeffler-Thumann" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Genhuo_Shao>
-        schema:netWorth  "2.0" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Genhuo_Shao>
+        schema:netWorth  2.0 ;
+        foaf:name        "Genhuo Shao" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Shen_Xiqiang_&_family>
-        schema:netWorth  "2.0" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shen_Xiqiang_&_family>
+        schema:netWorth  2.0 ;
+        foaf:name        "Shen Xiqiang & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "chemical" .
 
-<http://dbpedia.org/resource/Shi_Wen-long>
-        schema:netWorth  "2.0" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Shi_Wen-long>
+        schema:netWorth  2.0 ;
+        foaf:name        "Shi Wen-long" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "plastics" .
 
-<http://dbpedia.org/resource/Thaksin_Shinawatra>
-        schema:netWorth  "2.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Thaksin_Shinawatra>
+        schema:netWorth  2.0 ;
+        foaf:name        "Thaksin Shinawatra" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Alexander_Skorobogatko>
-        schema:netWorth  "2.0" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Skorobogatko>
+        schema:netWorth  2.0 ;
+        foaf:name        "Alexander Skorobogatko" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Logistics" ;
         dbo:source       "real estate, airport" .
 
-<http://dbpedia.org/resource/Sylvia_Stroeher>
-        schema:netWorth  "2.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Sylvia_Stroeher>
+        schema:netWorth  2.0 ;
+        foaf:name        "Sylvia Stroeher" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Wichai_Thongtang>
-        schema:netWorth  "2.0" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Wichai_Thongtang>
+        schema:netWorth  2.0 ;
+        foaf:name        "Wichai Thongtang" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Todd_Wagner>
-        schema:netWorth  "2.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Todd_Wagner>
+        schema:netWorth  2.0 ;
+        foaf:name        "Todd Wagner" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online media" .
 
-<http://dbpedia.org/resource/Wang_Jianguo>
-        schema:netWorth  "2.0" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Jianguo>
+        schema:netWorth  2.0 ;
+        foaf:name        "Wang Jianguo" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Shuifu_Wang>
-        schema:netWorth  "2.0" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shuifu_Wang>
+        schema:netWorth  2.0 ;
+        foaf:name        "Shuifu Wang" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Manufacturing" .
 
-<http://dbpedia.org/resource/Wenbiao_Wang>
-        schema:netWorth  "2.0" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wenbiao_Wang>
+        schema:netWorth  2.0 ;
+        foaf:name        "Wenbiao Wang" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "natural gas, fertilizers" .
 
-<http://dbpedia.org/resource/Kanye_West>
-        schema:netWorth  "2.0" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kanye_West>
+        schema:netWorth  2.0 ;
+        foaf:name        "Kanye West" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "music, sneakers" .
 
-<http://dbpedia.org/resource/Evan_Williams>
-        schema:netWorth  "2.0" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Evan_Williams>
+        schema:netWorth  2.0 ;
+        foaf:name        "Evan Williams" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Twitter" .
 
-<http://dbpedia.org/resource/Zhongyi_Wu>
-        schema:netWorth  "2.0" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhongyi_Wu>
+        schema:netWorth  2.0 ;
+        foaf:name        "Zhongyi Wu" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Zhihan_Xu>
-        schema:netWorth  "2.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhihan_Xu>
+        schema:netWorth  2.0 ;
+        foaf:name        "Zhihan Xu" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Yan_Zhi>
-        schema:netWorth  "2.0" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yan_Zhi>
+        schema:netWorth  2.0 ;
+        foaf:name        "Yan Zhi" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Michael_Ying>
-        schema:netWorth  "2.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Michael_Ying>
+        schema:netWorth  2.0 ;
+        foaf:name        "Michael Ying" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Yuan_Liping>
-        schema:netWorth  "2.0" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Yuan_Liping>
+        schema:netWorth  2.0 ;
+        foaf:name        "Yuan Liping" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Anu_Aga>
-        schema:netWorth  "1.9" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anu_Aga>
+        schema:netWorth  1.9 ;
+        foaf:name        "Anu Aga" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "engineering" .
 
-<http://dbpedia.org/resource/Joy_Alukkas>
-        schema:netWorth  "1.9" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Joy_Alukkas>
+        schema:netWorth  1.9 ;
+        foaf:name        "Joy Alukkas" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "jewelry" .
 
-<http://dbpedia.org/resource/Sezai_Bacaksiz>
-        schema:netWorth  "1.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Sezai_Bacaksiz>
+        schema:netWorth  1.9 ;
+        foaf:name        "Sezai Bacaksiz" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Baokun_Bai>
-        schema:netWorth  "1.9" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Baokun_Bai>
+        schema:netWorth  1.9 ;
+        foaf:name        "Baokun Bai" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hardware" .
 
-<http://dbpedia.org/resource/Acharya_Balkrishna>
-        schema:netWorth  "1.9" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Acharya_Balkrishna>
+        schema:netWorth  1.9 ;
+        foaf:name        "Acharya Balkrishna" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Kiki_Barki>
-        schema:netWorth  "1.9" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Kiki_Barki>
+        schema:netWorth  1.9 ;
+        foaf:name        "Kiki Barki" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Energy" ;
         dbo:source       "coal" .
 
-<http://dbpedia.org/resource/John_Bloor>
-        schema:netWorth  "1.9" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/John_Bloor>
+        schema:netWorth  1.9 ;
+        foaf:name        "John Bloor" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, manufacturing" .
 
-<http://dbpedia.org/resource/Nicola_Bulgari>
-        schema:netWorth  "1.9" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Nicola_Bulgari>
+        schema:netWorth  1.9 ;
+        foaf:name        "Nicola Bulgari" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Alejandro_Bulgheroni>
-        schema:netWorth  "1.9" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Argentina> ;
+<http://example.org/person/Alejandro_Bulgheroni>
+        schema:netWorth  1.9 ;
+        foaf:name        "Alejandro Bulgheroni" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Argentina> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Chen_Kaichen>
-        schema:netWorth  "1.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Kaichen>
+        schema:netWorth  1.9 ;
+        foaf:name        "Chen Kaichen" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "household chemicals" .
 
-<http://dbpedia.org/resource/Fernando_Chico_Pardo>
-        schema:netWorth  "1.9" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Fernando_Chico_Pardo>
+        schema:netWorth  1.9 ;
+        foaf:name        "Fernando Chico Pardo" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Service" ;
         dbo:source       "airport management" .
 
-<http://dbpedia.org/resource/Jose_Luis_Cutrale>
-        schema:netWorth  "1.9" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jose_Luis_Cutrale>
+        schema:netWorth  1.9 ;
+        foaf:name        "Jose Luis Cutrale" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "orange juice" .
 
-<http://dbpedia.org/resource/D._Leopoldo_Del_Pino>
-        schema:netWorth  "1.9" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/D._Leopoldo_Del_Pino>
+        schema:netWorth  1.9 ;
+        foaf:name        "D. Leopoldo Del Pino" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/James_Dinan>
-        schema:netWorth  "1.9" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Dinan>
+        schema:netWorth  1.9 ;
+        foaf:name        "James Dinan" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Francois_Feuillet_&_family>
-        schema:netWorth  "1.9" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Francois_Feuillet_&_family>
+        schema:netWorth  1.9 ;
+        foaf:name        "Francois Feuillet & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Automotive" ;
         dbo:source       "motorhomes, RVs" .
 
-<http://dbpedia.org/resource/Guangming_Fu_&_family>
-        schema:netWorth  "1.9" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guangming_Fu_&_family>
+        schema:netWorth  1.9 ;
+        foaf:name        "Guangming Fu & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "poultry" .
 
-<http://dbpedia.org/resource/Mario_Gabelli>
-        schema:netWorth  "1.9" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mario_Gabelli>
+        schema:netWorth  1.9 ;
+        foaf:name        "Mario Gabelli" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Reinold_Geiger>
-        schema:netWorth  "1.9" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Reinold_Geiger>
+        schema:netWorth  1.9 ;
+        foaf:name        "Reinold Geiger" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "beauty products" .
 
-<http://dbpedia.org/resource/He_Zhenggang>
-        schema:netWorth  "1.9" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Zhenggang>
+        schema:netWorth  1.9 ;
+        foaf:name        "He Zhenggang" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Roberto_Hernandez_Ramirez>
-        schema:netWorth  "1.9" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Roberto_Hernandez_Ramirez>
+        schema:netWorth  1.9 ;
+        foaf:name        "Roberto Hernandez Ramirez" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, investments" .
 
-<http://dbpedia.org/resource/Hoi_Kin_Hong>
-        schema:netWorth  "1.9" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Macau> ;
+<http://example.org/person/Hoi_Kin_Hong>
+        schema:netWorth  1.9 ;
+        foaf:name        "Hoi Kin Hong" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Macau> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Huang_Qiaoling>
-        schema:netWorth  "1.9" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Qiaoling>
+        schema:netWorth  1.9 ;
+        foaf:name        "Huang Qiaoling" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "amusement parks" .
 
-<http://dbpedia.org/resource/Willis_Johnson>
-        schema:netWorth  "1.9" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Willis_Johnson>
+        schema:netWorth  1.9 ;
+        foaf:name        "Willis Johnson" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "damaged cars" .
 
-<http://dbpedia.org/resource/Keeree_Kanjanapas>
-        schema:netWorth  "1.9" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Keeree_Kanjanapas>
+        schema:netWorth  1.9 ;
+        foaf:name        "Keeree Kanjanapas" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "transportation" .
 
-<http://dbpedia.org/resource/Kim_Dae-il>
-        schema:netWorth  "1.9" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Dae-il>
+        schema:netWorth  1.9 ;
+        foaf:name        "Kim Dae-il" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "mobile gaming" .
 
-<http://dbpedia.org/resource/Kim_Hyoung-nyon>
-        schema:netWorth  "1.9" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Hyoung-nyon>
+        schema:netWorth  1.9 ;
+        foaf:name        "Kim Hyoung-nyon" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Andrei_Kozitsyn>
-        schema:netWorth  "1.9" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Kozitsyn>
+        schema:netWorth  1.9 ;
+        foaf:name        "Andrei Kozitsyn" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "metals" .
 
-<http://dbpedia.org/resource/Thomas_Kwok>
-        schema:netWorth  "1.9" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Thomas_Kwok>
+        schema:netWorth  1.9 ;
+        foaf:name        "Thomas Kwok" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lei_Jufang>
-        schema:netWorth  "1.9" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lei_Jufang>
+        schema:netWorth  1.9 ;
+        foaf:name        "Lei Jufang" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/David_Lichtenstein>
-        schema:netWorth  "1.9" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Lichtenstein>
+        schema:netWorth  1.9 ;
+        foaf:name        "David Lichtenstein" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lin_Dingqiang_&_family>
-        schema:netWorth  "1.9" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Lin_Dingqiang_&_family>
+        schema:netWorth  1.9 ;
+        foaf:name        "Lin Dingqiang & family" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mikhail_Lomtadze>
-        schema:netWorth  "1.9" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Georgia> ;
+<http://example.org/person/Mikhail_Lomtadze>
+        schema:netWorth  1.9 ;
+        foaf:name        "Mikhail Lomtadze" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Georgia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Melissa_Ma>
-        schema:netWorth  "1.9" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Melissa_Ma>
+        schema:netWorth  1.9 ;
+        foaf:name        "Melissa Ma" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "Internet search" .
 
-<http://dbpedia.org/resource/Yusaku_Maezawa>
-        schema:netWorth  "1.9" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yusaku_Maezawa>
+        schema:netWorth  1.9 ;
+        foaf:name        "Yusaku Maezawa" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Technology" ;
         dbo:source       "online retail" .
 
-<http://dbpedia.org/resource/Katarina_Martinson>
-        schema:netWorth  "1.9" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Katarina_Martinson>
+        schema:netWorth  1.9 ;
+        foaf:name        "Katarina Martinson" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Shouliang_Miao>
-        schema:netWorth  "1.9" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shouliang_Miao>
+        schema:netWorth  1.9 ;
+        foaf:name        "Shouliang Miao" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Romano_Minozzi>
-        schema:netWorth  "1.9" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Romano_Minozzi>
+        schema:netWorth  1.9 ;
+        foaf:name        "Romano Minozzi" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "diversified" ;
         dbo:source       "utilities, diversified  " .
 
-<http://dbpedia.org/resource/Pedro_Moreira_Salles>
-        schema:netWorth  "1.9" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Pedro_Moreira_Salles>
+        schema:netWorth  1.9 ;
+        foaf:name        "Pedro Moreira Salles" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking, minerals" .
 
-<http://dbpedia.org/resource/Alexander_Nesis>
-        schema:netWorth  "1.9" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Nesis>
+        schema:netWorth  1.9 ;
+        foaf:name        "Alexander Nesis" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "metals, banking, fertilizers" .
 
-<http://dbpedia.org/resource/Nguyen_Dang_Quang>
-        schema:netWorth  "1.9" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Nguyen_Dang_Quang>
+        schema:netWorth  1.9 ;
+        foaf:name        "Nguyen Dang Quang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer products, banking" .
 
-<http://dbpedia.org/resource/Oei_Hong_Leong>
-        schema:netWorth  "1.9" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Oei_Hong_Leong>
+        schema:netWorth  1.9 ;
+        foaf:name        "Oei Hong Leong" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Nihat_Ozdemir>
-        schema:netWorth  "1.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Nihat_Ozdemir>
+        schema:netWorth  1.9 ;
+        foaf:name        "Nihat Ozdemir" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Gretel_Packer>
-        schema:netWorth  "1.9" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Gretel_Packer>
+        schema:netWorth  1.9 ;
+        foaf:name        "Gretel Packer" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Benjamin_Zhengmin_Pan_&_family>
-        schema:netWorth  "1.9" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Benjamin_Zhengmin_Pan_&_family>
+        schema:netWorth  1.9 ;
+        foaf:name        "Benjamin Zhengmin Pan & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Victor_Pinchuk>
-        schema:netWorth  "1.9" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ukraine> ;
+<http://example.org/person/Victor_Pinchuk>
+        schema:netWorth  1.9 ;
+        foaf:name        "Victor Pinchuk" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Ukraine> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel pipes, diversified  " .
 
-<http://dbpedia.org/resource/Alexander_Ponomarenko>
-        schema:netWorth  "1.9" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexander_Ponomarenko>
+        schema:netWorth  1.9 ;
+        foaf:name        "Alexander Ponomarenko" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Logistics" ;
         dbo:source       "real estate, airport" .
 
-<http://dbpedia.org/resource/Qi_Jinxing>
-        schema:netWorth  "1.9" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qi_Jinxing>
+        schema:netWorth  1.9 ;
+        foaf:name        "Qi Jinxing" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Larry_Robbins>
-        schema:netWorth  "1.9" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Larry_Robbins>
+        schema:netWorth  1.9 ;
+        foaf:name        "Larry Robbins" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Dwight_Schar>
-        schema:netWorth  "1.9" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dwight_Schar>
+        schema:netWorth  1.9 ;
+        foaf:name        "Dwight Schar" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "homebuilding, NFL team" .
 
-<http://dbpedia.org/resource/Shi_Yifeng>
-        schema:netWorth  "1.9" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shi_Yifeng>
+        schema:netWorth  1.9 ;
+        foaf:name        "Shi Yifeng" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical cosmetics" .
 
-<http://dbpedia.org/resource/Sun_Hongjun>
-        schema:netWorth  "1.9" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Sun_Hongjun>
+        schema:netWorth  1.9 ;
+        foaf:name        "Sun Hongjun" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Anand_Surana>
-        schema:netWorth  "1.9" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anand_Surana>
+        schema:netWorth  1.9 ;
+        foaf:name        "Anand Surana" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Dilip_Surana>
-        schema:netWorth  "1.9" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Dilip_Surana>
+        schema:netWorth  1.9 ;
+        foaf:name        "Dilip Surana" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Djoko_Susanto>
-        schema:netWorth  "1.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Djoko_Susanto>
+        schema:netWorth  1.9 ;
+        foaf:name        "Djoko Susanto" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Sze_Man_Bok>
-        schema:netWorth  "1.9" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Sze_Man_Bok>
+        schema:netWorth  1.9 ;
+        foaf:name        "Sze Man Bok" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hygiene products" .
 
-<http://dbpedia.org/resource/Alain_Taravella>
-        schema:netWorth  "1.9" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Alain_Taravella>
+        schema:netWorth  1.9 ;
+        foaf:name        "Alain Taravella" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate development" .
 
-<http://dbpedia.org/resource/Martin_Viessmann>
-        schema:netWorth  "1.9" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Martin_Viessmann>
+        schema:netWorth  1.9 ;
+        foaf:name        "Martin Viessmann" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "heating and cooling equipment" .
 
-<http://dbpedia.org/resource/Georg_von_Opel>
-        schema:netWorth  "1.9" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Georg_von_Opel>
+        schema:netWorth  1.9 ;
+        foaf:name        "Georg von Opel" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "real estate, investments" .
 
-<http://dbpedia.org/resource/Changtian_Wang>
-        schema:netWorth  "1.9" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Changtian_Wang>
+        schema:netWorth  1.9 ;
+        foaf:name        "Changtian Wang" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV, movie production" .
 
-<http://dbpedia.org/resource/Wang_Chaobin>
-        schema:netWorth  "1.9" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Chaobin>
+        schema:netWorth  1.9 ;
+        foaf:name        "Wang Chaobin" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Wang_Chou-hsiong>
-        schema:netWorth  "1.9" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wang_Chou-hsiong>
+        schema:netWorth  1.9 ;
+        foaf:name        "Wang Chou-hsiong" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "footwear" .
 
-<http://dbpedia.org/resource/Wang_Xiaoshen>
-        schema:netWorth  "1.9" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Xiaoshen>
+        schema:netWorth  1.9 ;
+        foaf:name        "Wang Xiaoshen" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "lithium" .
 
-<http://dbpedia.org/resource/Wei_Yin-Heng>
-        schema:netWorth  "1.9" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wei_Yin-Heng>
+        schema:netWorth  1.9 ;
+        foaf:name        "Wei Yin-Heng" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food, beverages" .
 
-<http://dbpedia.org/resource/Xue_Xiangdong_&_family>
-        schema:netWorth  "1.9" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xue_Xiangdong_&_family>
+        schema:netWorth  1.9 ;
+        foaf:name        "Xue Xiangdong & family" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Yuan_Fugen_&_family>
-        schema:netWorth  "1.9" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yuan_Fugen_&_family>
+        schema:netWorth  1.9 ;
+        foaf:name        "Yuan Fugen & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "metal processing" .
 
-<http://dbpedia.org/resource/David_Zalik>
-        schema:netWorth  "1.9" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Zalik>
+        schema:netWorth  1.9 ;
+        foaf:name        "David Zalik" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "financial technology" .
 
-<http://dbpedia.org/resource/Leslie_Alexander>
-        schema:netWorth  "1.8" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leslie_Alexander>
+        schema:netWorth  1.8 ;
+        foaf:name        "Leslie Alexander" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports team" .
 
-<http://dbpedia.org/resource/Igor_Altushkin>
-        schema:netWorth  "1.8" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Igor_Altushkin>
+        schema:netWorth  1.8 ;
+        foaf:name        "Igor Altushkin" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "metals" .
 
-<http://dbpedia.org/resource/Roberto_Angelini_Rossi>
-        schema:netWorth  "1.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Roberto_Angelini_Rossi>
+        schema:netWorth  1.8 ;
+        foaf:name        "Roberto Angelini Rossi" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "diversified" ;
         dbo:source       "forestry, mining" .
 
-<http://dbpedia.org/resource/Nigel_Austin>
-        schema:netWorth  "1.8" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Nigel_Austin>
+        schema:netWorth  1.8 ;
+        foaf:name        "Nigel Austin" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Bang_Jun-hyuk>
-        schema:netWorth  "1.8" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Bang_Jun-hyuk>
+        schema:netWorth  1.8 ;
+        foaf:name        "Bang Jun-hyuk" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online gaming" .
 
-<http://dbpedia.org/resource/O._Francis_Biondi>
-        schema:netWorth  "1.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/O._Francis_Biondi>
+        schema:netWorth  1.8 ;
+        foaf:name        "O. Francis Biondi" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Chang_Byung-gyu>
-        schema:netWorth  "1.8" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Chang_Byung-gyu>
+        schema:netWorth  1.8 ;
+        foaf:name        "Chang Byung-gyu" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Chang_Kuo-Ming>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chang_Kuo-Ming>
+        schema:netWorth  1.8 ;
+        foaf:name        "Chang Kuo-Ming" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Logistics" ;
         dbo:source       "Transportation" .
 
-<http://dbpedia.org/resource/Chen_Gang>
-        schema:netWorth  "1.8" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Gang>
+        schema:netWorth  1.8 ;
+        foaf:name        "Chen Gang" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "solar energy" .
 
-<http://dbpedia.org/resource/Liying_Chen>
-        schema:netWorth  "1.8" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liying_Chen>
+        schema:netWorth  1.8 ;
+        foaf:name        "Liying Chen" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "package delivery" .
 
-<http://dbpedia.org/resource/Chen_Xueli>
-        schema:netWorth  "1.8" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Xueli>
+        schema:netWorth  1.8 ;
+        foaf:name        "Chen Xueli" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Chi_Yufeng>
-        schema:netWorth  "1.8" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chi_Yufeng>
+        schema:netWorth  1.8 ;
+        foaf:name        "Chi Yufeng" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Mark_Coombs>
-        schema:netWorth  "1.8" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Mark_Coombs>
+        schema:netWorth  1.8 ;
+        foaf:name        "Mark Coombs" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Tench_Coxe>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tench_Coxe>
+        schema:netWorth  1.8 ;
+        foaf:name        "Tench Coxe" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital" .
 
-<http://dbpedia.org/resource/John_de_Mol>
-        schema:netWorth  "1.8" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/John_de_Mol>
+        schema:netWorth  1.8 ;
+        foaf:name        "John de Mol" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV programs" .
 
-<http://dbpedia.org/resource/Alfredo_Egydio_Arruda_Villela_Filho>
-        schema:netWorth  "1.8" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Alfredo_Egydio_Arruda_Villela_Filho>
+        schema:netWorth  1.8 ;
+        foaf:name        "Alfredo Egydio Arruda Villela Filho" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Ibrahim_Erdemoglu>
-        schema:netWorth  "1.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Ibrahim_Erdemoglu>
+        schema:netWorth  1.8 ;
+        foaf:name        "Ibrahim Erdemoglu" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "carpet" .
 
-<http://dbpedia.org/resource/Philip_Fayer>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Philip_Fayer>
+        schema:netWorth  1.8 ;
+        foaf:name        "Philip Fayer" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "online payments" .
 
-<http://dbpedia.org/resource/Paul_Foster>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Foster>
+        schema:netWorth  1.8 ;
+        foaf:name        "Paul Foster" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil refining" .
 
-<http://dbpedia.org/resource/James_France>
-        schema:netWorth  "1.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_France>
+        schema:netWorth  1.8 ;
+        foaf:name        "James France" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Nascar, racing" .
 
-<http://dbpedia.org/resource/Yasuhiro_Fukushima>
-        schema:netWorth  "1.8" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yasuhiro_Fukushima>
+        schema:netWorth  1.8 ;
+        foaf:name        "Yasuhiro Fukushima" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "video games" .
 
-<http://dbpedia.org/resource/Zhongru_Gan>
-        schema:netWorth  "1.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhongru_Gan>
+        schema:netWorth  1.8 ;
+        foaf:name        "Zhongru Gan" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Rahul_Gautam>
-        schema:netWorth  "1.8" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rahul_Gautam>
+        schema:netWorth  1.8 ;
+        foaf:name        "Rahul Gautam" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "mattresses" .
 
-<http://dbpedia.org/resource/Ali_Ghodsi>
-        schema:netWorth  "1.8" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Ali_Ghodsi>
+        schema:netWorth  1.8 ;
+        foaf:name        "Ali Ghodsi" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Technology" ;
         dbo:source       "data analytics" .
 
-<http://dbpedia.org/resource/Giammaria_Giuliani>
-        schema:netWorth  "1.8" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Giammaria_Giuliani>
+        schema:netWorth  1.8 ;
+        foaf:name        "Giammaria Giuliani" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Christopher_Goldsbury>
-        schema:netWorth  "1.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Christopher_Goldsbury>
+        schema:netWorth  1.8 ;
+        foaf:name        "Christopher Goldsbury" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "salsa" .
 
-<http://dbpedia.org/resource/Alexandre_Grendene_Bartelle>
-        schema:netWorth  "1.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Alexandre_Grendene_Bartelle>
+        schema:netWorth  1.8 ;
+        foaf:name        "Alexandre Grendene Bartelle" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Surjit_Kumar_Gupta>
-        schema:netWorth  "1.8" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Surjit_Kumar_Gupta>
+        schema:netWorth  1.8 ;
+        foaf:name        "Surjit Kumar Gupta" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electrical equipment" .
 
-<http://dbpedia.org/resource/Brian_Higgins>
-        schema:netWorth  "1.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brian_Higgins>
+        schema:netWorth  1.8 ;
+        foaf:name        "Brian Higgins" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/David_Hindawi>
-        schema:netWorth  "1.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Hindawi>
+        schema:netWorth  1.8 ;
+        foaf:name        "David Hindawi" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Chengzhong_Hu>
-        schema:netWorth  "1.8" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chengzhong_Hu>
+        schema:netWorth  1.8 ;
+        foaf:name        "Chengzhong Hu" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Huang_Min>
-        schema:netWorth  "1.8" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Min>
+        schema:netWorth  1.8 ;
+        foaf:name        "Huang Min" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Stanley_Hubbard>
-        schema:netWorth  "1.8" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stanley_Hubbard>
+        schema:netWorth  1.8 ;
+        foaf:name        "Stanley Hubbard" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "DirecTV" .
 
-<http://dbpedia.org/resource/Hui_Lin_Chit>
-        schema:netWorth  "1.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hui_Lin_Chit>
+        schema:netWorth  1.8 ;
+        foaf:name        "Hui Lin Chit" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "hygiene products" .
 
-<http://dbpedia.org/resource/Hal_Jackman>
-        schema:netWorth  "1.8" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Hal_Jackman>
+        schema:netWorth  1.8 ;
+        foaf:name        "Hal Jackman" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance, investments" .
 
-<http://dbpedia.org/resource/Stephen_Jarislowsky>
-        schema:netWorth  "1.8" ;
-        foaf:age         "96" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Stephen_Jarislowsky>
+        schema:netWorth  1.8 ;
+        foaf:name        "Stephen Jarislowsky" ;
+        foaf:age         96 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Mark_&_Robyn_Jones>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_&_Robyn_Jones>
+        schema:netWorth  1.8 ;
+        foaf:name        "Mark & Robyn Jones" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/George_Joseph>
-        schema:netWorth  "1.8" ;
-        foaf:age         "100" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Joseph>
+        schema:netWorth  1.8 ;
+        foaf:name        "George Joseph" ;
+        foaf:age         100 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Kim_Kardashian>
-        schema:netWorth  "1.8" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kim_Kardashian>
+        schema:netWorth  1.8 ;
+        foaf:name        "Kim Kardashian" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics, reality TV" .
 
-<http://dbpedia.org/resource/Dominika_Kulczyk>
-        schema:netWorth  "1.8" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Dominika_Kulczyk>
+        schema:netWorth  1.8 ;
+        foaf:name        "Dominika Kulczyk" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Edward_Lampert>
-        schema:netWorth  "1.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edward_Lampert>
+        schema:netWorth  1.8 ;
+        foaf:name        "Edward Lampert" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Sears" .
 
-<http://dbpedia.org/resource/Marc_Lasry>
-        schema:netWorth  "1.8" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marc_Lasry>
+        schema:netWorth  1.8 ;
+        foaf:name        "Marc Lasry" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Michiel_Le_Roux>
-        schema:netWorth  "1.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Africa> ;
+<http://example.org/person/Michiel_Le_Roux>
+        schema:netWorth  1.8 ;
+        foaf:name        "Michiel Le Roux" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/South_Africa> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Peter_Leibinger>
-        schema:netWorth  "1.8" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Peter_Leibinger>
+        schema:netWorth  1.8 ;
+        foaf:name        "Peter Leibinger" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machine tools" .
 
-<http://dbpedia.org/resource/Regine_Leibinger>
-        schema:netWorth  "1.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Regine_Leibinger>
+        schema:netWorth  1.8 ;
+        foaf:name        "Regine Leibinger" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machine tools" .
 
-<http://dbpedia.org/resource/Nicola_Leibinger-Kammueller>
-        schema:netWorth  "1.8" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Nicola_Leibinger-Kammueller>
+        schema:netWorth  1.8 ;
+        foaf:name        "Nicola Leibinger-Kammueller" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Wolfgang_Leitner>
-        schema:netWorth  "1.8" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Wolfgang_Leitner>
+        schema:netWorth  1.8 ;
+        foaf:name        "Wolfgang Leitner" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "engineering" .
 
-<http://dbpedia.org/resource/Liu_Zhongtian_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Zhongtian_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Liu Zhongtian & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "aluminum products" .
 
-<http://dbpedia.org/resource/Bill_Malhotra>
-        schema:netWorth  "1.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Bill_Malhotra>
+        schema:netWorth  1.8 ;
+        foaf:name        "Bill Malhotra" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Charlwin_Mao>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Charlwin_Mao>
+        schema:netWorth  1.8 ;
+        foaf:name        "Charlwin Mao" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/George_Marcus>
-        schema:netWorth  "1.8" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Marcus>
+        schema:netWorth  1.8 ;
+        foaf:name        "George Marcus" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Yves-Loic_Martin>
-        schema:netWorth  "1.8" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Yves-Loic_Martin>
+        schema:netWorth  1.8 ;
+        foaf:name        "Yves-Loic Martin" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "laboratory services" .
 
-<http://dbpedia.org/resource/Gary_Michelson>
-        schema:netWorth  "1.8" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gary_Michelson>
+        schema:netWorth  1.8 ;
+        foaf:name        "Gary Michelson" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical patents" .
 
-<http://dbpedia.org/resource/Robert_G._Miller>
-        schema:netWorth  "1.8" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Robert_G._Miller>
+        schema:netWorth  1.8 ;
+        foaf:name        "Robert G. Miller" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics components" .
 
-<http://dbpedia.org/resource/Fernando_Roberto_Moreira_Salles>
-        schema:netWorth  "1.8" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Fernando_Roberto_Moreira_Salles>
+        schema:netWorth  1.8 ;
+        foaf:name        "Fernando Roberto Moreira Salles" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking, minerals" .
 
-<http://dbpedia.org/resource/Joao_Moreira_Salles>
-        schema:netWorth  "1.8" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Joao_Moreira_Salles>
+        schema:netWorth  1.8 ;
+        foaf:name        "Joao Moreira Salles" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking, minerals" .
 
-<http://dbpedia.org/resource/Walther_Moreira_Salles_Junior>
-        schema:netWorth  "1.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Walther_Moreira_Salles_Junior>
+        schema:netWorth  1.8 ;
+        foaf:name        "Walther Moreira Salles Junior" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, minerals" .
 
-<http://dbpedia.org/resource/Zugen_Ni>
-        schema:netWorth  "1.8" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zugen_Ni>
+        schema:netWorth  1.8 ;
+        foaf:name        "Zugen Ni" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "appliances" .
 
-<http://dbpedia.org/resource/Liora_Ofer>
-        schema:netWorth  "1.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Liora_Ofer>
+        schema:netWorth  1.8 ;
+        foaf:name        "Liora Ofer" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Mrudula_Parekh>
-        schema:netWorth  "1.8" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mrudula_Parekh>
+        schema:netWorth  1.8 ;
+        foaf:name        "Mrudula Parekh" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "adhesives" .
 
-<http://dbpedia.org/resource/David_Paul>
-        schema:netWorth  "1.8" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Paul>
+        schema:netWorth  1.8 ;
+        foaf:name        "David Paul" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Pierre_Karl_P%C3%A9ladeau>
-        schema:netWorth  "1.8" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Pierre_Karl_P%C3%A9ladeau>
+        schema:netWorth  1.8 ;
+        foaf:name        "Pierre Karl P├®ladeau" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Miranda_Qu>
-        schema:netWorth  "1.8" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Miranda_Qu>
+        schema:netWorth  1.8 ;
+        foaf:name        "Miranda Qu" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Phillip_T._(Terry)_Ragon>
-        schema:netWorth  "1.8" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Phillip_T._(Terry)_Ragon>
+        schema:netWorth  1.8 ;
+        foaf:name        "Phillip T. (Terry) Ragon" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "health IT" .
 
-<http://dbpedia.org/resource/G._Rajendran>
-        schema:netWorth  "1.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/G._Rajendran>
+        schema:netWorth  1.8 ;
+        foaf:name        "G. Rajendran" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "jewellery" .
 
-<http://dbpedia.org/resource/Krit_Ratanarak>
-        schema:netWorth  "1.8" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Krit_Ratanarak>
+        schema:netWorth  1.8 ;
+        foaf:name        "Krit Ratanarak" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, real estate" .
 
-<http://dbpedia.org/resource/Jerry_Reinsdorf>
-        schema:netWorth  "1.8" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jerry_Reinsdorf>
+        schema:netWorth  1.8 ;
+        foaf:name        "Jerry Reinsdorf" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports teams" .
 
-<http://dbpedia.org/resource/Mochtar_Riady_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "92" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Mochtar_Riady_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Mochtar Riady & family" ;
+        foaf:age         92 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Rajju_Shroff>
-        schema:netWorth  "1.8" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rajju_Shroff>
+        schema:netWorth  1.8 ;
+        foaf:name        "Rajju Shroff" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "agrochemicals" .
 
-<http://dbpedia.org/resource/Frank_Slootman>
-        schema:netWorth  "1.8" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Frank_Slootman>
+        schema:netWorth  1.8 ;
+        foaf:name        "Frank Slootman" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Henry_Swieca>
-        schema:netWorth  "1.8" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Swieca>
+        schema:netWorth  1.8 ;
+        foaf:name        "Henry Swieca" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Yuequn_Tao>
-        schema:netWorth  "1.8" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yuequn_Tao>
+        schema:netWorth  1.8 ;
+        foaf:name        "Yuequn Tao" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Contact Lens" .
 
-<http://dbpedia.org/resource/Robert_Toennies>
-        schema:netWorth  "1.8" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Robert_Toennies>
+        schema:netWorth  1.8 ;
+        foaf:name        "Robert Toennies" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "meat processing" .
 
-<http://dbpedia.org/resource/Torbjorn_Tornqvist>
-        schema:netWorth  "1.8" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Torbjorn_Tornqvist>
+        schema:netWorth  1.8 ;
+        foaf:name        "Torbjorn Tornqvist" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil trading" .
 
-<http://dbpedia.org/resource/Zhenghua_Wang>
-        schema:netWorth  "1.8" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhenghua_Wang>
+        schema:netWorth  1.8 ;
+        foaf:name        "Zhenghua Wang" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "budget airline" .
 
-<http://dbpedia.org/resource/Charlotte_Colket_Weber>
-        schema:netWorth  "1.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Charlotte_Colket_Weber>
+        schema:netWorth  1.8 ;
+        foaf:name        "Charlotte Colket Weber" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Campbell Soup" .
 
-<http://dbpedia.org/resource/Wu_Lanlan_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Lanlan_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Wu Lanlan & family" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "packaging" .
 
-<http://dbpedia.org/resource/Wu_Yulan>
-        schema:netWorth  "1.8" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Yulan>
+        schema:netWorth  1.8 ;
+        foaf:name        "Wu Yulan" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Elaine_Wynn>
-        schema:netWorth  "1.8" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Elaine_Wynn>
+        schema:netWorth  1.8 ;
+        foaf:name        "Elaine Wynn" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos, hotels" .
 
-<http://dbpedia.org/resource/Xu_Shijun_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Shijun_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Xu Shijun & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Xu_Xudong_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Xudong_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Xu Xudong & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Yang_Xuegang>
-        schema:netWorth  "1.8" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Xuegang>
+        schema:netWorth  1.8 ;
+        foaf:name        "Yang Xuegang" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "coking" .
 
-<http://dbpedia.org/resource/Zhang_Chuanwei_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Chuanwei_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Zhang Chuanwei & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Xuexin_Zhang_&_family>
-        schema:netWorth  "1.8" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xuexin_Zhang_&_family>
+        schema:netWorth  1.8 ;
+        foaf:name        "Xuexin Zhang & family" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "aluminum" .
 
-<http://dbpedia.org/resource/Noubar_Afeyan>
-        schema:netWorth  "1.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Noubar_Afeyan>
+        schema:netWorth  1.7 ;
+        foaf:name        "Noubar Afeyan" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Farkhad_Akhmedov>
-        schema:netWorth  "1.7" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Farkhad_Akhmedov>
+        schema:netWorth  1.7 ;
+        foaf:name        "Farkhad Akhmedov" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Marc_Andreessen>
-        schema:netWorth  "1.7" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marc_Andreessen>
+        schema:netWorth  1.7 ;
+        foaf:name        "Marc Andreessen" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "venture capital investing" .
 
-<http://dbpedia.org/resource/John_Bicket>
-        schema:netWorth  "1.7" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Bicket>
+        schema:netWorth  1.7 ;
+        foaf:name        "John Bicket" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "sensor systems" .
 
-<http://dbpedia.org/resource/Zadik_Bino_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Zadik_Bino_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zadik Bino & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking, oil" .
 
-<http://dbpedia.org/resource/Alex_Birkenstock>
-        schema:netWorth  "1.7" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Alex_Birkenstock>
+        schema:netWorth  1.7 ;
+        foaf:name        "Alex Birkenstock" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Christian_Birkenstock>
-        schema:netWorth  "1.7" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christian_Birkenstock>
+        schema:netWorth  1.7 ;
+        foaf:name        "Christian Birkenstock" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Sanjit_Biswas>
-        schema:netWorth  "1.7" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sanjit_Biswas>
+        schema:netWorth  1.7 ;
+        foaf:name        "Sanjit Biswas" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "sensor systems" .
 
-<http://dbpedia.org/resource/David_Booth>
-        schema:netWorth  "1.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Booth>
+        schema:netWorth  1.7 ;
+        foaf:name        "David Booth" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mutual funds" .
 
-<http://dbpedia.org/resource/Josef_Boquoi_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Josef_Boquoi_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Josef Boquoi & family" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "frozen foods" .
 
-<http://dbpedia.org/resource/Saket_Burman>
-        schema:netWorth  "1.7" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Saket_Burman>
+        schema:netWorth  1.7 ;
+        foaf:name        "Saket Burman" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Mingtong_Cai>
-        schema:netWorth  "1.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Mingtong_Cai>
+        schema:netWorth  1.7 ;
+        foaf:name        "Mingtong Cai" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronic components" .
 
-<http://dbpedia.org/resource/Chen_Yung-tai>
-        schema:netWorth  "1.7" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chen_Yung-tai>
+        schema:netWorth  1.7 ;
+        foaf:name        "Chen Yung-tai" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Manas_Chiaravanond>
-        schema:netWorth  "1.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Manas_Chiaravanond>
+        schema:netWorth  1.7 ;
+        foaf:name        "Manas Chiaravanond" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Phongthep_Chiaravanont>
-        schema:netWorth  "1.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Phongthep_Chiaravanont>
+        schema:netWorth  1.7 ;
+        foaf:name        "Phongthep Chiaravanont" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Ivan_Chrenko>
-        schema:netWorth  "1.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Slovakia> ;
+<http://example.org/person/Ivan_Chrenko>
+        schema:netWorth  1.7 ;
+        foaf:name        "Ivan Chrenko" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Slovakia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Sol_Daurella>
-        schema:netWorth  "1.7" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Sol_Daurella>
+        schema:netWorth  1.7 ;
+        foaf:name        "Sol Daurella" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Coca-Cola bottler" .
 
-<http://dbpedia.org/resource/Dulce_Pugliese_de_Godoy_Bueno>
-        schema:netWorth  "1.7" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Dulce_Pugliese_de_Godoy_Bueno>
+        schema:netWorth  1.7 ;
+        foaf:name        "Dulce Pugliese de Godoy Bueno" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals, health care" .
 
-<http://dbpedia.org/resource/Norbert_Dentressangle>
-        schema:netWorth  "1.7" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Norbert_Dentressangle>
+        schema:netWorth  1.7 ;
+        foaf:name        "Norbert Dentressangle" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Logistics" ;
         dbo:source       "transport, logistics" .
 
-<http://dbpedia.org/resource/Oleg_Deripaska>
-        schema:netWorth  "1.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Oleg_Deripaska>
+        schema:netWorth  1.7 ;
+        foaf:name        "Oleg Deripaska" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "aluminum, utilities" .
 
-<http://dbpedia.org/resource/Dong_Jinggui>
-        schema:netWorth  "1.7" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dong_Jinggui>
+        schema:netWorth  1.7 ;
+        foaf:name        "Dong Jinggui" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "electric scooters" .
 
-<http://dbpedia.org/resource/Keith_Dunleavy_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Keith_Dunleavy_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Keith Dunleavy & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "health IT" .
 
-<http://dbpedia.org/resource/Donald_Foss>
-        schema:netWorth  "1.7" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Foss>
+        schema:netWorth  1.7 ;
+        foaf:name        "Donald Foss" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto loans" .
 
-<http://dbpedia.org/resource/Rolf_Gerling>
-        schema:netWorth  "1.7" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Rolf_Gerling>
+        schema:netWorth  1.7 ;
+        foaf:name        "Rolf Gerling" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/G._Gnanalingam>
-        schema:netWorth  "1.7" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/G._Gnanalingam>
+        schema:netWorth  1.7 ;
+        foaf:name        "G. Gnanalingam" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Logistics" ;
         dbo:source       "ports" .
 
-<http://dbpedia.org/resource/He_Zhaoxi>
-        schema:netWorth  "1.7" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Zhaoxi>
+        schema:netWorth  1.7 ;
+        foaf:name        "He Zhaoxi" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/William_Heinecke>
-        schema:netWorth  "1.7" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/William_Heinecke>
+        schema:netWorth  1.7 ;
+        foaf:name        "William Heinecke" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/Huh_Jae-myung>
-        schema:netWorth  "1.7" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Huh_Jae-myung>
+        schema:netWorth  1.7 ;
+        foaf:name        "Huh Jae-myung" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electric components" .
 
-<http://dbpedia.org/resource/Tianjiang_Jia_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tianjiang_Jia_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Tianjiang Jia & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "non-ferrous metals" .
 
-<http://dbpedia.org/resource/Michael_Jordan>
-        schema:netWorth  "1.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Jordan>
+        schema:netWorth  1.7 ;
+        foaf:name        "Michael Jordan" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Charlotte Hornets, endorsements" .
 
-<http://dbpedia.org/resource/Dmitry_Kamenshchik>
-        schema:netWorth  "1.7" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Dmitry_Kamenshchik>
+        schema:netWorth  1.7 ;
+        foaf:name        "Dmitry Kamenshchik" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Service" ;
         dbo:source       "airport" .
 
-<http://dbpedia.org/resource/Kim_Taek-jin>
-        schema:netWorth  "1.7" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Taek-jin>
+        schema:netWorth  1.7 ;
+        foaf:name        "Kim Taek-jin" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Koo_Kwang-mo>
-        schema:netWorth  "1.7" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Koo_Kwang-mo>
+        schema:netWorth  1.7 ;
+        foaf:name        "Koo Kwang-mo" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "diversified" ;
         dbo:source       "LG" .
 
-<http://dbpedia.org/resource/Anthony_Langley>
-        schema:netWorth  "1.7" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Anthony_Langley>
+        schema:netWorth  1.7 ;
+        foaf:name        "Anthony Langley" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "diversified" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Lee_Joong-keun>
-        schema:netWorth  "1.7" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Joong-keun>
+        schema:netWorth  1.7 ;
+        foaf:name        "Lee Joong-keun" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction, real estate" .
 
-<http://dbpedia.org/resource/James_Leininger>
-        schema:netWorth  "1.7" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Leininger>
+        schema:netWorth  1.7 ;
+        foaf:name        "James Leininger" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical products" .
 
-<http://dbpedia.org/resource/Li_Haiyan>
-        schema:netWorth  "1.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Haiyan>
+        schema:netWorth  1.7 ;
+        foaf:name        "Li Haiyan" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurants" .
 
-<http://dbpedia.org/resource/Li_Jianli>
-        schema:netWorth  "1.7" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Jianli>
+        schema:netWorth  1.7 ;
+        foaf:name        "Li Jianli" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "lithium-ion battery cap" .
 
-<http://dbpedia.org/resource/Weiwei_Li>
-        schema:netWorth  "1.7" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Weiwei_Li>
+        schema:netWorth  1.7 ;
+        foaf:name        "Weiwei Li" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Li_Zhigang>
-        schema:netWorth  "1.7" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Zhigang>
+        schema:netWorth  1.7 ;
+        foaf:name        "Li Zhigang" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Jimmy_John_Liautaud>
-        schema:netWorth  "1.7" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jimmy_John_Liautaud>
+        schema:netWorth  1.7 ;
+        foaf:name        "Jimmy John Liautaud" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "sandwich chain" .
 
-<http://dbpedia.org/resource/Louise_Lindh>
-        schema:netWorth  "1.7" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Louise_Lindh>
+        schema:netWorth  1.7 ;
+        foaf:name        "Louise Lindh" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Lu_Di>
-        schema:netWorth  "1.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Di>
+        schema:netWorth  1.7 ;
+        foaf:name        "Lu Di" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "drones" .
 
-<http://dbpedia.org/resource/Anand_Mahindra>
-        schema:netWorth  "1.7" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anand_Mahindra>
+        schema:netWorth  1.7 ;
+        foaf:name        "Anand Mahindra" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Bruce_Mathieson>
-        schema:netWorth  "1.7" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Bruce_Mathieson>
+        schema:netWorth  1.7 ;
+        foaf:name        "Bruce Mathieson" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/Billy_Joe_(Red)_McCombs>
-        schema:netWorth  "1.7" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Billy_Joe_(Red)_McCombs>
+        schema:netWorth  1.7 ;
+        foaf:name        "Billy Joe (Red) McCombs" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, oil, cars, sports" .
 
-<http://dbpedia.org/resource/Deepak_Mehta>
-        schema:netWorth  "1.7" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Deepak_Mehta>
+        schema:netWorth  1.7 ;
+        foaf:name        "Deepak Mehta" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Mario_Moretti_Polegato_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Mario_Moretti_Polegato_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Mario Moretti Polegato & family" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Alberto_Palatchi>
-        schema:netWorth  "1.7" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Alberto_Palatchi>
+        schema:netWorth  1.7 ;
+        foaf:name        "Alberto Palatchi" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "wedding dresses" .
 
-<http://dbpedia.org/resource/Nelson_Peltz>
-        schema:netWorth  "1.7" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nelson_Peltz>
+        schema:netWorth  1.7 ;
+        foaf:name        "Nelson Peltz" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Jorge_Perez>
-        schema:netWorth  "1.7" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jorge_Perez>
+        schema:netWorth  1.7 ;
+        foaf:name        "Jorge Perez" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Alberto_Prada>
-        schema:netWorth  "1.7" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Alberto_Prada>
+        schema:netWorth  1.7 ;
+        foaf:name        "Alberto Prada" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Marina_Prada>
-        schema:netWorth  "1.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Marina_Prada>
+        schema:netWorth  1.7 ;
+        foaf:name        "Marina Prada" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/M.Satyanarayana_Reddy>
-        schema:netWorth  "1.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/M.Satyanarayana_Reddy>
+        schema:netWorth  1.7 ;
+        foaf:name        "M.Satyanarayana Reddy" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Rihanna>
-        schema:netWorth  "1.7" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/Barbados> ;
+<http://example.org/person/Rihanna>
+        schema:netWorth  1.7 ;
+        foaf:name        "Rihanna" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/Barbados> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "music, cosmetics" .
 
-<http://dbpedia.org/resource/Arkady_Rotenberg>
-        schema:netWorth  "1.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Arkady_Rotenberg>
+        schema:netWorth  1.7 ;
+        foaf:name        "Arkady Rotenberg" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction, pipes, banking" .
 
-<http://dbpedia.org/resource/Dieter_Schnabel>
-        schema:netWorth  "1.7" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Dieter_Schnabel>
+        schema:netWorth  1.7 ;
+        foaf:name        "Dieter Schnabel" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Shang_Xiaobo_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shang_Xiaobo_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Shang Xiaobo & family" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Manufacturing" .
 
-<http://dbpedia.org/resource/Shao_Qinxiang>
-        schema:netWorth  "1.7" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shao_Qinxiang>
+        schema:netWorth  1.7 ;
+        foaf:name        "Shao Qinxiang" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Renate_Sick-Glaser>
-        schema:netWorth  "1.7" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Renate_Sick-Glaser>
+        schema:netWorth  1.7 ;
+        foaf:name        "Renate Sick-Glaser" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "sensor technology" .
 
-<http://dbpedia.org/resource/Basudeo_Singh>
-        schema:netWorth  "1.7" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Basudeo_Singh>
+        schema:netWorth  1.7 ;
+        foaf:name        "Basudeo Singh" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Edward_Stack>
-        schema:netWorth  "1.7" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Edward_Stack>
+        schema:netWorth  1.7 ;
+        foaf:name        "Edward Stack" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Dick's Sporting Goods" .
 
-<http://dbpedia.org/resource/Weijie_Sun>
-        schema:netWorth  "1.7" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Weijie_Sun>
+        schema:netWorth  1.7 ;
+        foaf:name        "Weijie Sun" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "oilfield equipment" .
 
-<http://dbpedia.org/resource/Vonnarat_Tangkaravakoon>
-        schema:netWorth  "1.7" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Vonnarat_Tangkaravakoon>
+        schema:netWorth  1.7 ;
+        foaf:name        "Vonnarat Tangkaravakoon" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "wire & cables, paints" .
 
-<http://dbpedia.org/resource/Byron_Trott>
-        schema:netWorth  "1.7" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Byron_Trott>
+        schema:netWorth  1.7 ;
+        foaf:name        "Byron Trott" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Jan_Van_Geet>
-        schema:netWorth  "1.7" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Belgium> ;
+<http://example.org/person/Jan_Van_Geet>
+        schema:netWorth  1.7 ;
+        foaf:name        "Jan Van Geet" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Belgium> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate developer" .
 
-<http://dbpedia.org/resource/Radha_Vembu>
-        schema:netWorth  "1.7" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Radha_Vembu>
+        schema:netWorth  1.7 ;
+        foaf:name        "Radha Vembu" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/Patrizio_Vinciarelli>
-        schema:netWorth  "1.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Patrizio_Vinciarelli>
+        schema:netWorth  1.7 ;
+        foaf:name        "Patrizio Vinciarelli" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronic components" .
 
-<http://dbpedia.org/resource/Mingwang_Wang>
-        schema:netWorth  "1.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Mingwang_Wang>
+        schema:netWorth  1.7 ;
+        foaf:name        "Mingwang Wang" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics components" .
 
-<http://dbpedia.org/resource/Wang_Yanqing_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Yanqing_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Wang Yanqing & family" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "carbon fiber products" .
 
-<http://dbpedia.org/resource/Lars_Wingefors>
-        schema:netWorth  "1.7" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Lars_Wingefors>
+        schema:netWorth  1.7 ;
+        foaf:name        "Lars Wingefors" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "video games" .
 
-<http://dbpedia.org/resource/Stephen_Winn>
-        schema:netWorth  "1.7" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stephen_Winn>
+        schema:netWorth  1.7 ;
+        foaf:name        "Stephen Winn" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate services" .
 
-<http://dbpedia.org/resource/Ian_Wood_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Ian_Wood_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Ian Wood & family" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Energy" ;
         dbo:source       "energy services" .
 
-<http://dbpedia.org/resource/Gordon_Wu>
-        schema:netWorth  "1.7" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Gordon_Wu>
+        schema:netWorth  1.7 ;
+        foaf:name        "Gordon Wu" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Wu_Xiangdong>
-        schema:netWorth  "1.7" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Xiangdong>
+        schema:netWorth  1.7 ;
+        foaf:name        "Wu Xiangdong" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer" .
 
-<http://dbpedia.org/resource/Yao_Kuizhang>
-        schema:netWorth  "1.7" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yao_Kuizhang>
+        schema:netWorth  1.7 ;
+        foaf:name        "Yao Kuizhang" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Vladimir_Yevtushenkov>
-        schema:netWorth  "1.7" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Vladimir_Yevtushenkov>
+        schema:netWorth  1.7 ;
+        foaf:name        "Vladimir Yevtushenkov" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom, investments" .
 
-<http://dbpedia.org/resource/Dasheng_Yi>
-        schema:netWorth  "1.7" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dasheng_Yi>
+        schema:netWorth  1.7 ;
+        foaf:name        "Dasheng Yi" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "conglomerate" .
 
-<http://dbpedia.org/resource/Yu_Lili>
-        schema:netWorth  "1.7" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yu_Lili>
+        schema:netWorth  1.7 ;
+        foaf:name        "Yu Lili" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronic components" .
 
-<http://dbpedia.org/resource/Alan_Zekelman>
-        schema:netWorth  "1.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Alan_Zekelman>
+        schema:netWorth  1.7 ;
+        foaf:name        "Alan Zekelman" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Kaitian_Zeng>
-        schema:netWorth  "1.7" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Kaitian_Zeng>
+        schema:netWorth  1.7 ;
+        foaf:name        "Kaitian Zeng" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Zhang_Jingzhang_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Jingzhang_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zhang Jingzhang & family" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "precision machinery" .
 
-<http://dbpedia.org/resource/Zhang_Yubai>
-        schema:netWorth  "1.7" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Yubai>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zhang Yubai" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "wine" .
 
-<http://dbpedia.org/resource/Zheng_Hong_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zheng_Hong_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zheng Hong & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Zhong_Peifeng>
-        schema:netWorth  "1.7" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Zhong_Peifeng>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zhong Peifeng" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Telecom" ;
         dbo:source       "semiconductor" .
 
-<http://dbpedia.org/resource/Zhou_Zongwen_&_family>
-        schema:netWorth  "1.7" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhou_Zongwen_&_family>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zhou Zongwen & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "jewelry" .
 
-<http://dbpedia.org/resource/Zhu_Yiming>
-        schema:netWorth  "1.7" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhu_Yiming>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zhu Yiming" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Zhaojiang_Zhu>
-        schema:netWorth  "1.7" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhaojiang_Zhu>
+        schema:netWorth  1.7 ;
+        foaf:name        "Zhaojiang Zhu" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Smartphones" .
 
-<http://dbpedia.org/resource/Anita_Zucker>
-        schema:netWorth  "1.7" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Anita_Zucker>
+        schema:netWorth  1.7 ;
+        foaf:name        "Anita Zucker" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Herbert_Allen,_Jr._&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Herbert_Allen,_Jr._&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Herbert Allen, Jr. & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investment banking" .
 
-<http://dbpedia.org/resource/Vasily_Anisimov>
-        schema:netWorth  "1.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Vasily_Anisimov>
+        schema:netWorth  1.6 ;
+        foaf:name        "Vasily Anisimov" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mori_Arkin>
-        schema:netWorth  "1.6" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Mori_Arkin>
+        schema:netWorth  1.6 ;
+        foaf:name        "Mori Arkin" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Semahat_Sevim_Arsel>
-        schema:netWorth  "1.6" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Semahat_Sevim_Arsel>
+        schema:netWorth  1.6 ;
+        foaf:name        "Semahat Sevim Arsel" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Clifford_Asness>
-        schema:netWorth  "1.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Clifford_Asness>
+        schema:netWorth  1.6 ;
+        foaf:name        "Clifford Asness" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Louis_Bacon>
-        schema:netWorth  "1.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Louis_Bacon>
+        schema:netWorth  1.6 ;
+        foaf:name        "Louis Bacon" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Hari_Bhartia>
-        schema:netWorth  "1.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Hari_Bhartia>
+        schema:netWorth  1.6 ;
+        foaf:name        "Hari Bhartia" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Shyam_Bhartia>
-        schema:netWorth  "1.6" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Shyam_Bhartia>
+        schema:netWorth  1.6 ;
+        foaf:name        "Shyam Bhartia" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals, food" .
 
-<http://dbpedia.org/resource/Amit_Burman>
-        schema:netWorth  "1.6" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Amit_Burman>
+        schema:netWorth  1.6 ;
+        foaf:name        "Amit Burman" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Chen_Shibin>
-        schema:netWorth  "1.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Shibin>
+        schema:netWorth  1.6 ;
+        foaf:name        "Chen Shibin" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "quartz products" .
 
-<http://dbpedia.org/resource/Chen_Tianshi>
-        schema:netWorth  "1.6" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Tianshi>
+        schema:netWorth  1.6 ;
+        foaf:name        "Chen Tianshi" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Robert_Clark>
-        schema:netWorth  "1.6" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Clark>
+        schema:netWorth  1.6 ;
+        foaf:name        "Robert Clark" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Ana_Lucia_de_Mattos_Barretto_Villela>
-        schema:netWorth  "1.6" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Ana_Lucia_de_Mattos_Barretto_Villela>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ana Lucia de Mattos Barretto Villela" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Diao_Zhizhong>
-        schema:netWorth  "1.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Diao_Zhizhong>
+        schema:netWorth  1.6 ;
+        foaf:name        "Diao Zhizhong" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Jamie_Dimon>
-        schema:netWorth  "1.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jamie_Dimon>
+        schema:netWorth  1.6 ;
+        foaf:name        "Jamie Dimon" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Gary_Fegel>
-        schema:netWorth  "1.6" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Gary_Fegel>
+        schema:netWorth  1.6 ;
+        foaf:name        "Gary Fegel" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "commodities, investments" .
 
-<http://dbpedia.org/resource/Gao_Yunfeng>
-        schema:netWorth  "1.6" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gao_Yunfeng>
+        schema:netWorth  1.6 ;
+        foaf:name        "Gao Yunfeng" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "industrial lasers" .
 
-<http://dbpedia.org/resource/Philippe_Ginestet_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Philippe_Ginestet_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Philippe Ginestet & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail stores" .
 
-<http://dbpedia.org/resource/Sebastian_Glaser>
-        schema:netWorth  "1.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Sebastian_Glaser>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sebastian Glaser" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "sensor technology" .
 
-<http://dbpedia.org/resource/Sam_Goi>
-        schema:netWorth  "1.6" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Sam_Goi>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sam Goi" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "frozen foods" .
 
-<http://dbpedia.org/resource/Lance_Gokongwei>
-        schema:netWorth  "1.6" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Lance_Gokongwei>
+        schema:netWorth  1.6 ;
+        foaf:name        "Lance Gokongwei" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Sergei_Gordeev>
-        schema:netWorth  "1.6" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Sergei_Gordeev>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sergei Gordeev" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Bill_Gross>
-        schema:netWorth  "1.6" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bill_Gross>
+        schema:netWorth  1.6 ;
+        foaf:name        "Bill Gross" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Sue_Gross>
-        schema:netWorth  "1.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sue_Gross>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sue Gross" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Patrick_Hanrahan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Patrick_Hanrahan>
+        schema:netWorth  1.6 ;
+        foaf:name        "Patrick Hanrahan" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Lutz_Mario_Helmig>
-        schema:netWorth  "1.6" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Lutz_Mario_Helmig>
+        schema:netWorth  1.6 ;
+        foaf:name        "Lutz Mario Helmig" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Ilkka_Herlin>
-        schema:netWorth  "1.6" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Ilkka_Herlin>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ilkka Herlin" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "elevators, escalators" .
 
-<http://dbpedia.org/resource/Asok_Kumar_Hiranandani>
-        schema:netWorth  "1.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Asok_Kumar_Hiranandani>
+        schema:netWorth  1.6 ;
+        foaf:name        "Asok Kumar Hiranandani" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Hu_Kunhui>
-        schema:netWorth  "1.6" ;
-        foaf:age         "31" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hu_Kunhui>
+        schema:netWorth  1.6 ;
+        foaf:name        "Hu Kunhui" ;
+        foaf:age         31 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Archie_Hwang>
-        schema:netWorth  "1.6" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Archie_Hwang>
+        schema:netWorth  1.6 ;
+        foaf:name        "Archie Hwang" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Jared_Isaacman>
-        schema:netWorth  "1.6" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jared_Isaacman>
+        schema:netWorth  1.6 ;
+        foaf:name        "Jared Isaacman" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "payment processing" .
 
-<http://dbpedia.org/resource/Anurang_Jain>
-        schema:netWorth  "1.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anurang_Jain>
+        schema:netWorth  1.6 ;
+        foaf:name        "Anurang Jain" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Jin_Lei_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jin_Lei_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Jin Lei & family" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Sunjay_Kapur>
-        schema:netWorth  "1.6" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sunjay_Kapur>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sunjay Kapur" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Richard_Kayne>
-        schema:netWorth  "1.6" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Kayne>
+        schema:netWorth  1.6 ;
+        foaf:name        "Richard Kayne" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Randal_J._Kirk>
-        schema:netWorth  "1.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Randal_J._Kirk>
+        schema:netWorth  1.6 ;
+        foaf:name        "Randal J. Kirk" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Jim_Koch>
-        schema:netWorth  "1.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Koch>
+        schema:netWorth  1.6 ;
+        foaf:name        "Jim Koch" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/William_Koch>
-        schema:netWorth  "1.6" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Koch>
+        schema:netWorth  1.6 ;
+        foaf:name        "William Koch" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, investments" .
 
-<http://dbpedia.org/resource/Kagemasa_Kozuki>
-        schema:netWorth  "1.6" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Kagemasa_Kozuki>
+        schema:netWorth  1.6 ;
+        foaf:name        "Kagemasa Kozuki" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Technology" ;
         dbo:source       "video games" .
 
-<http://dbpedia.org/resource/Arvind_Lal>
-        schema:netWorth  "1.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Arvind_Lal>
+        schema:netWorth  1.6 ;
+        foaf:name        "Arvind Lal" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical diagnostics" .
 
-<http://dbpedia.org/resource/Robert_Langer>
-        schema:netWorth  "1.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Langer>
+        schema:netWorth  1.6 ;
+        foaf:name        "Robert Langer" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Theodore_Leonsis>
-        schema:netWorth  "1.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Theodore_Leonsis>
+        schema:netWorth  1.6 ;
+        foaf:name        "Theodore Leonsis" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports teams" .
 
-<http://dbpedia.org/resource/David_Xueling_Li>
-        schema:netWorth  "1.6" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/David_Xueling_Li>
+        schema:netWorth  1.6 ;
+        foaf:name        "David Xueling Li" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "live streaming service" .
 
-<http://dbpedia.org/resource/Li_Denghai>
-        schema:netWorth  "1.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Denghai>
+        schema:netWorth  1.6 ;
+        foaf:name        "Li Denghai" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "seed production" .
 
-<http://dbpedia.org/resource/Li_Guoqing>
-        schema:netWorth  "1.6" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Guoqing>
+        schema:netWorth  1.6 ;
+        foaf:name        "Li Guoqing" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Petro Fibre" .
 
-<http://dbpedia.org/resource/Li_Jiaquan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Jiaquan>
+        schema:netWorth  1.6 ;
+        foaf:name        "Li Jiaquan" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Li_Rucheng>
-        schema:netWorth  "1.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Rucheng>
+        schema:netWorth  1.6 ;
+        foaf:name        "Li Rucheng" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Li_Sze_Lim>
-        schema:netWorth  "1.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Li_Sze_Lim>
+        schema:netWorth  1.6 ;
+        foaf:name        "Li Sze Lim" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Li_Yongqing>
-        schema:netWorth  "1.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Yongqing>
+        schema:netWorth  1.6 ;
+        foaf:name        "Li Yongqing" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Petro Firbe" .
 
-<http://dbpedia.org/resource/Lim_Wee_Chai>
-        schema:netWorth  "1.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Lim_Wee_Chai>
+        schema:netWorth  1.6 ;
+        foaf:name        "Lim Wee Chai" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "rubber gloves" .
 
-<http://dbpedia.org/resource/Liu_Aisen_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Aisen_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Liu Aisen & family" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Liu_Ming_Chung>
-        schema:netWorth  "1.6" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Liu_Ming_Chung>
+        schema:netWorth  1.6 ;
+        foaf:name        "Liu Ming Chung" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper" .
 
-<http://dbpedia.org/resource/Vincent_Lo>
-        schema:netWorth  "1.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Vincent_Lo>
+        schema:netWorth  1.6 ;
+        foaf:name        "Vincent Lo" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Brandt_Louie>
-        schema:netWorth  "1.6" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Brandt_Louie>
+        schema:netWorth  1.6 ;
+        foaf:name        "Brandt Louie" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "drugstores" .
 
-<http://dbpedia.org/resource/Catherine_Lozick>
-        schema:netWorth  "1.6" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Catherine_Lozick>
+        schema:netWorth  1.6 ;
+        foaf:name        "Catherine Lozick" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "valve manufacturing" .
 
-<http://dbpedia.org/resource/Lu_Zongjun>
-        schema:netWorth  "1.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Zongjun>
+        schema:netWorth  1.6 ;
+        foaf:name        "Lu Zongjun" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "logistics" .
 
-<http://dbpedia.org/resource/Lv_Jianming>
-        schema:netWorth  "1.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Lv_Jianming>
+        schema:netWorth  1.6 ;
+        foaf:name        "Lv Jianming" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Cargill_MacMillan,_III.>
-        schema:netWorth  "1.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Cargill_MacMillan,_III.>
+        schema:netWorth  1.6 ;
+        foaf:name        "Cargill MacMillan, III." ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Duncan_MacMillan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Duncan_MacMillan>
+        schema:netWorth  1.6 ;
+        foaf:name        "Duncan MacMillan" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Bloomberg LP" .
 
-<http://dbpedia.org/resource/John_MacMillan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_MacMillan>
+        schema:netWorth  1.6 ;
+        foaf:name        "John MacMillan" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Martha_MacMillan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Martha_MacMillan>
+        schema:netWorth  1.6 ;
+        foaf:name        "Martha MacMillan" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/William_MacMillan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_MacMillan>
+        schema:netWorth  1.6 ;
+        foaf:name        "William MacMillan" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Cargill" .
 
-<http://dbpedia.org/resource/Terence_(Terry)_Matthews>
-        schema:netWorth  "1.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Terence_(Terry)_Matthews>
+        schema:netWorth  1.6 ;
+        foaf:name        "Terence (Terry) Matthews" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Kazuo_Okada>
-        schema:netWorth  "1.6" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Kazuo_Okada>
+        schema:netWorth  1.6 ;
+        foaf:name        "Kazuo Okada" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Tomas_Olivo_Lopez>
-        schema:netWorth  "1.6" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Tomas_Olivo_Lopez>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tomas Olivo Lopez" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "shopping centers" .
 
-<http://dbpedia.org/resource/Jorge_Pinheiro_Koren_de_Lima>
-        schema:netWorth  "1.6" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jorge_Pinheiro_Koren_de_Lima>
+        schema:netWorth  1.6 ;
+        foaf:name        "Jorge Pinheiro Koren de Lima" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals, health insurance" .
 
-<http://dbpedia.org/resource/Candido_Pinheiro_Koren_de_Lima_Junior>
-        schema:netWorth  "1.6" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Candido_Pinheiro_Koren_de_Lima_Junior>
+        schema:netWorth  1.6 ;
+        foaf:name        "Candido Pinheiro Koren de Lima Junior" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals, health insurance" .
 
-<http://dbpedia.org/resource/Qian_Ying>
-        schema:netWorth  "1.6" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qian_Ying>
+        schema:netWorth  1.6 ;
+        foaf:name        "Qian Ying" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "pig breeding" .
 
-<http://dbpedia.org/resource/Ren_Jinsheng_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ren_Jinsheng_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ren Jinsheng & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceutical" .
 
-<http://dbpedia.org/resource/Brian_Roberts>
-        schema:netWorth  "1.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Brian_Roberts>
+        schema:netWorth  1.6 ;
+        foaf:name        "Brian Roberts" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Comcast" .
 
-<http://dbpedia.org/resource/Austin_Russell>
-        schema:netWorth  "1.6" ;
-        foaf:age         "27" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Austin_Russell>
+        schema:netWorth  1.6 ;
+        foaf:name        "Austin Russell" ;
+        foaf:age         27 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "sensorsÔÿà" .
 
-<http://dbpedia.org/resource/George_Sakellaris>
-        schema:netWorth  "1.6" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Sakellaris>
+        schema:netWorth  1.6 ;
+        foaf:name        "George Sakellaris" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "energy services" .
 
-<http://dbpedia.org/resource/Sheryl_Sandberg>
-        schema:netWorth  "1.6" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sheryl_Sandberg>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sheryl Sandberg" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Facebook" .
 
-<http://dbpedia.org/resource/Andres_Santo_Domingo>
-        schema:netWorth  "1.6" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Andres_Santo_Domingo>
+        schema:netWorth  1.6 ;
+        foaf:name        "Andres Santo Domingo" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer" .
 
-<http://dbpedia.org/resource/Paul_Saville>
-        schema:netWorth  "1.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Saville>
+        schema:netWorth  1.6 ;
+        foaf:name        "Paul Saville" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "homebuilder" .
 
-<http://dbpedia.org/resource/Ivan_Savvidis>
-        schema:netWorth  "1.6" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Ivan_Savvidis>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ivan Savvidis" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "diversified" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Michael_Saylor>
-        schema:netWorth  "1.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Saylor>
+        schema:netWorth  1.6 ;
+        foaf:name        "Michael Saylor" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Gerald_Schwartz>
-        schema:netWorth  "1.6" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Gerald_Schwartz>
+        schema:netWorth  1.6 ;
+        foaf:name        "Gerald Schwartz" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Sathien_Setthasit>
-        schema:netWorth  "1.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Sathien_Setthasit>
+        schema:netWorth  1.6 ;
+        foaf:name        "Sathien Setthasit" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "energy drinks" .
 
-<http://dbpedia.org/resource/Niraj_Shah>
-        schema:netWorth  "1.6" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Niraj_Shah>
+        schema:netWorth  1.6 ;
+        foaf:name        "Niraj Shah" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "online retail" .
 
-<http://dbpedia.org/resource/Keiichi_Shibahara>
-        schema:netWorth  "1.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Keiichi_Shibahara>
+        schema:netWorth  1.6 ;
+        foaf:name        "Keiichi Shibahara" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare" .
 
-<http://dbpedia.org/resource/Evgeny_(Eugene)_Shvidler>
-        schema:netWorth  "1.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Evgeny_(Eugene)_Shvidler>
+        schema:netWorth  1.6 ;
+        foaf:name        "Evgeny (Eugene) Shvidler" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas, investments" .
 
-<http://dbpedia.org/resource/Ryan_Smith>
-        schema:netWorth  "1.6" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ryan_Smith>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ryan Smith" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud computing" .
 
-<http://dbpedia.org/resource/Peter_Sperling>
-        schema:netWorth  "1.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Peter_Sperling>
+        schema:netWorth  1.6 ;
+        foaf:name        "Peter Sperling" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Ion_Stoica>
-        schema:netWorth  "1.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Romania> ;
+<http://example.org/person/Ion_Stoica>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ion Stoica" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Romania> ;
         dbo:industry     "Technology" ;
         dbo:source       "data analytics" .
 
-<http://dbpedia.org/resource/Bambang_Sutantio>
-        schema:netWorth  "1.6" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Bambang_Sutantio>
+        schema:netWorth  1.6 ;
+        foaf:name        "Bambang Sutantio" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "dairy & consumer products" .
 
-<http://dbpedia.org/resource/Lili_Tan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lili_Tan>
+        schema:netWorth  1.6 ;
+        foaf:name        "Lili Tan" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "feed" .
 
-<http://dbpedia.org/resource/Tan_Yu_Yeh>
-        schema:netWorth  "1.6" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Tan_Yu_Yeh>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tan Yu Yeh" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/David_Teoh>
-        schema:netWorth  "1.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/David_Teoh>
+        schema:netWorth  1.6 ;
+        foaf:name        "David Teoh" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Carl_Thoma>
-        schema:netWorth  "1.6" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Carl_Thoma>
+        schema:netWorth  1.6 ;
+        foaf:name        "Carl Thoma" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Ion_Tiriac>
-        schema:netWorth  "1.6" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Romania> ;
+<http://example.org/person/Ion_Tiriac>
+        schema:netWorth  1.6 ;
+        foaf:name        "Ion Tiriac" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Romania> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, insurance" .
 
-<http://dbpedia.org/resource/Clemens_Toennies>
-        schema:netWorth  "1.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Clemens_Toennies>
+        schema:netWorth  1.6 ;
+        foaf:name        "Clemens Toennies" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "meat processing" .
 
-<http://dbpedia.org/resource/Tran_Ba_Duong_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Vietnam> ;
+<http://example.org/person/Tran_Ba_Duong_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tran Ba Duong & family" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Vietnam> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automotive" .
 
-<http://dbpedia.org/resource/Tseng_Sing-ai>
-        schema:netWorth  "1.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tseng_Sing-ai>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tseng Sing-ai" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "petrochemicals" .
 
-<http://dbpedia.org/resource/Tung_Ching_Bor>
-        schema:netWorth  "1.6" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tung_Ching_Bor>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tung Ching Bor" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Tung_Ching_Sai>
-        schema:netWorth  "1.6" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tung_Ching_Sai>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tung Ching Sai" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Scott_Watterson>
-        schema:netWorth  "1.6" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Scott_Watterson>
+        schema:netWorth  1.6 ;
+        foaf:name        "Scott Watterson" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "fitness equipment" .
 
-<http://dbpedia.org/resource/Wei_Ing-Chou>
-        schema:netWorth  "1.6" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wei_Ing-Chou>
+        schema:netWorth  1.6 ;
+        foaf:name        "Wei Ing-Chou" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food, beverages" .
 
-<http://dbpedia.org/resource/Wei_Yin-Chun>
-        schema:netWorth  "1.6" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wei_Yin-Chun>
+        schema:netWorth  1.6 ;
+        foaf:name        "Wei Yin-Chun" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food, beverages" .
 
-<http://dbpedia.org/resource/Wei_Ying-Chiao>
-        schema:netWorth  "1.6" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wei_Ying-Chiao>
+        schema:netWorth  1.6 ;
+        foaf:name        "Wei Ying-Chiao" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food, beverages" .
 
-<http://dbpedia.org/resource/Tom_Werner>
-        schema:netWorth  "1.6" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tom_Werner>
+        schema:netWorth  1.6 ;
+        foaf:name        "Tom Werner" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports teams" .
 
-<http://dbpedia.org/resource/Kie_Chie_Wong>
-        schema:netWorth  "1.6" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Kie_Chie_Wong>
+        schema:netWorth  1.6 ;
+        foaf:name        "Kie Chie Wong" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Xu_Guozhong_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Guozhong_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Xu Guozhong & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Motors" .
 
-<http://dbpedia.org/resource/Xu_Yuejuan>
-        schema:netWorth  "1.6" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Yuejuan>
+        schema:netWorth  1.6 ;
+        foaf:name        "Xu Yuejuan" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Petro Fibre" .
 
-<http://dbpedia.org/resource/Yang_Tingdong>
-        schema:netWorth  "1.6" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Tingdong>
+        schema:netWorth  1.6 ;
+        foaf:name        "Yang Tingdong" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "brewery" .
 
-<http://dbpedia.org/resource/Yu_Peidi>
-        schema:netWorth  "1.6" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Yu_Peidi>
+        schema:netWorth  1.6 ;
+        foaf:name        "Yu Peidi" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Matei_Zaharia>
-        schema:netWorth  "1.6" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Romania> ;
+<http://example.org/person/Matei_Zaharia>
+        schema:netWorth  1.6 ;
+        foaf:name        "Matei Zaharia" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Romania> ;
         dbo:industry     "Technology" ;
         dbo:source       "data analytics" .
 
-<http://dbpedia.org/resource/Zhang_Jian>
-        schema:netWorth  "1.6" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Jian>
+        schema:netWorth  1.6 ;
+        foaf:name        "Zhang Jian" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electric bikes, scooters" .
 
-<http://dbpedia.org/resource/Keqiang_Zhang>
-        schema:netWorth  "1.6" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Keqiang_Zhang>
+        schema:netWorth  1.6 ;
+        foaf:name        "Keqiang Zhang" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Zheng_Jianjiang_&_family>
-        schema:netWorth  "1.6" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zheng_Jianjiang_&_family>
+        schema:netWorth  1.6 ;
+        foaf:name        "Zheng Jianjiang & family" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electrical equipment" .
 
-<http://dbpedia.org/resource/Zhong_Sheng_Jian>
-        schema:netWorth  "1.6" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Zhong_Sheng_Jian>
+        schema:netWorth  1.6 ;
+        foaf:name        "Zhong Sheng Jian" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Antti_Aarnio-Wihuri>
-        schema:netWorth  "1.5" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Antti_Aarnio-Wihuri>
+        schema:netWorth  1.5 ;
+        foaf:name        "Antti Aarnio-Wihuri" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Hamdi_Akin_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Hamdi_Akin_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Hamdi Akin & family" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Chirayu_Amin>
-        schema:netWorth  "1.5" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Chirayu_Amin>
+        schema:netWorth  1.5 ;
+        foaf:name        "Chirayu Amin" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Joachim_Ante>
-        schema:netWorth  "1.5" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Joachim_Ante>
+        schema:netWorth  1.5 ;
+        foaf:name        "Joachim Ante" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Technology" ;
         dbo:source       "game software" .
 
-<http://dbpedia.org/resource/Ziv_Aviram>
-        schema:netWorth  "1.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Ziv_Aviram>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ziv Aviram" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automotive technology" .
 
-<http://dbpedia.org/resource/Danna_Azrieli>
-        schema:netWorth  "1.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Danna_Azrieli>
+        schema:netWorth  1.5 ;
+        foaf:name        "Danna Azrieli" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "Real estate" .
 
-<http://dbpedia.org/resource/Naomi_Azrieli>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Naomi_Azrieli>
+        schema:netWorth  1.5 ;
+        foaf:name        "Naomi Azrieli" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "Real estate" .
 
-<http://dbpedia.org/resource/Sharon_Azrieli>
-        schema:netWorth  "1.5" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Sharon_Azrieli>
+        schema:netWorth  1.5 ;
+        foaf:name        "Sharon Azrieli" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "Real estate" .
 
-<http://dbpedia.org/resource/Lesley_Bamberger>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Lesley_Bamberger>
+        schema:netWorth  1.5 ;
+        foaf:name        "Lesley Bamberger" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Bernhard_Braun-Luedicke>
-        schema:netWorth  "1.5" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Bernhard_Braun-Luedicke>
+        schema:netWorth  1.5 ;
+        foaf:name        "Bernhard Braun-Luedicke" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Eva_Maria_Braun-Luedicke>
-        schema:netWorth  "1.5" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Eva_Maria_Braun-Luedicke>
+        schema:netWorth  1.5 ;
+        foaf:name        "Eva Maria Braun-Luedicke" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Ana_Maria_Brescia_Cafferata>
-        schema:netWorth  "1.5" ;
-        foaf:age         "97" ;
-        foaf:based_near  <http://dbpedia.org/resource/Peru> ;
+<http://example.org/person/Ana_Maria_Brescia_Cafferata>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ana Maria Brescia Cafferata" ;
+        foaf:age         97 ;
+        dbo:location     <http://dbpedia.org/resource/Peru> ;
         dbo:industry     "diversified" ;
         dbo:source       "mining, banking" .
 
-<http://dbpedia.org/resource/Nikolai_Buinov>
-        schema:netWorth  "1.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Nikolai_Buinov>
+        schema:netWorth  1.5 ;
+        foaf:name        "Nikolai Buinov" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, gas" .
 
-<http://dbpedia.org/resource/Paolo_Bulgari>
-        schema:netWorth  "1.5" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Paolo_Bulgari>
+        schema:netWorth  1.5 ;
+        foaf:name        "Paolo Bulgari" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Andres_Bzurovski_Bay>
-        schema:netWorth  "1.5" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Uruguay> ;
+<http://example.org/person/Andres_Bzurovski_Bay>
+        schema:netWorth  1.5 ;
+        foaf:name        "Andres Bzurovski Bay" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Uruguay> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Ahmet_Calik>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Ahmet_Calik>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ahmet Calik" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "energy, banking, construction" .
 
-<http://dbpedia.org/resource/Giuliana_Caprotti>
-        schema:netWorth  "1.5" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Giuliana_Caprotti>
+        schema:netWorth  1.5 ;
+        foaf:name        "Giuliana Caprotti" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Marina_Caprotti>
-        schema:netWorth  "1.5" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Marina_Caprotti>
+        schema:netWorth  1.5 ;
+        foaf:name        "Marina Caprotti" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Steve_Case>
-        schema:netWorth  "1.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steve_Case>
+        schema:netWorth  1.5 ;
+        foaf:name        "Steve Case" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "AOL" .
 
-<http://dbpedia.org/resource/Safra_Catz>
-        schema:netWorth  "1.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Safra_Catz>
+        schema:netWorth  1.5 ;
+        foaf:name        "Safra Catz" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Binod_Chaudhary>
-        schema:netWorth  "1.5" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Nepal> ;
+<http://example.org/person/Binod_Chaudhary>
+        schema:netWorth  1.5 ;
+        foaf:name        "Binod Chaudhary" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Nepal> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Chen_Baohua>
-        schema:netWorth  "1.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Baohua>
+        schema:netWorth  1.5 ;
+        foaf:name        "Chen Baohua" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceutical" .
 
-<http://dbpedia.org/resource/Xianbao_Chen_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xianbao_Chen_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xianbao Chen & family" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Chung_Yong-jin>
-        schema:netWorth  "1.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Chung_Yong-jin>
+        schema:netWorth  1.5 ;
+        foaf:name        "Chung Yong-jin" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Steve_Conine>
-        schema:netWorth  "1.5" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steve_Conine>
+        schema:netWorth  1.5 ;
+        foaf:name        "Steve Conine" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "online retail" .
 
-<http://dbpedia.org/resource/Eduardo_Costantini>
-        schema:netWorth  "1.5" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Argentina> ;
+<http://example.org/person/Eduardo_Costantini>
+        schema:netWorth  1.5 ;
+        foaf:name        "Eduardo Costantini" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Argentina> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Wenjun_Dai>
-        schema:netWorth  "1.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wenjun_Dai>
+        schema:netWorth  1.5 ;
+        foaf:name        "Wenjun Dai" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Bharat_Desai>
-        schema:netWorth  "1.5" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bharat_Desai>
+        schema:netWorth  1.5 ;
+        foaf:name        "Bharat Desai" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT consulting" .
 
-<http://dbpedia.org/resource/Mohammed_Dewji>
-        schema:netWorth  "1.5" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Tanzania> ;
+<http://example.org/person/Mohammed_Dewji>
+        schema:netWorth  1.5 ;
+        foaf:name        "Mohammed Dewji" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Tanzania> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Mathias_Doepfner>
-        schema:netWorth  "1.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Mathias_Doepfner>
+        schema:netWorth  1.5 ;
+        foaf:name        "Mathias Doepfner" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Domenico_Dolce>
-        schema:netWorth  "1.5" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Domenico_Dolce>
+        schema:netWorth  1.5 ;
+        foaf:name        "Domenico Dolce" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Marek_Dospiva>
-        schema:netWorth  "1.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Marek_Dospiva>
+        schema:netWorth  1.5 ;
+        foaf:name        "Marek Dospiva" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Fritz_Draexlmaier>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Fritz_Draexlmaier>
+        schema:netWorth  1.5 ;
+        foaf:name        "Fritz Draexlmaier" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Henrique_Dubugras>
-        schema:netWorth  "1.5" ;
-        foaf:age         "26" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Henrique_Dubugras>
+        schema:netWorth  1.5 ;
+        foaf:name        "Henrique Dubugras" ;
+        foaf:age         26 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Egon_Durban>
-        schema:netWorth  "1.5" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Egon_Durban>
+        schema:netWorth  1.5 ;
+        foaf:name        "Egon Durban" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Bulent_Eczacibasi>
-        schema:netWorth  "1.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Bulent_Eczacibasi>
+        schema:netWorth  1.5 ;
+        foaf:name        "Bulent Eczacibasi" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "pharmaceuticals, diversified  " .
 
-<http://dbpedia.org/resource/Faruk_Eczacibasi>
-        schema:netWorth  "1.5" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Faruk_Eczacibasi>
+        schema:netWorth  1.5 ;
+        foaf:name        "Faruk Eczacibasi" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "pharmaceuticals, diversified  " .
 
-<http://dbpedia.org/resource/Henry_Engelhardt>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Henry_Engelhardt>
+        schema:netWorth  1.5 ;
+        foaf:name        "Henry Engelhardt" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Ali_Erdemoglu>
-        schema:netWorth  "1.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Ali_Erdemoglu>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ali Erdemoglu" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "carpet" .
 
-<http://dbpedia.org/resource/Eduardo_Eurnekian>
-        schema:netWorth  "1.5" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Argentina> ;
+<http://example.org/person/Eduardo_Eurnekian>
+        schema:netWorth  1.5 ;
+        foaf:name        "Eduardo Eurnekian" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Argentina> ;
         dbo:industry     "diversified" ;
         dbo:source       "airports, investments" .
 
-<http://dbpedia.org/resource/John_Farber>
-        schema:netWorth  "1.5" ;
-        foaf:age         "96" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Farber>
+        schema:netWorth  1.5 ;
+        foaf:name        "John Farber" ;
+        foaf:age         96 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Clement_Fayat_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "90" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Clement_Fayat_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Clement Fayat & family" ;
+        foaf:age         90 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Daniel_Feffer>
-        schema:netWorth  "1.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Daniel_Feffer>
+        schema:netWorth  1.5 ;
+        foaf:name        "Daniel Feffer" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "pulp and paper" .
 
-<http://dbpedia.org/resource/David_Feffer>
-        schema:netWorth  "1.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/David_Feffer>
+        schema:netWorth  1.5 ;
+        foaf:name        "David Feffer" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "pulp and paper" .
 
-<http://dbpedia.org/resource/Ruben_Feffer>
-        schema:netWorth  "1.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Ruben_Feffer>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ruben Feffer" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "pulp and paper" .
 
-<http://dbpedia.org/resource/Feng_Yuxia>
-        schema:netWorth  "1.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Feng_Yuxia>
+        schema:netWorth  1.5 ;
+        foaf:name        "Feng Yuxia" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Sergio_Fogel>
-        schema:netWorth  "1.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Uruguay> ;
+<http://example.org/person/Sergio_Fogel>
+        schema:netWorth  1.5 ;
+        foaf:name        "Sergio Fogel" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Uruguay> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Pedro_Franceschi>
-        schema:netWorth  "1.5" ;
-        foaf:age         "25" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Pedro_Franceschi>
+        schema:netWorth  1.5 ;
+        foaf:name        "Pedro Franceschi" ;
+        foaf:age         25 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Stefano_Gabbana>
-        schema:netWorth  "1.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Stefano_Gabbana>
+        schema:netWorth  1.5 ;
+        foaf:name        "Stefano Gabbana" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "luxury goods" .
 
-<http://dbpedia.org/resource/Yi_Gao_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yi_Gao_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Yi Gao & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Geng_Jianming>
-        schema:netWorth  "1.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Geng_Jianming>
+        schema:netWorth  1.5 ;
+        foaf:name        "Geng Jianming" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Alan_Gerry>
-        schema:netWorth  "1.5" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alan_Gerry>
+        schema:netWorth  1.5 ;
+        foaf:name        "Alan Gerry" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "cable television" .
 
-<http://dbpedia.org/resource/Balkrishan_Goenka>
-        schema:netWorth  "1.5" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Balkrishan_Goenka>
+        schema:netWorth  1.5 ;
+        foaf:name        "Balkrishan Goenka" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "textiles" .
 
-<http://dbpedia.org/resource/Esther_Grether>
-        schema:netWorth  "1.5" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Esther_Grether>
+        schema:netWorth  1.5 ;
+        foaf:name        "Esther Grether" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "art collection" .
 
-<http://dbpedia.org/resource/Gu_Wei>
-        schema:netWorth  "1.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gu_Wei>
+        schema:netWorth  1.5 ;
+        foaf:name        "Gu Wei" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "consumer electronics" .
 
-<http://dbpedia.org/resource/Torstein_Hagen>
-        schema:netWorth  "1.5" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Torstein_Hagen>
+        schema:netWorth  1.5 ;
+        foaf:name        "Torstein Hagen" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Service" ;
         dbo:source       "cruises" .
 
-<http://dbpedia.org/resource/Kenneth_Hao>
-        schema:netWorth  "1.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kenneth_Hao>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kenneth Hao" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/He_Zhiping>
-        schema:netWorth  "1.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Zhiping>
+        schema:netWorth  1.5 ;
+        foaf:name        "He Zhiping" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Timothy_Headington>
-        schema:netWorth  "1.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Timothy_Headington>
+        schema:netWorth  1.5 ;
+        foaf:name        "Timothy Headington" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas, investments" .
 
-<http://dbpedia.org/resource/Ilona_Herlin>
-        schema:netWorth  "1.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Ilona_Herlin>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ilona Herlin" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "elevators, escalators" .
 
-<http://dbpedia.org/resource/Niranjan_Hiranandani>
-        schema:netWorth  "1.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Niranjan_Hiranandani>
+        schema:netWorth  1.5 ;
+        foaf:name        "Niranjan Hiranandani" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Drew_Houston>
-        schema:netWorth  "1.5" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Drew_Houston>
+        schema:netWorth  1.5 ;
+        foaf:name        "Drew Houston" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud storage service" .
 
-<http://dbpedia.org/resource/Huang_Rulun>
-        schema:netWorth  "1.5" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Rulun>
+        schema:netWorth  1.5 ;
+        foaf:name        "Huang Rulun" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Matt_Hulsizer>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Matt_Hulsizer>
+        schema:netWorth  1.5 ;
+        foaf:name        "Matt Hulsizer" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Justin_Ishbia>
-        schema:netWorth  "1.5" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Justin_Ishbia>
+        schema:netWorth  1.5 ;
+        foaf:name        "Justin Ishbia" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equityÔÿà" .
 
-<http://dbpedia.org/resource/Peter_Jackson>
-        schema:netWorth  "1.5" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/New_Zealand> ;
+<http://example.org/person/Peter_Jackson>
+        schema:netWorth  1.5 ;
+        foaf:name        "Peter Jackson" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/New_Zealand> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "movies, digital effects" .
 
-<http://dbpedia.org/resource/Jin_Lei>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jin_Lei>
+        schema:netWorth  1.5 ;
+        foaf:name        "Jin Lei" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Jin_Xin>
-        schema:netWorth  "1.5" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jin_Xin>
+        schema:netWorth  1.5 ;
+        foaf:name        "Jin Xin" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Conni_Jonsson>
-        schema:netWorth  "1.5" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Conni_Jonsson>
+        schema:netWorth  1.5 ;
+        foaf:name        "Conni Jonsson" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "asset management" .
 
-<http://dbpedia.org/resource/Jenny_Just>
-        schema:netWorth  "1.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jenny_Just>
+        schema:netWorth  1.5 ;
+        foaf:name        "Jenny Just" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Ke_Xiping_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ke_Xiping_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ke Xiping & family" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Ke_Zunhong_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ke_Zunhong_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ke Zunhong & family" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Sidney_Kimmel>
-        schema:netWorth  "1.5" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sidney_Kimmel>
+        schema:netWorth  1.5 ;
+        foaf:name        "Sidney Kimmel" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Seth_Klarman>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Seth_Klarman>
+        schema:netWorth  1.5 ;
+        foaf:name        "Seth Klarman" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Mustafa_Rahmi_Koc>
-        schema:netWorth  "1.5" ;
-        foaf:age         "91" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Mustafa_Rahmi_Koc>
+        schema:netWorth  1.5 ;
+        foaf:name        "Mustafa Rahmi Koc" ;
+        foaf:age         91 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Pyotr_Kondrashev>
-        schema:netWorth  "1.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Pyotr_Kondrashev>
+        schema:netWorth  1.5 ;
+        foaf:name        "Pyotr Kondrashev" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Kong_Jian_Min>
-        schema:netWorth  "1.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Kong_Jian_Min>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kong Jian Min" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Hemendra_Kothari>
-        schema:netWorth  "1.5" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Hemendra_Kothari>
+        schema:netWorth  1.5 ;
+        foaf:name        "Hemendra Kothari" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Eduard_Kucera>
-        schema:netWorth  "1.5" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Czechia> ;
+<http://example.org/person/Eduard_Kucera>
+        schema:netWorth  1.5 ;
+        foaf:name        "Eduard Kucera" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Czechia> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Christopher_Kwok>
-        schema:netWorth  "1.5" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Christopher_Kwok>
+        schema:netWorth  1.5 ;
+        foaf:name        "Christopher Kwok" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Edward_Kwok>
-        schema:netWorth  "1.5" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Edward_Kwok>
+        schema:netWorth  1.5 ;
+        foaf:name        "Edward Kwok" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Joe_Lacob>
-        schema:netWorth  "1.5" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Joe_Lacob>
+        schema:netWorth  1.5 ;
+        foaf:name        "Joe Lacob" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "Golden State Warriors" .
 
-<http://dbpedia.org/resource/Lai_Jianfa>
-        schema:netWorth  "1.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lai_Jianfa>
+        schema:netWorth  1.5 ;
+        foaf:name        "Lai Jianfa" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "express delivery" .
 
-<http://dbpedia.org/resource/Manuel_Lao_Hern%C3%A1ndez>
-        schema:netWorth  "1.5" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Manuel_Lao_Hern%C3%A1ndez>
+        schema:netWorth  1.5 ;
+        foaf:name        "Manuel Lao Hernández" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "casinos" .
 
-<http://dbpedia.org/resource/Lee_Joon-ho>
-        schema:netWorth  "1.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Joon-ho>
+        schema:netWorth  1.5 ;
+        foaf:name        "Lee Joon-ho" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Manfredi_Lefebvre_d'Ovidio_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Manfredi_Lefebvre_d'Ovidio_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Manfredi Lefebvre d'Ovidio & family" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Service" ;
         dbo:source       "cruises" .
 
-<http://dbpedia.org/resource/Li_Jinyang>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Jinyang>
+        schema:netWorth  1.5 ;
+        foaf:name        "Li Jinyang" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Li_Ming>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Ming>
+        schema:netWorth  1.5 ;
+        foaf:name        "Li Ming" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Zhen_Li_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhen_Li_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Zhen Li & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "lithium batteries" .
 
-<http://dbpedia.org/resource/Rongfu_Lu>
-        schema:netWorth  "1.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Rongfu_Lu>
+        schema:netWorth  1.5 ;
+        foaf:name        "Rongfu Lu" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecommunication" .
 
-<http://dbpedia.org/resource/Rafique_Malik>
-        schema:netWorth  "1.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rafique_Malik>
+        schema:netWorth  1.5 ;
+        foaf:name        "Rafique Malik" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "footwear" .
 
-<http://dbpedia.org/resource/Youssef_Mansour>
-        schema:netWorth  "1.5" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Egypt> ;
+<http://example.org/person/Youssef_Mansour>
+        schema:netWorth  1.5 ;
+        foaf:name        "Youssef Mansour" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Egypt> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Mao_Lixiang_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Mao_Lixiang_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Mao Lixiang & family" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "cooking appliances" .
 
-<http://dbpedia.org/resource/David_McMurtry>
-        schema:netWorth  "1.5" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/David_McMurtry>
+        schema:netWorth  1.5 ;
+        foaf:name        "David McMurtry" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Meng_Qingshan_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Meng_Qingshan_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Meng Qingshan & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Alan_Miller_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alan_Miller_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Alan Miller & family" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare services" .
 
-<http://dbpedia.org/resource/Greg_Mondre>
-        schema:netWorth  "1.5" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Greg_Mondre>
+        schema:netWorth  1.5 ;
+        foaf:name        "Greg Mondre" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Massimo_Moratti>
-        schema:netWorth  "1.5" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Massimo_Moratti>
+        schema:netWorth  1.5 ;
+        foaf:name        "Massimo Moratti" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil refinery" .
 
-<http://dbpedia.org/resource/Robert_Mouawad>
-        schema:netWorth  "1.5" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Lebanon> ;
+<http://example.org/person/Robert_Mouawad>
+        schema:netWorth  1.5 ;
+        foaf:name        "Robert Mouawad" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Lebanon> ;
         dbo:industry     "Service" ;
         dbo:source       "fine jewelry" .
 
-<http://dbpedia.org/resource/Ezra_Nahmad>
-        schema:netWorth  "1.5" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Monaco> ;
+<http://example.org/person/Ezra_Nahmad>
+        schema:netWorth  1.5 ;
+        foaf:name        "Ezra Nahmad" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Monaco> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "art" .
 
-<http://dbpedia.org/resource/Tadako_Nakatani>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Tadako_Nakatani>
+        schema:netWorth  1.5 ;
+        foaf:name        "Tadako Nakatani" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical diagnostic equipment" .
 
-<http://dbpedia.org/resource/Kentaro_Ogawa>
-        schema:netWorth  "1.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Kentaro_Ogawa>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kentaro Ogawa" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurants" .
 
-<http://dbpedia.org/resource/Jonathan_Oringer>
-        schema:netWorth  "1.5" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jonathan_Oringer>
+        schema:netWorth  1.5 ;
+        foaf:name        "Jonathan Oringer" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "stock photos" .
 
-<http://dbpedia.org/resource/Niti_Osathanugrah>
-        schema:netWorth  "1.5" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Niti_Osathanugrah>
+        schema:netWorth  1.5 ;
+        foaf:name        "Niti Osathanugrah" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "energy drinks,investments" .
 
-<http://dbpedia.org/resource/Dragos_Paval>
-        schema:netWorth  "1.5" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Romania> ;
+<http://example.org/person/Dragos_Paval>
+        schema:netWorth  1.5 ;
+        foaf:name        "Dragos Paval" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Romania> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Zach_Perret>
-        schema:netWorth  "1.5" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Zach_Perret>
+        schema:netWorth  1.5 ;
+        foaf:name        "Zach Perret" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Karl-Johan_Persson>
-        schema:netWorth  "1.5" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Karl-Johan_Persson>
+        schema:netWorth  1.5 ;
+        foaf:name        "Karl-Johan Persson" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "H&M" .
 
-<http://dbpedia.org/resource/Markus_Persson>
-        schema:netWorth  "1.5" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Markus_Persson>
+        schema:netWorth  1.5 ;
+        foaf:name        "Markus Persson" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "computer games" .
 
-<http://dbpedia.org/resource/Tom_Persson>
-        schema:netWorth  "1.5" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Tom_Persson>
+        schema:netWorth  1.5 ;
+        foaf:name        "Tom Persson" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "H&M" .
 
-<http://dbpedia.org/resource/Kevin_Plank>
-        schema:netWorth  "1.5" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kevin_Plank>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kevin Plank" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Under Armour" .
 
-<http://dbpedia.org/resource/Andreas_Pohl>
-        schema:netWorth  "1.5" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Andreas_Pohl>
+        schema:netWorth  1.5 ;
+        foaf:name        "Andreas Pohl" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mutual funds" .
 
-<http://dbpedia.org/resource/Reinfried_Pohl,_Jr.>
-        schema:netWorth  "1.5" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Reinfried_Pohl,_Jr.>
+        schema:netWorth  1.5 ;
+        foaf:name        "Reinfried Pohl, Jr." ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mutual funds" .
 
-<http://dbpedia.org/resource/Michael_Polsky>
-        schema:netWorth  "1.5" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Polsky>
+        schema:netWorth  1.5 ;
+        foaf:name        "Michael Polsky" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "Electric power" .
 
-<http://dbpedia.org/resource/Qin_Long>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qin_Long>
+        schema:netWorth  1.5 ;
+        foaf:name        "Qin Long" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "tire" .
 
-<http://dbpedia.org/resource/G._M._Rao>
-        schema:netWorth  "1.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/G._M._Rao>
+        schema:netWorth  1.5 ;
+        foaf:name        "G. M. Rao" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Logistics" ;
         dbo:source       "infrastructure" .
 
-<http://dbpedia.org/resource/Mike_Repole>
-        schema:netWorth  "1.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mike_Repole>
+        schema:netWorth  1.5 ;
+        foaf:name        "Mike Repole" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "sports drink" .
 
-<http://dbpedia.org/resource/Fernando_Roig>
-        schema:netWorth  "1.5" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Fernando_Roig>
+        schema:netWorth  1.5 ;
+        foaf:name        "Fernando Roig" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Christopher_Rokos>
-        schema:netWorth  "1.5" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Christopher_Rokos>
+        schema:netWorth  1.5 ;
+        foaf:name        "Christopher Rokos" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge fund" .
 
-<http://dbpedia.org/resource/Fayez_Sarofim>
-        schema:netWorth  "1.5" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Fayez_Sarofim>
+        schema:netWorth  1.5 ;
+        foaf:name        "Fayez Sarofim" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Antonio_Luiz_Seabra>
-        schema:netWorth  "1.5" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Antonio_Luiz_Seabra>
+        schema:netWorth  1.5 ;
+        foaf:name        "Antonio Luiz Seabra" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Amnon_Shashua>
-        schema:netWorth  "1.5" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Amnon_Shashua>
+        schema:netWorth  1.5 ;
+        foaf:name        "Amnon Shashua" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automotive technology" .
 
-<http://dbpedia.org/resource/Yuri_Shefler>
-        schema:netWorth  "1.5" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Yuri_Shefler>
+        schema:netWorth  1.5 ;
+        foaf:name        "Yuri Shefler" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "alcohol" .
 
-<http://dbpedia.org/resource/Mikhail_Shelkov>
-        schema:netWorth  "1.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Mikhail_Shelkov>
+        schema:netWorth  1.5 ;
+        foaf:name        "Mikhail Shelkov" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "titanium" .
 
-<http://dbpedia.org/resource/Charlotte_Soderstrom>
-        schema:netWorth  "1.5" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Charlotte_Soderstrom>
+        schema:netWorth  1.5 ;
+        foaf:name        "Charlotte Soderstrom" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "H&M" .
 
-<http://dbpedia.org/resource/Edwin_Soeryadjaya>
-        schema:netWorth  "1.5" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Edwin_Soeryadjaya>
+        schema:netWorth  1.5 ;
+        foaf:name        "Edwin Soeryadjaya" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Energy" ;
         dbo:source       "coal, investments" .
 
-<http://dbpedia.org/resource/Thomas_Steyer>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Steyer>
+        schema:netWorth  1.5 ;
+        foaf:name        "Thomas Steyer" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Kevin_Systrom>
-        schema:netWorth  "1.5" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kevin_Systrom>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kevin Systrom" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "Instagram" .
 
-<http://dbpedia.org/resource/Tang_Binsen>
-        schema:netWorth  "1.5" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tang_Binsen>
+        schema:netWorth  1.5 ;
+        foaf:name        "Tang Binsen" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Hary_Tanoesoedibjo>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Hary_Tanoesoedibjo>
+        schema:netWorth  1.5 ;
+        foaf:name        "Hary Tanoesoedibjo" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media, real estate" .
 
-<http://dbpedia.org/resource/Jonathan_Tisch>
-        schema:netWorth  "1.5" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jonathan_Tisch>
+        schema:netWorth  1.5 ;
+        foaf:name        "Jonathan Tisch" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "insurance, NFL team" .
 
-<http://dbpedia.org/resource/Wilma_Tisch>
-        schema:netWorth  "1.5" ;
-        foaf:age         "94" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Wilma_Tisch>
+        schema:netWorth  1.5 ;
+        foaf:name        "Wilma Tisch" ;
+        foaf:age         94 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kenny_Troutt>
-        schema:netWorth  "1.5" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Kenny_Troutt>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kenny Troutt" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Thomas_von_Koch>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Thomas_von_Koch>
+        schema:netWorth  1.5 ;
+        foaf:name        "Thomas von Koch" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "asset management" .
 
-<http://dbpedia.org/resource/Junjin_Wang>
-        schema:netWorth  "1.5" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Junjin_Wang>
+        schema:netWorth  1.5 ;
+        foaf:name        "Junjin Wang" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "airline" .
 
-<http://dbpedia.org/resource/Wang_Zelong>
-        schema:netWorth  "1.5" ;
-        foaf:age         "25" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Zelong>
+        schema:netWorth  1.5 ;
+        foaf:name        "Wang Zelong" ;
+        foaf:age         25 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Myron_Wentz>
-        schema:netWorth  "1.5" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/St._Kitts_and_Nevis> ;
+<http://example.org/person/Myron_Wentz>
+        schema:netWorth  1.5 ;
+        foaf:name        "Myron Wentz" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/St._Kitts_and_Nevis> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "health products" .
 
-<http://dbpedia.org/resource/Kaiting_Wu>
-        schema:netWorth  "1.5" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Kaiting_Wu>
+        schema:netWorth  1.5 ;
+        foaf:name        "Kaiting Wu" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Telecom" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Xiong_Wu>
-        schema:netWorth  "1.5" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiong_Wu>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xiong Wu" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Xu_Wanmao>
-        schema:netWorth  "1.5" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Wanmao>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xu Wanmao" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Xu_Zhenhua>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Zhenhua>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xu Zhenhua" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Xue_Jiping>
-        schema:netWorth  "1.5" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xue_Jiping>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xue Jiping" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Telecom" ;
         dbo:source       "cable" .
 
-<http://dbpedia.org/resource/Yang_Jian>
-        schema:netWorth  "1.5" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Jian>
+        schema:netWorth  1.5 ;
+        foaf:name        "Yang Jian" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Justin_Yuan>
-        schema:netWorth  "1.5" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Justin_Yuan>
+        schema:netWorth  1.5 ;
+        foaf:name        "Justin Yuan" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Xinghai_Zhang_&_family>
-        schema:netWorth  "1.5" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xinghai_Zhang_&_family>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xinghai Zhang & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Xuansong_Zhang>
-        schema:netWorth  "1.5" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xuansong_Zhang>
+        schema:netWorth  1.5 ;
+        foaf:name        "Xuansong Zhang" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Zhang_Yin>
-        schema:netWorth  "1.5" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Yin>
+        schema:netWorth  1.5 ;
+        foaf:name        "Zhang Yin" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper manufacturing" .
 
-<http://dbpedia.org/resource/Chengjian_Zhou>
-        schema:netWorth  "1.5" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chengjian_Zhou>
+        schema:netWorth  1.5 ;
+        foaf:name        "Chengjian Zhou" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Radhe_Shyam_Agarwal>
-        schema:netWorth  "1.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Radhe_Shyam_Agarwal>
+        schema:netWorth  1.4 ;
+        foaf:name        "Radhe Shyam Agarwal" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Syed_Mokhtar_AlBukhary>
-        schema:netWorth  "1.4" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Syed_Mokhtar_AlBukhary>
+        schema:netWorth  1.4 ;
+        foaf:name        "Syed Mokhtar AlBukhary" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "engineering, automotive" .
 
-<http://dbpedia.org/resource/Nerio_Alessandri>
-        schema:netWorth  "1.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Nerio_Alessandri>
+        schema:netWorth  1.4 ;
+        foaf:name        "Nerio Alessandri" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "gym equipment" .
 
-<http://dbpedia.org/resource/Patricia_Angelini_Rossi>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Chile> ;
+<http://example.org/person/Patricia_Angelini_Rossi>
+        schema:netWorth  1.4 ;
+        foaf:name        "Patricia Angelini Rossi" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Chile> ;
         dbo:industry     "diversified" ;
         dbo:source       "forestry, mining" .
 
-<http://dbpedia.org/resource/Tope_Awotona>
-        schema:netWorth  "1.4" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tope_Awotona>
+        schema:netWorth  1.4 ;
+        foaf:name        "Tope Awotona" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Elena_Baturina>
-        schema:netWorth  "1.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Elena_Baturina>
+        schema:netWorth  1.4 ;
+        foaf:name        "Elena Baturina" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "investments, real estate" .
 
-<http://dbpedia.org/resource/Sabrina_Benetton>
-        schema:netWorth  "1.4" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Sabrina_Benetton>
+        schema:netWorth  1.4 ;
+        foaf:name        "Sabrina Benetton" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail, investments" .
 
-<http://dbpedia.org/resource/Thomas_Bruch>
-        schema:netWorth  "1.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Thomas_Bruch>
+        schema:netWorth  1.4 ;
+        foaf:name        "Thomas Bruch" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Marina_Budiman>
-        schema:netWorth  "1.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Marina_Budiman>
+        schema:netWorth  1.4 ;
+        foaf:name        "Marina Budiman" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Technology" ;
         dbo:source       "data centers" .
 
-<http://dbpedia.org/resource/Stewart_Butterfield>
-        schema:netWorth  "1.4" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Stewart_Butterfield>
+        schema:netWorth  1.4 ;
+        foaf:name        "Stewart Butterfield" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Technology" ;
         dbo:source       "messaging software" .
 
-<http://dbpedia.org/resource/Richard_Chang>
-        schema:netWorth  "1.4" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Richard_Chang>
+        schema:netWorth  1.4 ;
+        foaf:name        "Richard Chang" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, electronics" .
 
-<http://dbpedia.org/resource/Chen_Tianqiao>
-        schema:netWorth  "1.4" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Tianqiao>
+        schema:netWorth  1.4 ;
+        foaf:name        "Chen Tianqiao" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Chen_Wenyuan_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Wenyuan_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Chen Wenyuan & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "testing equipment" .
 
-<http://dbpedia.org/resource/Cheng_Antares>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Cheng_Antares>
+        schema:netWorth  1.4 ;
+        foaf:name        "Cheng Antares" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "liquor" .
 
-<http://dbpedia.org/resource/Chin_Jong_Hwa>
-        schema:netWorth  "1.4" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chin_Jong_Hwa>
+        schema:netWorth  1.4 ;
+        foaf:name        "Chin Jong Hwa" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Cho_Jyh-jer>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Cho_Jyh-jer>
+        schema:netWorth  1.4 ;
+        foaf:name        "Cho Jyh-jer" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Jim_Crane>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Crane>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jim Crane" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Sports" ;
         dbo:source       "logistics, baseball" .
 
-<http://dbpedia.org/resource/Thierry_Cruanes>
-        schema:netWorth  "1.4" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thierry_Cruanes>
+        schema:netWorth  1.4 ;
+        foaf:name        "Thierry Cruanes" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Benoit_Dageville>
-        schema:netWorth  "1.4" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Benoit_Dageville>
+        schema:netWorth  1.4 ;
+        foaf:name        "Benoit Dageville" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Weili_Dai>
-        schema:netWorth  "1.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Weili_Dai>
+        schema:netWorth  1.4 ;
+        foaf:name        "Weili Dai" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Darwin_Deason>
-        schema:netWorth  "1.4" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Darwin_Deason>
+        schema:netWorth  1.4 ;
+        foaf:name        "Darwin Deason" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Diego_Della_Valle>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Diego_Della_Valle>
+        schema:netWorth  1.4 ;
+        foaf:name        "Diego Della Valle" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "shoes" .
 
-<http://dbpedia.org/resource/Deng_Yingzhong>
-        schema:netWorth  "1.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Deng_Yingzhong>
+        schema:netWorth  1.4 ;
+        foaf:name        "Deng Yingzhong" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper" .
 
-<http://dbpedia.org/resource/Ding_Shui_Po>
-        schema:netWorth  "1.4" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ding_Shui_Po>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ding Shui Po" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "sneakers, sportswear" .
 
-<http://dbpedia.org/resource/Mark_Dixon>
-        schema:netWorth  "1.4" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Mark_Dixon>
+        schema:netWorth  1.4 ;
+        foaf:name        "Mark Dixon" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "office real estate" .
 
-<http://dbpedia.org/resource/Du_Shuanghua>
-        schema:netWorth  "1.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Du_Shuanghua>
+        schema:netWorth  1.4 ;
+        foaf:name        "Du Shuanghua" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Mukand_Lal_Dua>
-        schema:netWorth  "1.4" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mukand_Lal_Dua>
+        schema:netWorth  1.4 ;
+        foaf:name        "Mukand Lal Dua" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "footwear" .
 
-<http://dbpedia.org/resource/Ramesh_Kumar_Dua>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ramesh_Kumar_Dua>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ramesh Kumar Dua" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "footwear" .
 
-<http://dbpedia.org/resource/Fan_Minhua>
-        schema:netWorth  "1.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fan_Minhua>
+        schema:netWorth  1.4 ;
+        foaf:name        "Fan Minhua" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Hongbo_Fang>
-        schema:netWorth  "1.4" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hongbo_Fang>
+        schema:netWorth  1.4 ;
+        foaf:name        "Hongbo Fang" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "home appliances" .
 
-<http://dbpedia.org/resource/William_Foley,_II.>
-        schema:netWorth  "1.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Foley,_II.>
+        schema:netWorth  1.4 ;
+        foaf:name        "William Foley, II." ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial servicesÔÿà" .
 
-<http://dbpedia.org/resource/Jayme_Garfinkel_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jayme_Garfinkel_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jayme Garfinkel & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Radhe_Shyam_Goenka>
-        schema:netWorth  "1.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Radhe_Shyam_Goenka>
+        schema:netWorth  1.4 ;
+        foaf:name        "Radhe Shyam Goenka" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Maggie_Hardy_Knox>
-        schema:netWorth  "1.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Maggie_Hardy_Knox>
+        schema:netWorth  1.4 ;
+        foaf:name        "Maggie Hardy Knox" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Ayman_Hariri>
-        schema:netWorth  "1.4" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Lebanon> ;
+<http://example.org/person/Ayman_Hariri>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ayman Hariri" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Lebanon> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction, investments" .
 
-<http://dbpedia.org/resource/Christoph_Henkel>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christoph_Henkel>
+        schema:netWorth  1.4 ;
+        foaf:name        "Christoph Henkel" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Daniel_Hirschfeld>
-        schema:netWorth  "1.4" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Daniel_Hirschfeld>
+        schema:netWorth  1.4 ;
+        foaf:name        "Daniel Hirschfeld" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/William_Hockey>
-        schema:netWorth  "1.4" ;
-        foaf:age         "32" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Hockey>
+        schema:netWorth  1.4 ;
+        foaf:name        "William Hockey" ;
+        foaf:age         32 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Huang_Guanlin>
-        schema:netWorth  "1.4" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Guanlin>
+        schema:netWorth  1.4 ;
+        foaf:name        "Huang Guanlin" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "textiles, apparel" .
 
-<http://dbpedia.org/resource/Huang_Xiaofen_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Xiaofen_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Huang Xiaofen & family" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "printed circuit boards" .
 
-<http://dbpedia.org/resource/Jay-Z>
-        schema:netWorth  "1.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jay-Z>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jay-Z" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Multiple" .
 
-<http://dbpedia.org/resource/Yintai_Jiang_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yintai_Jiang_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Yintai Jiang & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Johan_Johannson>
-        schema:netWorth  "1.4" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Johan_Johannson>
+        schema:netWorth  1.4 ;
+        foaf:name        "Johan Johannson" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "grocery stores" .
 
-<http://dbpedia.org/resource/Ramesh_Juneja>
-        schema:netWorth  "1.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ramesh_Juneja>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ramesh Juneja" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Scott_Kapnick>
-        schema:netWorth  "1.4" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Scott_Kapnick>
+        schema:netWorth  1.4 ;
+        foaf:name        "Scott Kapnick" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Viktor_Kharitonin>
-        schema:netWorth  "1.4" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Viktor_Kharitonin>
+        schema:netWorth  1.4 ;
+        foaf:name        "Viktor Kharitonin" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Kim_Jun-ki>
-        schema:netWorth  "1.4" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Jun-ki>
+        schema:netWorth  1.4 ;
+        foaf:name        "Kim Jun-ki" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kim_Sang-yeol>
-        schema:netWorth  "1.4" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Sang-yeol>
+        schema:netWorth  1.4 ;
+        foaf:name        "Kim Sang-yeol" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Christine_Knauf>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christine_Knauf>
+        schema:netWorth  1.4 ;
+        foaf:name        "Christine Knauf" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Karl_Knauf>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Karl_Knauf>
+        schema:netWorth  1.4 ;
+        foaf:name        "Karl Knauf" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Yogesh_Kothari>
-        schema:netWorth  "1.4" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Yogesh_Kothari>
+        schema:netWorth  1.4 ;
+        foaf:name        "Yogesh Kothari" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "specialty chemicals" .
 
-<http://dbpedia.org/resource/Kurt_Krieger>
-        schema:netWorth  "1.4" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Kurt_Krieger>
+        schema:netWorth  1.4 ;
+        foaf:name        "Kurt Krieger" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "furniture retailing" .
 
-<http://dbpedia.org/resource/Mustafa_Kucuk>
-        schema:netWorth  "1.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Mustafa_Kucuk>
+        schema:netWorth  1.4 ;
+        foaf:name        "Mustafa Kucuk" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Sebastian_Kulczyk>
-        schema:netWorth  "1.4" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Sebastian_Kulczyk>
+        schema:netWorth  1.4 ;
+        foaf:name        "Sebastian Kulczyk" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Gary_Lauder>
-        schema:netWorth  "1.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gary_Lauder>
+        schema:netWorth  1.4 ;
+        foaf:name        "Gary Lauder" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Est├®e Lauder" .
 
-<http://dbpedia.org/resource/Art_Levinson>
-        schema:netWorth  "1.4" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Art_Levinson>
+        schema:netWorth  1.4 ;
+        foaf:name        "Art Levinson" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "Genentech, Apple" .
 
-<http://dbpedia.org/resource/Li_Li>
-        schema:netWorth  "1.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Li>
+        schema:netWorth  1.4 ;
+        foaf:name        "Li Li" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Guangwei_Liang>
-        schema:netWorth  "1.4" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guangwei_Liang>
+        schema:netWorth  1.4 ;
+        foaf:name        "Guangwei Liang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "conglomerate" .
 
-<http://dbpedia.org/resource/Scott_Lin>
-        schema:netWorth  "1.4" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Scott_Lin>
+        schema:netWorth  1.4 ;
+        foaf:name        "Scott Lin" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "optical components" .
 
-<http://dbpedia.org/resource/Jenny_Lind%C3%A9n_Urnes>
-        schema:netWorth  "1.4" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Jenny_Lind%C3%A9n_Urnes>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jenny Lind├®n Urnes" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "powdered metal" .
 
-<http://dbpedia.org/resource/Anatoly_Lomakin>
-        schema:netWorth  "1.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Anatoly_Lomakin>
+        schema:netWorth  1.4 ;
+        foaf:name        "Anatoly Lomakin" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Jeffrey_Lorberbaum>
-        schema:netWorth  "1.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeffrey_Lorberbaum>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jeffrey Lorberbaum" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "flooring" .
 
-<http://dbpedia.org/resource/Gary_Magness>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Gary_Magness>
+        schema:netWorth  1.4 ;
+        foaf:name        "Gary Magness" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "cable TV, investments" .
 
-<http://dbpedia.org/resource/Zhongwu_Mao>
-        schema:netWorth  "1.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhongwu_Mao>
+        schema:netWorth  1.4 ;
+        foaf:name        "Zhongwu Mao" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Ilson_Mateus_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Ilson_Mateus_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ilson Mateus & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "supermarkets" .
 
-<http://dbpedia.org/resource/Vadim_Moshkovich>
-        schema:netWorth  "1.4" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Vadim_Moshkovich>
+        schema:netWorth  1.4 ;
+        foaf:name        "Vadim Moshkovich" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agriculture, land" .
 
-<http://dbpedia.org/resource/Jerry_Moyes_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jerry_Moyes_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jerry Moyes & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Logistics" ;
         dbo:source       "transportation" .
 
-<http://dbpedia.org/resource/George_Alexander_Muthoot>
-        schema:netWorth  "1.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/George_Alexander_Muthoot>
+        schema:netWorth  1.4 ;
+        foaf:name        "George Alexander Muthoot" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/George_Jacob_Muthoot>
-        schema:netWorth  "1.4" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/George_Jacob_Muthoot>
+        schema:netWorth  1.4 ;
+        foaf:name        "George Jacob Muthoot" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/George_Thomas_Muthoot>
-        schema:netWorth  "1.4" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/George_Thomas_Muthoot>
+        schema:netWorth  1.4 ;
+        foaf:name        "George Thomas Muthoot" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Sara_George_Muthoot>
-        schema:netWorth  "1.4" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sara_George_Muthoot>
+        schema:netWorth  1.4 ;
+        foaf:name        "Sara George Muthoot" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Marius_Nacht>
-        schema:netWorth  "1.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Marius_Nacht>
+        schema:netWorth  1.4 ;
+        foaf:name        "Marius Nacht" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Adam_Neumann>
-        schema:netWorth  "1.4" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Adam_Neumann>
+        schema:netWorth  1.4 ;
+        foaf:name        "Adam Neumann" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "WeWork" .
 
-<http://dbpedia.org/resource/Simon_Nixon>
-        schema:netWorth  "1.4" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Simon_Nixon>
+        schema:netWorth  1.4 ;
+        foaf:name        "Simon Nixon" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Technology" ;
         dbo:source       "price comparison website" .
 
-<http://dbpedia.org/resource/Stefan_Olsson>
-        schema:netWorth  "1.4" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Stefan_Olsson>
+        schema:netWorth  1.4 ;
+        foaf:name        "Stefan Olsson" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Ranjan_Pai>
-        schema:netWorth  "1.4" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ranjan_Pai>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ranjan Pai" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Antonio_Percassi>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Antonio_Percassi>
+        schema:netWorth  1.4 ;
+        foaf:name        "Antonio Percassi" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, diversified  " .
 
-<http://dbpedia.org/resource/Mark_Pincus>
-        schema:netWorth  "1.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mark_Pincus>
+        schema:netWorth  1.4 ;
+        foaf:name        "Mark Pincus" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Alexey_Repik>
-        schema:netWorth  "1.4" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Alexey_Repik>
+        schema:netWorth  1.4 ;
+        foaf:name        "Alexey Repik" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Matthew_Roszak>
-        schema:netWorth  "1.4" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Matthew_Roszak>
+        schema:netWorth  1.4 ;
+        foaf:name        "Matthew Roszak" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Subhash_Runwal>
-        schema:netWorth  "1.4" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Subhash_Runwal>
+        schema:netWorth  1.4 ;
+        foaf:name        "Subhash Runwal" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Carlos_Sanchez>
-        schema:netWorth  "1.4" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Carlos_Sanchez>
+        schema:netWorth  1.4 ;
+        foaf:name        "Carlos Sanchez" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "generic drugs" .
 
-<http://dbpedia.org/resource/Martin_Selig>
-        schema:netWorth  "1.4" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Martin_Selig>
+        schema:netWorth  1.4 ;
+        foaf:name        "Martin Selig" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Bhadresh_Shah>
-        schema:netWorth  "1.4" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Bhadresh_Shah>
+        schema:netWorth  1.4 ;
+        foaf:name        "Bhadresh Shah" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "engineering" .
 
-<http://dbpedia.org/resource/Shao_Jianxiong>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shao_Jianxiong>
+        schema:netWorth  1.4 ;
+        foaf:name        "Shao Jianxiong" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "photovoltaics" .
 
-<http://dbpedia.org/resource/Shu_Ping>
-        schema:netWorth  "1.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Shu_Ping>
+        schema:netWorth  1.4 ;
+        foaf:name        "Shu Ping" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurants" .
 
-<http://dbpedia.org/resource/Ben_Silbermann>
-        schema:netWorth  "1.4" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ben_Silbermann>
+        schema:netWorth  1.4 ;
+        foaf:name        "Ben Silbermann" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "social media" .
 
-<http://dbpedia.org/resource/Jared_Smith>
-        schema:netWorth  "1.4" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jared_Smith>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jared Smith" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud computing" .
 
-<http://dbpedia.org/resource/Sun_Qinghuan>
-        schema:netWorth  "1.4" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Sun_Qinghuan>
+        schema:netWorth  1.4 ;
+        foaf:name        "Sun Qinghuan" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "lighting" .
 
-<http://dbpedia.org/resource/Denis_Sverdlov>
-        schema:netWorth  "1.4" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Denis_Sverdlov>
+        schema:netWorth  1.4 ;
+        foaf:name        "Denis Sverdlov" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Automotive" ;
         dbo:source       "electric vehicles" .
 
-<http://dbpedia.org/resource/Prachak_Tangkaravakoon>
-        schema:netWorth  "1.4" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Prachak_Tangkaravakoon>
+        schema:netWorth  1.4 ;
+        foaf:name        "Prachak Tangkaravakoon" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paints" .
 
-<http://dbpedia.org/resource/Lina_Tombolato>
-        schema:netWorth  "1.4" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Lina_Tombolato>
+        schema:netWorth  1.4 ;
+        foaf:name        "Lina Tombolato" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Tong_Jinquan>
-        schema:netWorth  "1.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Tong_Jinquan>
+        schema:netWorth  1.4 ;
+        foaf:name        "Tong Jinquan" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Luiza_Helena_Trajano>
-        schema:netWorth  "1.4" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Luiza_Helena_Trajano>
+        schema:netWorth  1.4 ;
+        foaf:name        "Luiza Helena Trajano" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail chain" .
 
-<http://dbpedia.org/resource/John_Van_Lieshout>
-        schema:netWorth  "1.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/John_Van_Lieshout>
+        schema:netWorth  1.4 ;
+        foaf:name        "John Van Lieshout" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Vardis_Vardinoyannis_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Greece> ;
+<http://example.org/person/Vardis_Vardinoyannis_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Vardis Vardinoyannis & family" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Greece> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil and gas" .
 
-<http://dbpedia.org/resource/Jens_von_Bahr>
-        schema:netWorth  "1.4" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Jens_von_Bahr>
+        schema:netWorth  1.4 ;
+        foaf:name        "Jens von Bahr" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "gambling products" .
 
-<http://dbpedia.org/resource/Wang_Fuji>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Fuji>
+        schema:netWorth  1.4 ;
+        foaf:name        "Wang Fuji" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Wang_Jian>
-        schema:netWorth  "1.4" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Jian>
+        schema:netWorth  1.4 ;
+        foaf:name        "Wang Jian" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "healthcare services" .
 
-<http://dbpedia.org/resource/Werner_O._Weber>
-        schema:netWorth  "1.4" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Werner_O._Weber>
+        schema:netWorth  1.4 ;
+        foaf:name        "Werner O. Weber" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronic components" .
 
-<http://dbpedia.org/resource/Wei_Lidong_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wei_Lidong_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Wei Lidong & family" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Drorit_Wertheim>
-        schema:netWorth  "1.4" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Drorit_Wertheim>
+        schema:netWorth  1.4 ;
+        foaf:name        "Drorit Wertheim" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "Coca Cola Israel" .
 
-<http://dbpedia.org/resource/Bo_Wu>
-        schema:netWorth  "1.4" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Bo_Wu>
+        schema:netWorth  1.4 ;
+        foaf:name        "Bo Wu" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Eugene_Wu>
-        schema:netWorth  "1.4" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Eugene_Wu>
+        schema:netWorth  1.4 ;
+        foaf:name        "Eugene Wu" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance" .
 
-<http://dbpedia.org/resource/Wu_Xushun_&_family>
-        schema:netWorth  "1.4" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Xushun_&_family>
+        schema:netWorth  1.4 ;
+        foaf:name        "Wu Xushun & family" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "internet" .
 
-<http://dbpedia.org/resource/Wenbo_Xiang>
-        schema:netWorth  "1.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wenbo_Xiang>
+        schema:netWorth  1.4 ;
+        foaf:name        "Wenbo Xiang" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Swift_Xie>
-        schema:netWorth  "1.4" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Swift_Xie>
+        schema:netWorth  1.4 ;
+        foaf:name        "Swift Xie" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "drones" .
 
-<http://dbpedia.org/resource/Xu_Bingzhong>
-        schema:netWorth  "1.4" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Bingzhong>
+        schema:netWorth  1.4 ;
+        foaf:name        "Xu Bingzhong" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "bars" .
 
-<http://dbpedia.org/resource/Xu_Shaochun>
-        schema:netWorth  "1.4" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Shaochun>
+        schema:netWorth  1.4 ;
+        foaf:name        "Xu Shaochun" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Yan_Junxu>
-        schema:netWorth  "1.4" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yan_Junxu>
+        schema:netWorth  1.4 ;
+        foaf:name        "Yan Junxu" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Manufacturing" .
 
-<http://dbpedia.org/resource/George_Yancopoulos>
-        schema:netWorth  "1.4" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Yancopoulos>
+        schema:netWorth  1.4 ;
+        foaf:name        "George Yancopoulos" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Gavril_Yushvaev>
-        schema:netWorth  "1.4" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Gavril_Yushvaev>
+        schema:netWorth  1.4 ;
+        foaf:name        "Gavril Yushvaev" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "precious metals, real estate" .
 
-<http://dbpedia.org/resource/Zhuo_Jun>
-        schema:netWorth  "1.4" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Zhuo_Jun>
+        schema:netWorth  1.4 ;
+        foaf:name        "Zhuo Jun" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "printed circuit boards" .
 
-<http://dbpedia.org/resource/Fredrik_%C3%96sterberg>
-        schema:netWorth  "1.4" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Fredrik_%C3%96sterberg>
+        schema:netWorth  1.4 ;
+        foaf:name        "Fredrik Österberg" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "gambling products" .
 
-<http://dbpedia.org/resource/Alberto_Alcocer>
-        schema:netWorth  "1.3" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Alberto_Alcocer>
+        schema:netWorth  1.3 ;
+        foaf:name        "Alberto Alcocer" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Alexandra_Andresen>
-        schema:netWorth  "1.3" ;
-        foaf:age         "25" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Alexandra_Andresen>
+        schema:netWorth  1.3 ;
+        foaf:name        "Alexandra Andresen" ;
+        foaf:age         25 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Katharina_Andresen>
-        schema:netWorth  "1.3" ;
-        foaf:age         "26" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Katharina_Andresen>
+        schema:netWorth  1.3 ;
+        foaf:name        "Katharina Andresen" ;
+        foaf:age         26 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "diversified" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Rutger_Arnhult>
-        schema:netWorth  "1.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Rutger_Arnhult>
+        schema:netWorth  1.3 ;
+        foaf:name        "Rutger Arnhult" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Anant_Asavabhokin>
-        schema:netWorth  "1.3" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Anant_Asavabhokin>
+        schema:netWorth  1.3 ;
+        foaf:name        "Anant Asavabhokin" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mehmet_Aydinlar>
-        schema:netWorth  "1.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Mehmet_Aydinlar>
+        schema:netWorth  1.3 ;
+        foaf:name        "Mehmet Aydinlar" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Binny_Bansal>
-        schema:netWorth  "1.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Binny_Bansal>
+        schema:netWorth  1.3 ;
+        foaf:name        "Binny Bansal" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "flipkart" .
 
-<http://dbpedia.org/resource/Sachin_Bansal>
-        schema:netWorth  "1.3" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sachin_Bansal>
+        schema:netWorth  1.3 ;
+        foaf:name        "Sachin Bansal" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "flipkart" .
 
-<http://dbpedia.org/resource/Barbara_Benetton>
-        schema:netWorth  "1.3" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Barbara_Benetton>
+        schema:netWorth  1.3 ;
+        foaf:name        "Barbara Benetton" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail, investments" .
 
-<http://dbpedia.org/resource/Othman_Benjelloun_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/Morocco> ;
+<http://example.org/person/Othman_Benjelloun_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Othman Benjelloun & family" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/Morocco> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, insurance" .
 
-<http://dbpedia.org/resource/Angela_Bennett>
-        schema:netWorth  "1.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Angela_Bennett>
+        schema:netWorth  1.3 ;
+        foaf:name        "Angela Bennett" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Oleg_Boyko>
-        schema:netWorth  "1.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Oleg_Boyko>
+        schema:netWorth  1.3 ;
+        foaf:name        "Oleg Boyko" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Anna_Maria_Braun>
-        schema:netWorth  "1.3" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Anna_Maria_Braun>
+        schema:netWorth  1.3 ;
+        foaf:name        "Anna Maria Braun" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Edouard_Carmignac>
-        schema:netWorth  "1.3" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Edouard_Carmignac>
+        schema:netWorth  1.3 ;
+        foaf:name        "Edouard Carmignac" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "asset management" .
 
-<http://dbpedia.org/resource/Anthony_Casalena>
-        schema:netWorth  "1.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Anthony_Casalena>
+        schema:netWorth  1.3 ;
+        foaf:name        "Anthony Casalena" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Chang_Jing>
-        schema:netWorth  "1.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chang_Jing>
+        schema:netWorth  1.3 ;
+        foaf:name        "Chang Jing" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "technology" .
 
-<http://dbpedia.org/resource/Jeffrey_Cheah>
-        schema:netWorth  "1.3" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Jeffrey_Cheah>
+        schema:netWorth  1.3 ;
+        foaf:name        "Jeffrey Cheah" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "property, healthcare" .
 
-<http://dbpedia.org/resource/Chen_Shiliang>
-        schema:netWorth  "1.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Shiliang>
+        schema:netWorth  1.3 ;
+        foaf:name        "Chen Shiliang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "polyester" .
 
-<http://dbpedia.org/resource/Yuantai_Chen>
-        schema:netWorth  "1.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yuantai_Chen>
+        schema:netWorth  1.3 ;
+        foaf:name        "Yuantai Chen" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Cheng_Xianfeng>
-        schema:netWorth  "1.3" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cheng_Xianfeng>
+        schema:netWorth  1.3 ;
+        foaf:name        "Cheng Xianfeng" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Chu_Jian>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chu_Jian>
+        schema:netWorth  1.3 ;
+        foaf:name        "Chu Jian" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Manufacturing" .
 
-<http://dbpedia.org/resource/Chua_Thian_Poh>
-        schema:netWorth  "1.3" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Chua_Thian_Poh>
+        schema:netWorth  1.3 ;
+        foaf:name        "Chua Thian Poh" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Alberto_Cortina>
-        schema:netWorth  "1.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Alberto_Cortina>
+        schema:netWorth  1.3 ;
+        foaf:name        "Alberto Cortina" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Sandor_Csanyi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hungary> ;
+<http://example.org/person/Sandor_Csanyi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Sandor Csanyi" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Hungary> ;
         dbo:industry     "diversified" ;
         dbo:source       "finance, real estate" .
 
-<http://dbpedia.org/resource/Sasson_Dayan_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Sasson_Dayan_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Sasson Dayan & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Anand_Deshpande>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Anand_Deshpande>
+        schema:netWorth  1.3 ;
+        foaf:name        "Anand Deshpande" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "technology" .
 
-<http://dbpedia.org/resource/Richard_Desmond>
-        schema:netWorth  "1.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Richard_Desmond>
+        schema:netWorth  1.3 ;
+        foaf:name        "Richard Desmond" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "publishing" .
 
-<http://dbpedia.org/resource/Shlomo_Eliahu>
-        schema:netWorth  "1.3" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Shlomo_Eliahu>
+        schema:netWorth  1.3 ;
+        foaf:name        "Shlomo Eliahu" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Jose_Roberto_Ermirio_de_Moraes>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jose_Roberto_Ermirio_de_Moraes>
+        schema:netWorth  1.3 ;
+        foaf:name        "Jose Roberto Ermirio de Moraes" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Jose_Ermirio_de_Moraes_Neto>
-        schema:netWorth  "1.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jose_Ermirio_de_Moraes_Neto>
+        schema:netWorth  1.3 ;
+        foaf:name        "Jose Ermirio de Moraes Neto" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/David_Fattal_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/David_Fattal_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "David Fattal & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/Marvy_Finger>
-        schema:netWorth  "1.3" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Marvy_Finger>
+        schema:netWorth  1.3 ;
+        foaf:name        "Marvy Finger" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Adam_Foroughi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Adam_Foroughi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Adam Foroughi" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "mobile games" .
 
-<http://dbpedia.org/resource/Richard_Fortin>
-        schema:netWorth  "1.3" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Richard_Fortin>
+        schema:netWorth  1.3 ;
+        foaf:name        "Richard Fortin" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "convinience stores" .
 
-<http://dbpedia.org/resource/Luiz_Frias>
-        schema:netWorth  "1.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Luiz_Frias>
+        schema:netWorth  1.3 ;
+        foaf:name        "Luiz Frias" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Technology" ;
         dbo:source       "mobile payments" .
 
-<http://dbpedia.org/resource/Susumu_Fujita>
-        schema:netWorth  "1.3" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Susumu_Fujita>
+        schema:netWorth  1.3 ;
+        foaf:name        "Susumu Fujita" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "internet media" .
 
-<http://dbpedia.org/resource/Simona_Giorgetta>
-        schema:netWorth  "1.3" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Simona_Giorgetta>
+        schema:netWorth  1.3 ;
+        foaf:name        "Simona Giorgetta" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "chemical products" .
 
-<http://dbpedia.org/resource/Premchand_Godha>
-        schema:netWorth  "1.3" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Premchand_Godha>
+        schema:netWorth  1.3 ;
+        foaf:name        "Premchand Godha" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Mikhail_Gutseriev_&_brother>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Mikhail_Gutseriev_&_brother>
+        schema:netWorth  1.3 ;
+        foaf:name        "Mikhail Gutseriev & brother" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil, real estate" .
 
-<http://dbpedia.org/resource/Hang_Hong>
-        schema:netWorth  "1.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hang_Hong>
+        schema:netWorth  1.3 ;
+        foaf:name        "Hang Hong" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "machinery" .
 
-<http://dbpedia.org/resource/Alfredo_Harp_Helu_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Alfredo_Harp_Helu_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Alfredo Harp Helu & family" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, investments" .
 
-<http://dbpedia.org/resource/Jaroslav_Hascak_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Slovakia> ;
+<http://example.org/person/Jaroslav_Hascak_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Jaroslav Hascak & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Slovakia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/He_Zuxun>
-        schema:netWorth  "1.3" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Zuxun>
+        schema:netWorth  1.3 ;
+        foaf:name        "He Zuxun" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "pig breeding" .
 
-<http://dbpedia.org/resource/David_Hoffmann>
-        schema:netWorth  "1.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Hoffmann>
+        schema:netWorth  1.3 ;
+        foaf:name        "David Hoffmann" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "executive search, investments" .
 
-<http://dbpedia.org/resource/Francis_Holder>
-        schema:netWorth  "1.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Francis_Holder>
+        schema:netWorth  1.3 ;
+        foaf:name        "Francis Holder" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "bakeries" .
 
-<http://dbpedia.org/resource/Hu_Rongda_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hu_Rongda_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Hu Rongda & family" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Wei_Huang>
-        schema:netWorth  "1.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wei_Huang>
+        schema:netWorth  1.3 ;
+        foaf:name        "Wei Huang" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Zarakh_Iliev>
-        schema:netWorth  "1.3" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Zarakh_Iliev>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zarakh Iliev" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mitchell_Jacobson>
-        schema:netWorth  "1.3" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Mitchell_Jacobson>
+        schema:netWorth  1.3 ;
+        foaf:name        "Mitchell Jacobson" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Service" ;
         dbo:source       "industrial equipment" .
 
-<http://dbpedia.org/resource/Jiang_Guiting_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiang_Guiting_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Jiang Guiting & family" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Rajeev_Juneja>
-        schema:netWorth  "1.3" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rajeev_Juneja>
+        schema:netWorth  1.3 ;
+        foaf:name        "Rajeev Juneja" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "phamaceuticals" .
 
-<http://dbpedia.org/resource/Peter_Kelly>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Peter_Kelly>
+        schema:netWorth  1.3 ;
+        foaf:name        "Peter Kelly" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Technology" ;
         dbo:source       "I.T." .
 
-<http://dbpedia.org/resource/Kim_Nam-jung>
-        schema:netWorth  "1.3" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Nam-jung>
+        schema:netWorth  1.3 ;
+        foaf:name        "Kim Nam-jung" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Koon_Poh_Ming>
-        schema:netWorth  "1.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Malaysia> ;
+<http://example.org/person/Koon_Poh_Ming>
+        schema:netWorth  1.3 ;
+        foaf:name        "Koon Poh Ming" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Malaysia> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "aluminum" .
 
-<http://dbpedia.org/resource/Yuri_Kovalchuk>
-        schema:netWorth  "1.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Yuri_Kovalchuk>
+        schema:netWorth  1.3 ;
+        foaf:name        "Yuri Kovalchuk" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, insurance, media" .
 
-<http://dbpedia.org/resource/Michael_Krasny>
-        schema:netWorth  "1.3" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Krasny>
+        schema:netWorth  1.3 ;
+        foaf:name        "Michael Krasny" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Raymond_Kwok>
-        schema:netWorth  "1.3" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Raymond_Kwok>
+        schema:netWorth  1.3 ;
+        foaf:name        "Raymond Kwok" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Heikki_Kyostila>
-        schema:netWorth  "1.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Heikki_Kyostila>
+        schema:netWorth  1.3 ;
+        foaf:name        "Heikki Kyostila" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "dental products" .
 
-<http://dbpedia.org/resource/Lee_Ho-jin>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Ho-jin>
+        schema:netWorth  1.3 ;
+        foaf:name        "Lee Ho-jin" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Bernard_Lewis_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "96" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Bernard_Lewis_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Bernard Lewis & family" ;
+        foaf:age         96 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retailer" .
 
-<http://dbpedia.org/resource/Fengluan_Li>
-        schema:netWorth  "1.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fengluan_Li>
+        schema:netWorth  1.3 ;
+        foaf:name        "Fengluan Li" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "steel, diversified  " .
 
-<http://dbpedia.org/resource/Hua_Li>
-        schema:netWorth  "1.3" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hua_Li>
+        schema:netWorth  1.3 ;
+        foaf:name        "Hua Li" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Li_Ruiqiang>
-        schema:netWorth  "1.3" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Ruiqiang>
+        schema:netWorth  1.3 ;
+        foaf:name        "Li Ruiqiang" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical services" .
 
-<http://dbpedia.org/resource/Lin_Zhijun>
-        schema:netWorth  "1.3" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Zhijun>
+        schema:netWorth  1.3 ;
+        foaf:name        "Lin Zhijun" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Lin_Zhixiong_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Zhixiong_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Lin Zhixiong & family" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Liu_Ming_Hui>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Ming_Hui>
+        schema:netWorth  1.3 ;
+        foaf:name        "Liu Ming Hui" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "natural gas distribution" .
 
-<http://dbpedia.org/resource/Xuejing_Liu_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xuejing_Liu_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Xuejing Liu & family" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "copper, poultry" .
 
-<http://dbpedia.org/resource/Lu_Yonghua_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Yonghua_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Lu Yonghua & family" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Zhaoxi_Lu>
-        schema:netWorth  "1.3" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhaoxi_Lu>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zhaoxi Lu" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Frederic_Luddy>
-        schema:netWorth  "1.3" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Frederic_Luddy>
+        schema:netWorth  1.3 ;
+        foaf:name        "Frederic Luddy" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Miao_Yongjun>
-        schema:netWorth  "1.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Miao_Yongjun>
+        schema:netWorth  1.3 ;
+        foaf:name        "Miao Yongjun" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "clinical diagnostics" .
 
-<http://dbpedia.org/resource/Martin_Moller_Nielsen>
-        schema:netWorth  "1.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Martin_Moller_Nielsen>
+        schema:netWorth  1.3 ;
+        foaf:name        "Martin Moller Nielsen" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Logistics" ;
         dbo:source       "aircraft leasing" .
 
-<http://dbpedia.org/resource/Neide_Helena_de_Moraes>
-        schema:netWorth  "1.3" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Neide_Helena_de_Moraes>
+        schema:netWorth  1.3 ;
+        foaf:name        "Neide Helena de Moraes" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Yoshiko_Mori>
-        schema:netWorth  "1.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yoshiko_Mori>
+        schema:netWorth  1.3 ;
+        foaf:name        "Yoshiko Mori" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Mofatraj_Munot>
-        schema:netWorth  "1.3" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mofatraj_Munot>
+        schema:netWorth  1.3 ;
+        foaf:name        "Mofatraj Munot" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Randal_Nardone>
-        schema:netWorth  "1.3" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Randal_Nardone>
+        schema:netWorth  1.3 ;
+        foaf:name        "Randal Nardone" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments, energy" .
 
-<http://dbpedia.org/resource/God_Nisanov>
-        schema:netWorth  "1.3" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/God_Nisanov>
+        schema:netWorth  1.3 ;
+        foaf:name        "God Nisanov" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Vadim_Novinsky>
-        schema:netWorth  "1.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ukraine> ;
+<http://example.org/person/Vadim_Novinsky>
+        schema:netWorth  1.3 ;
+        foaf:name        "Vadim Novinsky" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Ukraine> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Satyanarayan_Nuwal>
-        schema:netWorth  "1.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Satyanarayan_Nuwal>
+        schema:netWorth  1.3 ;
+        foaf:name        "Satyanarayan Nuwal" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "industrial explosives" .
 
-<http://dbpedia.org/resource/John_Ocampo>
-        schema:netWorth  "1.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Ocampo>
+        schema:netWorth  1.3 ;
+        foaf:name        "John Ocampo" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Pan_Gang>
-        schema:netWorth  "1.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Pan_Gang>
+        schema:netWorth  1.3 ;
+        foaf:name        "Pan Gang" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "dairy" .
 
-<http://dbpedia.org/resource/Forrest_Preston>
-        schema:netWorth  "1.3" ;
-        foaf:age         "89" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Forrest_Preston>
+        schema:netWorth  1.3 ;
+        foaf:name        "Forrest Preston" ;
+        foaf:age         89 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "health care" .
 
-<http://dbpedia.org/resource/Riju_Raveendran>
-        schema:netWorth  "1.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Riju_Raveendran>
+        schema:netWorth  1.3 ;
+        foaf:name        "Riju Raveendran" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "edtech" .
 
-<http://dbpedia.org/resource/P.P._Reddy>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/P.P._Reddy>
+        schema:netWorth  1.3 ;
+        foaf:name        "P.P. Reddy" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "infrastructure" .
 
-<http://dbpedia.org/resource/P.V.Krishna_Reddy>
-        schema:netWorth  "1.3" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/P.V.Krishna_Reddy>
+        schema:netWorth  1.3 ;
+        foaf:name        "P.V.Krishna Reddy" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "infrastructure" .
 
-<http://dbpedia.org/resource/Satish_Reddy>
-        schema:netWorth  "1.3" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Satish_Reddy>
+        schema:netWorth  1.3 ;
+        foaf:name        "Satish Reddy" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Lily_Safra>
-        schema:netWorth  "1.3" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Monaco> ;
+<http://example.org/person/Lily_Safra>
+        schema:netWorth  1.3 ;
+        foaf:name        "Lily Safra" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Monaco> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Richard_Saghian>
-        schema:netWorth  "1.3" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Saghian>
+        schema:netWorth  1.3 ;
+        foaf:name        "Richard Saghian" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fast fashion" .
 
-<http://dbpedia.org/resource/Deniz_Sahenk>
-        schema:netWorth  "1.3" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Deniz_Sahenk>
+        schema:netWorth  1.3 ;
+        foaf:name        "Deniz Sahenk" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Thomas_Sandell>
-        schema:netWorth  "1.3" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Thomas_Sandell>
+        schema:netWorth  1.3 ;
+        foaf:name        "Thomas Sandell" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Hajime_Satomi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Hajime_Satomi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Hajime Satomi" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Gambling & Casinos" ;
         dbo:source       "video games, pachinko" .
 
-<http://dbpedia.org/resource/James_Scapa>
-        schema:netWorth  "1.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/James_Scapa>
+        schema:netWorth  1.3 ;
+        foaf:name        "James Scapa" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Paul_Sciarra>
-        schema:netWorth  "1.3" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Sciarra>
+        schema:netWorth  1.3 ;
+        foaf:name        "Paul Sciarra" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Pinterest" .
 
-<http://dbpedia.org/resource/Albert_Shigaboutdinov>
-        schema:netWorth  "1.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Albert_Shigaboutdinov>
+        schema:netWorth  1.3 ;
+        foaf:name        "Albert Shigaboutdinov" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "diversified" ;
         dbo:source       "refinery, chemicals" .
 
-<http://dbpedia.org/resource/Nobutoshi_Shimamura>
-        schema:netWorth  "1.3" ;
-        foaf:age         "96" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Nobutoshi_Shimamura>
+        schema:netWorth  1.3 ;
+        foaf:name        "Nobutoshi Shimamura" ;
+        foaf:age         96 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Ron_Sim>
-        schema:netWorth  "1.3" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Ron_Sim>
+        schema:netWorth  1.3 ;
+        foaf:name        "Ron Sim" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Alexander_Sixt>
-        schema:netWorth  "1.3" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Alexander_Sixt>
+        schema:netWorth  1.3 ;
+        foaf:name        "Alexander Sixt" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "car rentals" .
 
-<http://dbpedia.org/resource/Konstantin_Sixt>
-        schema:netWorth  "1.3" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Konstantin_Sixt>
+        schema:netWorth  1.3 ;
+        foaf:name        "Konstantin Sixt" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Automotive" ;
         dbo:source       "car rentals" .
 
-<http://dbpedia.org/resource/Terry_Snow>
-        schema:netWorth  "1.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Terry_Snow>
+        schema:netWorth  1.3 ;
+        foaf:name        "Terry Snow" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "airports, real estate" .
 
-<http://dbpedia.org/resource/Marco_Squinzi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Marco_Squinzi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Marco Squinzi" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "chemical products" .
 
-<http://dbpedia.org/resource/Veronica_Squinzi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Veronica_Squinzi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Veronica Squinzi" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "chemical products" .
 
-<http://dbpedia.org/resource/Manny_Stul>
-        schema:netWorth  "1.3" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Manny_Stul>
+        schema:netWorth  1.3 ;
+        foaf:name        "Manny Stul" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "toys" .
 
-<http://dbpedia.org/resource/Rustem_Sulteev>
-        schema:netWorth  "1.3" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Rustem_Sulteev>
+        schema:netWorth  1.3 ;
+        foaf:name        "Rustem Sulteev" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "refinery, chemicals" .
 
-<http://dbpedia.org/resource/Sehat_Sutardja>
-        schema:netWorth  "1.3" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sehat_Sutardja>
+        schema:netWorth  1.3 ;
+        foaf:name        "Sehat Sutardja" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Tony_Tan_Caktiong>
-        schema:netWorth  "1.3" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Tony_Tan_Caktiong>
+        schema:netWorth  1.3 ;
+        foaf:name        "Tony Tan Caktiong" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Jim_Thompson>
-        schema:netWorth  "1.3" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jim_Thompson>
+        schema:netWorth  1.3 ;
+        foaf:name        "Jim Thompson" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Logistics" ;
         dbo:source       "logistics" .
 
-<http://dbpedia.org/resource/Carmen_Thyssen>
-        schema:netWorth  "1.3" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Carmen_Thyssen>
+        schema:netWorth  1.3 ;
+        foaf:name        "Carmen Thyssen" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "investments, art" .
 
-<http://dbpedia.org/resource/August_Troendle>
-        schema:netWorth  "1.3" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/August_Troendle>
+        schema:netWorth  1.3 ;
+        foaf:name        "August Troendle" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceutical services" .
 
-<http://dbpedia.org/resource/Joop_van_den_Ende>
-        schema:netWorth  "1.3" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Joop_van_den_Ende>
+        schema:netWorth  1.3 ;
+        foaf:name        "Joop van den Ende" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV shows" .
 
-<http://dbpedia.org/resource/Sekar_Vembu>
-        schema:netWorth  "1.3" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sekar_Vembu>
+        schema:netWorth  1.3 ;
+        foaf:name        "Sekar Vembu" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "business software" .
 
-<http://dbpedia.org/resource/Sandro_Veronesi_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Sandro_Veronesi_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Sandro Veronesi & family" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion" .
 
-<http://dbpedia.org/resource/Wan_Long>
-        schema:netWorth  "1.3" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wan_Long>
+        schema:netWorth  1.3 ;
+        foaf:name        "Wan Long" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food" .
 
-<http://dbpedia.org/resource/Han_Wang>
-        schema:netWorth  "1.3" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Han_Wang>
+        schema:netWorth  1.3 ;
+        foaf:name        "Han Wang" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "airline" .
 
-<http://dbpedia.org/resource/Wang_Jianyi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Jianyi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Wang Jianyi" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "fiber optic cables" .
 
-<http://dbpedia.org/resource/Wang_Qinghua>
-        schema:netWorth  "1.3" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Qinghua>
+        schema:netWorth  1.3 ;
+        foaf:name        "Wang Qinghua" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electric equipment" .
 
-<http://dbpedia.org/resource/Pengcheng_Wen_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Pengcheng_Wen_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Pengcheng Wen & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "agribusiness" .
 
-<http://dbpedia.org/resource/Alfred_West,_Jr.>
-        schema:netWorth  "1.3" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alfred_West,_Jr.>
+        schema:netWorth  1.3 ;
+        foaf:name        "Alfred West, Jr." ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Dan_Wilks>
-        schema:netWorth  "1.3" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Dan_Wilks>
+        schema:netWorth  1.3 ;
+        foaf:name        "Dan Wilks" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "natural gas" .
 
-<http://dbpedia.org/resource/Farris_Wilks>
-        schema:netWorth  "1.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Farris_Wilks>
+        schema:netWorth  1.3 ;
+        foaf:name        "Farris Wilks" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "natural gas" .
 
-<http://dbpedia.org/resource/Gang_Xu>
-        schema:netWorth  "1.3" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Gang_Xu>
+        schema:netWorth  1.3 ;
+        foaf:name        "Gang Xu" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Chemicals" .
 
-<http://dbpedia.org/resource/Xu_Jin>
-        schema:netWorth  "1.3" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xu_Jin>
+        schema:netWorth  1.3 ;
+        foaf:name        "Xu Jin" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "wine" .
 
-<http://dbpedia.org/resource/Tony_Xu>
-        schema:netWorth  "1.3" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tony_Xu>
+        schema:netWorth  1.3 ;
+        foaf:name        "Tony Xu" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "food delivery service" .
 
-<http://dbpedia.org/resource/Ye_Yanqiao>
-        schema:netWorth  "1.3" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ye_Yanqiao>
+        schema:netWorth  1.3 ;
+        foaf:name        "Ye Yanqiao" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Patrick_Zalupski>
-        schema:netWorth  "1.3" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Patrick_Zalupski>
+        schema:netWorth  1.3 ;
+        foaf:name        "Patrick Zalupski" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "homebuilding" .
 
-<http://dbpedia.org/resource/Shengda_Zan>
-        schema:netWorth  "1.3" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shengda_Zan>
+        schema:netWorth  1.3 ;
+        foaf:name        "Shengda Zan" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Zeng_Chaoyi>
-        schema:netWorth  "1.3" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zeng_Chaoyi>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zeng Chaoyi" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "aluminum products" .
 
-<http://dbpedia.org/resource/Zhang_Guiping_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Guiping_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zhang Guiping & family" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Peng_Zhao>
-        schema:netWorth  "1.3" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Peng_Zhao>
+        schema:netWorth  1.3 ;
+        foaf:name        "Peng Zhao" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Service" ;
         dbo:source       "online recruitment" .
 
-<http://dbpedia.org/resource/Zheng_Zhiguo>
-        schema:netWorth  "1.3" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zheng_Zhiguo>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zheng Zhiguo" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "drugs" .
 
-<http://dbpedia.org/resource/Kostyantin_Zhevago>
-        schema:netWorth  "1.3" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ukraine> ;
+<http://example.org/person/Kostyantin_Zhevago>
+        schema:netWorth  1.3 ;
+        foaf:name        "Kostyantin Zhevago" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Ukraine> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Zhou_Mingjie>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhou_Mingjie>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zhou Mingjie" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "lighting installations" .
 
-<http://dbpedia.org/resource/Zhu_Xingliang>
-        schema:netWorth  "1.3" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhu_Xingliang>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zhu Xingliang" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Zhu_Yiwen_&_family>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhu_Yiwen_&_family>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zhu Yiwen & family" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare" .
 
-<http://dbpedia.org/resource/Zong_Yanmin>
-        schema:netWorth  "1.3" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zong_Yanmin>
+        schema:netWorth  1.3 ;
+        foaf:name        "Zong Yanmin" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Semiconductor materials" .
 
-<http://dbpedia.org/resource/Sanjay_Agarwal>
-        schema:netWorth  "1.2" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sanjay_Agarwal>
+        schema:netWorth  1.2 ;
+        foaf:name        "Sanjay Agarwal" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Hamad_bin_Jassim_bin_Jaber_Al_Thani>
-        schema:netWorth  "1.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Qatar> ;
+<http://example.org/person/Hamad_bin_Jassim_bin_Jaber_Al_Thani>
+        schema:netWorth  1.2 ;
+        foaf:name        "Hamad bin Jassim bin Jaber Al Thani" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Qatar> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Betty_Ang>
-        schema:netWorth  "1.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Betty_Ang>
+        schema:netWorth  1.2 ;
+        foaf:name        "Betty Ang" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "foods" .
 
-<http://dbpedia.org/resource/Christian_Angermayer>
-        schema:netWorth  "1.2" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christian_Angermayer>
+        schema:netWorth  1.2 ;
+        foaf:name        "Christian Angermayer" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Mika_Anttonen>
-        schema:netWorth  "1.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Mika_Anttonen>
+        schema:netWorth  1.2 ;
+        foaf:name        "Mika Anttonen" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Jose_Maria_Aristrain>
-        schema:netWorth  "1.2" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Jose_Maria_Aristrain>
+        schema:netWorth  1.2 ;
+        foaf:name        "Jose Maria Aristrain" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "steel" .
 
-<http://dbpedia.org/resource/Emilio_Azcarraga_Jean>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/Emilio_Azcarraga_Jean>
+        schema:netWorth  1.2 ;
+        foaf:name        "Emilio Azcarraga Jean" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "TV broadcasting" .
 
-<http://dbpedia.org/resource/Thomas_Bailey>
-        schema:netWorth  "1.2" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Thomas_Bailey>
+        schema:netWorth  1.2 ;
+        foaf:name        "Thomas Bailey" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Andrei_Bokarev>
-        schema:netWorth  "1.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Bokarev>
+        schema:netWorth  1.2 ;
+        foaf:name        "Andrei Bokarev" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "metals, mining" .
 
-<http://dbpedia.org/resource/Stephane_Bonvin>
-        schema:netWorth  "1.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Stephane_Bonvin>
+        schema:netWorth  1.2 ;
+        foaf:name        "Stephane Bonvin" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Ashok_Boob>
-        schema:netWorth  "1.2" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ashok_Boob>
+        schema:netWorth  1.2 ;
+        foaf:name        "Ashok Boob" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "specialty chemicals" .
 
-<http://dbpedia.org/resource/Ludwig_Theodor_Braun>
-        schema:netWorth  "1.2" ;
-        foaf:age         "32" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Ludwig_Theodor_Braun>
+        schema:netWorth  1.2 ;
+        foaf:name        "Ludwig Theodor Braun" ;
+        foaf:age         32 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Friederike_Braun-Luedicke>
-        schema:netWorth  "1.2" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Friederike_Braun-Luedicke>
+        schema:netWorth  1.2 ;
+        foaf:name        "Friederike Braun-Luedicke" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Pradip_Burman>
-        schema:netWorth  "1.2" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Pradip_Burman>
+        schema:netWorth  1.2 ;
+        foaf:name        "Pradip Burman" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "consumer goods" .
 
-<http://dbpedia.org/resource/Cai_Hongbin>
-        schema:netWorth  "1.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cai_Hongbin>
+        schema:netWorth  1.2 ;
+        foaf:name        "Cai Hongbin" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Chang_Kuo-Cheng>
-        schema:netWorth  "1.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Chang_Kuo-Cheng>
+        schema:netWorth  1.2 ;
+        foaf:name        "Chang Kuo-Cheng" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Logistics" ;
         dbo:source       "Transportation" .
 
-<http://dbpedia.org/resource/Jiancheng_Chen>
-        schema:netWorth  "1.2" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiancheng_Chen>
+        schema:netWorth  1.2 ;
+        foaf:name        "Jiancheng Chen" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Chen_Xueling>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chen_Xueling>
+        schema:netWorth  1.2 ;
+        foaf:name        "Chen Xueling" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "stationery" .
 
-<http://dbpedia.org/resource/Cheng_Lili>
-        schema:netWorth  "1.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Cheng_Lili>
+        schema:netWorth  1.2 ;
+        foaf:name        "Cheng Lili" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "poultry breeding" .
 
-<http://dbpedia.org/resource/Yvon_Chouinard>
-        schema:netWorth  "1.2" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Yvon_Chouinard>
+        schema:netWorth  1.2 ;
+        foaf:name        "Yvon Chouinard" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Patagonia" .
 
-<http://dbpedia.org/resource/Luigi_Cremonini_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Luigi_Cremonini_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Luigi Cremonini & family" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "meat processing" .
 
-<http://dbpedia.org/resource/Tim_Draper>
-        schema:netWorth  "1.2" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Tim_Draper>
+        schema:netWorth  1.2 ;
+        foaf:name        "Tim Draper" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "cryptocurrency" .
 
-<http://dbpedia.org/resource/Fan_Zhaoxia_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fan_Zhaoxia_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Fan Zhaoxia & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "photovoltaic equipment" .
 
-<http://dbpedia.org/resource/Gleb_Fetisov>
-        schema:netWorth  "1.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Gleb_Fetisov>
+        schema:netWorth  1.2 ;
+        foaf:name        "Gleb Fetisov" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Telecom" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Robert_Fisher>
-        schema:netWorth  "1.2" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Fisher>
+        schema:netWorth  1.2 ;
+        foaf:name        "Robert Fisher" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Gap" .
 
-<http://dbpedia.org/resource/William_Fisher>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/William_Fisher>
+        schema:netWorth  1.2 ;
+        foaf:name        "William Fisher" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Gap" .
 
-<http://dbpedia.org/resource/J._Christopher_Flowers>
-        schema:netWorth  "1.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J._Christopher_Flowers>
+        schema:netWorth  1.2 ;
+        foaf:name        "J. Christopher Flowers" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Bernd_Freier>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Bernd_Freier>
+        schema:netWorth  1.2 ;
+        foaf:name        "Bernd Freier" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Geng_Diangen>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Geng_Diangen>
+        schema:netWorth  1.2 ;
+        foaf:name        "Geng Diangen" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "Internet" .
 
-<http://dbpedia.org/resource/Dan_Gertler>
-        schema:netWorth  "1.2" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Israel> ;
+<http://example.org/person/Dan_Gertler>
+        schema:netWorth  1.2 ;
+        foaf:name        "Dan Gertler" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Israel> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/David_Girouard>
-        schema:netWorth  "1.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Girouard>
+        schema:netWorth  1.2 ;
+        foaf:name        "David Girouard" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/John_Goff>
-        schema:netWorth  "1.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Goff>
+        schema:netWorth  1.2 ;
+        foaf:name        "John Goff" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lawrence_Golub>
-        schema:netWorth  "1.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lawrence_Golub>
+        schema:netWorth  1.2 ;
+        foaf:name        "Lawrence Golub" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Sven_Hagstr%C3%B6mer>
-        schema:netWorth  "1.2" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Sven_Hagstr%C3%B6mer>
+        schema:netWorth  1.2 ;
+        foaf:name        "Sven Hagstr├Âmer" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Fahed_Hariri>
-        schema:netWorth  "1.2" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Lebanon> ;
+<http://example.org/person/Fahed_Hariri>
+        schema:netWorth  1.2 ;
+        foaf:name        "Fahed Hariri" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Lebanon> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction, investments" .
 
-<http://dbpedia.org/resource/Richard_Hayne>
-        schema:netWorth  "1.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Hayne>
+        schema:netWorth  1.2 ;
+        foaf:name        "Richard Hayne" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Urban Outfitters" .
 
-<http://dbpedia.org/resource/He_Yamin_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/He_Yamin_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "He Yamin & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Michael_Heine>
-        schema:netWorth  "1.2" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Michael_Heine>
+        schema:netWorth  1.2 ;
+        foaf:name        "Michael Heine" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Heikki_Herlin>
-        schema:netWorth  "1.2" ;
-        foaf:age         "35" ;
-        foaf:based_near  <http://dbpedia.org/resource/Finland> ;
+<http://example.org/person/Heikki_Herlin>
+        schema:netWorth  1.2 ;
+        foaf:name        "Heikki Herlin" ;
+        foaf:age         35 ;
+        dbo:location     <http://dbpedia.org/resource/Finland> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "elevators, escalators" .
 
-<http://dbpedia.org/resource/Hong_Feng>
-        schema:netWorth  "1.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hong_Feng>
+        schema:netWorth  1.2 ;
+        foaf:name        "Hong Feng" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphones" .
 
-<http://dbpedia.org/resource/Hu_Kun>
-        schema:netWorth  "1.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hu_Kun>
+        schema:netWorth  1.2 ;
+        foaf:name        "Hu Kun" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Huang_Hongyun_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Hongyun_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Huang Hongyun & family" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Shanbing_Huang_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shanbing_Huang_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Shanbing Huang & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductors" .
 
-<http://dbpedia.org/resource/Huang_Shih_Tsai>
-        schema:netWorth  "1.2" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Huang_Shih_Tsai>
+        schema:netWorth  1.2 ;
+        foaf:name        "Huang Shih Tsai" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Huang_Wenbiao>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Wenbiao>
+        schema:netWorth  1.2 ;
+        foaf:name        "Huang Wenbiao" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Mohammed_Ibrahim>
-        schema:netWorth  "1.2" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Mohammed_Ibrahim>
+        schema:netWorth  1.2 ;
+        foaf:name        "Mohammed Ibrahim" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Telecom" ;
         dbo:source       "communications" .
 
-<http://dbpedia.org/resource/Hedda_im_Brahm-Droege>
-        schema:netWorth  "1.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Hedda_im_Brahm-Droege>
+        schema:netWorth  1.2 ;
+        foaf:name        "Hedda im Brahm-Droege" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Rameshchandra_Jain>
-        schema:netWorth  "1.2" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Rameshchandra_Jain>
+        schema:netWorth  1.2 ;
+        foaf:name        "Rameshchandra Jain" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "textiles" .
 
-<http://dbpedia.org/resource/Laurent_Junique>
-        schema:netWorth  "1.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Laurent_Junique>
+        schema:netWorth  1.2 ;
+        foaf:name        "Laurent Junique" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Technology" ;
         dbo:source       "call centers" .
 
-<http://dbpedia.org/resource/Zbigniew_Juroszek_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Poland> ;
+<http://example.org/person/Zbigniew_Juroszek_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Zbigniew Juroszek & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Poland> ;
         dbo:industry     "diversified" ;
         dbo:source       "real estate, gambling" .
 
-<http://dbpedia.org/resource/Chatchai_Kaewbootta>
-        schema:netWorth  "1.2" ;
-        foaf:age         "70" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Chatchai_Kaewbootta>
+        schema:netWorth  1.2 ;
+        foaf:name        "Chatchai Kaewbootta" ;
+        foaf:age         70 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "auto loans" .
 
-<http://dbpedia.org/resource/Shirley_Kao>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Shirley_Kao>
+        schema:netWorth  1.2 ;
+        foaf:name        "Shirley Kao" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food & beverage retailing" .
 
-<http://dbpedia.org/resource/Ipek_Kirac>
-        schema:netWorth  "1.2" ;
-        foaf:age         "37" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Ipek_Kirac>
+        schema:netWorth  1.2 ;
+        foaf:name        "Ipek Kirac" ;
+        foaf:age         37 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Carsten_Koerl>
-        schema:netWorth  "1.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Carsten_Koerl>
+        schema:netWorth  1.2 ;
+        foaf:name        "Carsten Koerl" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Sports" ;
         dbo:source       "sports data" .
 
-<http://dbpedia.org/resource/Andrei_Kosogov>
-        schema:netWorth  "1.2" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Kosogov>
+        schema:netWorth  1.2 ;
+        foaf:name        "Andrei Kosogov" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "Banking" .
 
-<http://dbpedia.org/resource/John_Krystynak>
-        schema:netWorth  "1.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Krystynak>
+        schema:netWorth  1.2 ;
+        foaf:name        "John Krystynak" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "mobile games" .
 
-<http://dbpedia.org/resource/John_Kusuma>
-        schema:netWorth  "1.2" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/John_Kusuma>
+        schema:netWorth  1.2 ;
+        foaf:name        "John Kusuma" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Hartono_Kweefanus>
-        schema:netWorth  "1.2" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Hartono_Kweefanus>
+        schema:netWorth  1.2 ;
+        foaf:name        "Hartono Kweefanus" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "food manufacturing" .
 
-<http://dbpedia.org/resource/Kwek_Leng_Peck>
-        schema:netWorth  "1.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Kwek_Leng_Peck>
+        schema:netWorth  1.2 ;
+        foaf:name        "Kwek Leng Peck" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kristo_K%C3%A4%C3%A4rmann>
-        schema:netWorth  "1.2" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Estonia> ;
+<http://example.org/person/Kristo_K%C3%A4%C3%A4rmann>
+        schema:netWorth  1.2 ;
+        foaf:name        "Kristo Käärmann" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Estonia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "payments, banking" .
 
-<http://dbpedia.org/resource/Guy_Lalibert%C3%A9>
-        schema:netWorth  "1.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Guy_Lalibert%C3%A9>
+        schema:netWorth  1.2 ;
+        foaf:name        "Guy Lalibert├®" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "Cirque du Soleil" .
 
-<http://dbpedia.org/resource/Lee_Sang-ryul>
-        schema:netWorth  "1.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Sang-ryul>
+        schema:netWorth  1.2 ;
+        foaf:name        "Lee Sang-ryul" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Lee_Seung-gun>
-        schema:netWorth  "1.2" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Lee_Seung-gun>
+        schema:netWorth  1.2 ;
+        foaf:name        "Lee Seung-gun" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Hongjing_Li>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Hongjing_Li>
+        schema:netWorth  1.2 ;
+        foaf:name        "Hongjing Li" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Li_Wanqiang>
-        schema:netWorth  "1.2" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Wanqiang>
+        schema:netWorth  1.2 ;
+        foaf:name        "Li Wanqiang" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphones" .
 
-<http://dbpedia.org/resource/Lu_Hongyan>
-        schema:netWorth  "1.2" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lu_Hongyan>
+        schema:netWorth  1.2 ;
+        foaf:name        "Lu Hongyan" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/Dalong_Lv>
-        schema:netWorth  "1.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dalong_Lv>
+        schema:netWorth  1.2 ;
+        foaf:name        "Dalong Lv" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom services" .
 
-<http://dbpedia.org/resource/Carsten_Maschmeyer>
-        schema:netWorth  "1.2" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Carsten_Maschmeyer>
+        schema:netWorth  1.2 ;
+        foaf:name        "Carsten Maschmeyer" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "finance services" .
 
-<http://dbpedia.org/resource/Todd_McKinnon>
-        schema:netWorth  "1.2" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Todd_McKinnon>
+        schema:netWorth  1.2 ;
+        foaf:name        "Todd McKinnon" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Rubens_Menin_Teixeira_de_Souza>
-        schema:netWorth  "1.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Rubens_Menin_Teixeira_de_Souza>
+        schema:netWorth  1.2 ;
+        foaf:name        "Rubens Menin Teixeira de Souza" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "home building, banking" .
 
-<http://dbpedia.org/resource/Lorinc_Meszaros>
-        schema:netWorth  "1.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hungary> ;
+<http://example.org/person/Lorinc_Meszaros>
+        schema:netWorth  1.2 ;
+        foaf:name        "Lorinc Meszaros" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Hungary> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Ulrich_Mommert_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Ulrich_Mommert_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Ulrich Mommert & family" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Automotive" ;
         dbo:source       "lighting" .
 
-<http://dbpedia.org/resource/Park_Kwan-ho>
-        schema:netWorth  "1.2" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Park_Kwan-ho>
+        schema:netWorth  1.2 ;
+        foaf:name        "Park Kwan-ho" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "online games" .
 
-<http://dbpedia.org/resource/George_Pedersen>
-        schema:netWorth  "1.2" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/George_Pedersen>
+        schema:netWorth  1.2 ;
+        foaf:name        "George Pedersen" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "defense contractor" .
 
-<http://dbpedia.org/resource/David_Penaloza_Alanis>
-        schema:netWorth  "1.2" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Mexico> ;
+<http://example.org/person/David_Penaloza_Alanis>
+        schema:netWorth  1.2 ;
+        foaf:name        "David Penaloza Alanis" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Mexico> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "toll roads" .
 
-<http://dbpedia.org/resource/Stefan_Pierer>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Austria> ;
+<http://example.org/person/Stefan_Pierer>
+        schema:netWorth  1.2 ;
+        foaf:name        "Stefan Pierer" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Austria> ;
         dbo:industry     "Automotive" ;
         dbo:source       "automotive" .
 
-<http://dbpedia.org/resource/Murdaya_Poo>
-        schema:netWorth  "1.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Murdaya_Poo>
+        schema:netWorth  1.2 ;
+        foaf:name        "Murdaya Poo" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Michael_Price>
-        schema:netWorth  "1.2" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Price>
+        schema:netWorth  1.2 ;
+        foaf:name        "Michael Price" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Leonid_Radvinsky>
-        schema:netWorth  "1.2" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leonid_Radvinsky>
+        schema:netWorth  1.2 ;
+        foaf:name        "Leonid Radvinsky" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "e-commerce" .
 
-<http://dbpedia.org/resource/Megdet_Rahimkulov_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Megdet_Rahimkulov_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Megdet Rahimkulov & family" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Andrei_Rappoport>
-        schema:netWorth  "1.2" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Rappoport>
+        schema:netWorth  1.2 ;
+        foaf:name        "Andrei Rappoport" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Dasari_Uday_Kumar_Reddy>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Dasari_Uday_Kumar_Reddy>
+        schema:netWorth  1.2 ;
+        foaf:name        "Dasari Uday Kumar Reddy" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud communications" .
 
-<http://dbpedia.org/resource/Helena_Revoredo>
-        schema:netWorth  "1.2" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Helena_Revoredo>
+        schema:netWorth  1.2 ;
+        foaf:name        "Helena Revoredo" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Service" ;
         dbo:source       "security services" .
 
-<http://dbpedia.org/resource/Duke_Reyes>
-        schema:netWorth  "1.2" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Duke_Reyes>
+        schema:netWorth  1.2 ;
+        foaf:name        "Duke Reyes" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beer distribution" .
 
-<http://dbpedia.org/resource/Nobutada_Saji>
-        schema:netWorth  "1.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Nobutada_Saji>
+        schema:netWorth  1.2 ;
+        foaf:name        "Nobutada Saji" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "beverages" .
 
-<http://dbpedia.org/resource/Leonard_Schleifer>
-        schema:netWorth  "1.2" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Leonard_Schleifer>
+        schema:netWorth  1.2 ;
+        foaf:name        "Leonard Schleifer" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Airat_Shaimiev>
-        schema:netWorth  "1.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Airat_Shaimiev>
+        schema:netWorth  1.2 ;
+        foaf:name        "Airat Shaimiev" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "refinery, chemicals" .
 
-<http://dbpedia.org/resource/Radik_Shaimiev>
-        schema:netWorth  "1.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Radik_Shaimiev>
+        schema:netWorth  1.2 ;
+        foaf:name        "Radik Shaimiev" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "refinery, chemicals" .
 
-<http://dbpedia.org/resource/Vijay_Shekhar_Sharma>
-        schema:netWorth  "1.2" ;
-        foaf:age         "43" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Vijay_Shekhar_Sharma>
+        schema:netWorth  1.2 ;
+        foaf:name        "Vijay Shekhar Sharma" ;
+        foaf:age         43 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Service" ;
         dbo:source       "financial technology" .
 
-<http://dbpedia.org/resource/Devi_Shetty>
-        schema:netWorth  "1.2" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Devi_Shetty>
+        schema:netWorth  1.2 ;
+        foaf:name        "Devi Shetty" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare" .
 
-<http://dbpedia.org/resource/Shum_Chiu_Hung_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shum_Chiu_Hung_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Shum Chiu Hung & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Michael_Steinhardt>
-        schema:netWorth  "1.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_Steinhardt>
+        schema:netWorth  1.2 ;
+        foaf:name        "Michael Steinhardt" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "hedge funds" .
 
-<http://dbpedia.org/resource/Petter_Stordalen_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Petter_Stordalen_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Petter Stordalen & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/Winarko_Sulistyo>
-        schema:netWorth  "1.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Winarko_Sulistyo>
+        schema:netWorth  1.2 ;
+        foaf:name        "Winarko Sulistyo" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper and pulp" .
 
-<http://dbpedia.org/resource/Sun_Huaiqing_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Sun_Huaiqing_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Sun Huaiqing & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Luc_Tack>
-        schema:netWorth  "1.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Belgium> ;
+<http://example.org/person/Luc_Tack>
+        schema:netWorth  1.2 ;
+        foaf:name        "Luc Tack" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Belgium> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "textile, chemicals" .
 
-<http://dbpedia.org/resource/Lucio_Tan>
-        schema:netWorth  "1.2" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Lucio_Tan>
+        schema:netWorth  1.2 ;
+        foaf:name        "Lucio Tan" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Yoshikazu_Tanaka>
-        schema:netWorth  "1.2" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yoshikazu_Tanaka>
+        schema:netWorth  1.2 ;
+        foaf:name        "Yoshikazu Tanaka" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Technology" ;
         dbo:source       "social network" .
 
-<http://dbpedia.org/resource/Stanley_Tang>
-        schema:netWorth  "1.2" ;
-        foaf:age         "29" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Stanley_Tang>
+        schema:netWorth  1.2 ;
+        foaf:name        "Stanley Tang" ;
+        foaf:age         29 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "food delivery app" .
 
-<http://dbpedia.org/resource/Sam_Tarascio>
-        schema:netWorth  "1.2" ;
-        foaf:age         "77" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Sam_Tarascio>
+        schema:netWorth  1.2 ;
+        foaf:name        "Sam Tarascio" ;
+        foaf:age         77 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Alexander_Tedja>
-        schema:netWorth  "1.2" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Alexander_Tedja>
+        schema:netWorth  1.2 ;
+        foaf:name        "Alexander Tedja" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Laurie_Tisch>
-        schema:netWorth  "1.2" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Laurie_Tisch>
+        schema:netWorth  1.2 ;
+        foaf:name        "Laurie Tisch" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "insurance, NFL team" .
 
-<http://dbpedia.org/resource/Steven_Tisch>
-        schema:netWorth  "1.2" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Steven_Tisch>
+        schema:netWorth  1.2 ;
+        foaf:name        "Steven Tisch" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "insurance" .
 
-<http://dbpedia.org/resource/Stefania_Triva>
-        schema:netWorth  "1.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/Italy> ;
+<http://example.org/person/Stefania_Triva>
+        schema:netWorth  1.2 ;
+        foaf:name        "Stefania Triva" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/Italy> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "microbiology" .
 
-<http://dbpedia.org/resource/Maria_Grace_Uy>
-        schema:netWorth  "1.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Maria_Grace_Uy>
+        schema:netWorth  1.2 ;
+        foaf:name        "Maria Grace Uy" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Wim_van_der_Leegte>
-        schema:netWorth  "1.2" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Wim_van_der_Leegte>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wim van der Leegte" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Thongma_Vijitpongpun>
-        schema:netWorth  "1.2" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Thongma_Vijitpongpun>
+        schema:netWorth  1.2 ;
+        foaf:name        "Thongma Vijitpongpun" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Jianfeng_Wang_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jianfeng_Wang_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Jianfeng Wang & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Wang_Jilei>
-        schema:netWorth  "1.2" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Jilei>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wang Jilei" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Logistics" ;
         dbo:source       "logistics" .
 
-<http://dbpedia.org/resource/Wang_Junmin>
-        schema:netWorth  "1.2" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Junmin>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wang Junmin" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Wang_Kunxiao>
-        schema:netWorth  "1.2" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Kunxiao>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wang Kunxiao" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "oilfield equipment" .
 
-<http://dbpedia.org/resource/Wang_Zhentao_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Zhentao_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wang Zhentao & family" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "vaccine & shoes" .
 
-<http://dbpedia.org/resource/J._Wayne_Weaver>
-        schema:netWorth  "1.2" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/J._Wayne_Weaver>
+        schema:netWorth  1.2 ;
+        foaf:name        "J. Wayne Weaver" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "diversified" ;
         dbo:source       "Shoes" .
 
-<http://dbpedia.org/resource/Weng_Xianding>
-        schema:netWorth  "1.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Weng_Xianding>
+        schema:netWorth  1.2 ;
+        foaf:name        "Weng Xianding" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Horst_Wortmann>
-        schema:netWorth  "1.2" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Horst_Wortmann>
+        schema:netWorth  1.2 ;
+        foaf:name        "Horst Wortmann" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "footwear" .
 
-<http://dbpedia.org/resource/Wu_Chung-yi>
-        schema:netWorth  "1.2" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wu_Chung-yi>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wu Chung-yi" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Wu_Li-gann>
-        schema:netWorth  "1.2" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Wu_Li-gann>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wu Li-gann" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronic components" .
 
-<http://dbpedia.org/resource/Wu_Peifu_&_family>
-        schema:netWorth  "1.2" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Peifu_&_family>
+        schema:netWorth  1.2 ;
+        foaf:name        "Wu Peifu & family" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "plastic" .
 
-<http://dbpedia.org/resource/Xiu_Laigui>
-        schema:netWorth  "1.2" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiu_Laigui>
+        schema:netWorth  1.2 ;
+        foaf:name        "Xiu Laigui" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Yeh_Kuo-I>
-        schema:netWorth  "1.2" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Yeh_Kuo-I>
+        schema:netWorth  1.2 ;
+        foaf:name        "Yeh Kuo-I" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Faxiang_Yu>
-        schema:netWorth  "1.2" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Faxiang_Yu>
+        schema:netWorth  1.2 ;
+        foaf:name        "Faxiang Yu" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "tourism, cultural industry" .
 
-<http://dbpedia.org/resource/Zeng_Chaolin>
-        schema:netWorth  "1.2" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zeng_Chaolin>
+        schema:netWorth  1.2 ;
+        foaf:name        "Zeng Chaolin" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "Aluminium" .
 
-<http://dbpedia.org/resource/Zhang_Tianyu>
-        schema:netWorth  "1.2" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Tianyu>
+        schema:netWorth  1.2 ;
+        foaf:name        "Zhang Tianyu" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecommunications" .
 
-<http://dbpedia.org/resource/Shusheng_Zheng>
-        schema:netWorth  "1.2" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shusheng_Zheng>
+        schema:netWorth  1.2 ;
+        foaf:name        "Shusheng Zheng" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/A._Jayson_Adair>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/A._Jayson_Adair>
+        schema:netWorth  1.1 ;
+        foaf:name        "A. Jayson Adair" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Automotive" ;
         dbo:source       "damaged cars" .
 
-<http://dbpedia.org/resource/Joao_Alves_de_Queiroz_Filho>
-        schema:netWorth  "1.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Joao_Alves_de_Queiroz_Filho>
+        schema:netWorth  1.1 ;
+        foaf:name        "Joao Alves de Queiroz Filho" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "diversified" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Ryuji_Arai>
-        schema:netWorth  "1.1" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Ryuji_Arai>
+        schema:netWorth  1.1 ;
+        foaf:name        "Ryuji Arai" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "retail" .
 
-<http://dbpedia.org/resource/Sara_Blakely>
-        schema:netWorth  "1.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Sara_Blakely>
+        schema:netWorth  1.1 ;
+        foaf:name        "Sara Blakely" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Spanx" .
 
-<http://dbpedia.org/resource/Lloyd_Blankfein>
-        schema:netWorth  "1.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lloyd_Blankfein>
+        schema:netWorth  1.1 ;
+        foaf:name        "Lloyd Blankfein" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Henadiy_Boholyubov>
-        schema:netWorth  "1.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ukraine> ;
+<http://example.org/person/Henadiy_Boholyubov>
+        schema:netWorth  1.1 ;
+        foaf:name        "Henadiy Boholyubov" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Ukraine> ;
         dbo:industry     "diversified" ;
         dbo:source       "banking, investments" .
 
-<http://dbpedia.org/resource/Caspar_Callerstr%C3%B6m>
-        schema:netWorth  "1.1" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Caspar_Callerstr%C3%B6m>
+        schema:netWorth  1.1 ;
+        foaf:name        "Caspar Callerstr├Âm" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Kejian_Cao>
-        schema:netWorth  "1.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Kejian_Cao>
+        schema:netWorth  1.1 ;
+        foaf:name        "Kejian Cao" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "air compressors" .
 
-<http://dbpedia.org/resource/Turgay_Ciner>
-        schema:netWorth  "1.1" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Turgay_Ciner>
+        schema:netWorth  1.1 ;
+        foaf:name        "Turgay Ciner" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Dai_Lizhong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Dai_Lizhong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Dai Lizhong" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical testing" .
 
-<http://dbpedia.org/resource/Pedro_de_Godoy_Bueno>
-        schema:netWorth  "1.1" ;
-        foaf:age         "31" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Pedro_de_Godoy_Bueno>
+        schema:netWorth  1.1 ;
+        foaf:name        "Pedro de Godoy Bueno" ;
+        foaf:age         31 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "health insurance" .
 
-<http://dbpedia.org/resource/Aydin_Dogan>
-        schema:netWorth  "1.1" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Aydin_Dogan>
+        schema:netWorth  1.1 ;
+        foaf:name        "Aydin Dogan" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Wolfgang_Egger>
-        schema:netWorth  "1.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Wolfgang_Egger>
+        schema:netWorth  1.1 ;
+        foaf:name        "Wolfgang Egger" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Gabriel_Escarrer>
-        schema:netWorth  "1.1" ;
-        foaf:age         "87" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Gabriel_Escarrer>
+        schema:netWorth  1.1 ;
+        foaf:name        "Gabriel Escarrer" ;
+        foaf:age         87 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Service" ;
         dbo:source       "hotels" .
 
-<http://dbpedia.org/resource/Richard_Fairbank>
-        schema:netWorth  "1.1" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Richard_Fairbank>
+        schema:netWorth  1.1 ;
+        foaf:name        "Richard Fairbank" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Andy_Fang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "29" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Andy_Fang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Andy Fang" ;
+        foaf:age         29 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "food delivery app" .
 
-<http://dbpedia.org/resource/Benedicte_Find>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Denmark> ;
+<http://example.org/person/Benedicte_Find>
+        schema:netWorth  1.1 ;
+        foaf:name        "Benedicte Find" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Denmark> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical devices" .
 
-<http://dbpedia.org/resource/Paul_Fireman>
-        schema:netWorth  "1.1" ;
-        foaf:age         "78" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Paul_Fireman>
+        schema:netWorth  1.1 ;
+        foaf:name        "Paul Fireman" ;
+        foaf:age         78 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "Reebok" .
 
-<http://dbpedia.org/resource/Donald_Friese>
-        schema:netWorth  "1.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Donald_Friese>
+        schema:netWorth  1.1 ;
+        foaf:name        "Donald Friese" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Soichiro_Fukutake>
-        schema:netWorth  "1.1" ;
-        foaf:age         "76" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Soichiro_Fukutake>
+        schema:netWorth  1.1 ;
+        foaf:name        "Soichiro Fukutake" ;
+        foaf:age         76 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Service" ;
         dbo:source       "education" .
 
-<http://dbpedia.org/resource/Antonio_Gallardo_Ballart>
-        schema:netWorth  "1.1" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Antonio_Gallardo_Ballart>
+        schema:netWorth  1.1 ;
+        foaf:name        "Antonio Gallardo Ballart" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/David_Golub>
-        schema:netWorth  "1.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/David_Golub>
+        schema:netWorth  1.1 ;
+        foaf:name        "David Golub" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "private equity" .
 
-<http://dbpedia.org/resource/Guan_Yihong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Guan_Yihong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Guan Yihong" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "restaurant" .
 
-<http://dbpedia.org/resource/Stelios_Haji-Ioannou>
-        schema:netWorth  "1.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Cyprus> ;
+<http://example.org/person/Stelios_Haji-Ioannou>
+        schema:netWorth  1.1 ;
+        foaf:name        "Stelios Haji-Ioannou" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Cyprus> ;
         dbo:industry     "Service" ;
         dbo:source       "EasyJet" .
 
-<http://dbpedia.org/resource/Mustafa_Hamied>
-        schema:netWorth  "1.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Mustafa_Hamied>
+        schema:netWorth  1.1 ;
+        foaf:name        "Mustafa Hamied" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Han_Arming_Hanafia>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Han_Arming_Hanafia>
+        schema:netWorth  1.1 ;
+        foaf:name        "Han Arming Hanafia" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Technology" ;
         dbo:source       "data centers" .
 
-<http://dbpedia.org/resource/Ronnen_Harary>
-        schema:netWorth  "1.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Ronnen_Harary>
+        schema:netWorth  1.1 ;
+        foaf:name        "Ronnen Harary" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "toys" .
 
-<http://dbpedia.org/resource/David_Helgason>
-        schema:netWorth  "1.1" ;
-        foaf:age         "44" ;
-        foaf:based_near  <http://dbpedia.org/resource/Iceland> ;
+<http://example.org/person/David_Helgason>
+        schema:netWorth  1.1 ;
+        foaf:name        "David Helgason" ;
+        foaf:age         44 ;
+        dbo:location     <http://dbpedia.org/resource/Iceland> ;
         dbo:industry     "Technology" ;
         dbo:source       "game software" .
 
-<http://dbpedia.org/resource/Christian_Herz>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Christian_Herz>
+        schema:netWorth  1.1 ;
+        foaf:name        "Christian Herz" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "coffee" .
 
-<http://dbpedia.org/resource/Michaela_Herz>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Michaela_Herz>
+        schema:netWorth  1.1 ;
+        foaf:name        "Michaela Herz" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "coffee" .
 
-<http://dbpedia.org/resource/Eduardo_Hochschild>
-        schema:netWorth  "1.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Peru> ;
+<http://example.org/person/Eduardo_Hochschild>
+        schema:netWorth  1.1 ;
+        foaf:name        "Eduardo Hochschild" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Peru> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "mining" .
 
-<http://dbpedia.org/resource/Hong_Seok-joh>
-        schema:netWorth  "1.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Hong_Seok-joh>
+        schema:netWorth  1.1 ;
+        foaf:name        "Hong Seok-joh" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "convenience stores" .
 
-<http://dbpedia.org/resource/Huang_Jiangji>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Huang_Jiangji>
+        schema:netWorth  1.1 ;
+        foaf:name        "Huang Jiangji" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Technology" ;
         dbo:source       "smartphones" .
 
-<http://dbpedia.org/resource/Huang_Xu>
-        schema:netWorth  "1.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Huang_Xu>
+        schema:netWorth  1.1 ;
+        foaf:name        "Huang Xu" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "semiconductor" .
 
-<http://dbpedia.org/resource/Subba_Rao_Jasti>
-        schema:netWorth  "1.1" ;
-        foaf:age         "95" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Subba_Rao_Jasti>
+        schema:netWorth  1.1 ;
+        foaf:name        "Subba Rao Jasti" ;
+        foaf:age         95 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Long_Jiang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Long_Jiang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Long Jiang" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "Manufacturing" .
 
-<http://dbpedia.org/resource/Jiang_Xuefei_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jiang_Xuefei_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Jiang Xuefei & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "printed circuit boards" .
 
-<http://dbpedia.org/resource/Jonas_Kamprad>
-        schema:netWorth  "1.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Jonas_Kamprad>
+        schema:netWorth  1.1 ;
+        foaf:name        "Jonas Kamprad" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "IKEA" .
 
-<http://dbpedia.org/resource/Mathias_Kamprad>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Mathias_Kamprad>
+        schema:netWorth  1.1 ;
+        foaf:name        "Mathias Kamprad" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "IKEA" .
 
-<http://dbpedia.org/resource/Peter_Kamprad>
-        schema:netWorth  "1.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Peter_Kamprad>
+        schema:netWorth  1.1 ;
+        foaf:name        "Peter Kamprad" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "IKEA" .
 
-<http://dbpedia.org/resource/Andrew_Karam>
-        schema:netWorth  "1.1" ;
-        foaf:age         "40" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Andrew_Karam>
+        schema:netWorth  1.1 ;
+        foaf:name        "Andrew Karam" ;
+        foaf:age         40 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "mobile games" .
 
-<http://dbpedia.org/resource/Samvel_Karapetyan>
-        schema:netWorth  "1.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Samvel_Karapetyan>
+        schema:netWorth  1.1 ;
+        foaf:name        "Samvel Karapetyan" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Alexander_Karp>
-        schema:netWorth  "1.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Alexander_Karp>
+        schema:netWorth  1.1 ;
+        foaf:name        "Alexander Karp" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software firm" .
 
-<http://dbpedia.org/resource/Ke_Guihua>
-        schema:netWorth  "1.1" ;
-        foaf:age         "56" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ke_Guihua>
+        schema:netWorth  1.1 ;
+        foaf:name        "Ke Guihua" ;
+        foaf:age         56 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Kim_Jung-woong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Kim_Jung-woong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Kim Jung-woong" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Harry_Klagsbrun>
-        schema:netWorth  "1.1" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Sweden> ;
+<http://example.org/person/Harry_Klagsbrun>
+        schema:netWorth  1.1 ;
+        foaf:name        "Harry Klagsbrun" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Sweden> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services" .
 
-<http://dbpedia.org/resource/Alexander_Knauf>
-        schema:netWorth  "1.1" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Alexander_Knauf>
+        schema:netWorth  1.1 ;
+        foaf:name        "Alexander Knauf" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Martin_Knauf>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Martin_Knauf>
+        schema:netWorth  1.1 ;
+        foaf:name        "Martin Knauf" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Robert_Knauf>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Robert_Knauf>
+        schema:netWorth  1.1 ;
+        foaf:name        "Robert Knauf" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Koh_Wee_Meng>
-        schema:netWorth  "1.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/Singapore> ;
+<http://example.org/person/Koh_Wee_Meng>
+        schema:netWorth  1.1 ;
+        foaf:name        "Koh Wee Meng" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/Singapore> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate, hotels" .
 
-<http://dbpedia.org/resource/Sergei_Kolesnikov>
-        schema:netWorth  "1.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Sergei_Kolesnikov>
+        schema:netWorth  1.1 ;
+        foaf:name        "Sergei Kolesnikov" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/Andrei_Komarov>
-        schema:netWorth  "1.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Andrei_Komarov>
+        schema:netWorth  1.1 ;
+        foaf:name        "Andrei Komarov" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Koo_Bon-neung>
-        schema:netWorth  "1.1" ;
-        foaf:age         "73" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Koo_Bon-neung>
+        schema:netWorth  1.1 ;
+        foaf:name        "Koo Bon-neung" ;
+        foaf:age         73 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Koo_Bon-sik>
-        schema:netWorth  "1.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Koo_Bon-sik>
+        schema:netWorth  1.1 ;
+        foaf:name        "Koo Bon-sik" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "LG" .
 
-<http://dbpedia.org/resource/Suresh_Krishna>
-        schema:netWorth  "1.1" ;
-        foaf:age         "85" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Suresh_Krishna>
+        schema:netWorth  1.1 ;
+        foaf:name        "Suresh Krishna" ;
+        foaf:age         85 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "auto parts" .
 
-<http://dbpedia.org/resource/Nancy_Lerner>
-        schema:netWorth  "1.1" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Nancy_Lerner>
+        schema:netWorth  1.1 ;
+        foaf:name        "Nancy Lerner" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, credit cards" .
 
-<http://dbpedia.org/resource/Norma_Lerner>
-        schema:netWorth  "1.1" ;
-        foaf:age         "86" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Norma_Lerner>
+        schema:netWorth  1.1 ;
+        foaf:name        "Norma Lerner" ;
+        foaf:age         86 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking" .
 
-<http://dbpedia.org/resource/Randolph_Lerner>
-        schema:netWorth  "1.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Randolph_Lerner>
+        schema:netWorth  1.1 ;
+        foaf:name        "Randolph Lerner" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "banking, credit cards" .
 
-<http://dbpedia.org/resource/Li_Shui-po>
-        schema:netWorth  "1.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Li_Shui-po>
+        schema:netWorth  1.1 ;
+        foaf:name        "Li Shui-po" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "Manufacturing" .
 
-<http://dbpedia.org/resource/Li_Tan>
-        schema:netWorth  "1.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Tan>
+        schema:netWorth  1.1 ;
+        foaf:name        "Li Tan" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Li_Wenmei_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Li_Wenmei_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Li Wenmei & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Lim_Hariyanto_Wijaya_Sarwono>
-        schema:netWorth  "1.1" ;
-        foaf:age         "93" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Lim_Hariyanto_Wijaya_Sarwono>
+        schema:netWorth  1.1 ;
+        foaf:name        "Lim Hariyanto Wijaya Sarwono" ;
+        foaf:age         93 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Energy" ;
         dbo:source       "palm oil, nickel mining" .
 
-<http://dbpedia.org/resource/Lin_Jie_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lin_Jie_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Lin Jie & family" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Liu_Chengyu_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Liu_Chengyu_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Liu Chengyu & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "power supply equipment" .
 
-<http://dbpedia.org/resource/Lou_Boliang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Lou_Boliang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Lou Boliang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Lun_Ruixiang_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lun_Ruixiang_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Lun Ruixiang & family" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Lv_Yongxiang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Lv_Yongxiang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Lv Yongxiang" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "magnetic switches" .
 
-<http://dbpedia.org/resource/Ma_Xiuhui>
-        schema:netWorth  "1.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Ma_Xiuhui>
+        schema:netWorth  1.1 ;
+        foaf:name        "Ma Xiuhui" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "LED lighting" .
 
-<http://dbpedia.org/resource/Yasseen_Mansour>
-        schema:netWorth  "1.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/Egypt> ;
+<http://example.org/person/Yasseen_Mansour>
+        schema:netWorth  1.1 ;
+        foaf:name        "Yasseen Mansour" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/Egypt> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Jorge_Mas>
-        schema:netWorth  "1.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jorge_Mas>
+        schema:netWorth  1.1 ;
+        foaf:name        "Jorge Mas" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "Construction" .
 
-<http://dbpedia.org/resource/Michael_McCain>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Michael_McCain>
+        schema:netWorth  1.1 ;
+        foaf:name        "Michael McCain" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "packaged meats" .
 
-<http://dbpedia.org/resource/Gabriella_Meister>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Gabriella_Meister>
+        schema:netWorth  1.1 ;
+        foaf:name        "Gabriella Meister" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "appliances" .
 
-<http://dbpedia.org/resource/Ulrike_Meister>
-        schema:netWorth  "1.1" ;
-        foaf:age         "55" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Ulrike_Meister>
+        schema:netWorth  1.1 ;
+        foaf:name        "Ulrike Meister" ;
+        foaf:age         55 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "appliances" .
 
-<http://dbpedia.org/resource/Jeffrey_Michael_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Jeffrey_Michael_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Jeffrey Michael & family" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "data management" .
 
-<http://dbpedia.org/resource/Soichiro_Minami>
-        schema:netWorth  "1.1" ;
-        foaf:age         "45" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Soichiro_Minami>
+        schema:netWorth  1.1 ;
+        foaf:name        "Soichiro Minami" ;
+        foaf:age         45 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Technology" ;
         dbo:source       "internet and software" .
 
-<http://dbpedia.org/resource/Bob_Muglia>
-        schema:netWorth  "1.1" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Bob_Muglia>
+        schema:netWorth  1.1 ;
+        foaf:name        "Bob Muglia" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Erik_Must>
-        schema:netWorth  "1.1" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/Norway> ;
+<http://example.org/person/Erik_Must>
+        schema:netWorth  1.1 ;
+        foaf:name        "Erik Must" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/Norway> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "stock brokerage" .
 
-<http://dbpedia.org/resource/Kerr_Neilson>
-        schema:netWorth  "1.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Kerr_Neilson>
+        schema:netWorth  1.1 ;
+        foaf:name        "Kerr Neilson" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "Investments" .
 
-<http://dbpedia.org/resource/John_Oyler>
-        schema:netWorth  "1.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/John_Oyler>
+        schema:netWorth  1.1 ;
+        foaf:name        "John Oyler" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotech" .
 
-<http://dbpedia.org/resource/Park_Hyeon-joo>
-        schema:netWorth  "1.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Park_Hyeon-joo>
+        schema:netWorth  1.1 ;
+        foaf:name        "Park Hyeon-joo" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "mutual funds" .
 
-<http://dbpedia.org/resource/Jose_Isaac_Peres_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Jose_Isaac_Peres_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Jose Isaac Peres & family" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "shopping malls" .
 
-<http://dbpedia.org/resource/Catherine_Phillips>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Catherine_Phillips>
+        schema:netWorth  1.1 ;
+        foaf:name        "Catherine Phillips" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/John_Phillips>
-        schema:netWorth  "1.1" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/John_Phillips>
+        schema:netWorth  1.1 ;
+        foaf:name        "John Phillips" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "investments" .
 
-<http://dbpedia.org/resource/Pu_Zhongjie_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "59" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Pu_Zhongjie_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Pu Zhongjie & family" ;
+        foaf:age         59 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical equipment" .
 
-<http://dbpedia.org/resource/Qian_Xiaojun>
-        schema:netWorth  "1.1" ;
-        foaf:age         "47" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Qian_Xiaojun>
+        schema:netWorth  1.1 ;
+        foaf:name        "Qian Xiaojun" ;
+        foaf:age         47 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "IT" .
 
-<http://dbpedia.org/resource/Anton_Rabie>
-        schema:netWorth  "1.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Anton_Rabie>
+        schema:netWorth  1.1 ;
+        foaf:name        "Anton Rabie" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "toys" .
 
-<http://dbpedia.org/resource/Igor_Rybakov>
-        schema:netWorth  "1.1" ;
-        foaf:age         "49" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Igor_Rybakov>
+        schema:netWorth  1.1 ;
+        foaf:name        "Igor Rybakov" ;
+        foaf:age         49 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "building materials" .
 
-<http://dbpedia.org/resource/K._Rai_Sahi>
-        schema:netWorth  "1.1" ;
-        foaf:age         "75" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/K._Rai_Sahi>
+        schema:netWorth  1.1 ;
+        foaf:name        "K. Rai Sahi" ;
+        foaf:age         75 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Karl_Scheufele,_III._&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "83" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Karl_Scheufele,_III._&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Karl Scheufele, III. & family" ;
+        foaf:age         83 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "jewelry" .
 
-<http://dbpedia.org/resource/Steven_Schuurman>
-        schema:netWorth  "1.1" ;
-        foaf:age         "46" ;
-        foaf:based_near  <http://dbpedia.org/resource/Netherlands> ;
+<http://example.org/person/Steven_Schuurman>
+        schema:netWorth  1.1 ;
+        foaf:name        "Steven Schuurman" ;
+        foaf:age         46 ;
+        dbo:location     <http://dbpedia.org/resource/Netherlands> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Shao_Zengming>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Shao_Zengming>
+        schema:netWorth  1.1 ;
+        foaf:name        "Shao Zengming" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "diamonds" .
 
-<http://dbpedia.org/resource/Analjit_Singh>
-        schema:netWorth  "1.1" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Analjit_Singh>
+        schema:netWorth  1.1 ;
+        foaf:name        "Analjit Singh" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "diversified" ;
         dbo:source       "diversified  " .
 
-<http://dbpedia.org/resource/Kavita_Singhania>
-        schema:netWorth  "1.1" ;
-        foaf:age         "60" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Kavita_Singhania>
+        schema:netWorth  1.1 ;
+        foaf:name        "Kavita Singhania" ;
+        foaf:age         60 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "cement" .
 
-<http://dbpedia.org/resource/Michael_S._Smith>
-        schema:netWorth  "1.1" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Michael_S._Smith>
+        schema:netWorth  1.1 ;
+        foaf:name        "Michael S. Smith" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Energy" ;
         dbo:source       "liquefied natural gas" .
 
-<http://dbpedia.org/resource/Scott_Smith>
-        schema:netWorth  "1.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Scott_Smith>
+        schema:netWorth  1.1 ;
+        foaf:name        "Scott Smith" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "cloud computing" .
 
-<http://dbpedia.org/resource/Ashok_Soota>
-        schema:netWorth  "1.1" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Ashok_Soota>
+        schema:netWorth  1.1 ;
+        foaf:name        "Ashok Soota" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Technology" ;
         dbo:source       "software services" .
 
-<http://dbpedia.org/resource/Michael_Spencer>
-        schema:netWorth  "1.1" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Michael_Spencer>
+        schema:netWorth  1.1 ;
+        foaf:name        "Michael Spencer" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "stock exchange" .
 
-<http://dbpedia.org/resource/Venu_Srinivasan>
-        schema:netWorth  "1.1" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Venu_Srinivasan>
+        schema:netWorth  1.1 ;
+        foaf:name        "Venu Srinivasan" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Automotive" ;
         dbo:source       "two-wheelers" .
 
-<http://dbpedia.org/resource/Dirk_Stroeer>
-        schema:netWorth  "1.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Dirk_Stroeer>
+        schema:netWorth  1.1 ;
+        foaf:name        "Dirk Stroeer" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "advertising" .
 
-<http://dbpedia.org/resource/Susanto_Suwarto>
-        schema:netWorth  "1.1" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/Indonesia> ;
+<http://example.org/person/Susanto_Suwarto>
+        schema:netWorth  1.1 ;
+        foaf:name        "Susanto Suwarto" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/Indonesia> ;
         dbo:industry     "Media & Entertainment" ;
         dbo:source       "media" .
 
-<http://dbpedia.org/resource/Xiuguo_Tang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiuguo_Tang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Xiuguo Tang" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Mehmet_Sinan_Tara>
-        schema:netWorth  "1.1" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Mehmet_Sinan_Tara>
+        schema:netWorth  1.1 ;
+        foaf:name        "Mehmet Sinan Tara" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Construction & Engineering" ;
         dbo:source       "construction" .
 
-<http://dbpedia.org/resource/Robert_Toll>
-        schema:netWorth  "1.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Robert_Toll>
+        schema:netWorth  1.1 ;
+        foaf:name        "Robert Toll" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "home building" .
 
-<http://dbpedia.org/resource/Surin_Upatkoon>
-        schema:netWorth  "1.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Surin_Upatkoon>
+        schema:netWorth  1.1 ;
+        foaf:name        "Surin Upatkoon" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "diversified" ;
         dbo:source       "telecom, lotteries, insurance" .
 
-<http://dbpedia.org/resource/Sunil_Vachani>
-        schema:netWorth  "1.1" ;
-        foaf:age         "53" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Sunil_Vachani>
+        schema:netWorth  1.1 ;
+        foaf:name        "Sunil Vachani" ;
+        foaf:age         53 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Murat_Vargi>
-        schema:netWorth  "1.1" ;
-        foaf:age         "74" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Murat_Vargi>
+        schema:netWorth  1.1 ;
+        foaf:name        "Murat Vargi" ;
+        foaf:age         74 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Telecom" ;
         dbo:source       "telecom" .
 
-<http://dbpedia.org/resource/Pongsak_Viddayakorn>
-        schema:netWorth  "1.1" ;
-        foaf:age         "88" ;
-        foaf:based_near  <http://dbpedia.org/resource/Thailand> ;
+<http://example.org/person/Pongsak_Viddayakorn>
+        schema:netWorth  1.1 ;
+        foaf:name        "Pongsak Viddayakorn" ;
+        foaf:age         88 ;
+        dbo:location     <http://dbpedia.org/resource/Thailand> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "hospitals" .
 
-<http://dbpedia.org/resource/Wang_Linxiang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Linxiang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Wang Linxiang" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cashmere" .
 
-<http://dbpedia.org/resource/Wang_Shumin>
-        schema:netWorth  "1.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wang_Shumin>
+        schema:netWorth  1.1 ;
+        foaf:name        "Wang Shumin" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Richard_Warke>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Canada> ;
+<http://example.org/person/Richard_Warke>
+        schema:netWorth  1.1 ;
+        foaf:name        "Richard Warke" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Canada> ;
         dbo:industry     "Metals & Mining" ;
         dbo:source       "Mining" .
 
-<http://dbpedia.org/resource/Anne_Werninghaus>
-        schema:netWorth  "1.1" ;
-        foaf:age         "36" ;
-        foaf:based_near  <http://dbpedia.org/resource/Brazil> ;
+<http://example.org/person/Anne_Werninghaus>
+        schema:netWorth  1.1 ;
+        foaf:name        "Anne Werninghaus" ;
+        foaf:age         36 ;
+        dbo:location     <http://dbpedia.org/resource/Brazil> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "industrial machinery" .
 
-<http://dbpedia.org/resource/Allan_Wong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Allan_Wong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Allan Wong" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Chaoqun_Wu>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Chaoqun_Wu>
+        schema:netWorth  1.1 ;
+        foaf:name        "Chaoqun Wu" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "chemicals" .
 
-<http://dbpedia.org/resource/Wu_Yonghua>
-        schema:netWorth  "1.1" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Yonghua>
+        schema:netWorth  1.1 ;
+        foaf:name        "Wu Yonghua" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Wu_Zhenxing>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Wu_Zhenxing>
+        schema:netWorth  1.1 ;
+        foaf:name        "Wu Zhenxing" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "soy sauce" .
 
-<http://dbpedia.org/resource/Franziska_Wuerbser>
-        schema:netWorth  "1.1" ;
-        foaf:age         "34" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Franziska_Wuerbser>
+        schema:netWorth  1.1 ;
+        foaf:name        "Franziska Wuerbser" ;
+        foaf:age         34 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "kitchen appliances" .
 
-<http://dbpedia.org/resource/Xia_Xinde>
-        schema:netWorth  "1.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xia_Xinde>
+        schema:netWorth  1.1 ;
+        foaf:name        "Xia Xinde" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "batteries" .
 
-<http://dbpedia.org/resource/Xiong_Jun_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "48" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Xiong_Jun_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Xiong Jun & family" ;
+        foaf:age         48 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Jane_Yan_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "52" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Jane_Yan_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Jane Yan & family" ;
+        foaf:age         52 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Technology" ;
         dbo:source       "software" .
 
-<http://dbpedia.org/resource/Yang_Erzhu>
-        schema:netWorth  "1.1" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yang_Erzhu>
+        schema:netWorth  1.1 ;
+        foaf:name        "Yang Erzhu" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Vlad_Yatsenko>
-        schema:netWorth  "1.1" ;
-        foaf:age         "38" ;
-        foaf:based_near  <http://dbpedia.org/resource/Ukraine> ;
+<http://example.org/person/Vlad_Yatsenko>
+        schema:netWorth  1.1 ;
+        foaf:name        "Vlad Yatsenko" ;
+        foaf:age         38 ;
+        dbo:location     <http://dbpedia.org/resource/Ukraine> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "fintech" .
 
-<http://dbpedia.org/resource/Yi_Xianzhong_&_family>
-        schema:netWorth  "1.1" ;
-        foaf:age         "62" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yi_Xianzhong_&_family>
+        schema:netWorth  1.1 ;
+        foaf:name        "Yi Xianzhong & family" ;
+        foaf:age         62 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Yoshiaki_Yoshida>
-        schema:netWorth  "1.1" ;
-        foaf:age         "81" ;
-        foaf:based_near  <http://dbpedia.org/resource/Japan> ;
+<http://example.org/person/Yoshiaki_Yoshida>
+        schema:netWorth  1.1 ;
+        foaf:name        "Yoshiaki Yoshida" ;
+        foaf:age         81 ;
+        dbo:location     <http://dbpedia.org/resource/Japan> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "cosmetics" .
 
-<http://dbpedia.org/resource/Yu_Rong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "50" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Yu_Rong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Yu Rong" ;
+        foaf:age         50 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "health clinics" .
 
-<http://dbpedia.org/resource/Igor_Yusufov>
-        schema:netWorth  "1.1" ;
-        foaf:age         "65" ;
-        foaf:based_near  <http://dbpedia.org/resource/Russia> ;
+<http://example.org/person/Igor_Yusufov>
+        schema:netWorth  1.1 ;
+        foaf:name        "Igor Yusufov" ;
+        foaf:age         65 ;
+        dbo:location     <http://dbpedia.org/resource/Russia> ;
         dbo:industry     "Energy" ;
         dbo:source       "oil & gas" .
 
-<http://dbpedia.org/resource/Zeng_Weixiong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zeng_Weixiong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Zeng Weixiong" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "healthcare" .
 
-<http://dbpedia.org/resource/Zhang_Cheng_Fei>
-        schema:netWorth  "1.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Cheng_Fei>
+        schema:netWorth  1.1 ;
+        foaf:name        "Zhang Cheng Fei" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "paper & related products" .
 
-<http://dbpedia.org/resource/Zhang_Fangliang>
-        schema:netWorth  "1.1" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhang_Fangliang>
+        schema:netWorth  1.1 ;
+        foaf:name        "Zhang Fangliang" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "biotechnology" .
 
-<http://dbpedia.org/resource/Baoshen_Zhong>
-        schema:netWorth  "1.1" ;
-        foaf:age         "54" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Baoshen_Zhong>
+        schema:netWorth  1.1 ;
+        foaf:name        "Baoshen Zhong" ;
+        foaf:age         54 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Energy" ;
         dbo:source       "solar energy" .
 
-<http://dbpedia.org/resource/Zhou_Minghua>
-        schema:netWorth  "1.1" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Zhou_Minghua>
+        schema:netWorth  1.1 ;
+        foaf:name        "Zhou Minghua" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceutical" .
 
-<http://dbpedia.org/resource/Krishna_Kumar_Bangur>
-        schema:netWorth  "1.0" ;
-        foaf:age         "61" ;
-        foaf:based_near  <http://dbpedia.org/resource/India> ;
+<http://example.org/person/Krishna_Kumar_Bangur>
+        schema:netWorth  1.0 ;
+        foaf:name        "Krishna Kumar Bangur" ;
+        foaf:age         61 ;
+        dbo:location     <http://dbpedia.org/resource/India> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "graphite electrodes" .
 
-<http://dbpedia.org/resource/Wilbur__'Ed'_Bosarge,_Jr.>
-        schema:netWorth  "1.0" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Wilbur__'Ed'_Bosarge,_Jr.>
+        schema:netWorth  1.0 ;
+        foaf:name        "Wilbur  'Ed' Bosarge, Jr." ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "high speed trading" .
 
-<http://dbpedia.org/resource/Johanna_Braun>
-        schema:netWorth  "1.0" ;
-        foaf:age         "42" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Johanna_Braun>
+        schema:netWorth  1.0 ;
+        foaf:name        "Johanna Braun" ;
+        foaf:age         42 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Karl_Friedrich_Braun>
-        schema:netWorth  "1.0" ;
-        foaf:age         "39" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Karl_Friedrich_Braun>
+        schema:netWorth  1.0 ;
+        foaf:name        "Karl Friedrich Braun" ;
+        foaf:age         39 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "medical technology" .
 
-<http://dbpedia.org/resource/Jean-Pierre_Cayard>
-        schema:netWorth  "1.0" ;
-        foaf:age         "79" ;
-        foaf:based_near  <http://dbpedia.org/resource/France> ;
+<http://example.org/person/Jean-Pierre_Cayard>
+        schema:netWorth  1.0 ;
+        foaf:name        "Jean-Pierre Cayard" ;
+        foaf:age         79 ;
+        dbo:location     <http://dbpedia.org/resource/France> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "spirits" .
 
-<http://dbpedia.org/resource/Tony_Chen>
-        schema:netWorth  "1.0" ;
-        foaf:age         "72" ;
-        foaf:based_near  <http://dbpedia.org/resource/Taiwan> ;
+<http://example.org/person/Tony_Chen>
+        schema:netWorth  1.0 ;
+        foaf:name        "Tony Chen" ;
+        foaf:age         72 ;
+        dbo:location     <http://dbpedia.org/resource/Taiwan> ;
         dbo:industry     "Technology" ;
         dbo:source       "electronics" .
 
-<http://dbpedia.org/resource/Vivien_Chen>
-        schema:netWorth  "1.0" ;
-        foaf:age         "63" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Vivien_Chen>
+        schema:netWorth  1.0 ;
+        foaf:name        "Vivien Chen" ;
+        foaf:age         63 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Real Estate" ;
         dbo:source       "real estate" .
 
-<http://dbpedia.org/resource/Chey_Ki-won>
-        schema:netWorth  "1.0" ;
-        foaf:age         "57" ;
-        foaf:based_near  <http://dbpedia.org/resource/South_Korea> ;
+<http://example.org/person/Chey_Ki-won>
+        schema:netWorth  1.0 ;
+        foaf:name        "Chey Ki-won" ;
+        foaf:age         57 ;
+        dbo:location     <http://dbpedia.org/resource/South_Korea> ;
         dbo:industry     "Technology" ;
         dbo:source       "computer services, telecom" .
 
-<http://dbpedia.org/resource/Pollyanna_Chu>
-        schema:netWorth  "1.0" ;
-        foaf:age         "64" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Pollyanna_Chu>
+        schema:netWorth  1.0 ;
+        foaf:name        "Pollyanna Chu" ;
+        foaf:age         64 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "financial services, property" .
 
-<http://dbpedia.org/resource/Roy_Chi_Ping_Chung>
-        schema:netWorth  "1.0" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Hong_Kong> ;
+<http://example.org/person/Roy_Chi_Ping_Chung>
+        schema:netWorth  1.0 ;
+        foaf:name        "Roy Chi Ping Chung" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Hong_Kong> ;
         dbo:industry     "Manufacturing" ;
         dbo:source       "manufacturing" .
 
-<http://dbpedia.org/resource/Doug_Clarke>
-        schema:netWorth  "1.0" ;
-        foaf:age         "41" ;
-        foaf:based_near  <http://dbpedia.org/resource/Australia> ;
+<http://example.org/person/Doug_Clarke>
+        schema:netWorth  1.0 ;
+        foaf:name        "Doug Clarke" ;
+        foaf:age         41 ;
+        dbo:location     <http://dbpedia.org/resource/Australia> ;
         dbo:industry     "Technology" ;
         dbo:source       "cameras, software" .
 
-<http://dbpedia.org/resource/Ronald_Clarke>
-        schema:netWorth  "1.0" ;
-        foaf:age         "66" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Ronald_Clarke>
+        schema:netWorth  1.0 ;
+        foaf:name        "Ronald Clarke" ;
+        foaf:age         66 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Technology" ;
         dbo:source       "payments technology" .
 
-<http://dbpedia.org/resource/Jean-Paul_Clozel>
-        schema:netWorth  "1.0" ;
-        foaf:age         "67" ;
-        foaf:based_near  <http://dbpedia.org/resource/Switzerland> ;
+<http://example.org/person/Jean-Paul_Clozel>
+        schema:netWorth  1.0 ;
+        foaf:name        "Jean-Paul Clozel" ;
+        foaf:age         67 ;
+        dbo:location     <http://dbpedia.org/resource/Switzerland> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Carl_DeSantis>
-        schema:netWorth  "1.0" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Carl_DeSantis>
+        schema:netWorth  1.0 ;
+        foaf:name        "Carl DeSantis" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "energy drink" .
 
-<http://dbpedia.org/resource/Sefik_Yilmaz_Dizdar>
-        schema:netWorth  "1.0" ;
-        foaf:age         "84" ;
-        foaf:based_near  <http://dbpedia.org/resource/Turkey> ;
+<http://example.org/person/Sefik_Yilmaz_Dizdar>
+        schema:netWorth  1.0 ;
+        foaf:name        "Sefik Yilmaz Dizdar" ;
+        foaf:age         84 ;
+        dbo:location     <http://dbpedia.org/resource/Turkey> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "fashion retail" .
 
-<http://dbpedia.org/resource/Charles_Dunstone>
-        schema:netWorth  "1.0" ;
-        foaf:age         "58" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_Kingdom> ;
+<http://example.org/person/Charles_Dunstone>
+        schema:netWorth  1.0 ;
+        foaf:name        "Charles Dunstone" ;
+        foaf:age         58 ;
+        dbo:location     <http://dbpedia.org/resource/United_Kingdom> ;
         dbo:industry     "Telecom" ;
         dbo:source       "mobile phones" .
 
-<http://dbpedia.org/resource/Larry_Fink>
-        schema:netWorth  "1.0" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/United_States> ;
+<http://example.org/person/Larry_Fink>
+        schema:netWorth  1.0 ;
+        foaf:name        "Larry Fink" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/United_States> ;
         dbo:industry     "Finance & Investments" ;
         dbo:source       "money management" .
 
-<http://dbpedia.org/resource/Fu_Gang>
-        schema:netWorth  "1.0" ;
-        foaf:age         "51" ;
-        foaf:based_near  <http://dbpedia.org/resource/China> ;
+<http://example.org/person/Fu_Gang>
+        schema:netWorth  1.0 ;
+        foaf:name        "Fu Gang" ;
+        foaf:age         51 ;
+        dbo:location     <http://dbpedia.org/resource/China> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharma retailing" .
 
-<http://dbpedia.org/resource/Jorge_Gallardo_Ballart>
-        schema:netWorth  "1.0" ;
-        foaf:age         "80" ;
-        foaf:based_near  <http://dbpedia.org/resource/Spain> ;
+<http://example.org/person/Jorge_Gallardo_Ballart>
+        schema:netWorth  1.0 ;
+        foaf:name        "Jorge Gallardo Ballart" ;
+        foaf:age         80 ;
+        dbo:location     <http://dbpedia.org/resource/Spain> ;
         dbo:industry     "Healthcare" ;
         dbo:source       "pharmaceuticals" .
 
-<http://dbpedia.org/resource/Nari_Genomal>
-        schema:netWorth  "1.0" ;
-        foaf:age         "82" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Nari_Genomal>
+        schema:netWorth  1.0 ;
+        foaf:name        "Nari Genomal" ;
+        foaf:age         82 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Ramesh_Genomal>
-        schema:netWorth  "1.0" ;
-        foaf:age         "71" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Ramesh_Genomal>
+        schema:netWorth  1.0 ;
+        foaf:name        "Ramesh Genomal" ;
+        foaf:age         71 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "apparel" .
 
-<http://dbpedia.org/resource/Sunder_Genomal>
-        schema:netWorth  "1.0" ;
-        foaf:age         "68" ;
-        foaf:based_near  <http://dbpedia.org/resource/Philippines> ;
+<http://example.org/person/Sunder_Genomal>
+        schema:netWorth  1.0 ;
+        foaf:name        "Sunder Genomal" ;
+        foaf:age         68 ;
+        dbo:location     <http://dbpedia.org/resource/Philippines> ;
         dbo:industry     "Fashion & Retail" ;
         dbo:source       "garments" .
 
-<http://dbpedia.org/resource/Horst-Otto_Gerberding>
-        schema:netWorth  "1.0" ;
-        foaf:age         "69" ;
-        foaf:based_near  <http://dbpedia.org/resource/Germany> ;
+<http://example.org/person/Horst-Otto_Gerberding>
+        schema:netWorth  1.0 ;
+        foaf:name        "Horst-Otto Gerberding" ;
+        foaf:age         69 ;
+        dbo:location     <http://dbpedia.org/resource/Germany> ;
         dbo:industry     "Food & Beverage" ;
         dbo:source       "flavors and fragrances" .
diff --git a/script/mapping.sparql b/script/mapping.sparql
index 5ff8681c472f0de22966579aa397e4e77ebdb1a3..0db5737c0f335e3724045aee224156c9d97a85d8 100644
--- a/script/mapping.sparql
+++ b/script/mapping.sparql
@@ -4,17 +4,17 @@ PREFIX dbo: <http://dbpedia.org/ontology/>
 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
 
 CONSTRUCT {
-    ?personURI schema:netWorth ?Networth ;
-               foaf:age ?Age ;
-               foaf:based_near ?CountryURI ;
+    ?personURI schema:netWorth ?networth ;
+               foaf:name ?Name ;
+               foaf:age ?age ;
+               dbo:location ?CountryURI ;
                dbo:industry ?Industry ;
-               dbo:source ?Source .  # Propriété atomique pour dbo:source
+               dbo:source ?Source .
 }
 FROM <file:./../archive/Forbes_Billionaires_Formatted.csv>
 WHERE {
-
-    BIND (URI(CONCAT('http://dbpedia.org/resource/', REPLACE(?Name, " ", "_"))) AS ?personURI)
+    BIND (URI(CONCAT('http://example.org/person/', REPLACE(?Name, " ", "_"))) AS ?personURI)
     BIND (URI(CONCAT('http://dbpedia.org/resource/', REPLACE(?Country, " ", "_"))) AS ?CountryURI)
-    BIND(xsd:decimal(?Networth) AS ?networth)
-    BIND(xsd:integer(?Age) AS ?age)
+    BIND (xsd:decimal(?Networth) AS ?networth)
+    BIND (xsd:integer(?Age) AS ?age)
 }